Skip to content

Commit

Permalink
Fix table imports (#4795)
Browse files Browse the repository at this point in the history
  • Loading branch information
fantactuka authored Jul 18, 2023
1 parent 57b6d23 commit 4ce3483
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/lexical-table/src/LexicalTableSelectionHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
*
*/

import type {TableCellNode} from './LexicalTableCellNode';
import type {TableNode} from './LexicalTableNode';
import type {Cell, Cells, Grid} from './LexicalTableSelection';
import type {
Expand All @@ -18,7 +19,6 @@ import type {
TextFormatType,
} from 'lexical';

import {$isTableNode, TableCellNode} from '@lexical/table';
import {$findMatchingParent} from '@lexical/utils';
import {
$createParagraphNode,
Expand Down Expand Up @@ -50,6 +50,7 @@ import {
import invariant from 'shared/invariant';

import {$isTableCellNode} from './LexicalTableCellNode';
import {$isTableNode} from './LexicalTableNode';
import {TableSelection} from './LexicalTableSelection';

const LEXICAL_ELEMENT_KEY = '__lexicalTableSelection';
Expand Down

2 comments on commit 4ce3483

@vercel
Copy link

@vercel vercel bot commented on 4ce3483 Jul 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lexical – ./packages/lexical-website

lexical.dev
lexical-fbopensource.vercel.app
lexicaljs.com
lexicaljs.org
lexical-git-main-fbopensource.vercel.app
www.lexical.dev

@vercel
Copy link

@vercel vercel bot commented on 4ce3483 Jul 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lexical-playground – ./packages/lexical-playground

lexical-playground.vercel.app
lexical-playground-git-main-fbopensource.vercel.app
playground.lexical.dev
lexical-playground-fbopensource.vercel.app

Please sign in to comment.