Skip to content

Commit

Permalink
Fix table imports (facebook#4795)
Browse files Browse the repository at this point in the history
  • Loading branch information
fantactuka authored and Ivaylo Pavlov committed Jul 18, 2023
1 parent 57b6d23 commit b4f499a
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

0 comments on commit b4f499a

Please sign in to comment.