@lexical/table 0.18.1-nightly.20241016.0 → 0.18.1-nightly.20241017.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -524,6 +524,12 @@ const getHeaderState = (currentState, possibleState) => {
524
524
  }
525
525
  return TableCellHeaderStates.NO_STATUS;
526
526
  };
527
+
528
+ /**
529
+ * Inserts a table row before or after the current focus cell node,
530
+ * taking into account any spans. If successful, returns the
531
+ * inserted table row node.
532
+ */
527
533
  function $insertTableRow__EXPERIMENTAL(insertAfter = true) {
528
534
  const selection = lexical.$getSelection();
529
535
  if (!(lexical.$isRangeSelection(selection) || $isTableSelection(selection))) {
@@ -536,6 +542,7 @@ function $insertTableRow__EXPERIMENTAL(insertAfter = true) {
536
542
  const {
537
543
  startRow: focusStartRow
538
544
  } = focusCellMap;
545
+ let insertedRow = null;
539
546
  if (insertAfter) {
540
547
  const focusEndRow = focusStartRow + focusCell.__rowSpan - 1;
541
548
  const focusEndRowMap = gridMap[focusEndRow];
@@ -559,6 +566,7 @@ function $insertTableRow__EXPERIMENTAL(insertAfter = true) {
559
566
  throw Error(`focusEndRow is not a TableRowNode`);
560
567
  }
561
568
  focusEndRowNode.insertAfter(newRow);
569
+ insertedRow = newRow;
562
570
  } else {
563
571
  const focusStartRowMap = gridMap[focusStartRow];
564
572
  const newRow = $createTableRowNode();
@@ -581,7 +589,9 @@ function $insertTableRow__EXPERIMENTAL(insertAfter = true) {
581
589
  throw Error(`focusEndRow is not a TableRowNode`);
582
590
  }
583
591
  focusStartRowNode.insertBefore(newRow);
592
+ insertedRow = newRow;
584
593
  }
594
+ return insertedRow;
585
595
  }
586
596
  function $insertTableColumn(tableNode, targetIndex, shouldInsertAfter = true, columnCount, table) {
587
597
  const tableRows = tableNode.getChildren();
@@ -627,6 +637,12 @@ function $insertTableColumn(tableNode, targetIndex, shouldInsertAfter = true, co
627
637
  });
628
638
  return tableNode;
629
639
  }
640
+
641
+ /**
642
+ * Inserts a column before or after the current focus cell node,
643
+ * taking into account any spans. If successful, returns the
644
+ * first inserted cell node.
645
+ */
630
646
  function $insertTableColumn__EXPERIMENTAL(insertAfter = true) {
631
647
  const selection = lexical.$getSelection();
632
648
  if (!(lexical.$isRangeSelection(selection) || $isTableSelection(selection))) {
@@ -707,6 +723,7 @@ function $insertTableColumn__EXPERIMENTAL(insertAfter = true) {
707
723
  newColWidths.splice(columnIndex, 0, newWidth);
708
724
  grid.setColWidths(newColWidths);
709
725
  }
726
+ return firstInsertedCell;
710
727
  }
711
728
  function $deleteTableColumn(tableNode, targetIndex) {
712
729
  const tableRows = tableNode.getChildren();
@@ -2427,8 +2444,43 @@ function $handleArrowKey(editor, event, direction, tableNode, tableObserver) {
2427
2444
  return true;
2428
2445
  } else if (event.shiftKey && (direction === 'up' || direction === 'down')) {
2429
2446
  const focusNode = selection.focus.getNode();
2430
- if (lexical.$isRootOrShadowRoot(focusNode)) {
2431
- const selectedNode = selection.getNodes()[0];
2447
+ const isTableUnselect = !selection.isCollapsed() && (direction === 'up' && !selection.isBackward() || direction === 'down' && selection.isBackward());
2448
+ if (isTableUnselect) {
2449
+ let focusParentNode = utils.$findMatchingParent(focusNode, n => $isTableNode(n));
2450
+ if ($isTableCellNode(focusParentNode)) {
2451
+ focusParentNode = utils.$findMatchingParent(focusParentNode, $isTableNode);
2452
+ }
2453
+ if (focusParentNode !== tableNode) {
2454
+ return false;
2455
+ }
2456
+ if (!focusParentNode) {
2457
+ return false;
2458
+ }
2459
+ const sibling = direction === 'down' ? focusParentNode.getNextSibling() : focusParentNode.getPreviousSibling();
2460
+ if (!sibling) {
2461
+ return false;
2462
+ }
2463
+ let newOffset = 0;
2464
+ if (direction === 'up') {
2465
+ if (lexical.$isElementNode(sibling)) {
2466
+ newOffset = sibling.getChildrenSize();
2467
+ }
2468
+ }
2469
+ let newFocusNode = sibling;
2470
+ if (direction === 'up') {
2471
+ if (lexical.$isElementNode(sibling)) {
2472
+ const lastCell = sibling.getLastChild();
2473
+ newFocusNode = lastCell ? lastCell : sibling;
2474
+ newOffset = lexical.$isTextNode(newFocusNode) ? newFocusNode.getTextContentSize() : 0;
2475
+ }
2476
+ }
2477
+ const newSelection = selection.clone();
2478
+ newSelection.focus.set(newFocusNode.getKey(), newOffset, lexical.$isTextNode(newFocusNode) ? 'text' : 'element');
2479
+ lexical.$setSelection(newSelection);
2480
+ stopEvent(event);
2481
+ return true;
2482
+ } else if (lexical.$isRootOrShadowRoot(focusNode)) {
2483
+ const selectedNode = direction === 'up' ? selection.getNodes()[selection.getNodes().length - 1] : selection.getNodes()[0];
2432
2484
  if (selectedNode) {
2433
2485
  const tableCellNode = utils.$findMatchingParent(selectedNode, $isTableCellNode);
2434
2486
  if (tableCellNode && tableNode.isParentOf(tableCellNode)) {
@@ -2450,7 +2502,10 @@ function $handleArrowKey(editor, event, direction, tableNode, tableObserver) {
2450
2502
  }
2451
2503
  return false;
2452
2504
  } else {
2453
- const focusParentNode = utils.$findMatchingParent(focusNode, n => lexical.$isElementNode(n) && !n.isInline());
2505
+ let focusParentNode = utils.$findMatchingParent(focusNode, n => lexical.$isElementNode(n) && !n.isInline());
2506
+ if ($isTableCellNode(focusParentNode)) {
2507
+ focusParentNode = utils.$findMatchingParent(focusParentNode, $isTableNode);
2508
+ }
2454
2509
  if (!focusParentNode) {
2455
2510
  return false;
2456
2511
  }
@@ -2465,6 +2520,7 @@ function $handleArrowKey(editor, event, direction, tableNode, tableObserver) {
2465
2520
  const [lastCellNode] = $getNodeTriplet(lastDescendant);
2466
2521
  const newSelection = selection.clone();
2467
2522
  newSelection.focus.set((direction === 'up' ? firstCellNode : lastCellNode).getKey(), direction === 'up' ? 0 : lastCellNode.getChildrenSize(), 'element');
2523
+ stopEvent(event);
2468
2524
  lexical.$setSelection(newSelection);
2469
2525
  return true;
2470
2526
  }
@@ -522,6 +522,12 @@ const getHeaderState = (currentState, possibleState) => {
522
522
  }
523
523
  return TableCellHeaderStates.NO_STATUS;
524
524
  };
525
+
526
+ /**
527
+ * Inserts a table row before or after the current focus cell node,
528
+ * taking into account any spans. If successful, returns the
529
+ * inserted table row node.
530
+ */
525
531
  function $insertTableRow__EXPERIMENTAL(insertAfter = true) {
526
532
  const selection = $getSelection();
527
533
  if (!($isRangeSelection(selection) || $isTableSelection(selection))) {
@@ -534,6 +540,7 @@ function $insertTableRow__EXPERIMENTAL(insertAfter = true) {
534
540
  const {
535
541
  startRow: focusStartRow
536
542
  } = focusCellMap;
543
+ let insertedRow = null;
537
544
  if (insertAfter) {
538
545
  const focusEndRow = focusStartRow + focusCell.__rowSpan - 1;
539
546
  const focusEndRowMap = gridMap[focusEndRow];
@@ -557,6 +564,7 @@ function $insertTableRow__EXPERIMENTAL(insertAfter = true) {
557
564
  throw Error(`focusEndRow is not a TableRowNode`);
558
565
  }
559
566
  focusEndRowNode.insertAfter(newRow);
567
+ insertedRow = newRow;
560
568
  } else {
561
569
  const focusStartRowMap = gridMap[focusStartRow];
562
570
  const newRow = $createTableRowNode();
@@ -579,7 +587,9 @@ function $insertTableRow__EXPERIMENTAL(insertAfter = true) {
579
587
  throw Error(`focusEndRow is not a TableRowNode`);
580
588
  }
581
589
  focusStartRowNode.insertBefore(newRow);
590
+ insertedRow = newRow;
582
591
  }
592
+ return insertedRow;
583
593
  }
584
594
  function $insertTableColumn(tableNode, targetIndex, shouldInsertAfter = true, columnCount, table) {
585
595
  const tableRows = tableNode.getChildren();
@@ -625,6 +635,12 @@ function $insertTableColumn(tableNode, targetIndex, shouldInsertAfter = true, co
625
635
  });
626
636
  return tableNode;
627
637
  }
638
+
639
+ /**
640
+ * Inserts a column before or after the current focus cell node,
641
+ * taking into account any spans. If successful, returns the
642
+ * first inserted cell node.
643
+ */
628
644
  function $insertTableColumn__EXPERIMENTAL(insertAfter = true) {
629
645
  const selection = $getSelection();
630
646
  if (!($isRangeSelection(selection) || $isTableSelection(selection))) {
@@ -705,6 +721,7 @@ function $insertTableColumn__EXPERIMENTAL(insertAfter = true) {
705
721
  newColWidths.splice(columnIndex, 0, newWidth);
706
722
  grid.setColWidths(newColWidths);
707
723
  }
724
+ return firstInsertedCell;
708
725
  }
709
726
  function $deleteTableColumn(tableNode, targetIndex) {
710
727
  const tableRows = tableNode.getChildren();
@@ -2425,8 +2442,43 @@ function $handleArrowKey(editor, event, direction, tableNode, tableObserver) {
2425
2442
  return true;
2426
2443
  } else if (event.shiftKey && (direction === 'up' || direction === 'down')) {
2427
2444
  const focusNode = selection.focus.getNode();
2428
- if ($isRootOrShadowRoot(focusNode)) {
2429
- const selectedNode = selection.getNodes()[0];
2445
+ const isTableUnselect = !selection.isCollapsed() && (direction === 'up' && !selection.isBackward() || direction === 'down' && selection.isBackward());
2446
+ if (isTableUnselect) {
2447
+ let focusParentNode = $findMatchingParent(focusNode, n => $isTableNode(n));
2448
+ if ($isTableCellNode(focusParentNode)) {
2449
+ focusParentNode = $findMatchingParent(focusParentNode, $isTableNode);
2450
+ }
2451
+ if (focusParentNode !== tableNode) {
2452
+ return false;
2453
+ }
2454
+ if (!focusParentNode) {
2455
+ return false;
2456
+ }
2457
+ const sibling = direction === 'down' ? focusParentNode.getNextSibling() : focusParentNode.getPreviousSibling();
2458
+ if (!sibling) {
2459
+ return false;
2460
+ }
2461
+ let newOffset = 0;
2462
+ if (direction === 'up') {
2463
+ if ($isElementNode(sibling)) {
2464
+ newOffset = sibling.getChildrenSize();
2465
+ }
2466
+ }
2467
+ let newFocusNode = sibling;
2468
+ if (direction === 'up') {
2469
+ if ($isElementNode(sibling)) {
2470
+ const lastCell = sibling.getLastChild();
2471
+ newFocusNode = lastCell ? lastCell : sibling;
2472
+ newOffset = $isTextNode(newFocusNode) ? newFocusNode.getTextContentSize() : 0;
2473
+ }
2474
+ }
2475
+ const newSelection = selection.clone();
2476
+ newSelection.focus.set(newFocusNode.getKey(), newOffset, $isTextNode(newFocusNode) ? 'text' : 'element');
2477
+ $setSelection(newSelection);
2478
+ stopEvent(event);
2479
+ return true;
2480
+ } else if ($isRootOrShadowRoot(focusNode)) {
2481
+ const selectedNode = direction === 'up' ? selection.getNodes()[selection.getNodes().length - 1] : selection.getNodes()[0];
2430
2482
  if (selectedNode) {
2431
2483
  const tableCellNode = $findMatchingParent(selectedNode, $isTableCellNode);
2432
2484
  if (tableCellNode && tableNode.isParentOf(tableCellNode)) {
@@ -2448,7 +2500,10 @@ function $handleArrowKey(editor, event, direction, tableNode, tableObserver) {
2448
2500
  }
2449
2501
  return false;
2450
2502
  } else {
2451
- const focusParentNode = $findMatchingParent(focusNode, n => $isElementNode(n) && !n.isInline());
2503
+ let focusParentNode = $findMatchingParent(focusNode, n => $isElementNode(n) && !n.isInline());
2504
+ if ($isTableCellNode(focusParentNode)) {
2505
+ focusParentNode = $findMatchingParent(focusParentNode, $isTableNode);
2506
+ }
2452
2507
  if (!focusParentNode) {
2453
2508
  return false;
2454
2509
  }
@@ -2463,6 +2518,7 @@ function $handleArrowKey(editor, event, direction, tableNode, tableObserver) {
2463
2518
  const [lastCellNode] = $getNodeTriplet(lastDescendant);
2464
2519
  const newSelection = selection.clone();
2465
2520
  newSelection.focus.set((direction === 'up' ? firstCellNode : lastCellNode).getKey(), direction === 'up' ? 0 : lastCellNode.getChildrenSize(), 'element');
2521
+ stopEvent(event);
2466
2522
  $setSelection(newSelection);
2467
2523
  return true;
2468
2524
  }
@@ -237,11 +237,11 @@ declare export function $deleteTableColumn(
237
237
 
238
238
  declare export function $insertTableRow__EXPERIMENTAL(
239
239
  insertAfter: boolean,
240
- ): void;
240
+ ): TableRowNode | null;
241
241
 
242
242
  declare export function $insertTableColumn__EXPERIMENTAL(
243
243
  insertAfter: boolean,
244
- ): void;
244
+ ): TableCellNode | null;
245
245
 
246
246
  declare export function $deleteTableRow__EXPERIMENTAL(): void;
247
247
 
@@ -14,22 +14,22 @@ rowSpan:this.__rowSpan,type:"tablecell",width:this.getWidth()}}getColSpan(){retu
14
14
  b.__width=a;return b}getWidth(){return this.getLatest().__width}getBackgroundColor(){return this.getLatest().__backgroundColor}setBackgroundColor(a){let b=this.getWritable();b.__backgroundColor=a;return b}toggleHeaderStyle(a){let b=this.getWritable();b.__headerState=(b.__headerState&a)===a?b.__headerState-a:b.__headerState+a;return b}hasHeaderState(a){return(this.getHeaderStyles()&a)===a}hasHeader(){return this.getLatest().__headerState!==x.NO_STATUS}updateDOM(a){return a.__headerState!==this.__headerState||
15
15
  a.__width!==this.__width||a.__colSpan!==this.__colSpan||a.__rowSpan!==this.__rowSpan||a.__backgroundColor!==this.__backgroundColor}isShadowRoot(){return!0}collapseAtStart(){return!0}canBeEmpty(){return!1}canIndent(){return!1}}
16
16
  function ca(a){var b=a.nodeName.toLowerCase(),c=void 0;ba.test(a.style.width)&&(c=parseFloat(a.style.width));b=B("th"===b?x.ROW:x.NO_STATUS,a.colSpan,c);b.__rowSpan=a.rowSpan;c=a.style.backgroundColor;""!==c&&(b.__backgroundColor=c);a=a.style;c=a.textDecoration.split(" ");let d="700"===a.fontWeight||"bold"===a.fontWeight,e=c.includes("line-through"),f="italic"===a.fontStyle,g=c.includes("underline");return{after:n=>{0===n.length&&n.push(w.$createParagraphNode());return n},forChild:(n,p)=>{if(C(p)&&
17
- !w.$isElementNode(n)){p=w.$createParagraphNode();if(w.$isLineBreakNode(n)&&"\n"===n.getTextContent())return null;w.$isTextNode(n)&&(d&&n.toggleFormat("bold"),e&&n.toggleFormat("strikethrough"),f&&n.toggleFormat("italic"),g&&n.toggleFormat("underline"));p.append(n);return p}return n},node:b}}function B(a,b=1,c){return w.$applyNodeReplacement(new y(a,b,c))}function C(a){return a instanceof y}let da=w.createCommand("INSERT_TABLE_COMMAND");var E;
18
- function F(a){let b=new URLSearchParams;b.append("code",a);for(let c=1;c<arguments.length;c++)b.append("v",arguments[c]);throw Error(`Minified Lexical error #${a}; visit https://lexical.dev/docs/error?${b} for the full message or `+"use the non-minified dev environment for full errors and additional helpful warnings.");}E=F&&F.__esModule&&Object.prototype.hasOwnProperty.call(F,"default")?F["default"]:F;let ea="undefined"!==typeof window&&"undefined"!==typeof window.document&&"undefined"!==typeof window.document.createElement;
17
+ !w.$isElementNode(n)){p=w.$createParagraphNode();if(w.$isLineBreakNode(n)&&"\n"===n.getTextContent())return null;w.$isTextNode(n)&&(d&&n.toggleFormat("bold"),e&&n.toggleFormat("strikethrough"),f&&n.toggleFormat("italic"),g&&n.toggleFormat("underline"));p.append(n);return p}return n},node:b}}function B(a,b=1,c){return w.$applyNodeReplacement(new y(a,b,c))}function C(a){return a instanceof y}let da=w.createCommand("INSERT_TABLE_COMMAND");var D;
18
+ function F(a){let b=new URLSearchParams;b.append("code",a);for(let c=1;c<arguments.length;c++)b.append("v",arguments[c]);throw Error(`Minified Lexical error #${a}; visit https://lexical.dev/docs/error?${b} for the full message or `+"use the non-minified dev environment for full errors and additional helpful warnings.");}D=F&&F.__esModule&&Object.prototype.hasOwnProperty.call(F,"default")?F["default"]:F;let ea="undefined"!==typeof window&&"undefined"!==typeof window.document&&"undefined"!==typeof window.document.createElement;
19
19
  class I extends w.ElementNode{static getType(){return"tablerow"}static clone(a){return new I(a.__height,a.__key)}static importDOM(){return{tr:()=>({conversion:fa,priority:0})}}static importJSON(a){return J(a.height)}constructor(a,b){super(b);this.__height=a}exportJSON(){return{...super.exportJSON(),...(this.getHeight()&&{height:this.getHeight()}),type:"tablerow",version:1}}createDOM(a){let b=document.createElement("tr");this.__height&&(b.style.height=`${this.__height}px`);h.addClassNamesToElement(b,
20
20
  a.theme.tableRow);return b}isShadowRoot(){return!0}setHeight(a){this.getWritable().__height=a;return this.__height}getHeight(){return this.getLatest().__height}updateDOM(a){return a.__height!==this.__height}canBeEmpty(){return!1}canIndent(){return!1}}function fa(a){let b=void 0;ba.test(a.style.height)&&(b=parseFloat(a.style.height));return{node:J(b)}}function J(a){return w.$applyNodeReplacement(new I(a))}function K(a){return a instanceof I}
21
21
  function ha(a){a=h.$findMatchingParent(a,b=>K(b));if(K(a))return a;throw Error("Expected table cell to be inside of table row.");}function ia(a){a=h.$findMatchingParent(a,b=>M(b));if(M(a))return a;throw Error("Expected table cell to be inside of table.");}function ja(a,b){let c=ia(a),{x:d,y:e}=c.getCordsFromCellNode(a,b);return{above:c.getCellNodeFromCords(d,e-1,b),below:c.getCellNodeFromCords(d,e+1,b),left:c.getCellNodeFromCords(d-1,e,b),right:c.getCellNodeFromCords(d+1,e,b)}}
22
- let ka=(a,b)=>a===x.BOTH||a===b?b:x.NO_STATUS;function N(a){let b=a.getFirstDescendant();null==b?a.selectStart():b.getParentOrThrow().selectStart()}function la(a,b){let c=a.getFirstChild();null!==c?c.insertBefore(b):a.append(b)}function O(a,b,c){let [d,e,f]=ma(a,b,c);null===e&&E(207);null===f&&E(208);return[d,e,f]}
23
- function ma(a,b,c){function d(p){let t=e[p];void 0===t&&(e[p]=t=[]);return t}let e=[],f=null,g=null;a=a.getChildren();for(let p=0;p<a.length;p++){var n=a[p];K(n)||E(209);for(let t=n.getFirstChild(),v=0;null!=t;t=t.getNextSibling()){C(t)||E(147);for(n=d(p);void 0!==n[v];)v++;n={cell:t,startColumn:v,startRow:p};let {__rowSpan:k,__colSpan:l}=t;for(let m=0;m<k&&!(p+m>=a.length);m++){let r=d(p+m);for(let q=0;q<l;q++)r[v+q]=n}null!==b&&null===f&&b.is(t)&&(f=n);null!==c&&null===g&&c.is(t)&&(g=n)}}return[e,
24
- f,g]}function P(a){a instanceof y||("__type"in a?(a=h.$findMatchingParent(a,C),C(a)||E(148)):(a=h.$findMatchingParent(a.getNode(),C),C(a)||E(148)));let b=a.getParent();K(b)||E(149);let c=b.getParent();M(c)||E(210);return[a,b,c]}
22
+ let ka=(a,b)=>a===x.BOTH||a===b?b:x.NO_STATUS;function N(a){let b=a.getFirstDescendant();null==b?a.selectStart():b.getParentOrThrow().selectStart()}function la(a,b){let c=a.getFirstChild();null!==c?c.insertBefore(b):a.append(b)}function O(a,b,c){let [d,e,f]=ma(a,b,c);null===e&&D(207);null===f&&D(208);return[d,e,f]}
23
+ function ma(a,b,c){function d(p){let t=e[p];void 0===t&&(e[p]=t=[]);return t}let e=[],f=null,g=null;a=a.getChildren();for(let p=0;p<a.length;p++){var n=a[p];K(n)||D(209);for(let t=n.getFirstChild(),v=0;null!=t;t=t.getNextSibling()){C(t)||D(147);for(n=d(p);void 0!==n[v];)v++;n={cell:t,startColumn:v,startRow:p};let {__rowSpan:k,__colSpan:l}=t;for(let m=0;m<k&&!(p+m>=a.length);m++){let r=d(p+m);for(let q=0;q<l;q++)r[v+q]=n}null!==b&&null===f&&b.is(t)&&(f=n);null!==c&&null===g&&c.is(t)&&(g=n)}}return[e,
24
+ f,g]}function P(a){a instanceof y||("__type"in a?(a=h.$findMatchingParent(a,C),C(a)||D(148)):(a=h.$findMatchingParent(a.getNode(),C),C(a)||D(148)));let b=a.getParent();K(b)||D(149);let c=b.getParent();M(c)||D(210);return[a,b,c]}
25
25
  function na(a){let [b,,c]=P(a);a=c.getChildren();let d=a.length;var e=a[0].getChildren().length;let f=Array(d);for(var g=0;g<d;g++)f[g]=Array(e);for(e=0;e<d;e++){g=a[e].getChildren();let n=0;for(let p=0;p<g.length;p++){for(;f[e][n];)n++;let t=g[p],v=t.__rowSpan||1,k=t.__colSpan||1;for(let l=0;l<v;l++)for(let m=0;m<k;m++)f[e+l][n+m]=t;if(b===t)return{colSpan:k,columnIndex:n,rowIndex:e,rowSpan:v};n+=k}}return null}
26
26
  class pa{constructor(a,b,c){this.anchor=b;this.focus=c;b._selection=this;c._selection=this;this._cachedNodes=null;this.dirty=!1;this.tableKey=a}getStartEndPoints(){return[this.anchor,this.focus]}isBackward(){return this.focus.isBefore(this.anchor)}getCachedNodes(){return this._cachedNodes}setCachedNodes(a){this._cachedNodes=a}is(a){return Q(a)?this.tableKey===a.tableKey&&this.anchor.is(a.anchor)&&this.focus.is(a.focus):!1}set(a,b,c){this.dirty=!0;this.tableKey=a;this.anchor.key=b;this.focus.key=c;
27
- this._cachedNodes=null}clone(){return new pa(this.tableKey,this.anchor,this.focus)}isCollapsed(){return!1}extract(){return this.getNodes()}insertRawText(){}insertText(){}hasFormat(a){let b=0;this.getNodes().filter(C).forEach(c=>{c=c.getFirstChild();w.$isParagraphNode(c)&&(b|=c.getTextFormat())});return 0!==(b&w.TEXT_TYPE_TO_FORMAT[a])}insertNodes(a){let b=this.focus.getNode();w.$isElementNode(b)||E(151);w.$normalizeSelection__EXPERIMENTAL(b.select(0,b.getChildrenSize())).insertNodes(a)}getShape(){var a=
28
- w.$getNodeByKey(this.anchor.key);C(a)||E(152);a=na(a);null===a&&E(153);var b=w.$getNodeByKey(this.focus.key);C(b)||E(154);let c=na(b);null===c&&E(155);b=Math.min(a.columnIndex,c.columnIndex);let d=Math.max(a.columnIndex+a.colSpan-1,c.columnIndex+c.colSpan-1),e=Math.min(a.rowIndex,c.rowIndex);a=Math.max(a.rowIndex+a.rowSpan-1,c.rowIndex+c.rowSpan-1);return{fromX:Math.min(b,d),fromY:Math.min(e,a),toX:Math.max(b,d),toY:Math.max(e,a)}}getNodes(){function a(u){let {cell:z,startColumn:A,startRow:D}=u;t=
29
- Math.min(t,A);v=Math.min(v,D);k=Math.max(k,A+z.__colSpan-1);l=Math.max(l,D+z.__rowSpan-1)}var b=this._cachedNodes;if(null!==b)return b;var c=this.anchor.getNode();b=this.focus.getNode();var d=h.$findMatchingParent(c,C);c=h.$findMatchingParent(b,C);C(d)||E(152);C(c)||E(154);b=d.getParent();K(b)||E(156);b=b.getParent();M(b)||E(157);var e=c.getParents()[1];if(e!==b){if(b.isParentOf(c)){var f=e.getParent();null==f&&E(159);this.set(this.tableKey,c.getKey(),f.getKey())}else f=b.getParent(),null==f&&E(158),
27
+ this._cachedNodes=null}clone(){return new pa(this.tableKey,this.anchor,this.focus)}isCollapsed(){return!1}extract(){return this.getNodes()}insertRawText(){}insertText(){}hasFormat(a){let b=0;this.getNodes().filter(C).forEach(c=>{c=c.getFirstChild();w.$isParagraphNode(c)&&(b|=c.getTextFormat())});return 0!==(b&w.TEXT_TYPE_TO_FORMAT[a])}insertNodes(a){let b=this.focus.getNode();w.$isElementNode(b)||D(151);w.$normalizeSelection__EXPERIMENTAL(b.select(0,b.getChildrenSize())).insertNodes(a)}getShape(){var a=
28
+ w.$getNodeByKey(this.anchor.key);C(a)||D(152);a=na(a);null===a&&D(153);var b=w.$getNodeByKey(this.focus.key);C(b)||D(154);let c=na(b);null===c&&D(155);b=Math.min(a.columnIndex,c.columnIndex);let d=Math.max(a.columnIndex+a.colSpan-1,c.columnIndex+c.colSpan-1),e=Math.min(a.rowIndex,c.rowIndex);a=Math.max(a.rowIndex+a.rowSpan-1,c.rowIndex+c.rowSpan-1);return{fromX:Math.min(b,d),fromY:Math.min(e,a),toX:Math.max(b,d),toY:Math.max(e,a)}}getNodes(){function a(u){let {cell:z,startColumn:A,startRow:E}=u;t=
29
+ Math.min(t,A);v=Math.min(v,E);k=Math.max(k,A+z.__colSpan-1);l=Math.max(l,E+z.__rowSpan-1)}var b=this._cachedNodes;if(null!==b)return b;var c=this.anchor.getNode();b=this.focus.getNode();var d=h.$findMatchingParent(c,C);c=h.$findMatchingParent(b,C);C(d)||D(152);C(c)||D(154);b=d.getParent();K(b)||D(156);b=b.getParent();M(b)||D(157);var e=c.getParents()[1];if(e!==b){if(b.isParentOf(c)){var f=e.getParent();null==f&&D(159);this.set(this.tableKey,c.getKey(),f.getKey())}else f=b.getParent(),null==f&&D(158),
30
30
  this.set(this.tableKey,f.getKey(),c.getKey());return this.getNodes()}let [g,n,p]=O(b,d,c),t=Math.min(n.startColumn,p.startColumn),v=Math.min(n.startRow,p.startRow),k=Math.max(n.startColumn+n.cell.__colSpan-1,p.startColumn+p.cell.__colSpan-1),l=Math.max(n.startRow+n.cell.__rowSpan-1,p.startRow+p.cell.__rowSpan-1);c=t;d=v;e=t;for(var m=v;t<c||v<d||k>e||l>m;){if(t<c){var r=m-d;--c;for(var q=0;q<=r;q++)a(g[d+q][c])}if(v<d)for(r=e-c,--d,q=0;q<=r;q++)a(g[d][c+q]);if(k>e)for(r=m-d,e+=1,q=0;q<=r;q++)a(g[d+
31
- q][e]);if(l>m)for(r=e-c,m+=1,q=0;q<=r;q++)a(g[m][c+q])}b=new Map([[b.getKey(),b]]);c=null;for(d=v;d<=l;d++)for(e=t;e<=k;e++){({cell:m}=g[d][e]);r=m.getParent();K(r)||E(160);r!==c&&b.set(r.getKey(),r);b.set(m.getKey(),m);for(f of qa(m))b.set(f.getKey(),f);c=r}f=Array.from(b.values());w.isCurrentlyReadOnlyMode()||(this._cachedNodes=f);return f}getTextContent(){let a=this.getNodes().filter(c=>C(c)),b="";for(let c=0;c<a.length;c++){let d=a[c],e=d.__parent,f=(a[c+1]||{}).__parent;b+=d.getTextContent()+
32
- (f!==e?"\n":"\t")}return b}}function Q(a){return a instanceof pa}function ra(){let a=w.$createPoint("root",0,"element"),b=w.$createPoint("root",0,"element");return new pa("root",a,b)}function qa(a){let b=[],c=[a];for(;0<c.length;){let d=c.pop();void 0===d&&E(112);w.$isElementNode(d)&&c.unshift(...d.getChildren());d!==a&&b.push(d)}return b}
31
+ q][e]);if(l>m)for(r=e-c,m+=1,q=0;q<=r;q++)a(g[m][c+q])}b=new Map([[b.getKey(),b]]);c=null;for(d=v;d<=l;d++)for(e=t;e<=k;e++){({cell:m}=g[d][e]);r=m.getParent();K(r)||D(160);r!==c&&b.set(r.getKey(),r);b.set(m.getKey(),m);for(f of qa(m))b.set(f.getKey(),f);c=r}f=Array.from(b.values());w.isCurrentlyReadOnlyMode()||(this._cachedNodes=f);return f}getTextContent(){let a=this.getNodes().filter(c=>C(c)),b="";for(let c=0;c<a.length;c++){let d=a[c],e=d.__parent,f=(a[c+1]||{}).__parent;b+=d.getTextContent()+
32
+ (f!==e?"\n":"\t")}return b}}function Q(a){return a instanceof pa}function ra(){let a=w.$createPoint("root",0,"element"),b=w.$createPoint("root",0,"element");return new pa("root",a,b)}function qa(a){let b=[],c=[a];for(;0<c.length;){let d=c.pop();void 0===d&&D(112);w.$isElementNode(d)&&c.unshift(...d.getChildren());d!==a&&b.push(d)}return b}
33
33
  class sa{constructor(a,b){this.isHighlightingCells=!1;this.focusY=this.focusX=this.anchorY=this.anchorX=-1;this.listenersToRemove=new Set;this.tableNodeKey=b;this.editor=a;this.table={columns:0,domRows:[],rows:0};this.focusCell=this.anchorCell=this.focusCellNodeKey=this.anchorCellNodeKey=this.tableSelection=null;this.hasHijackedSelectionStyles=!1;this.trackTable();this.isSelecting=!1;this.abortController=new AbortController;this.listenerOptions={signal:this.abortController.signal}}getTable(){return this.table}removeListeners(){this.abortController.abort("removeListeners");
34
34
  Array.from(this.listenersToRemove).forEach(a=>a());this.listenersToRemove.clear()}trackTable(){let a=new MutationObserver(b=>{this.editor.update(()=>{var c=!1;for(let d=0;d<b.length;d++){const e=b[d].target.nodeName;if("TABLE"===e||"TBODY"===e||"THEAD"===e||"TR"===e){c=!0;break}}if(c){c=this.editor.getElementByKey(this.tableNodeKey);if(!c)throw Error("Expected to find TableElement in DOM");this.table=R(c)}})});this.editor.update(()=>{let b=this.editor.getElementByKey(this.tableNodeKey);if(!b)throw Error("Expected to find TableElement in DOM");
35
35
  this.table=R(b);a.observe(b,{attributes:!0,childList:!0,subtree:!0})})}clearHighlight(){let a=this.editor;this.isHighlightingCells=!1;this.focusY=this.focusX=this.anchorY=this.anchorX=-1;this.focusCell=this.anchorCell=this.focusCellNodeKey=this.anchorCellNodeKey=this.tableSelection=null;this.hasHijackedSelectionStyles=!1;this.enableHighlightStyle();a.update(()=>{var b=w.$getNodeByKey(this.tableNodeKey);if(!M(b))throw Error("Expected TableNode.");b=a.getElementByKey(this.tableNodeKey);if(!b)throw Error("Expected to find TableElement in DOM");
@@ -37,23 +37,24 @@ b=R(b);S(a,b,null);w.$setSelection(null);a.dispatchCommand(w.SELECTION_CHANGE_CO
37
37
  h.addClassNamesToElement(b,a._config.theme.tableSelection);this.hasHijackedSelectionStyles=!0})}updateTableTableSelection(a){if(null!==a&&a.tableKey===this.tableNodeKey){let b=this.editor;this.tableSelection=a;this.isHighlightingCells=!0;this.disableHighlightStyle();S(b,this.table,this.tableSelection)}else null==a?this.clearHighlight():(this.tableNodeKey=a.tableKey,this.updateTableTableSelection(a))}setFocusCellForSelection(a,b=!1){let c=this.editor;c.update(()=>{var d=w.$getNodeByKey(this.tableNodeKey);
38
38
  if(!M(d))throw Error("Expected TableNode.");if(!c.getElementByKey(this.tableNodeKey))throw Error("Expected to find TableElement in DOM");var e=a.x;let f=a.y;this.focusCell=a;if(null!==this.anchorCell){let g=ea?(c._window||window).getSelection():null;g&&g.setBaseAndExtent(this.anchorCell.elem,0,this.focusCell.elem,0)}if(!this.isHighlightingCells&&(this.anchorX!==e||this.anchorY!==f||b))this.isHighlightingCells=!0,this.disableHighlightStyle();else if(e===this.focusX&&f===this.focusY)return;this.focusX=
39
39
  e;this.focusY=f;this.isHighlightingCells&&(e=w.$getNearestNodeFromDOMNode(a.elem),null!=this.tableSelection&&null!=this.anchorCellNodeKey&&C(e)&&d.is(T(e))&&(d=e.getKey(),this.tableSelection=this.tableSelection.clone()||ra(),this.focusCellNodeKey=d,this.tableSelection.set(this.tableNodeKey,this.anchorCellNodeKey,this.focusCellNodeKey),w.$setSelection(this.tableSelection),c.dispatchCommand(w.SELECTION_CHANGE_COMMAND,void 0),S(c,this.table,this.tableSelection)))})}setAnchorCellForSelection(a){this.isHighlightingCells=
40
- !1;this.anchorCell=a;this.anchorX=a.x;this.anchorY=a.y;this.editor.update(()=>{var b=w.$getNearestNodeFromDOMNode(a.elem);C(b)&&(b=b.getKey(),this.tableSelection=null!=this.tableSelection?this.tableSelection.clone():ra(),this.anchorCellNodeKey=b)})}formatCells(a){this.editor.update(()=>{let b=w.$getSelection();Q(b)||E(11);let c=w.$createRangeSelection(),d=c.anchor,e=c.focus,f=b.getNodes().filter(C),g=f[0].getFirstChild(),n=w.$isParagraphNode(g)?g.getFormatFlags(a,null):null;f.forEach(p=>{d.set(p.getKey(),
41
- 0,"element");e.set(p.getKey(),p.getChildrenSize(),"element");c.formatText(a,n)});w.$setSelection(b);this.editor.dispatchCommand(w.SELECTION_CHANGE_COMMAND,void 0)})}clearText(){let a=this.editor;a.update(()=>{let b=w.$getNodeByKey(this.tableNodeKey);if(!M(b))throw Error("Expected TableNode.");var c=w.$getSelection();Q(c)||E(11);c=c.getNodes().filter(C);c.length===this.table.columns*this.table.rows?(b.selectPrevious(),b.remove(),w.$getRoot().selectStart()):(c.forEach(d=>{if(w.$isElementNode(d)){let e=
42
- w.$createParagraphNode(),f=w.$createTextNode();e.append(f);d.append(e);d.getChildren().forEach(g=>{g!==e&&g.remove()})}}),S(a,this.table,null),w.$setSelection(null),a.dispatchCommand(w.SELECTION_CHANGE_COMMAND,void 0))})}}function ta(a,b){null!==ua(a)&&E(205);a.__lexicalTableSelection=b}function ua(a){return a.__lexicalTableSelection||null}function va(a){for(;null!=a;){let b=a.nodeName;if("TD"===b||"TH"===b){a=a._cell;if(void 0===a)break;return a}a=a.parentNode}return null}
40
+ !1;this.anchorCell=a;this.anchorX=a.x;this.anchorY=a.y;this.editor.update(()=>{var b=w.$getNearestNodeFromDOMNode(a.elem);C(b)&&(b=b.getKey(),this.tableSelection=null!=this.tableSelection?this.tableSelection.clone():ra(),this.anchorCellNodeKey=b)})}formatCells(a){this.editor.update(()=>{let b=w.$getSelection();Q(b)||D(11);let c=w.$createRangeSelection(),d=c.anchor,e=c.focus,f=b.getNodes().filter(C),g=f[0].getFirstChild(),n=w.$isParagraphNode(g)?g.getFormatFlags(a,null):null;f.forEach(p=>{d.set(p.getKey(),
41
+ 0,"element");e.set(p.getKey(),p.getChildrenSize(),"element");c.formatText(a,n)});w.$setSelection(b);this.editor.dispatchCommand(w.SELECTION_CHANGE_COMMAND,void 0)})}clearText(){let a=this.editor;a.update(()=>{let b=w.$getNodeByKey(this.tableNodeKey);if(!M(b))throw Error("Expected TableNode.");var c=w.$getSelection();Q(c)||D(11);c=c.getNodes().filter(C);c.length===this.table.columns*this.table.rows?(b.selectPrevious(),b.remove(),w.$getRoot().selectStart()):(c.forEach(d=>{if(w.$isElementNode(d)){let e=
42
+ w.$createParagraphNode(),f=w.$createTextNode();e.append(f);d.append(e);d.getChildren().forEach(g=>{g!==e&&g.remove()})}}),S(a,this.table,null),w.$setSelection(null),a.dispatchCommand(w.SELECTION_CHANGE_COMMAND,void 0))})}}function ta(a,b){null!==ua(a)&&D(205);a.__lexicalTableSelection=b}function ua(a){return a.__lexicalTableSelection||null}function va(a){for(;null!=a;){let b=a.nodeName;if("TD"===b||"TH"===b){a=a._cell;if(void 0===a)break;return a}a=a.parentNode}return null}
43
43
  function R(a){let b=[],c={columns:0,domRows:b,rows:0};var d=a.querySelector("tr");let e=a=0;for(b.length=0;null!=d;){var f=d.nodeName;if("TD"===f||"TH"===f){f=d;f={elem:f,hasBackgroundColor:""!==f.style.backgroundColor,highlighted:!1,x:a,y:e};d._cell=f;let g=b[e];void 0===g&&(g=b[e]=[]);g[a]=f}else if(f=d.firstChild,null!=f){d=f;continue}f=d.nextSibling;if(null!=f)a++,d=f;else if(f=d.parentNode,null!=f){d=f.nextSibling;if(null==d)break;e++;a=0}}c.columns=a+1;c.rows=e+1;return c}
44
44
  function S(a,b,c){let d=new Set(c?c.getNodes():[]);wa(b,(e,f)=>{let g=e.elem;d.has(f)?(e.highlighted=!0,xa(a,e)):(e.highlighted=!1,ya(a,e),g.getAttribute("style")||g.removeAttribute("style"))})}function wa(a,b){({domRows:a}=a);for(let c=0;c<a.length;c++){let d=a[c];if(d)for(let e=0;e<d.length;e++){let f=d[e];if(!f)continue;let g=w.$getNearestNodeFromDOMNode(f.elem);null!==g&&b(f,g,{x:e,y:c})}}}function za(a,b){b.disableHighlightStyle();wa(b.table,c=>{c.highlighted=!0;xa(a,c)})}
45
45
  function Aa(a,b){b.enableHighlightStyle();wa(b.table,c=>{let d=c.elem;c.highlighted=!1;ya(a,c);d.getAttribute("style")||d.removeAttribute("style")})}
46
46
  let Ba=(a,b,c,d,e)=>{const f="forward"===e;switch(e){case "backward":case "forward":return c!==(f?a.table.columns-1:0)?(a=b.getCellNodeFromCordsOrThrow(c+(f?1:-1),d,a.table),f?a.selectStart():a.selectEnd()):d!==(f?a.table.rows-1:0)?(a=b.getCellNodeFromCordsOrThrow(f?0:a.table.columns-1,d+(f?1:-1),a.table),f?a.selectStart():a.selectEnd()):f?b.selectNext():b.selectPrevious(),!0;case "up":return 0!==d?b.getCellNodeFromCordsOrThrow(c,d-1,a.table).selectEnd():b.selectPrevious(),!0;case "down":return d!==
47
47
  a.table.rows-1?b.getCellNodeFromCordsOrThrow(c,d+1,a.table).selectStart():b.selectNext(),!0;default:return!1}},Ca=(a,b,c,d,e)=>{const f="forward"===e;switch(e){case "backward":case "forward":return c!==(f?a.table.columns-1:0)&&a.setFocusCellForSelection(b.getDOMCellFromCordsOrThrow(c+(f?1:-1),d,a.table)),!0;case "up":return 0!==d?(a.setFocusCellForSelection(b.getDOMCellFromCordsOrThrow(c,d-1,a.table)),!0):!1;case "down":return d!==a.table.rows-1?(a.setFocusCellForSelection(b.getDOMCellFromCordsOrThrow(c,
48
48
  d+1,a.table)),!0):!1;default:return!1}};function U(a,b){if(w.$isRangeSelection(a)||Q(a)){let c=b.isParentOf(a.anchor.getNode());a=b.isParentOf(a.focus.getNode());return c&&a}return!1}
49
- function xa(a,b){a=b.elem;b=w.$getNearestNodeFromDOMNode(a);C(b)||E(131);null===b.getBackgroundColor()?a.style.setProperty("background-color","rgb(172,206,247)"):a.style.setProperty("background-image","linear-gradient(to right, rgba(172,206,247,0.85), rgba(172,206,247,0.85))");a.style.setProperty("caret-color","transparent")}
50
- function ya(a,b){a=b.elem;b=w.$getNearestNodeFromDOMNode(a);C(b)||E(131);null===b.getBackgroundColor()&&a.style.removeProperty("background-color");a.style.removeProperty("background-image");a.style.removeProperty("caret-color")}function X(a){a=h.$findMatchingParent(a,C);return C(a)?a:null}function T(a){a=h.$findMatchingParent(a,M);return M(a)?a:null}
51
- function Y(a,b,c,d,e){if(("up"===c||"down"===c)&&Ea(a))return!1;var f=w.$getSelection();if(!U(f,d)){if(w.$isRangeSelection(f)){if(f.isCollapsed()&&"backward"===c){e=f.anchor.type;d=f.anchor.offset;if("element"!==e&&("text"!==e||0!==d))return!1;e=f.anchor.getNode();if(!e)return!1;e=h.$findMatchingParent(e,t=>w.$isElementNode(t)&&!t.isInline());if(!e)return!1;e=e.getPreviousSibling();if(!e||!M(e))return!1;Z(b);e.selectEnd();return!0}if(b.shiftKey&&("up"===c||"down"===c))if(b=f.focus.getNode(),w.$isRootOrShadowRoot(b)){if((c=
52
- f.getNodes()[0])&&(c=h.$findMatchingParent(c,C))&&d.isParentOf(c)){b=d.getFirstDescendant();c=d.getLastDescendant();if(!b||!c)return!1;[b]=P(b);[c]=P(c);b=d.getCordsFromCellNode(b,e.table);c=d.getCordsFromCellNode(c,e.table);b=d.getDOMCellFromCordsOrThrow(b.x,b.y,e.table);d=d.getDOMCellFromCordsOrThrow(c.x,c.y,e.table);e.setAnchorCellForSelection(b);e.setFocusCellForSelection(d,!0);return!0}}else{d=h.$findMatchingParent(b,t=>w.$isElementNode(t)&&!t.isInline());if(!d)return!1;d="down"===c?d.getNextSibling():
53
- d.getPreviousSibling();if(M(d)&&e.tableNodeKey===d.getKey()){e=d.getFirstDescendant();d=d.getLastDescendant();if(!e||!d)return!1;[e]=P(e);[d]=P(d);b=f.clone();b.focus.set(("up"===c?e:d).getKey(),"up"===c?0:d.getChildrenSize(),"element");w.$setSelection(b);return!0}}}return!1}if(w.$isRangeSelection(f)&&f.isCollapsed()){let {anchor:t,focus:v}=f;var g=h.$findMatchingParent(t.getNode(),C),n=h.$findMatchingParent(v.getNode(),C);if(!C(g)||!g.is(n))return!1;n=T(g);if(n!==d&&null!=n){var p=a.getElementByKey(n.getKey());
54
- if(null!=p)return e.table=R(p),Y(a,b,c,n,e)}if("backward"===c||"forward"===c){e=t.type;a=t.offset;g=t.getNode();if(!g)return!1;f=f.getNodes();return 1===f.length&&w.$isDecoratorNode(f[0])?!1:Fa(e,a,g,c)?Ga(b,g,d,c):!1}f=a.getElementByKey(g.__key);n=a.getElementByKey(t.key);if(null==n||null==f)return!1;if("element"===t.type)f=n.getBoundingClientRect();else{f=window.getSelection();if(null===f||0===f.rangeCount)return!1;f=f.getRangeAt(0).getBoundingClientRect()}n="up"===c?g.getFirstChild():g.getLastChild();
55
- if(null==n)return!1;a=a.getElementByKey(n.__key);if(null==a)return!1;a=a.getBoundingClientRect();if("up"===c?a.top>f.top-f.height:f.bottom+f.height>a.bottom){Z(b);f=d.getCordsFromCellNode(g,e.table);if(b.shiftKey)d=d.getDOMCellFromCordsOrThrow(f.x,f.y,e.table),e.setAnchorCellForSelection(d),e.setFocusCellForSelection(d,!0);else return Ba(e,d,f.x,f.y,c);return!0}}else if(Q(f)){let {anchor:t,focus:v}=f;p=h.$findMatchingParent(t.getNode(),C);n=h.$findMatchingParent(v.getNode(),C);[g]=f.getNodes();a=
56
- a.getElementByKey(g.getKey());if(!C(p)||!C(n)||!M(g)||null==a)return!1;e.updateTableTableSelection(f);f=R(a);a=d.getCordsFromCellNode(p,f);a=d.getDOMCellFromCordsOrThrow(a.x,a.y,f);e.setAnchorCellForSelection(a);Z(b);if(b.shiftKey)return d=d.getCordsFromCellNode(n,f),Ca(e,g,d.x,d.y,c);n.selectEnd();return!0}return!1}function Z(a){a.preventDefault();a.stopImmediatePropagation();a.stopPropagation()}
49
+ function xa(a,b){a=b.elem;b=w.$getNearestNodeFromDOMNode(a);C(b)||D(131);null===b.getBackgroundColor()?a.style.setProperty("background-color","rgb(172,206,247)"):a.style.setProperty("background-image","linear-gradient(to right, rgba(172,206,247,0.85), rgba(172,206,247,0.85))");a.style.setProperty("caret-color","transparent")}
50
+ function ya(a,b){a=b.elem;b=w.$getNearestNodeFromDOMNode(a);C(b)||D(131);null===b.getBackgroundColor()&&a.style.removeProperty("background-color");a.style.removeProperty("background-image");a.style.removeProperty("caret-color")}function X(a){a=h.$findMatchingParent(a,C);return C(a)?a:null}function T(a){a=h.$findMatchingParent(a,M);return M(a)?a:null}
51
+ function Y(a,b,c,d,e){if(("up"===c||"down"===c)&&Ea(a))return!1;var f=w.$getSelection();if(!U(f,d)){if(w.$isRangeSelection(f)){if(f.isCollapsed()&&"backward"===c){c=f.anchor.type;d=f.anchor.offset;if("element"!==c&&("text"!==c||0!==d))return!1;c=f.anchor.getNode();if(!c)return!1;c=h.$findMatchingParent(c,t=>w.$isElementNode(t)&&!t.isInline());if(!c)return!1;c=c.getPreviousSibling();if(!c||!M(c))return!1;Z(b);c.selectEnd();return!0}if(b.shiftKey&&("up"===c||"down"===c)){a=f.focus.getNode();if(!f.isCollapsed()&&
52
+ ("up"===c&&!f.isBackward()||"down"===c&&f.isBackward())){e=h.$findMatchingParent(a,t=>M(t));C(e)&&(e=h.$findMatchingParent(e,M));if(e!==d||!e)return!1;d="down"===c?e.getNextSibling():e.getPreviousSibling();if(!d)return!1;e=0;"up"===c&&w.$isElementNode(d)&&(e=d.getChildrenSize());a=d;"up"===c&&w.$isElementNode(d)&&(a=(c=d.getLastChild())?c:d,e=w.$isTextNode(a)?a.getTextContentSize():0);c=f.clone();c.focus.set(a.getKey(),e,w.$isTextNode(a)?"text":"element");w.$setSelection(c);Z(b);return!0}if(w.$isRootOrShadowRoot(a)){if((b=
53
+ "up"===c?f.getNodes()[f.getNodes().length-1]:f.getNodes()[0])&&(b=h.$findMatchingParent(b,C))&&d.isParentOf(b)){c=d.getFirstDescendant();b=d.getLastDescendant();if(!c||!b)return!1;[c]=P(c);[b]=P(b);c=d.getCordsFromCellNode(c,e.table);b=d.getCordsFromCellNode(b,e.table);c=d.getDOMCellFromCordsOrThrow(c.x,c.y,e.table);b=d.getDOMCellFromCordsOrThrow(b.x,b.y,e.table);e.setAnchorCellForSelection(c);e.setFocusCellForSelection(b,!0);return!0}}else{d=h.$findMatchingParent(a,t=>w.$isElementNode(t)&&!t.isInline());
54
+ C(d)&&(d=h.$findMatchingParent(d,M));if(!d)return!1;d="down"===c?d.getNextSibling():d.getPreviousSibling();if(M(d)&&e.tableNodeKey===d.getKey()){e=d.getFirstDescendant();a=d.getLastDescendant();if(!e||!a)return!1;[d]=P(e);[e]=P(a);f=f.clone();f.focus.set(("up"===c?d:e).getKey(),"up"===c?0:e.getChildrenSize(),"element");Z(b);w.$setSelection(f);return!0}}}}return!1}if(w.$isRangeSelection(f)&&f.isCollapsed()){let {anchor:t,focus:v}=f;var g=h.$findMatchingParent(t.getNode(),C),n=h.$findMatchingParent(v.getNode(),
55
+ C);if(!C(g)||!g.is(n))return!1;n=T(g);if(n!==d&&null!=n){var p=a.getElementByKey(n.getKey());if(null!=p)return e.table=R(p),Y(a,b,c,n,e)}if("backward"===c||"forward"===c){e=t.type;a=t.offset;g=t.getNode();if(!g)return!1;f=f.getNodes();return 1===f.length&&w.$isDecoratorNode(f[0])?!1:Fa(e,a,g,c)?Ga(b,g,d,c):!1}f=a.getElementByKey(g.__key);n=a.getElementByKey(t.key);if(null==n||null==f)return!1;if("element"===t.type)f=n.getBoundingClientRect();else{f=window.getSelection();if(null===f||0===f.rangeCount)return!1;
56
+ f=f.getRangeAt(0).getBoundingClientRect()}n="up"===c?g.getFirstChild():g.getLastChild();if(null==n)return!1;a=a.getElementByKey(n.__key);if(null==a)return!1;a=a.getBoundingClientRect();if("up"===c?a.top>f.top-f.height:f.bottom+f.height>a.bottom){Z(b);f=d.getCordsFromCellNode(g,e.table);if(b.shiftKey)b=d.getDOMCellFromCordsOrThrow(f.x,f.y,e.table),e.setAnchorCellForSelection(b),e.setFocusCellForSelection(b,!0);else return Ba(e,d,f.x,f.y,c);return!0}}else if(Q(f)){let {anchor:t,focus:v}=f;p=h.$findMatchingParent(t.getNode(),
57
+ C);n=h.$findMatchingParent(v.getNode(),C);[g]=f.getNodes();a=a.getElementByKey(g.getKey());if(!C(p)||!C(n)||!M(g)||null==a)return!1;e.updateTableTableSelection(f);f=R(a);a=d.getCordsFromCellNode(p,f);a=d.getDOMCellFromCordsOrThrow(a.x,a.y,f);e.setAnchorCellForSelection(a);Z(b);if(b.shiftKey)return b=d.getCordsFromCellNode(n,f),Ca(e,g,b.x,b.y,c);n.selectEnd();return!0}return!1}function Z(a){a.preventDefault();a.stopImmediatePropagation();a.stopPropagation()}
57
58
  function Ea(a){return(a=a.getRootElement())?a.hasAttribute("aria-controls")&&"typeahead-menu"===a.getAttribute("aria-controls"):!1}function Fa(a,b,c,d){return"element"===a&&("backward"===d?null===c.getPreviousSibling():null===c.getNextSibling())||Ha(a,b,c,d)}
58
59
  function Ha(a,b,c,d){let e=h.$findMatchingParent(c,f=>w.$isElementNode(f)&&!f.isInline());if(!e)return!1;b="backward"===d?0===b:b===c.getTextContentSize();return"text"===a&&b&&("backward"===d?null===e.getPreviousSibling():null===e.getNextSibling())}
59
60
  function Ga(a,b,c,d){var e=h.$findMatchingParent(b,C);if(!C(e))return!1;let [f,g]=O(c,e,e);e=f[0][0];let n=f[f.length-1][f[0].length-1],{startColumn:p,startRow:t}=g;if("backward"===d?p!==e.startColumn||t!==e.startRow:p!==n.startColumn||t!==n.startRow)return!1;b=Ia(b,d,c);if(!b||M(b))return!1;Z(a);"backward"===d?b.selectEnd():b.selectStart();return!0}
@@ -68,21 +69,22 @@ a:null}getCellNodeFromCordsOrThrow(a,b,c){a=this.getCellNodeFromCords(a,b,c);if(
68
69
  function Oa(a){let b=Pa();a.hasAttribute("data-lexical-row-striping")&&b.setRowStriping(!0);var c=a.querySelector(":scope > colgroup");if(c){a=[];for(let d of c.querySelectorAll(":scope > col")){c=d.style.width;if(!c||!ba.test(c)){a=void 0;break}a.push(parseFloat(c))}a&&b.setColWidths(a)}return{node:b}}function Pa(){return w.$applyNodeReplacement(new Na)}function M(a){return a instanceof Na}exports.$computeTableMap=O;exports.$computeTableMapSkipCellCheck=ma;exports.$createTableCellNode=B;
69
70
  exports.$createTableNode=Pa;exports.$createTableNodeWithDimensions=function(a,b,c=!0){let d=Pa();for(let f=0;f<a;f++){let g=J();for(let n=0;n<b;n++){var e=x.NO_STATUS;"object"===typeof c?(0===f&&c.rows&&(e|=x.ROW),0===n&&c.columns&&(e|=x.COLUMN)):c&&(0===f&&(e|=x.ROW),0===n&&(e|=x.COLUMN));e=B(e);let p=w.$createParagraphNode();p.append(w.$createTextNode());e.append(p);g.append(e)}d.append(g)}return d};exports.$createTableRowNode=J;exports.$createTableSelection=ra;
70
71
  exports.$deleteTableColumn=function(a,b){let c=a.getChildren();for(let e=0;e<c.length;e++){var d=c[e];if(K(d)){d=d.getChildren();if(b>=d.length||0>b)throw Error("Table column target index out of range");d[b].remove()}}return a};
71
- exports.$deleteTableColumn__EXPERIMENTAL=function(){var a=w.$getSelection();w.$isRangeSelection(a)||Q(a)||E(188);var b=a.anchor.getNode();a=a.focus.getNode();let [c,,d]=P(b);var [e]=P(a);let [f,g,n]=O(d,c,e);var {startColumn:p}=g;let {startRow:t,startColumn:v}=n;b=Math.min(p,v);var k=Math.max(p+c.__colSpan-1,v+e.__colSpan-1);a=k-b+1;if(f[0].length===k-b+1)d.selectPrevious(),d.remove();else{var l=f.length;for(let m=0;m<l;m++)for(let r=b;r<=k;r++){let {cell:q,startColumn:u}=f[m][r];u<b?r===b&&q.setColSpan(q.__colSpan-
72
+ exports.$deleteTableColumn__EXPERIMENTAL=function(){var a=w.$getSelection();w.$isRangeSelection(a)||Q(a)||D(188);var b=a.anchor.getNode();a=a.focus.getNode();let [c,,d]=P(b);var [e]=P(a);let [f,g,n]=O(d,c,e);var {startColumn:p}=g;let {startRow:t,startColumn:v}=n;b=Math.min(p,v);var k=Math.max(p+c.__colSpan-1,v+e.__colSpan-1);a=k-b+1;if(f[0].length===k-b+1)d.selectPrevious(),d.remove();else{var l=f.length;for(let m=0;m<l;m++)for(let r=b;r<=k;r++){let {cell:q,startColumn:u}=f[m][r];u<b?r===b&&q.setColSpan(q.__colSpan-
72
73
  Math.min(a,q.__colSpan-(b-u))):u+q.__colSpan-1>k?r===k&&q.setColSpan(q.__colSpan-(k-u+1)):q.remove()}k=f[t];e=p>v?k[p+c.__colSpan]:k[v+e.__colSpan];void 0!==e?({cell:p}=e,N(p)):({cell:p}=v<p?k[v-1]:k[p-1],N(p));if(p=d.getColWidths())p=[...p],p.splice(b,a),d.setColWidths(p)}};
73
- exports.$deleteTableRow__EXPERIMENTAL=function(){var a=w.$getSelection();w.$isRangeSelection(a)||Q(a)||E(188);let [b,c]=a.isBackward()?[a.focus.getNode(),a.anchor.getNode()]:[a.anchor.getNode(),a.focus.getNode()],[d,,e]=P(b);var [f]=P(c);let [g,n,p]=O(e,d,f);({startRow:a}=n);var {startRow:t}=p;f=t+f.__rowSpan-1;if(g.length===f-a+1)e.remove();else{t=g[0].length;var v=g[f+1],k=e.getChildAtIndex(f+1);for(let m=f;m>=a;m--){for(var l=t-1;0<=l;l--){let {cell:r,startRow:q,startColumn:u}=g[m][l];if(u===l&&
74
- (m===a&&q<a&&r.setRowSpan(r.__rowSpan-(q-a)),q>=a&&q+r.__rowSpan-1>f))if(r.setRowSpan(r.__rowSpan-(f-q+1)),null===k&&E(122),0===l)la(k,r);else{let {cell:z}=v[l-1];z.insertAfter(r)}}l=e.getChildAtIndex(m);K(l)||E(206,String(m));l.remove()}void 0!==v?({cell:a}=v[0],N(a)):({cell:a}=g[a-1][0],N(a))}};exports.$findCellNode=X;exports.$findTableNode=T;exports.$getElementForTableNode=function(a,b){a=a.getElementByKey(b.getKey());if(null==a)throw Error("Table Element Not Found");return R(a)};
74
+ exports.$deleteTableRow__EXPERIMENTAL=function(){var a=w.$getSelection();w.$isRangeSelection(a)||Q(a)||D(188);let [b,c]=a.isBackward()?[a.focus.getNode(),a.anchor.getNode()]:[a.anchor.getNode(),a.focus.getNode()],[d,,e]=P(b);var [f]=P(c);let [g,n,p]=O(e,d,f);({startRow:a}=n);var {startRow:t}=p;f=t+f.__rowSpan-1;if(g.length===f-a+1)e.remove();else{t=g[0].length;var v=g[f+1],k=e.getChildAtIndex(f+1);for(let m=f;m>=a;m--){for(var l=t-1;0<=l;l--){let {cell:r,startRow:q,startColumn:u}=g[m][l];if(u===l&&
75
+ (m===a&&q<a&&r.setRowSpan(r.__rowSpan-(q-a)),q>=a&&q+r.__rowSpan-1>f))if(r.setRowSpan(r.__rowSpan-(f-q+1)),null===k&&D(122),0===l)la(k,r);else{let {cell:z}=v[l-1];z.insertAfter(r)}}l=e.getChildAtIndex(m);K(l)||D(206,String(m));l.remove()}void 0!==v?({cell:a}=v[0],N(a)):({cell:a}=g[a-1][0],N(a))}};exports.$findCellNode=X;exports.$findTableNode=T;exports.$getElementForTableNode=function(a,b){a=a.getElementByKey(b.getKey());if(null==a)throw Error("Table Element Not Found");return R(a)};
75
76
  exports.$getNodeTriplet=P;exports.$getTableCellNodeFromLexicalNode=function(a){a=h.$findMatchingParent(a,b=>C(b));return C(a)?a:null};exports.$getTableCellNodeRect=na;exports.$getTableColumnIndexFromTableCellNode=function(a){return ha(a).getChildren().findIndex(b=>b.is(a))};exports.$getTableNodeFromLexicalNodeOrThrow=ia;exports.$getTableRowIndexFromTableCellNode=function(a){let b=ha(a);return ia(b).getChildren().findIndex(c=>c.is(b))};exports.$getTableRowNodeFromTableCellNodeOrThrow=ha;
76
- exports.$insertTableColumn=function(a,b,c=!0,d,e){let f=a.getChildren(),g=[];for(let t=0;t<f.length;t++){let v=f[t];if(K(v))for(let k=0;k<d;k++){var n=v.getChildren();if(b>=n.length||0>b)throw Error("Table column target index out of range");n=n[b];C(n)||E(12);let {left:l,right:m}=ja(n,e);var p=x.NO_STATUS;if(l&&l.hasHeaderState(x.ROW)||m&&m.hasHeaderState(x.ROW))p|=x.ROW;p=B(p);p.append(w.$createParagraphNode());g.push({newTableCell:p,targetCell:n})}}g.forEach(({newTableCell:t,targetCell:v})=>{c?
77
+ exports.$insertTableColumn=function(a,b,c=!0,d,e){let f=a.getChildren(),g=[];for(let t=0;t<f.length;t++){let v=f[t];if(K(v))for(let k=0;k<d;k++){var n=v.getChildren();if(b>=n.length||0>b)throw Error("Table column target index out of range");n=n[b];C(n)||D(12);let {left:l,right:m}=ja(n,e);var p=x.NO_STATUS;if(l&&l.hasHeaderState(x.ROW)||m&&m.hasHeaderState(x.ROW))p|=x.ROW;p=B(p);p.append(w.$createParagraphNode());g.push({newTableCell:p,targetCell:n})}}g.forEach(({newTableCell:t,targetCell:v})=>{c?
77
78
  v.insertAfter(t):v.insertBefore(t)});return a};
78
- exports.$insertTableColumn__EXPERIMENTAL=function(a=!0){function b(k=x.NO_STATUS){k=B(k).append(w.$createParagraphNode());null===t&&(t=k);return k}var c=w.$getSelection();w.$isRangeSelection(c)||Q(c)||E(188);var d=c.anchor.getNode();c=c.focus.getNode();[d]=P(d);let [e,,f]=P(c),[g,n,p]=O(f,e,d);d=g.length;c=a?Math.max(n.startColumn,p.startColumn):Math.min(n.startColumn,p.startColumn);a=a?c+e.__colSpan-1:c-1;c=f.getFirstChild();K(c)||E(120);let t=null;var v=c;a:for(c=0;c<d;c++){0!==c&&(v=v.getNextSibling(),
79
- K(v)||E(121));let k=g[c],l=ka(k[0>a?0:a].cell.__headerState,x.ROW);if(0>a){la(v,b(l));continue}let {cell:m,startColumn:r,startRow:q}=k[a];if(r+m.__colSpan-1<=a){let u=m,z=q,A=a;for(;z!==c&&1<u.__rowSpan;)if(A-=m.__colSpan,0<=A){let {cell:D,startRow:G}=k[A];u=D;z=G}else{v.append(b(l));continue a}u.insertAfter(b(l))}else m.setColSpan(m.__colSpan+1)}null!==t&&N(t);if(d=f.getColWidths())d=[...d],a=0>a?0:a,d.splice(a,0,d[a]),f.setColWidths(d)};
80
- exports.$insertTableRow=function(a,b,c=!0,d,e){var f=a.getChildren();if(b>=f.length||0>b)throw Error("Table row target index out of range");b=f[b];if(K(b))for(f=0;f<d;f++){let n=b.getChildren(),p=n.length,t=J();for(let v=0;v<p;v++){var g=n[v];C(g)||E(12);let {above:k,below:l}=ja(g,e);g=x.NO_STATUS;let m=k&&k.getWidth()||l&&l.getWidth()||void 0;if(k&&k.hasHeaderState(x.COLUMN)||l&&l.hasHeaderState(x.COLUMN))g|=x.COLUMN;g=B(g,1,m);g.append(w.$createParagraphNode());t.append(g)}c?b.insertAfter(t):b.insertBefore(t)}else throw Error("Row before insertion index does not exist.");
79
+ exports.$insertTableColumn__EXPERIMENTAL=function(a=!0){function b(k=x.NO_STATUS){k=B(k).append(w.$createParagraphNode());null===t&&(t=k);return k}var c=w.$getSelection();w.$isRangeSelection(c)||Q(c)||D(188);var d=c.anchor.getNode();c=c.focus.getNode();[d]=P(d);let [e,,f]=P(c),[g,n,p]=O(f,e,d);d=g.length;c=a?Math.max(n.startColumn,p.startColumn):Math.min(n.startColumn,p.startColumn);a=a?c+e.__colSpan-1:c-1;c=f.getFirstChild();K(c)||D(120);let t=null;var v=c;a:for(c=0;c<d;c++){0!==c&&(v=v.getNextSibling(),
80
+ K(v)||D(121));let k=g[c],l=ka(k[0>a?0:a].cell.__headerState,x.ROW);if(0>a){la(v,b(l));continue}let {cell:m,startColumn:r,startRow:q}=k[a];if(r+m.__colSpan-1<=a){let u=m,z=q,A=a;for(;z!==c&&1<u.__rowSpan;)if(A-=m.__colSpan,0<=A){let {cell:E,startRow:G}=k[A];u=E;z=G}else{v.append(b(l));continue a}u.insertAfter(b(l))}else m.setColSpan(m.__colSpan+1)}null!==t&&N(t);if(d=f.getColWidths())d=[...d],a=0>a?0:a,d.splice(a,0,d[a]),f.setColWidths(d);return t};
81
+ exports.$insertTableRow=function(a,b,c=!0,d,e){var f=a.getChildren();if(b>=f.length||0>b)throw Error("Table row target index out of range");b=f[b];if(K(b))for(f=0;f<d;f++){let n=b.getChildren(),p=n.length,t=J();for(let v=0;v<p;v++){var g=n[v];C(g)||D(12);let {above:k,below:l}=ja(g,e);g=x.NO_STATUS;let m=k&&k.getWidth()||l&&l.getWidth()||void 0;if(k&&k.hasHeaderState(x.COLUMN)||l&&l.hasHeaderState(x.COLUMN))g|=x.COLUMN;g=B(g,1,m);g.append(w.$createParagraphNode());t.append(g)}c?b.insertAfter(t):b.insertBefore(t)}else throw Error("Row before insertion index does not exist.");
81
82
  return a};
82
- exports.$insertTableRow__EXPERIMENTAL=function(a=!0){var b=w.$getSelection();w.$isRangeSelection(b)||Q(b)||E(188);b=b.focus.getNode();let [c,,d]=P(b),[e,f]=O(d,c,c);b=e[0].length;var {startRow:g}=f;if(a){a=g+c.__rowSpan-1;var n=e[a];g=J();for(var p=0;p<b;p++){let {cell:v,startRow:k}=n[p];if(k+v.__rowSpan-1<=a){var t=ka(n[p].cell.__headerState,x.COLUMN);g.append(B(t).append(w.$createParagraphNode()))}else v.setRowSpan(v.__rowSpan+1)}b=d.getChildAtIndex(a);K(b)||E(145);b.insertAfter(g)}else{n=e[g];
83
- a=J();for(p=0;p<b;p++){let {cell:v,startRow:k}=n[p];k===g?(t=ka(n[p].cell.__headerState,x.COLUMN),a.append(B(t).append(w.$createParagraphNode()))):v.setRowSpan(v.__rowSpan+1)}b=d.getChildAtIndex(g);K(b)||E(145);b.insertBefore(a)}};exports.$isTableCellNode=C;exports.$isTableNode=M;exports.$isTableRowNode=K;exports.$isTableSelection=Q;exports.$removeTableRowAtIndex=function(a,b){let c=a.getChildren();if(b>=c.length||0>b)throw Error("Expected table cell to be inside of table row.");c[b].remove();return a};
84
- exports.$unmergeCell=function(){var a=w.$getSelection();w.$isRangeSelection(a)||Q(a)||E(188);a=a.anchor.getNode();let [b,c,d]=P(a);a=b.__colSpan;let e=b.__rowSpan;if(1!==a||1!==e){var [f,g]=O(d,b,b),{startColumn:n,startRow:p}=g,t=b.__headerState&x.COLUMN,v=Array.from({length:a},(u,z)=>{u=t;for(let A=0;0!==u&&A<f.length;A++)u&=f[A][z+n].cell.__headerState;return u}),k=b.__headerState&x.ROW,l=Array.from({length:e},(u,z)=>{u=k;for(let A=0;0!==u&&A<f[0].length;A++)u&=f[z+p][A].cell.__headerState;return u});
85
- if(1<a){for(var m=1;m<a;m++)b.insertAfter(B(v[m]|l[0]).append(w.$createParagraphNode()));b.setColSpan(1)}if(1<e){let u;for(m=1;m<e;m++){var r=p+m;let z=f[r];u=(u||c).getNextSibling();K(u)||E(125);var q=null;for(let A=0;A<n;A++){let D=z[A],G=D.cell;D.startRow===r&&(q=G);1<G.__colSpan&&(A+=G.__colSpan-1)}if(null===q)for(q=a-1;0<=q;q--)la(u,B(v[q]|l[m]).append(w.$createParagraphNode()));else for(r=a-1;0<=r;r--)q.insertAfter(B(v[r]|l[m]).append(w.$createParagraphNode()))}b.setRowSpan(1)}}};
83
+ exports.$insertTableRow__EXPERIMENTAL=function(a=!0){var b=w.$getSelection();w.$isRangeSelection(b)||Q(b)||D(188);b=b.focus.getNode();let [c,,d]=P(b),[e,f]=O(d,c,c);b=e[0].length;var {startRow:g}=f;if(a){a=g+c.__rowSpan-1;var n=e[a];g=J();for(var p=0;p<b;p++){let {cell:v,startRow:k}=n[p];if(k+v.__rowSpan-1<=a){var t=ka(n[p].cell.__headerState,x.COLUMN);g.append(B(t).append(w.$createParagraphNode()))}else v.setRowSpan(v.__rowSpan+1)}b=d.getChildAtIndex(a);K(b)||D(145);b.insertAfter(g);b=g}else{n=e[g];
84
+ a=J();for(p=0;p<b;p++){let {cell:v,startRow:k}=n[p];k===g?(t=ka(n[p].cell.__headerState,x.COLUMN),a.append(B(t).append(w.$createParagraphNode()))):v.setRowSpan(v.__rowSpan+1)}b=d.getChildAtIndex(g);K(b)||D(145);b.insertBefore(a);b=a}return b};exports.$isTableCellNode=C;exports.$isTableNode=M;exports.$isTableRowNode=K;exports.$isTableSelection=Q;
85
+ exports.$removeTableRowAtIndex=function(a,b){let c=a.getChildren();if(b>=c.length||0>b)throw Error("Expected table cell to be inside of table row.");c[b].remove();return a};
86
+ exports.$unmergeCell=function(){var a=w.$getSelection();w.$isRangeSelection(a)||Q(a)||D(188);a=a.anchor.getNode();let [b,c,d]=P(a);a=b.__colSpan;let e=b.__rowSpan;if(1!==a||1!==e){var [f,g]=O(d,b,b),{startColumn:n,startRow:p}=g,t=b.__headerState&x.COLUMN,v=Array.from({length:a},(u,z)=>{u=t;for(let A=0;0!==u&&A<f.length;A++)u&=f[A][z+n].cell.__headerState;return u}),k=b.__headerState&x.ROW,l=Array.from({length:e},(u,z)=>{u=k;for(let A=0;0!==u&&A<f[0].length;A++)u&=f[z+p][A].cell.__headerState;return u});
87
+ if(1<a){for(var m=1;m<a;m++)b.insertAfter(B(v[m]|l[0]).append(w.$createParagraphNode()));b.setColSpan(1)}if(1<e){let u;for(m=1;m<e;m++){var r=p+m;let z=f[r];u=(u||c).getNextSibling();K(u)||D(125);var q=null;for(let A=0;A<n;A++){let E=z[A],G=E.cell;E.startRow===r&&(q=G);1<G.__colSpan&&(A+=G.__colSpan-1)}if(null===q)for(q=a-1;0<=q;q--)la(u,B(v[q]|l[m]).append(w.$createParagraphNode()));else for(r=a-1;0<=r;r--)q.insertAfter(B(v[r]|l[m]).append(w.$createParagraphNode()))}b.setRowSpan(1)}}};
86
88
  exports.INSERT_TABLE_COMMAND=da;exports.TableCellHeaderStates=x;exports.TableCellNode=y;exports.TableNode=Na;exports.TableObserver=sa;exports.TableRowNode=I;
87
89
  exports.applyTableHandlers=function(a,b,c,d){function e(k){k=a.getCordsFromCellNode(k,g.table);return a.getDOMCellFromCordsOrThrow(k.x,k.y,g.table)}let f=c.getRootElement();if(null===f)throw Error("No root element.");let g=new sa(c,a.getKey()),n=c._window||window;ta(b,g);g.listenersToRemove.add(()=>{var k=g;ua(b)===k&&delete b.__lexicalTableSelection});let p=()=>{const k=()=>{g.isSelecting=!1;n.removeEventListener("mouseup",k);n.removeEventListener("mousemove",l)},l=m=>{setTimeout(()=>{if(1!==(m.buttons&
88
90
  1)&&g.isSelecting)g.isSelecting=!1,n.removeEventListener("mouseup",k),n.removeEventListener("mousemove",l);else{var r=va(m.target);null===r||g.anchorX===r.x&&g.anchorY===r.y||(m.preventDefault(),g.setFocusCellForSelection(r))}},0)};return{onMouseMove:l,onMouseUp:k}};b.addEventListener("mousedown",k=>{setTimeout(()=>{if(0===k.button&&n){var l=va(k.target);null!==l&&(Z(k),g.setAnchorCellForSelection(l));var {onMouseUp:m,onMouseMove:r}=p();g.isSelecting=!0;n.addEventListener("mouseup",m,g.listenerOptions);
@@ -92,12 +94,12 @@ h.$findMatchingParent(l.anchor.getNode(),q=>C(q));if(!C(m))return!1;var r=l.anch
92
94
  w.DELETE_CHARACTER_COMMAND].forEach(k=>{g.listenersToRemove.add(c.registerCommand(k,t(k),w.COMMAND_PRIORITY_CRITICAL))});let v=k=>{const l=w.$getSelection();if(!Q(l)&&!w.$isRangeSelection(l))return!1;const m=a.isParentOf(l.anchor.getNode()),r=a.isParentOf(l.focus.getNode());if(m!==r){k=m?"focus":"anchor";const {key:q,offset:u,type:z}=l[k];a[l[m?"anchor":"focus"].isBefore(l[k])?"selectPrevious":"selectNext"]()[k].set(q,u,z);return!1}return Q(l)?(k&&(k.preventDefault(),k.stopPropagation()),g.clearText(),
93
95
  !0):!1};g.listenersToRemove.add(c.registerCommand(w.KEY_BACKSPACE_COMMAND,v,w.COMMAND_PRIORITY_CRITICAL));g.listenersToRemove.add(c.registerCommand(w.KEY_DELETE_COMMAND,v,w.COMMAND_PRIORITY_CRITICAL));g.listenersToRemove.add(c.registerCommand(w.CUT_COMMAND,k=>{let l=w.$getSelection();if(l){if(!Q(l)&&!w.$isRangeSelection(l))return!1;void aa.copyToClipboard(c,h.objectKlassEquals(k,ClipboardEvent)?k:null,aa.$getClipboardDataFromSelection(l));k=v(k);return w.$isRangeSelection(l)?(l.removeText(),!0):k}return!1},
94
96
  w.COMMAND_PRIORITY_CRITICAL));g.listenersToRemove.add(c.registerCommand(w.FORMAT_TEXT_COMMAND,k=>{let l=w.$getSelection();if(!U(l,a))return!1;if(Q(l))return g.formatCells(k),!0;w.$isRangeSelection(l)&&(k=h.$findMatchingParent(l.anchor.getNode(),m=>C(m)),C(k));return!1},w.COMMAND_PRIORITY_CRITICAL));g.listenersToRemove.add(c.registerCommand(w.FORMAT_ELEMENT_COMMAND,k=>{var l=w.$getSelection();if(!Q(l)||!U(l,a))return!1;var m=l.anchor.getNode();l=l.focus.getNode();if(!C(m)||!C(l))return!1;let [r,q,
95
- u]=O(a,m,l);m=Math.max(q.startRow,u.startRow);l=Math.max(q.startColumn,u.startColumn);var z=Math.min(q.startRow,u.startRow);let A=Math.min(q.startColumn,u.startColumn);for(;z<=m;z++)for(let G=A;G<=l;G++){var D=r[z][G].cell;D.setFormat(k);D=D.getChildren();for(let L=0;L<D.length;L++){let H=D[L];w.$isElementNode(H)&&!H.isInline()&&H.setFormat(k)}}return!0},w.COMMAND_PRIORITY_CRITICAL));g.listenersToRemove.add(c.registerCommand(w.CONTROLLED_TEXT_INSERTION_COMMAND,k=>{var l=w.$getSelection();if(!U(l,
97
+ u]=O(a,m,l);m=Math.max(q.startRow,u.startRow);l=Math.max(q.startColumn,u.startColumn);var z=Math.min(q.startRow,u.startRow);let A=Math.min(q.startColumn,u.startColumn);for(;z<=m;z++)for(let G=A;G<=l;G++){var E=r[z][G].cell;E.setFormat(k);E=E.getChildren();for(let L=0;L<E.length;L++){let H=E[L];w.$isElementNode(H)&&!H.isInline()&&H.setFormat(k)}}return!0},w.COMMAND_PRIORITY_CRITICAL));g.listenersToRemove.add(c.registerCommand(w.CONTROLLED_TEXT_INSERTION_COMMAND,k=>{var l=w.$getSelection();if(!U(l,
96
98
  a))return!1;if(Q(l))g.clearHighlight();else if(w.$isRangeSelection(l)){let m=h.$findMatchingParent(l.anchor.getNode(),r=>C(r));if(!C(m))return!1;if("string"===typeof k&&(l=Ka(c,l,a)))return Ja(l,a,[w.$createTextNode(k)]),!0}return!1},w.COMMAND_PRIORITY_CRITICAL));d&&g.listenersToRemove.add(c.registerCommand(w.KEY_TAB_COMMAND,k=>{var l=w.$getSelection();if(!w.$isRangeSelection(l)||!l.isCollapsed()||!U(l,a))return!1;l=X(l.anchor.getNode());if(null===l)return!1;Z(k);l=a.getCordsFromCellNode(l,g.table);
97
99
  Ba(g,a,l.x,l.y,k.shiftKey?"backward":"forward");return!0},w.COMMAND_PRIORITY_CRITICAL));g.listenersToRemove.add(c.registerCommand(w.FOCUS_COMMAND,()=>a.isSelected(),w.COMMAND_PRIORITY_HIGH));g.listenersToRemove.add(c.registerCommand(w.SELECTION_INSERT_CLIPBOARD_NODES_COMMAND,k=>{let {nodes:l,selection:m}=k;k=m.getStartEndPoints();var r=Q(m);r=w.$isRangeSelection(m)&&null!==h.$findMatchingParent(m.anchor.getNode(),H=>C(H))&&null!==h.$findMatchingParent(m.focus.getNode(),H=>C(H))||r;if(1!==l.length||
98
- !M(l[0])||!r||null===k)return!1;var [q]=k,u=l[0];k=u.getChildren();r=u.getFirstChildOrThrow().getChildrenSize();u=u.getChildrenSize();var z=h.$findMatchingParent(q.getNode(),H=>C(H)),A=z&&h.$findMatchingParent(z,H=>K(H)),D=A&&h.$findMatchingParent(A,H=>M(H));if(!C(z)||!K(A)||!M(D))return!1;q=A.getIndexWithinParent();var G=Math.min(D.getChildrenSize()-1,q+u-1);u=z.getIndexWithinParent();z=Math.min(A.getChildrenSize()-1,u+r-1);r=Math.min(u,z);A=Math.min(q,G);u=Math.max(u,z);q=Math.max(q,G);D=D.getChildren();
99
- for(G=0;A<=q;A++){z=D[A];if(!K(z))return!1;var L=k[G];if(!K(L))return!1;z=z.getChildren();L=L.getChildren();let H=0;for(let V=r;V<=u;V++){let oa=z[V];if(!C(oa))return!1;let Da=L[H];if(!C(Da))return!1;let Qa=oa.getChildren();Da.getChildren().forEach(W=>{w.$isTextNode(W)&&w.$createParagraphNode().append(W);oa.append(W)});Qa.forEach(W=>W.remove());H++}G++}return!0},w.COMMAND_PRIORITY_CRITICAL));g.listenersToRemove.add(c.registerCommand(w.SELECTION_CHANGE_COMMAND,()=>{let k=w.$getSelection(),l=w.$getPreviousSelection();
100
- if(w.$isRangeSelection(k)){let {anchor:z,focus:A}=k;var m=z.getNode(),r=A.getNode(),q=X(m),u=X(r);let D=!(!q||!a.is(T(q))),G=!(!u||!a.is(T(u)));m=D!==G;let L=D&&G;r=k.isBackward();m?(m=k.clone(),G?([u]=O(a,u,u),q=u[0][0].cell,u=u[u.length-1].at(-1).cell,m.focus.set(r?q.getKey():u.getKey(),r?q.getChildrenSize():u.getChildrenSize(),"element")):D&&([u]=O(a,q,q),q=u[0][0].cell,u=u[u.length-1].at(-1).cell,m.anchor.set(r?u.getKey():q.getKey(),r?u.getChildrenSize():0,"element")),w.$setSelection(m),za(c,
100
+ !M(l[0])||!r||null===k)return!1;var [q]=k,u=l[0];k=u.getChildren();r=u.getFirstChildOrThrow().getChildrenSize();u=u.getChildrenSize();var z=h.$findMatchingParent(q.getNode(),H=>C(H)),A=z&&h.$findMatchingParent(z,H=>K(H)),E=A&&h.$findMatchingParent(A,H=>M(H));if(!C(z)||!K(A)||!M(E))return!1;q=A.getIndexWithinParent();var G=Math.min(E.getChildrenSize()-1,q+u-1);u=z.getIndexWithinParent();z=Math.min(A.getChildrenSize()-1,u+r-1);r=Math.min(u,z);A=Math.min(q,G);u=Math.max(u,z);q=Math.max(q,G);E=E.getChildren();
101
+ for(G=0;A<=q;A++){z=E[A];if(!K(z))return!1;var L=k[G];if(!K(L))return!1;z=z.getChildren();L=L.getChildren();let H=0;for(let V=r;V<=u;V++){let oa=z[V];if(!C(oa))return!1;let Da=L[H];if(!C(Da))return!1;let Qa=oa.getChildren();Da.getChildren().forEach(W=>{w.$isTextNode(W)&&w.$createParagraphNode().append(W);oa.append(W)});Qa.forEach(W=>W.remove());H++}G++}return!0},w.COMMAND_PRIORITY_CRITICAL));g.listenersToRemove.add(c.registerCommand(w.SELECTION_CHANGE_COMMAND,()=>{let k=w.$getSelection(),l=w.$getPreviousSelection();
102
+ if(w.$isRangeSelection(k)){let {anchor:z,focus:A}=k;var m=z.getNode(),r=A.getNode(),q=X(m),u=X(r);let E=!(!q||!a.is(T(q))),G=!(!u||!a.is(T(u)));m=E!==G;let L=E&&G;r=k.isBackward();m?(m=k.clone(),G?([u]=O(a,u,u),q=u[0][0].cell,u=u[u.length-1].at(-1).cell,m.focus.set(r?q.getKey():u.getKey(),r?q.getChildrenSize():u.getChildrenSize(),"element")):E&&([u]=O(a,q,q),q=u[0][0].cell,u=u[u.length-1].at(-1).cell,m.anchor.set(r?u.getKey():q.getKey(),r?u.getChildrenSize():0,"element")),w.$setSelection(m),za(c,
101
103
  g)):L&&!q.is(u)&&(g.setAnchorCellForSelection(e(q)),g.setFocusCellForSelection(e(u),!0),g.isSelecting||setTimeout(()=>{let {onMouseUp:H,onMouseMove:V}=p();g.isSelecting=!0;n.addEventListener("mouseup",H);n.addEventListener("mousemove",V)},0))}else k&&Q(k)&&k.is(l)&&k.tableKey===a.getKey()&&(r=ea?(c._window||window).getSelection():null)&&r.anchorNode&&r.focusNode&&(m=(m=w.$getNearestNodeFromDOMNode(r.focusNode))&&!a.is(T(m)),q=(q=w.$getNearestNodeFromDOMNode(r.anchorNode))&&a.is(T(q)),m&&q&&0<r.rangeCount&&
102
104
  (m=w.$createRangeSelectionFromDom(r,c)))&&(m.anchor.set(a.getKey(),k.isBackward()?a.getChildrenSize():0,"element"),r.removeAllRanges(),w.$setSelection(m));if(k&&!k.is(l)&&(Q(k)||Q(l))&&g.tableSelection&&!g.tableSelection.is(l))return Q(k)&&k.tableKey===g.tableNodeKey?g.updateTableTableSelection(k):!Q(k)&&Q(l)&&l.tableKey===g.tableNodeKey&&g.updateTableTableSelection(null),!1;g.hasHijackedSelectionStyles&&!a.isSelected()?Aa(c,g):!g.hasHijackedSelectionStyles&&a.isSelected()&&za(c,g);return!1},w.COMMAND_PRIORITY_CRITICAL));
103
105
  g.listenersToRemove.add(c.registerCommand(w.INSERT_PARAGRAPH_COMMAND,()=>{var k=w.$getSelection();return w.$isRangeSelection(k)&&k.isCollapsed()&&U(k,a)?(k=Ka(c,k,a))?(Ja(k,a),!0):!1:!1},w.COMMAND_PRIORITY_CRITICAL));return g};exports.getDOMCellFromTarget=va;exports.getTableObserverFromTableElement=ua
@@ -6,4 +6,4 @@
6
6
  *
7
7
  */
8
8
 
9
- import{addClassNamesToElement as e,$findMatchingParent as t,removeClassNamesFromElement as n,objectKlassEquals as o,isHTMLElement as r}from"@lexical/utils";import{ElementNode as l,$createParagraphNode as s,$isElementNode as i,$isLineBreakNode as c,$isTextNode as a,$applyNodeReplacement as h,createCommand as u,$createTextNode as d,$getSelection as g,$isRangeSelection as f,$createPoint as p,$isParagraphNode as m,$normalizeSelection__EXPERIMENTAL as C,$getNodeByKey as _,isCurrentlyReadOnlyMode as S,TEXT_TYPE_TO_FORMAT as w,$setSelection as b,SELECTION_CHANGE_COMMAND as y,$getNearestNodeFromDOMNode as N,$createRangeSelection as x,$getRoot as T,KEY_ARROW_DOWN_COMMAND as v,COMMAND_PRIORITY_HIGH as O,KEY_ARROW_UP_COMMAND as E,KEY_ARROW_LEFT_COMMAND as R,KEY_ARROW_RIGHT_COMMAND as M,KEY_ESCAPE_COMMAND as F,DELETE_WORD_COMMAND as K,DELETE_LINE_COMMAND as k,DELETE_CHARACTER_COMMAND as A,COMMAND_PRIORITY_CRITICAL as H,KEY_BACKSPACE_COMMAND as B,KEY_DELETE_COMMAND as P,CUT_COMMAND as D,FORMAT_TEXT_COMMAND as W,FORMAT_ELEMENT_COMMAND as L,CONTROLLED_TEXT_INSERTION_COMMAND as I,KEY_TAB_COMMAND as U,FOCUS_COMMAND as z,SELECTION_INSERT_CLIPBOARD_NODES_COMMAND as Y,$getPreviousSelection as X,$createRangeSelectionFromDom as $,INSERT_PARAGRAPH_COMMAND as J,$isRootOrShadowRoot as j,$isDecoratorNode as q}from"lexical";import{copyToClipboard as G,$getClipboardDataFromSelection as Q}from"@lexical/clipboard";const V=/^(\d+(?:\.\d+)?)px$/,Z={BOTH:3,COLUMN:2,NO_STATUS:0,ROW:1};class ee extends l{static getType(){return"tablecell"}static clone(e){return new ee(e.__headerState,e.__colSpan,e.__width,e.__key)}afterCloneFrom(e){super.afterCloneFrom(e),this.__rowSpan=e.__rowSpan,this.__backgroundColor=e.__backgroundColor}static importDOM(){return{td:e=>({conversion:te,priority:0}),th:e=>({conversion:te,priority:0})}}static importJSON(e){const t=e.colSpan||1,n=e.rowSpan||1;return ne(e.headerState,t,e.width||void 0).setRowSpan(n).setBackgroundColor(e.backgroundColor||null)}constructor(e=Z.NO_STATUS,t=1,n,o){super(o),this.__colSpan=t,this.__rowSpan=1,this.__headerState=e,this.__width=n,this.__backgroundColor=null}createDOM(t){const n=document.createElement(this.getTag());return this.__width&&(n.style.width=`${this.__width}px`),this.__colSpan>1&&(n.colSpan=this.__colSpan),this.__rowSpan>1&&(n.rowSpan=this.__rowSpan),null!==this.__backgroundColor&&(n.style.backgroundColor=this.__backgroundColor),e(n,t.theme.tableCell,this.hasHeader()&&t.theme.tableCellHeader),n}exportDOM(e){const{element:t}=super.exportDOM(e);if(t){const e=t;e.style.border="1px solid black",this.__colSpan>1&&(e.colSpan=this.__colSpan),this.__rowSpan>1&&(e.rowSpan=this.__rowSpan),e.style.width=`${this.getWidth()||75}px`,e.style.verticalAlign="top",e.style.textAlign="start";const n=this.getBackgroundColor();null!==n?e.style.backgroundColor=n:this.hasHeader()&&(e.style.backgroundColor="#f2f3f5")}return{element:t}}exportJSON(){return{...super.exportJSON(),backgroundColor:this.getBackgroundColor(),colSpan:this.__colSpan,headerState:this.__headerState,rowSpan:this.__rowSpan,type:"tablecell",width:this.getWidth()}}getColSpan(){return this.getLatest().__colSpan}setColSpan(e){const t=this.getWritable();return t.__colSpan=e,t}getRowSpan(){return this.getLatest().__rowSpan}setRowSpan(e){const t=this.getWritable();return t.__rowSpan=e,t}getTag(){return this.hasHeader()?"th":"td"}setHeaderStyles(e,t=Z.BOTH){const n=this.getWritable();return n.__headerState=e&t|n.__headerState&~t,n}getHeaderStyles(){return this.getLatest().__headerState}setWidth(e){const t=this.getWritable();return t.__width=e,t}getWidth(){return this.getLatest().__width}getBackgroundColor(){return this.getLatest().__backgroundColor}setBackgroundColor(e){const t=this.getWritable();return t.__backgroundColor=e,t}toggleHeaderStyle(e){const t=this.getWritable();return(t.__headerState&e)===e?t.__headerState-=e:t.__headerState+=e,t}hasHeaderState(e){return(this.getHeaderStyles()&e)===e}hasHeader(){return this.getLatest().__headerState!==Z.NO_STATUS}updateDOM(e){return e.__headerState!==this.__headerState||e.__width!==this.__width||e.__colSpan!==this.__colSpan||e.__rowSpan!==this.__rowSpan||e.__backgroundColor!==this.__backgroundColor}isShadowRoot(){return!0}collapseAtStart(){return!0}canBeEmpty(){return!1}canIndent(){return!1}}function te(e){const t=e,n=e.nodeName.toLowerCase();let o;V.test(t.style.width)&&(o=parseFloat(t.style.width));const r=ne("th"===n?Z.ROW:Z.NO_STATUS,t.colSpan,o);r.__rowSpan=t.rowSpan;const l=t.style.backgroundColor;""!==l&&(r.__backgroundColor=l);const h=t.style,u=h.textDecoration.split(" "),d="700"===h.fontWeight||"bold"===h.fontWeight,g=u.includes("line-through"),f="italic"===h.fontStyle,p=u.includes("underline");return{after:e=>(0===e.length&&e.push(s()),e),forChild:(e,t)=>{if(oe(t)&&!i(e)){const t=s();return c(e)&&"\n"===e.getTextContent()?null:(a(e)&&(d&&e.toggleFormat("bold"),g&&e.toggleFormat("strikethrough"),f&&e.toggleFormat("italic"),p&&e.toggleFormat("underline")),t.append(e),t)}return e},node:r}}function ne(e,t=1,n){return h(new ee(e,t,n))}function oe(e){return e instanceof ee}const re=u("INSERT_TABLE_COMMAND");function le(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var se=le((function(e){const t=new URLSearchParams;t.append("code",e);for(let e=1;e<arguments.length;e++)t.append("v",arguments[e]);throw Error(`Minified Lexical error #${e}; visit https://lexical.dev/docs/error?${t} for the full message or use the non-minified dev environment for full errors and additional helpful warnings.`)}));const ie="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement;class ce extends l{static getType(){return"tablerow"}static clone(e){return new ce(e.__height,e.__key)}static importDOM(){return{tr:e=>({conversion:ae,priority:0})}}static importJSON(e){return he(e.height)}constructor(e,t){super(t),this.__height=e}exportJSON(){return{...super.exportJSON(),...this.getHeight()&&{height:this.getHeight()},type:"tablerow",version:1}}createDOM(t){const n=document.createElement("tr");return this.__height&&(n.style.height=`${this.__height}px`),e(n,t.theme.tableRow),n}isShadowRoot(){return!0}setHeight(e){return this.getWritable().__height=e,this.__height}getHeight(){return this.getLatest().__height}updateDOM(e){return e.__height!==this.__height}canBeEmpty(){return!1}canIndent(){return!1}}function ae(e){const t=e;let n;return V.test(t.style.height)&&(n=parseFloat(t.style.height)),{node:he(n)}}function he(e){return h(new ce(e))}function ue(e){return e instanceof ce}function de(e,t,n=!0){const o=gt();for(let r=0;r<e;r++){const e=he();for(let o=0;o<t;o++){let t=Z.NO_STATUS;"object"==typeof n?(0===r&&n.rows&&(t|=Z.ROW),0===o&&n.columns&&(t|=Z.COLUMN)):n&&(0===r&&(t|=Z.ROW),0===o&&(t|=Z.COLUMN));const l=ne(t),i=s();i.append(d()),l.append(i),e.append(l)}o.append(e)}return o}function ge(e){const n=t(e,(e=>oe(e)));return oe(n)?n:null}function fe(e){const n=t(e,(e=>ue(e)));if(ue(n))return n;throw new Error("Expected table cell to be inside of table row.")}function pe(e){const n=t(e,(e=>ft(e)));if(ft(n))return n;throw new Error("Expected table cell to be inside of table.")}function me(e){const t=fe(e);return pe(t).getChildren().findIndex((e=>e.is(t)))}function Ce(e){return fe(e).getChildren().findIndex((t=>t.is(e)))}function _e(e,t){const n=pe(e),{x:o,y:r}=n.getCordsFromCellNode(e,t);return{above:n.getCellNodeFromCords(o,r-1,t),below:n.getCellNodeFromCords(o,r+1,t),left:n.getCellNodeFromCords(o-1,r,t),right:n.getCellNodeFromCords(o+1,r,t)}}function Se(e,t){const n=e.getChildren();if(t>=n.length||t<0)throw new Error("Expected table cell to be inside of table row.");return n[t].remove(),e}function we(e,t,n=!0,o,r){const l=e.getChildren();if(t>=l.length||t<0)throw new Error("Table row target index out of range");const i=l[t];if(!ue(i))throw new Error("Row before insertion index does not exist.");for(let e=0;e<o;e++){const e=i.getChildren(),t=e.length,o=he();for(let n=0;n<t;n++){const t=e[n];oe(t)||se(12);const{above:l,below:i}=_e(t,r);let c=Z.NO_STATUS;const a=l&&l.getWidth()||i&&i.getWidth()||void 0;(l&&l.hasHeaderState(Z.COLUMN)||i&&i.hasHeaderState(Z.COLUMN))&&(c|=Z.COLUMN);const h=ne(c,1,a);h.append(s()),o.append(h)}n?i.insertAfter(o):i.insertBefore(o)}return e}const be=(e,t)=>e===Z.BOTH||e===t?t:Z.NO_STATUS;function ye(e=!0){const t=g();f(t)||Be(t)||se(188);const n=t.focus.getNode(),[o,,r]=ke(n),[l,i]=Fe(r,o,o),c=l[0].length,{startRow:a}=i;if(e){const e=a+o.__rowSpan-1,t=l[e],n=he();for(let o=0;o<c;o++){const{cell:r,startRow:l}=t[o];if(l+r.__rowSpan-1<=e){const e=t[o].cell.__headerState,r=be(e,Z.COLUMN);n.append(ne(r).append(s()))}else r.setRowSpan(r.__rowSpan+1)}const i=r.getChildAtIndex(e);ue(i)||se(145),i.insertAfter(n)}else{const e=l[a],t=he();for(let n=0;n<c;n++){const{cell:o,startRow:r}=e[n];if(r===a){const o=e[n].cell.__headerState,r=be(o,Z.COLUMN);t.append(ne(r).append(s()))}else o.setRowSpan(o.__rowSpan+1)}const n=r.getChildAtIndex(a);ue(n)||se(145),n.insertBefore(t)}}function Ne(e,t,n=!0,o,r){const l=e.getChildren(),i=[];for(let e=0;e<l.length;e++){const n=l[e];if(ue(n))for(let e=0;e<o;e++){const e=n.getChildren();if(t>=e.length||t<0)throw new Error("Table column target index out of range");const o=e[t];oe(o)||se(12);const{left:l,right:c}=_e(o,r);let a=Z.NO_STATUS;(l&&l.hasHeaderState(Z.ROW)||c&&c.hasHeaderState(Z.ROW))&&(a|=Z.ROW);const h=ne(a);h.append(s()),i.push({newTableCell:h,targetCell:o})}}return i.forEach((({newTableCell:e,targetCell:t})=>{n?t.insertAfter(e):t.insertBefore(e)})),e}function xe(e=!0){const t=g();f(t)||Be(t)||se(188);const n=t.anchor.getNode(),o=t.focus.getNode(),[r]=ke(n),[l,,i]=ke(o),[c,a,h]=Fe(i,l,r),u=c.length,d=e?Math.max(a.startColumn,h.startColumn):Math.min(a.startColumn,h.startColumn),p=e?d+l.__colSpan-1:d-1,m=i.getFirstChild();ue(m)||se(120);let C=null;function _(e=Z.NO_STATUS){const t=ne(e).append(s());return null===C&&(C=t),t}let S=m;e:for(let e=0;e<u;e++){if(0!==e){const e=S.getNextSibling();ue(e)||se(121),S=e}const t=c[e],n=t[p<0?0:p].cell.__headerState,o=be(n,Z.ROW);if(p<0){Re(S,_(o));continue}const{cell:r,startColumn:l,startRow:s}=t[p];if(l+r.__colSpan-1<=p){let n=r,l=s,i=p;for(;l!==e&&n.__rowSpan>1;){if(i-=r.__colSpan,!(i>=0)){S.append(_(o));continue e}{const{cell:e,startRow:o}=t[i];n=e,l=o}}n.insertAfter(_(o))}else r.setColSpan(r.__colSpan+1)}null!==C&&Ee(C);const w=i.getColWidths();if(w){const e=[...w],t=p<0?0:p,n=e[t];e.splice(t,0,n),i.setColWidths(e)}}function Te(e,t){const n=e.getChildren();for(let e=0;e<n.length;e++){const o=n[e];if(ue(o)){const e=o.getChildren();if(t>=e.length||t<0)throw new Error("Table column target index out of range");e[t].remove()}}return e}function ve(){const e=g();f(e)||Be(e)||se(188);const[t,n]=e.isBackward()?[e.focus.getNode(),e.anchor.getNode()]:[e.anchor.getNode(),e.focus.getNode()],[o,,r]=ke(t),[l]=ke(n),[s,i,c]=Fe(r,o,l),{startRow:a}=i,{startRow:h}=c,u=h+l.__rowSpan-1;if(s.length===u-a+1)return void r.remove();const d=s[0].length,p=s[u+1],m=r.getChildAtIndex(u+1);for(let e=u;e>=a;e--){for(let t=d-1;t>=0;t--){const{cell:n,startRow:o,startColumn:r}=s[e][t];if(r===t&&(e===a&&o<a&&n.setRowSpan(n.__rowSpan-(o-a)),o>=a&&o+n.__rowSpan-1>u))if(n.setRowSpan(n.__rowSpan-(u-o+1)),null===m&&se(122),0===t)Re(m,n);else{const{cell:e}=p[t-1];e.insertAfter(n)}}const t=r.getChildAtIndex(e);ue(t)||se(206,String(e)),t.remove()}if(void 0!==p){const{cell:e}=p[0];Ee(e)}else{const e=s[a-1],{cell:t}=e[0];Ee(t)}}function Oe(){const e=g();f(e)||Be(e)||se(188);const t=e.anchor.getNode(),n=e.focus.getNode(),[o,,r]=ke(t),[l]=ke(n),[s,i,c]=Fe(r,o,l),{startColumn:a}=i,{startRow:h,startColumn:u}=c,d=Math.min(a,u),p=Math.max(a+o.__colSpan-1,u+l.__colSpan-1),m=p-d+1;if(s[0].length===p-d+1)return r.selectPrevious(),void r.remove();const C=s.length;for(let e=0;e<C;e++)for(let t=d;t<=p;t++){const{cell:n,startColumn:o}=s[e][t];if(o<d){if(t===d){const e=d-o;n.setColSpan(n.__colSpan-Math.min(m,n.__colSpan-e))}}else if(o+n.__colSpan-1>p){if(t===p){const e=p-o+1;n.setColSpan(n.__colSpan-e)}}else n.remove()}const _=s[h],S=a>u?_[a+o.__colSpan]:_[u+l.__colSpan];if(void 0!==S){const{cell:e}=S;Ee(e)}else{const e=u<a?_[u-1]:_[a-1],{cell:t}=e;Ee(t)}const w=r.getColWidths();if(w){const e=[...w];e.splice(d,m),r.setColWidths(e)}}function Ee(e){const t=e.getFirstDescendant();null==t?e.selectStart():t.getParentOrThrow().selectStart()}function Re(e,t){const n=e.getFirstChild();null!==n?n.insertBefore(t):e.append(t)}function Me(){const e=g();f(e)||Be(e)||se(188);const t=e.anchor.getNode(),[n,o,r]=ke(t),l=n.__colSpan,i=n.__rowSpan;if(1===l&&1===i)return;const[c,a]=Fe(r,n,n),{startColumn:h,startRow:u}=a,d=n.__headerState&Z.COLUMN,p=Array.from({length:l},((e,t)=>{let n=d;for(let e=0;0!==n&&e<c.length;e++)n&=c[e][t+h].cell.__headerState;return n})),m=n.__headerState&Z.ROW,C=Array.from({length:i},((e,t)=>{let n=m;for(let e=0;0!==n&&e<c[0].length;e++)n&=c[t+u][e].cell.__headerState;return n}));if(l>1){for(let e=1;e<l;e++)n.insertAfter(ne(p[e]|C[0]).append(s()));n.setColSpan(1)}if(i>1){let e;for(let t=1;t<i;t++){const n=u+t,r=c[n];e=(e||o).getNextSibling(),ue(e)||se(125);let i=null;for(let e=0;e<h;e++){const t=r[e],o=t.cell;t.startRow===n&&(i=o),o.__colSpan>1&&(e+=o.__colSpan-1)}if(null===i)for(let n=l-1;n>=0;n--)Re(e,ne(p[n]|C[t]).append(s()));else for(let e=l-1;e>=0;e--)i.insertAfter(ne(p[e]|C[t]).append(s()))}n.setRowSpan(1)}}function Fe(e,t,n){const[o,r,l]=Ke(e,t,n);return null===r&&se(207),null===l&&se(208),[o,r,l]}function Ke(e,t,n){const o=[];let r=null,l=null;function s(e){let t=o[e];return void 0===t&&(o[e]=t=[]),t}const i=e.getChildren();for(let e=0;e<i.length;e++){const o=i[e];ue(o)||se(209);for(let c=o.getFirstChild(),a=0;null!=c;c=c.getNextSibling()){oe(c)||se(147);const o=s(e);for(;void 0!==o[a];)a++;const h={cell:c,startColumn:a,startRow:e},{__rowSpan:u,__colSpan:d}=c;for(let t=0;t<u&&!(e+t>=i.length);t++){const n=s(e+t);for(let e=0;e<d;e++)n[a+e]=h}null!==t&&null===r&&t.is(c)&&(r=h),null!==n&&null===l&&n.is(c)&&(l=h)}}return[o,r,l]}function ke(e){let n;if(e instanceof ee)n=e;else if("__type"in e){const o=t(e,oe);oe(o)||se(148),n=o}else{const o=t(e.getNode(),oe);oe(o)||se(148),n=o}const o=n.getParent();ue(o)||se(149);const r=o.getParent();return ft(r)||se(210),[n,o,r]}function Ae(e){const[t,,n]=ke(e),o=n.getChildren(),r=o.length,l=o[0].getChildren().length,s=new Array(r);for(let e=0;e<r;e++)s[e]=new Array(l);for(let e=0;e<r;e++){const n=o[e].getChildren();let r=0;for(let o=0;o<n.length;o++){for(;s[e][r];)r++;const l=n[o],i=l.__rowSpan||1,c=l.__colSpan||1;for(let t=0;t<i;t++)for(let n=0;n<c;n++)s[e+t][r+n]=l;if(t===l)return{colSpan:c,columnIndex:r,rowIndex:e,rowSpan:i};r+=c}}return null}class He{constructor(e,t,n){this.anchor=t,this.focus=n,t._selection=this,n._selection=this,this._cachedNodes=null,this.dirty=!1,this.tableKey=e}getStartEndPoints(){return[this.anchor,this.focus]}isBackward(){return this.focus.isBefore(this.anchor)}getCachedNodes(){return this._cachedNodes}setCachedNodes(e){this._cachedNodes=e}is(e){return!!Be(e)&&(this.tableKey===e.tableKey&&this.anchor.is(e.anchor)&&this.focus.is(e.focus))}set(e,t,n){this.dirty=!0,this.tableKey=e,this.anchor.key=t,this.focus.key=n,this._cachedNodes=null}clone(){return new He(this.tableKey,this.anchor,this.focus)}isCollapsed(){return!1}extract(){return this.getNodes()}insertRawText(e){}insertText(){}hasFormat(e){let t=0;this.getNodes().filter(oe).forEach((e=>{const n=e.getFirstChild();m(n)&&(t|=n.getTextFormat())}));const n=w[e];return!!(t&n)}insertNodes(e){const t=this.focus.getNode();i(t)||se(151);C(t.select(0,t.getChildrenSize())).insertNodes(e)}getShape(){const e=_(this.anchor.key);oe(e)||se(152);const t=Ae(e);null===t&&se(153);const n=_(this.focus.key);oe(n)||se(154);const o=Ae(n);null===o&&se(155);const r=Math.min(t.columnIndex,o.columnIndex),l=Math.max(t.columnIndex+t.colSpan-1,o.columnIndex+o.colSpan-1),s=Math.min(t.rowIndex,o.rowIndex),i=Math.max(t.rowIndex+t.rowSpan-1,o.rowIndex+o.rowSpan-1);return{fromX:Math.min(r,l),fromY:Math.min(s,i),toX:Math.max(r,l),toY:Math.max(s,i)}}getNodes(){const e=this._cachedNodes;if(null!==e)return e;const n=this.anchor.getNode(),o=this.focus.getNode(),r=t(n,oe),l=t(o,oe);oe(r)||se(152),oe(l)||se(154);const s=r.getParent();ue(s)||se(156);const i=s.getParent();ft(i)||se(157);const c=l.getParents()[1];if(c!==i){if(i.isParentOf(l)){const e=c.getParent();null==e&&se(159),this.set(this.tableKey,l.getKey(),e.getKey())}else{const e=i.getParent();null==e&&se(158),this.set(this.tableKey,e.getKey(),l.getKey())}return this.getNodes()}const[a,h,u]=Fe(i,r,l);let d=Math.min(h.startColumn,u.startColumn),g=Math.min(h.startRow,u.startRow),f=Math.max(h.startColumn+h.cell.__colSpan-1,u.startColumn+u.cell.__colSpan-1),p=Math.max(h.startRow+h.cell.__rowSpan-1,u.startRow+u.cell.__rowSpan-1),m=d,C=g,_=d,w=g;function b(e){const{cell:t,startColumn:n,startRow:o}=e;d=Math.min(d,n),g=Math.min(g,o),f=Math.max(f,n+t.__colSpan-1),p=Math.max(p,o+t.__rowSpan-1)}for(;d<m||g<C||f>_||p>w;){if(d<m){const e=w-C,t=m-1;for(let n=0;n<=e;n++)b(a[C+n][t]);m=t}if(g<C){const e=_-m,t=C-1;for(let n=0;n<=e;n++)b(a[t][m+n]);C=t}if(f>_){const e=w-C,t=_+1;for(let n=0;n<=e;n++)b(a[C+n][t]);_=t}if(p>w){const e=_-m,t=w+1;for(let n=0;n<=e;n++)b(a[t][m+n]);w=t}}const y=new Map([[i.getKey(),i]]);let N=null;for(let e=g;e<=p;e++)for(let t=d;t<=f;t++){const{cell:n}=a[e][t],o=n.getParent();ue(o)||se(160),o!==N&&y.set(o.getKey(),o),y.set(n.getKey(),n);for(const e of De(n))y.set(e.getKey(),e);N=o}const x=Array.from(y.values());return S()||(this._cachedNodes=x),x}getTextContent(){const e=this.getNodes().filter((e=>oe(e)));let t="";for(let n=0;n<e.length;n++){const o=e[n],r=o.__parent,l=(e[n+1]||{}).__parent;t+=o.getTextContent()+(l!==r?"\n":"\t")}return t}}function Be(e){return e instanceof He}function Pe(){const e=p("root",0,"element"),t=p("root",0,"element");return new He("root",e,t)}function De(e){const t=[],n=[e];for(;n.length>0;){const o=n.pop();void 0===o&&se(112),i(o)&&n.unshift(...o.getChildren()),o!==e&&t.push(o)}return t}class We{constructor(e,t){this.isHighlightingCells=!1,this.anchorX=-1,this.anchorY=-1,this.focusX=-1,this.focusY=-1,this.listenersToRemove=new Set,this.tableNodeKey=t,this.editor=e,this.table={columns:0,domRows:[],rows:0},this.tableSelection=null,this.anchorCellNodeKey=null,this.focusCellNodeKey=null,this.anchorCell=null,this.focusCell=null,this.hasHijackedSelectionStyles=!1,this.trackTable(),this.isSelecting=!1,this.abortController=new AbortController,this.listenerOptions={signal:this.abortController.signal}}getTable(){return this.table}removeListeners(){this.abortController.abort("removeListeners"),Array.from(this.listenersToRemove).forEach((e=>e())),this.listenersToRemove.clear()}trackTable(){const e=new MutationObserver((e=>{this.editor.update((()=>{let t=!1;for(let n=0;n<e.length;n++){const o=e[n].target.nodeName;if("TABLE"===o||"TBODY"===o||"THEAD"===o||"TR"===o){t=!0;break}}if(!t)return;const n=this.editor.getElementByKey(this.tableNodeKey);if(!n)throw new Error("Expected to find TableElement in DOM");this.table=Xe(n)}))}));this.editor.update((()=>{const t=this.editor.getElementByKey(this.tableNodeKey);if(!t)throw new Error("Expected to find TableElement in DOM");this.table=Xe(t),e.observe(t,{attributes:!0,childList:!0,subtree:!0})}))}clearHighlight(){const e=this.editor;this.isHighlightingCells=!1,this.anchorX=-1,this.anchorY=-1,this.focusX=-1,this.focusY=-1,this.tableSelection=null,this.anchorCellNodeKey=null,this.focusCellNodeKey=null,this.anchorCell=null,this.focusCell=null,this.hasHijackedSelectionStyles=!1,this.enableHighlightStyle(),e.update((()=>{if(!ft(_(this.tableNodeKey)))throw new Error("Expected TableNode.");const t=e.getElementByKey(this.tableNodeKey);if(!t)throw new Error("Expected to find TableElement in DOM");const n=Xe(t);$e(e,n,null),b(null),e.dispatchCommand(y,void 0)}))}enableHighlightStyle(){const e=this.editor;e.update((()=>{const t=e.getElementByKey(this.tableNodeKey);if(!t)throw new Error("Expected to find TableElement in DOM");n(t,e._config.theme.tableSelection),t.classList.remove("disable-selection"),this.hasHijackedSelectionStyles=!1}))}disableHighlightStyle(){const t=this.editor;t.update((()=>{const n=t.getElementByKey(this.tableNodeKey);if(!n)throw new Error("Expected to find TableElement in DOM");e(n,t._config.theme.tableSelection),this.hasHijackedSelectionStyles=!0}))}updateTableTableSelection(e){if(null!==e&&e.tableKey===this.tableNodeKey){const t=this.editor;this.tableSelection=e,this.isHighlightingCells=!0,this.disableHighlightStyle(),$e(t,this.table,this.tableSelection)}else null==e?this.clearHighlight():(this.tableNodeKey=e.tableKey,this.updateTableTableSelection(e))}setFocusCellForSelection(e,t=!1){const n=this.editor;n.update((()=>{const o=_(this.tableNodeKey);if(!ft(o))throw new Error("Expected TableNode.");if(!n.getElementByKey(this.tableNodeKey))throw new Error("Expected to find TableElement in DOM");const r=e.x,l=e.y;if(this.focusCell=e,null!==this.anchorCell){const e=Ie(n._window);e&&e.setBaseAndExtent(this.anchorCell.elem,0,this.focusCell.elem,0)}if(this.isHighlightingCells||this.anchorX===r&&this.anchorY===l&&!t){if(r===this.focusX&&l===this.focusY)return}else this.isHighlightingCells=!0,this.disableHighlightStyle();if(this.focusX=r,this.focusY=l,this.isHighlightingCells){const t=N(e.elem);if(null!=this.tableSelection&&null!=this.anchorCellNodeKey&&oe(t)&&o.is(ot(t))){const e=t.getKey();this.tableSelection=this.tableSelection.clone()||Pe(),this.focusCellNodeKey=e,this.tableSelection.set(this.tableNodeKey,this.anchorCellNodeKey,this.focusCellNodeKey),b(this.tableSelection),n.dispatchCommand(y,void 0),$e(n,this.table,this.tableSelection)}}}))}setAnchorCellForSelection(e){this.isHighlightingCells=!1,this.anchorCell=e,this.anchorX=e.x,this.anchorY=e.y,this.editor.update((()=>{const t=N(e.elem);if(oe(t)){const e=t.getKey();this.tableSelection=null!=this.tableSelection?this.tableSelection.clone():Pe(),this.anchorCellNodeKey=e}}))}formatCells(e){this.editor.update((()=>{const t=g();Be(t)||se(11);const n=x(),o=n.anchor,r=n.focus,l=t.getNodes().filter(oe),s=l[0].getFirstChild(),i=m(s)?s.getFormatFlags(e,null):null;l.forEach((t=>{o.set(t.getKey(),0,"element"),r.set(t.getKey(),t.getChildrenSize(),"element"),n.formatText(e,i)})),b(t),this.editor.dispatchCommand(y,void 0)}))}clearText(){const e=this.editor;e.update((()=>{const t=_(this.tableNodeKey);if(!ft(t))throw new Error("Expected TableNode.");const n=g();Be(n)||se(11);const o=n.getNodes().filter(oe);if(o.length!==this.table.columns*this.table.rows)o.forEach((e=>{if(i(e)){const t=s(),n=d();t.append(n),e.append(t),e.getChildren().forEach((e=>{e!==t&&e.remove()}))}})),$e(e,this.table,null),b(null),e.dispatchCommand(y,void 0);else{t.selectPrevious(),t.remove();T().selectStart()}}))}}const Le="__lexicalTableSelection",Ie=e=>ie?(e||window).getSelection():null;function Ue(e,n,r,l){const c=r.getRootElement();if(null===c)throw new Error("No root element.");const h=new We(r,e.getKey()),u=r._window||window;!function(e,t){null!==ze(e)&&se(205);e[Le]=t}(n,h),h.listenersToRemove.add((()=>function(e,t){ze(e)===t&&delete e[Le]}(n,h)));const p=()=>{const e=()=>{h.isSelecting=!1,u.removeEventListener("mouseup",e),u.removeEventListener("mousemove",t)},t=n=>{setTimeout((()=>{if(1&~n.buttons&&h.isSelecting)return h.isSelecting=!1,u.removeEventListener("mouseup",e),void u.removeEventListener("mousemove",t);const o=Ye(n.target);null===o||h.anchorX===o.x&&h.anchorY===o.y||(n.preventDefault(),h.setFocusCellForSelection(o))}),0)};return{onMouseMove:t,onMouseUp:e}};n.addEventListener("mousedown",(e=>{setTimeout((()=>{if(0!==e.button)return;if(!u)return;const t=Ye(e.target);null!==t&&(lt(e),h.setAnchorCellForSelection(t));const{onMouseUp:n,onMouseMove:o}=p();h.isSelecting=!0,u.addEventListener("mouseup",n,h.listenerOptions),u.addEventListener("mousemove",o,h.listenerOptions)}),0)}),h.listenerOptions);u.addEventListener("mousedown",(e=>{0===e.button&&r.update((()=>{const t=g(),n=e.target;Be(t)&&t.tableKey===h.tableNodeKey&&c.contains(n)&&h.clearHighlight()}))}),h.listenerOptions),h.listenersToRemove.add(r.registerCommand(v,(t=>rt(r,t,"down",e,h)),O)),h.listenersToRemove.add(r.registerCommand(E,(t=>rt(r,t,"up",e,h)),O)),h.listenersToRemove.add(r.registerCommand(R,(t=>rt(r,t,"backward",e,h)),O)),h.listenersToRemove.add(r.registerCommand(M,(t=>rt(r,t,"forward",e,h)),O)),h.listenersToRemove.add(r.registerCommand(F,(e=>{const n=g();if(Be(n)){const o=t(n.focus.getNode(),oe);if(oe(o))return lt(e),o.selectEnd(),!0}return!1}),O));[K,k,A].forEach((n=>{h.listenersToRemove.add(r.registerCommand(n,(n=>()=>{const o=g();if(!Qe(o,e))return!1;if(Be(o))return h.clearText(),!0;if(f(o)){const r=t(o.anchor.getNode(),(e=>oe(e)));if(!oe(r))return!1;const l=o.anchor.getNode(),s=o.focus.getNode(),c=e.isParentOf(l),a=e.isParentOf(s);if(c&&!a||a&&!c)return h.clearText(),!0;const u=t(o.anchor.getNode(),(e=>i(e))),d=u&&t(u,(e=>i(e)&&oe(e.getParent())));if(!i(d)||!i(u))return!1;if(n===k&&null===d.getPreviousSibling())return!0}return!1})(n),H))}));const m=t=>{const n=g();if(!Be(n)&&!f(n))return!1;const o=e.isParentOf(n.anchor.getNode());if(o!==e.isParentOf(n.focus.getNode())){const t=o?"anchor":"focus",r=o?"focus":"anchor",{key:l,offset:s,type:i}=n[r];return e[n[t].isBefore(n[r])?"selectPrevious":"selectNext"]()[r].set(l,s,i),!1}return!!Be(n)&&(t&&(t.preventDefault(),t.stopPropagation()),h.clearText(),!0)};function C(t){const n=e.getCordsFromCellNode(t,h.table);return e.getDOMCellFromCordsOrThrow(n.x,n.y,h.table)}return h.listenersToRemove.add(r.registerCommand(B,m,H)),h.listenersToRemove.add(r.registerCommand(P,m,H)),h.listenersToRemove.add(r.registerCommand(D,(e=>{const t=g();if(t){if(!Be(t)&&!f(t))return!1;G(r,o(e,ClipboardEvent)?e:null,Q(t));const n=m(e);return f(t)?(t.removeText(),!0):n}return!1}),H)),h.listenersToRemove.add(r.registerCommand(W,(n=>{const o=g();if(!Qe(o,e))return!1;if(Be(o))return h.formatCells(n),!0;if(f(o)){const e=t(o.anchor.getNode(),(e=>oe(e)));if(!oe(e))return!1}return!1}),H)),h.listenersToRemove.add(r.registerCommand(L,(t=>{const n=g();if(!Be(n)||!Qe(n,e))return!1;const o=n.anchor.getNode(),r=n.focus.getNode();if(!oe(o)||!oe(r))return!1;const[l,s,c]=Fe(e,o,r),a=Math.max(s.startRow,c.startRow),h=Math.max(s.startColumn,c.startColumn),u=Math.min(s.startRow,c.startRow),d=Math.min(s.startColumn,c.startColumn);for(let e=u;e<=a;e++)for(let n=d;n<=h;n++){const o=l[e][n].cell;o.setFormat(t);const r=o.getChildren();for(let e=0;e<r.length;e++){const n=r[e];i(n)&&!n.isInline()&&n.setFormat(t)}}return!0}),H)),h.listenersToRemove.add(r.registerCommand(I,(n=>{const o=g();if(!Qe(o,e))return!1;if(Be(o))return h.clearHighlight(),!1;if(f(o)){const l=t(o.anchor.getNode(),(e=>oe(e)));if(!oe(l))return!1;if("string"==typeof n){const t=it(r,o,e);if(t)return st(t,e,[d(n)]),!0}}return!1}),H)),l&&h.listenersToRemove.add(r.registerCommand(U,(t=>{const n=g();if(!f(n)||!n.isCollapsed()||!Qe(n,e))return!1;const o=nt(n.anchor.getNode());if(null===o)return!1;lt(t);const r=e.getCordsFromCellNode(o,h.table);return qe(h,e,r.x,r.y,t.shiftKey?"backward":"forward"),!0}),H)),h.listenersToRemove.add(r.registerCommand(z,(t=>e.isSelected()),O)),h.listenersToRemove.add(r.registerCommand(Y,(e=>{const{nodes:n,selection:o}=e,r=o.getStartEndPoints(),l=Be(o),i=f(o)&&null!==t(o.anchor.getNode(),(e=>oe(e)))&&null!==t(o.focus.getNode(),(e=>oe(e)))||l;if(1!==n.length||!ft(n[0])||!i||null===r)return!1;const[c]=r,h=n[0],u=h.getChildren(),d=h.getFirstChildOrThrow().getChildrenSize(),g=h.getChildrenSize(),p=t(c.getNode(),(e=>oe(e))),m=p&&t(p,(e=>ue(e))),C=m&&t(m,(e=>ft(e)));if(!oe(p)||!ue(m)||!ft(C))return!1;const _=m.getIndexWithinParent(),S=Math.min(C.getChildrenSize()-1,_+g-1),w=p.getIndexWithinParent(),b=Math.min(m.getChildrenSize()-1,w+d-1),y=Math.min(w,b),N=Math.min(_,S),x=Math.max(w,b),T=Math.max(_,S),v=C.getChildren();let O=0;for(let e=N;e<=T;e++){const t=v[e];if(!ue(t))return!1;const n=u[O];if(!ue(n))return!1;const o=t.getChildren(),r=n.getChildren();let l=0;for(let e=y;e<=x;e++){const t=o[e];if(!oe(t))return!1;const n=r[l];if(!oe(n))return!1;const i=t.getChildren();n.getChildren().forEach((e=>{if(a(e)){s().append(e),t.append(e)}else t.append(e)})),i.forEach((e=>e.remove())),l++}O++}return!0}),H)),h.listenersToRemove.add(r.registerCommand(y,(()=>{const t=g(),n=X();if(f(t)){const{anchor:n,focus:o}=t,l=n.getNode(),s=o.getNode(),i=nt(l),c=nt(s),a=!(!i||!e.is(ot(i))),d=!(!c||!e.is(ot(c))),g=a!==d,f=a&&d,m=t.isBackward();if(g){const n=t.clone();if(d){const[t]=Fe(e,c,c),o=t[0][0].cell,r=t[t.length-1].at(-1).cell;n.focus.set(m?o.getKey():r.getKey(),m?o.getChildrenSize():r.getChildrenSize(),"element")}else if(a){const[t]=Fe(e,i,i),o=t[0][0].cell,r=t[t.length-1].at(-1).cell;n.anchor.set(m?r.getKey():o.getKey(),m?r.getChildrenSize():0,"element")}b(n),je(r,h)}else f&&(i.is(c)||(h.setAnchorCellForSelection(C(i)),h.setFocusCellForSelection(C(c),!0),h.isSelecting||setTimeout((()=>{const{onMouseUp:e,onMouseMove:t}=p();h.isSelecting=!0,u.addEventListener("mouseup",e),u.addEventListener("mousemove",t)}),0)))}else if(t&&Be(t)&&t.is(n)&&t.tableKey===e.getKey()){const n=Ie(r._window);if(n&&n.anchorNode&&n.focusNode){const o=N(n.focusNode),l=o&&!e.is(ot(o)),s=N(n.anchorNode),i=s&&e.is(ot(s));if(l&&i&&n.rangeCount>0){const o=$(n,r);o&&(o.anchor.set(e.getKey(),t.isBackward()?e.getChildrenSize():0,"element"),n.removeAllRanges(),b(o))}}}return t&&!t.is(n)&&(Be(t)||Be(n))&&h.tableSelection&&!h.tableSelection.is(n)?(Be(t)&&t.tableKey===h.tableNodeKey?h.updateTableTableSelection(t):!Be(t)&&Be(n)&&n.tableKey===h.tableNodeKey&&h.updateTableTableSelection(null),!1):(h.hasHijackedSelectionStyles&&!e.isSelected()?function(e,t){t.enableHighlightStyle(),Je(t.table,(t=>{const n=t.elem;t.highlighted=!1,tt(e,t),n.getAttribute("style")||n.removeAttribute("style")}))}(r,h):!h.hasHijackedSelectionStyles&&e.isSelected()&&je(r,h),!1)}),H)),h.listenersToRemove.add(r.registerCommand(J,(()=>{const t=g();if(!f(t)||!t.isCollapsed()||!Qe(t,e))return!1;const n=it(r,t,e);return!!n&&(st(n,e),!0)}),H)),h}function ze(e){return e[Le]||null}function Ye(e){let t=e;for(;null!=t;){const e=t.nodeName;if("TD"===e||"TH"===e){const e=t._cell;return void 0===e?null:e}t=t.parentNode}return null}function Xe(e){const t=[],n={columns:0,domRows:t,rows:0};let o=e.querySelector("tr"),r=0,l=0;for(t.length=0;null!=o;){const e=o.nodeName;if("TD"===e||"TH"===e){const e={elem:o,hasBackgroundColor:""!==o.style.backgroundColor,highlighted:!1,x:r,y:l};o._cell=e;let n=t[l];void 0===n&&(n=t[l]=[]),n[r]=e}else{const e=o.firstChild;if(null!=e){o=e;continue}}const n=o.nextSibling;if(null!=n){r++,o=n;continue}const s=o.parentNode;if(null!=s){const e=s.nextSibling;if(null==e)break;l++,r=0,o=e}}return n.columns=r+1,n.rows=l+1,n}function $e(e,t,n){const o=new Set(n?n.getNodes():[]);Je(t,((t,n)=>{const r=t.elem;o.has(n)?(t.highlighted=!0,et(e,t)):(t.highlighted=!1,tt(e,t),r.getAttribute("style")||r.removeAttribute("style"))}))}function Je(e,t){const{domRows:n}=e;for(let e=0;e<n.length;e++){const o=n[e];if(o)for(let n=0;n<o.length;n++){const r=o[n];if(!r)continue;const l=N(r.elem);null!==l&&t(r,l,{x:n,y:e})}}}function je(e,t){t.disableHighlightStyle(),Je(t.table,(t=>{t.highlighted=!0,et(e,t)}))}const qe=(e,t,n,o,r)=>{const l="forward"===r;switch(r){case"backward":case"forward":return n!==(l?e.table.columns-1:0)?Ve(t.getCellNodeFromCordsOrThrow(n+(l?1:-1),o,e.table),l):o!==(l?e.table.rows-1:0)?Ve(t.getCellNodeFromCordsOrThrow(l?0:e.table.columns-1,o+(l?1:-1),e.table),l):l?t.selectNext():t.selectPrevious(),!0;case"up":return 0!==o?Ve(t.getCellNodeFromCordsOrThrow(n,o-1,e.table),!1):t.selectPrevious(),!0;case"down":return o!==e.table.rows-1?Ve(t.getCellNodeFromCordsOrThrow(n,o+1,e.table),!0):t.selectNext(),!0;default:return!1}},Ge=(e,t,n,o,r)=>{const l="forward"===r;switch(r){case"backward":case"forward":return n!==(l?e.table.columns-1:0)&&e.setFocusCellForSelection(t.getDOMCellFromCordsOrThrow(n+(l?1:-1),o,e.table)),!0;case"up":return 0!==o&&(e.setFocusCellForSelection(t.getDOMCellFromCordsOrThrow(n,o-1,e.table)),!0);case"down":return o!==e.table.rows-1&&(e.setFocusCellForSelection(t.getDOMCellFromCordsOrThrow(n,o+1,e.table)),!0);default:return!1}};function Qe(e,t){if(f(e)||Be(e)){const n=t.isParentOf(e.anchor.getNode()),o=t.isParentOf(e.focus.getNode());return n&&o}return!1}function Ve(e,t){t?e.selectStart():e.selectEnd()}const Ze="172,206,247";function et(e,t){const n=t.elem,o=N(n);oe(o)||se(131);null===o.getBackgroundColor()?n.style.setProperty("background-color",`rgb(${Ze})`):n.style.setProperty("background-image",`linear-gradient(to right, rgba(${Ze},0.85), rgba(${Ze},0.85))`),n.style.setProperty("caret-color","transparent")}function tt(e,t){const n=t.elem,o=N(n);oe(o)||se(131);null===o.getBackgroundColor()&&n.style.removeProperty("background-color"),n.style.removeProperty("background-image"),n.style.removeProperty("caret-color")}function nt(e){const n=t(e,oe);return oe(n)?n:null}function ot(e){const n=t(e,ft);return ft(n)?n:null}function rt(e,n,o,r,l){if(("up"===o||"down"===o)&&function(e){const t=e.getRootElement();if(!t)return!1;return t.hasAttribute("aria-controls")&&"typeahead-menu"===t.getAttribute("aria-controls")}(e))return!1;const s=g();if(!Qe(s,r)){if(f(s)){if(s.isCollapsed()&&"backward"===o){const e=s.anchor.type,o=s.anchor.offset;if("element"!==e&&("text"!==e||0!==o))return!1;const r=s.anchor.getNode();if(!r)return!1;const l=t(r,(e=>i(e)&&!e.isInline()));if(!l)return!1;const c=l.getPreviousSibling();return!(!c||!ft(c))&&(lt(n),c.selectEnd(),!0)}if(n.shiftKey&&("up"===o||"down"===o)){const e=s.focus.getNode();if(j(e)){const e=s.getNodes()[0];if(e){const n=t(e,oe);if(n&&r.isParentOf(n)){const e=r.getFirstDescendant(),t=r.getLastDescendant();if(!e||!t)return!1;const[n]=ke(e),[o]=ke(t),s=r.getCordsFromCellNode(n,l.table),i=r.getCordsFromCellNode(o,l.table),c=r.getDOMCellFromCordsOrThrow(s.x,s.y,l.table),a=r.getDOMCellFromCordsOrThrow(i.x,i.y,l.table);return l.setAnchorCellForSelection(c),l.setFocusCellForSelection(a,!0),!0}}return!1}{const n=t(e,(e=>i(e)&&!e.isInline()));if(!n)return!1;const r="down"===o?n.getNextSibling():n.getPreviousSibling();if(ft(r)&&l.tableNodeKey===r.getKey()){const e=r.getFirstDescendant(),t=r.getLastDescendant();if(!e||!t)return!1;const[n]=ke(e),[l]=ke(t),i=s.clone();return i.focus.set(("up"===o?n:l).getKey(),"up"===o?0:l.getChildrenSize(),"element"),b(i),!0}}}}return!1}if(f(s)&&s.isCollapsed()){const{anchor:c,focus:a}=s,h=t(c.getNode(),oe),u=t(a.getNode(),oe);if(!oe(h)||!h.is(u))return!1;const d=ot(h);if(d!==r&&null!=d){const t=e.getElementByKey(d.getKey());if(null!=t)return l.table=Xe(t),rt(e,n,o,d,l)}if("backward"===o||"forward"===o){const e=c.type,l=c.offset,a=c.getNode();if(!a)return!1;const h=s.getNodes();return(1!==h.length||!q(h[0]))&&(!!function(e,n,o,r){return function(e,t,n){return"element"===e&&("backward"===n?null===t.getPreviousSibling():null===t.getNextSibling())}(e,o,r)||function(e,n,o,r){const l=t(o,(e=>i(e)&&!e.isInline()));if(!l)return!1;const s="backward"===r?0===n:n===o.getTextContentSize();return"text"===e&&s&&("backward"===r?null===l.getPreviousSibling():null===l.getNextSibling())}(e,n,o,r)}(e,l,a,o)&&function(e,n,o,r){const l=t(n,oe);if(!oe(l))return!1;const[s,c]=Fe(o,l,l);if(!function(e,t,n){const o=e[0][0],r=e[e.length-1][e[0].length-1],{startColumn:l,startRow:s}=t;return"backward"===n?l===o.startColumn&&s===o.startRow:l===r.startColumn&&s===r.startRow}(s,c,r))return!1;const a=function(e,n,o){const r=t(e,(e=>i(e)&&!e.isInline()));if(!r)return;const l="backward"===n?r.getPreviousSibling():r.getNextSibling();return l&&ft(l)?l:"backward"===n?o.getPreviousSibling():o.getNextSibling()}(n,r,o);if(!a||ft(a))return!1;lt(e),"backward"===r?a.selectEnd():a.selectStart();return!0}(n,a,r,o))}const g=e.getElementByKey(h.__key),f=e.getElementByKey(c.key);if(null==f||null==g)return!1;let p;if("element"===c.type)p=f.getBoundingClientRect();else{const e=window.getSelection();if(null===e||0===e.rangeCount)return!1;p=e.getRangeAt(0).getBoundingClientRect()}const m="up"===o?h.getFirstChild():h.getLastChild();if(null==m)return!1;const C=e.getElementByKey(m.__key);if(null==C)return!1;const _=C.getBoundingClientRect();if("up"===o?_.top>p.top-p.height:p.bottom+p.height>_.bottom){lt(n);const e=r.getCordsFromCellNode(h,l.table);if(!n.shiftKey)return qe(l,r,e.x,e.y,o);{const t=r.getDOMCellFromCordsOrThrow(e.x,e.y,l.table);l.setAnchorCellForSelection(t),l.setFocusCellForSelection(t,!0)}return!0}}else if(Be(s)){const{anchor:i,focus:c}=s,a=t(i.getNode(),oe),h=t(c.getNode(),oe),[u]=s.getNodes(),d=e.getElementByKey(u.getKey());if(!oe(a)||!oe(h)||!ft(u)||null==d)return!1;l.updateTableTableSelection(s);const g=Xe(d),f=r.getCordsFromCellNode(a,g),p=r.getDOMCellFromCordsOrThrow(f.x,f.y,g);if(l.setAnchorCellForSelection(p),lt(n),n.shiftKey){const e=r.getCordsFromCellNode(h,g);return Ge(l,u,e.x,e.y,o)}return h.selectEnd(),!0}return!1}function lt(e){e.preventDefault(),e.stopImmediatePropagation(),e.stopPropagation()}function st(e,t,n){const o=s();"first"===e?t.insertBefore(o):t.insertAfter(o),o.append(...n||[]),o.selectEnd()}function it(e,n,o){const r=o.getParent();if(!r)return;const l=e.getElementByKey(r.getKey());if(!l)return;const s=window.getSelection();if(!s||s.anchorNode!==l)return;const i=t(n.anchor.getNode(),(e=>oe(e)));if(!i)return;const c=t(i,(e=>ft(e)));if(!ft(c)||!c.is(o))return;const[a,h]=Fe(o,i,i),u=a[0][0],d=a[a.length-1][a[0].length-1],{startRow:g,startColumn:f}=h,p=g===u.startRow&&f===u.startColumn,m=g===d.startRow&&f===d.startColumn;return p?"first":m?"last":void 0}function ct(e,t,n,o){const r=e.querySelector("colgroup");if(!r)return;const l=[];for(let e=0;e<n;e++){const t=document.createElement("col"),n=o&&o[e];n&&(t.style.width=`${n}px`),l.push(t)}r.replaceChildren(...l)}function at(t,o,r){r?(e(t,o.theme.tableRowStriping),t.setAttribute("data-lexical-row-striping","true")):(n(t,o.theme.tableRowStriping),t.removeAttribute("data-lexical-row-striping"))}class ht extends l{static getType(){return"table"}getColWidths(){return this.getLatest().__colWidths}setColWidths(e){const t=this.getWritable();return t.__colWidths=e,t}static clone(e){return new ht(e.__key)}afterCloneFrom(e){super.afterCloneFrom(e),this.__colWidths=e.__colWidths,this.__rowStriping=e.__rowStriping}static importDOM(){return{table:e=>({conversion:dt,priority:1})}}static importJSON(e){const t=gt();return t.__rowStriping=e.rowStriping||!1,t.__colWidths=e.colWidths,t}constructor(e){super(e),this.__rowStriping=!1}exportJSON(){return{...super.exportJSON(),colWidths:this.getColWidths(),rowStriping:this.__rowStriping?this.__rowStriping:void 0,type:"table",version:1}}createDOM(t,n){const o=document.createElement("table"),r=document.createElement("colgroup");return o.appendChild(r),ct(o,0,this.getColumnCount(),this.getColWidths()),e(o,t.theme.table),this.__rowStriping&&at(o,t,!0),o}updateDOM(e,t,n){return e.__rowStriping!==this.__rowStriping&&at(t,n,this.__rowStriping),ct(t,0,this.getColumnCount(),this.getColWidths()),!1}exportDOM(e){return{...super.exportDOM(e),after:e=>{if(e){const t=e.cloneNode(),n=document.createElement("colgroup"),o=document.createElement("tbody");if(r(e)){const t=e.querySelectorAll("col");n.append(...t);const r=e.querySelectorAll("tr");o.append(...r)}return t.replaceChildren(n,o),t}}}}canBeEmpty(){return!1}isShadowRoot(){return!0}getCordsFromCellNode(e,t){const{rows:n,domRows:o}=t;for(let t=0;t<n;t++){const n=o[t];if(null==n)continue;const r=n.findIndex((t=>{if(!t)return;const{elem:n}=t;return N(n)===e}));if(-1!==r)return{x:r,y:t}}throw new Error("Cell not found in table.")}getDOMCellFromCords(e,t,n){const{domRows:o}=n,r=o[t];if(null==r)return null;const l=r[e<r.length?e:r.length-1];return null==l?null:l}getDOMCellFromCordsOrThrow(e,t,n){const o=this.getDOMCellFromCords(e,t,n);if(!o)throw new Error("Cell not found at cords.");return o}getCellNodeFromCords(e,t,n){const o=this.getDOMCellFromCords(e,t,n);if(null==o)return null;const r=N(o.elem);return oe(r)?r:null}getCellNodeFromCordsOrThrow(e,t,n){const o=this.getCellNodeFromCords(e,t,n);if(!o)throw new Error("Node at cords not TableCellNode.");return o}getRowStriping(){return Boolean(this.getLatest().__rowStriping)}setRowStriping(e){this.getWritable().__rowStriping=e}canSelectBefore(){return!0}canIndent(){return!1}getColumnCount(){const e=this.getFirstChild();if(!e)return 0;let t=0;return e.getChildren().forEach((e=>{oe(e)&&(t+=e.getColSpan())})),t}}function ut(e,t){const n=e.getElementByKey(t.getKey());if(null==n)throw new Error("Table Element Not Found");return Xe(n)}function dt(e){const t=gt();e.hasAttribute("data-lexical-row-striping")&&t.setRowStriping(!0);const n=e.querySelector(":scope > colgroup");if(n){let e=[];for(const t of n.querySelectorAll(":scope > col")){const n=t.style.width;if(!n||!V.test(n)){e=void 0;break}e.push(parseFloat(n))}e&&t.setColWidths(e)}return{node:t}}function gt(){return h(new ht)}function ft(e){return e instanceof ht}export{Fe as $computeTableMap,Ke as $computeTableMapSkipCellCheck,ne as $createTableCellNode,gt as $createTableNode,de as $createTableNodeWithDimensions,he as $createTableRowNode,Pe as $createTableSelection,Te as $deleteTableColumn,Oe as $deleteTableColumn__EXPERIMENTAL,ve as $deleteTableRow__EXPERIMENTAL,nt as $findCellNode,ot as $findTableNode,ut as $getElementForTableNode,ke as $getNodeTriplet,ge as $getTableCellNodeFromLexicalNode,Ae as $getTableCellNodeRect,Ce as $getTableColumnIndexFromTableCellNode,pe as $getTableNodeFromLexicalNodeOrThrow,me as $getTableRowIndexFromTableCellNode,fe as $getTableRowNodeFromTableCellNodeOrThrow,Ne as $insertTableColumn,xe as $insertTableColumn__EXPERIMENTAL,we as $insertTableRow,ye as $insertTableRow__EXPERIMENTAL,oe as $isTableCellNode,ft as $isTableNode,ue as $isTableRowNode,Be as $isTableSelection,Se as $removeTableRowAtIndex,Me as $unmergeCell,re as INSERT_TABLE_COMMAND,Z as TableCellHeaderStates,ee as TableCellNode,ht as TableNode,We as TableObserver,ce as TableRowNode,Ue as applyTableHandlers,Ye as getDOMCellFromTarget,ze as getTableObserverFromTableElement};
9
+ import{addClassNamesToElement as e,$findMatchingParent as t,removeClassNamesFromElement as n,objectKlassEquals as o,isHTMLElement as r}from"@lexical/utils";import{ElementNode as l,$createParagraphNode as s,$isElementNode as i,$isLineBreakNode as c,$isTextNode as a,$applyNodeReplacement as u,createCommand as h,$createTextNode as d,$getSelection as g,$isRangeSelection as f,$createPoint as p,$isParagraphNode as m,$normalizeSelection__EXPERIMENTAL as C,$getNodeByKey as S,isCurrentlyReadOnlyMode as _,TEXT_TYPE_TO_FORMAT as w,$setSelection as b,SELECTION_CHANGE_COMMAND as y,$getNearestNodeFromDOMNode as N,$createRangeSelection as x,$getRoot as T,KEY_ARROW_DOWN_COMMAND as v,COMMAND_PRIORITY_HIGH as O,KEY_ARROW_UP_COMMAND as E,KEY_ARROW_LEFT_COMMAND as R,KEY_ARROW_RIGHT_COMMAND as M,KEY_ESCAPE_COMMAND as F,DELETE_WORD_COMMAND as K,DELETE_LINE_COMMAND as k,DELETE_CHARACTER_COMMAND as A,COMMAND_PRIORITY_CRITICAL as B,KEY_BACKSPACE_COMMAND as H,KEY_DELETE_COMMAND as P,CUT_COMMAND as D,FORMAT_TEXT_COMMAND as W,FORMAT_ELEMENT_COMMAND as L,CONTROLLED_TEXT_INSERTION_COMMAND as I,KEY_TAB_COMMAND as U,FOCUS_COMMAND as z,SELECTION_INSERT_CLIPBOARD_NODES_COMMAND as Y,$getPreviousSelection as X,$createRangeSelectionFromDom as $,INSERT_PARAGRAPH_COMMAND as J,$isRootOrShadowRoot as j,$isDecoratorNode as q}from"lexical";import{copyToClipboard as G,$getClipboardDataFromSelection as Q}from"@lexical/clipboard";const V=/^(\d+(?:\.\d+)?)px$/,Z={BOTH:3,COLUMN:2,NO_STATUS:0,ROW:1};class ee extends l{static getType(){return"tablecell"}static clone(e){return new ee(e.__headerState,e.__colSpan,e.__width,e.__key)}afterCloneFrom(e){super.afterCloneFrom(e),this.__rowSpan=e.__rowSpan,this.__backgroundColor=e.__backgroundColor}static importDOM(){return{td:e=>({conversion:te,priority:0}),th:e=>({conversion:te,priority:0})}}static importJSON(e){const t=e.colSpan||1,n=e.rowSpan||1;return ne(e.headerState,t,e.width||void 0).setRowSpan(n).setBackgroundColor(e.backgroundColor||null)}constructor(e=Z.NO_STATUS,t=1,n,o){super(o),this.__colSpan=t,this.__rowSpan=1,this.__headerState=e,this.__width=n,this.__backgroundColor=null}createDOM(t){const n=document.createElement(this.getTag());return this.__width&&(n.style.width=`${this.__width}px`),this.__colSpan>1&&(n.colSpan=this.__colSpan),this.__rowSpan>1&&(n.rowSpan=this.__rowSpan),null!==this.__backgroundColor&&(n.style.backgroundColor=this.__backgroundColor),e(n,t.theme.tableCell,this.hasHeader()&&t.theme.tableCellHeader),n}exportDOM(e){const{element:t}=super.exportDOM(e);if(t){const e=t;e.style.border="1px solid black",this.__colSpan>1&&(e.colSpan=this.__colSpan),this.__rowSpan>1&&(e.rowSpan=this.__rowSpan),e.style.width=`${this.getWidth()||75}px`,e.style.verticalAlign="top",e.style.textAlign="start";const n=this.getBackgroundColor();null!==n?e.style.backgroundColor=n:this.hasHeader()&&(e.style.backgroundColor="#f2f3f5")}return{element:t}}exportJSON(){return{...super.exportJSON(),backgroundColor:this.getBackgroundColor(),colSpan:this.__colSpan,headerState:this.__headerState,rowSpan:this.__rowSpan,type:"tablecell",width:this.getWidth()}}getColSpan(){return this.getLatest().__colSpan}setColSpan(e){const t=this.getWritable();return t.__colSpan=e,t}getRowSpan(){return this.getLatest().__rowSpan}setRowSpan(e){const t=this.getWritable();return t.__rowSpan=e,t}getTag(){return this.hasHeader()?"th":"td"}setHeaderStyles(e,t=Z.BOTH){const n=this.getWritable();return n.__headerState=e&t|n.__headerState&~t,n}getHeaderStyles(){return this.getLatest().__headerState}setWidth(e){const t=this.getWritable();return t.__width=e,t}getWidth(){return this.getLatest().__width}getBackgroundColor(){return this.getLatest().__backgroundColor}setBackgroundColor(e){const t=this.getWritable();return t.__backgroundColor=e,t}toggleHeaderStyle(e){const t=this.getWritable();return(t.__headerState&e)===e?t.__headerState-=e:t.__headerState+=e,t}hasHeaderState(e){return(this.getHeaderStyles()&e)===e}hasHeader(){return this.getLatest().__headerState!==Z.NO_STATUS}updateDOM(e){return e.__headerState!==this.__headerState||e.__width!==this.__width||e.__colSpan!==this.__colSpan||e.__rowSpan!==this.__rowSpan||e.__backgroundColor!==this.__backgroundColor}isShadowRoot(){return!0}collapseAtStart(){return!0}canBeEmpty(){return!1}canIndent(){return!1}}function te(e){const t=e,n=e.nodeName.toLowerCase();let o;V.test(t.style.width)&&(o=parseFloat(t.style.width));const r=ne("th"===n?Z.ROW:Z.NO_STATUS,t.colSpan,o);r.__rowSpan=t.rowSpan;const l=t.style.backgroundColor;""!==l&&(r.__backgroundColor=l);const u=t.style,h=u.textDecoration.split(" "),d="700"===u.fontWeight||"bold"===u.fontWeight,g=h.includes("line-through"),f="italic"===u.fontStyle,p=h.includes("underline");return{after:e=>(0===e.length&&e.push(s()),e),forChild:(e,t)=>{if(oe(t)&&!i(e)){const t=s();return c(e)&&"\n"===e.getTextContent()?null:(a(e)&&(d&&e.toggleFormat("bold"),g&&e.toggleFormat("strikethrough"),f&&e.toggleFormat("italic"),p&&e.toggleFormat("underline")),t.append(e),t)}return e},node:r}}function ne(e,t=1,n){return u(new ee(e,t,n))}function oe(e){return e instanceof ee}const re=h("INSERT_TABLE_COMMAND");function le(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var se=le((function(e){const t=new URLSearchParams;t.append("code",e);for(let e=1;e<arguments.length;e++)t.append("v",arguments[e]);throw Error(`Minified Lexical error #${e}; visit https://lexical.dev/docs/error?${t} for the full message or use the non-minified dev environment for full errors and additional helpful warnings.`)}));const ie="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement;class ce extends l{static getType(){return"tablerow"}static clone(e){return new ce(e.__height,e.__key)}static importDOM(){return{tr:e=>({conversion:ae,priority:0})}}static importJSON(e){return ue(e.height)}constructor(e,t){super(t),this.__height=e}exportJSON(){return{...super.exportJSON(),...this.getHeight()&&{height:this.getHeight()},type:"tablerow",version:1}}createDOM(t){const n=document.createElement("tr");return this.__height&&(n.style.height=`${this.__height}px`),e(n,t.theme.tableRow),n}isShadowRoot(){return!0}setHeight(e){return this.getWritable().__height=e,this.__height}getHeight(){return this.getLatest().__height}updateDOM(e){return e.__height!==this.__height}canBeEmpty(){return!1}canIndent(){return!1}}function ae(e){const t=e;let n;return V.test(t.style.height)&&(n=parseFloat(t.style.height)),{node:ue(n)}}function ue(e){return u(new ce(e))}function he(e){return e instanceof ce}function de(e,t,n=!0){const o=gt();for(let r=0;r<e;r++){const e=ue();for(let o=0;o<t;o++){let t=Z.NO_STATUS;"object"==typeof n?(0===r&&n.rows&&(t|=Z.ROW),0===o&&n.columns&&(t|=Z.COLUMN)):n&&(0===r&&(t|=Z.ROW),0===o&&(t|=Z.COLUMN));const l=ne(t),i=s();i.append(d()),l.append(i),e.append(l)}o.append(e)}return o}function ge(e){const n=t(e,(e=>oe(e)));return oe(n)?n:null}function fe(e){const n=t(e,(e=>he(e)));if(he(n))return n;throw new Error("Expected table cell to be inside of table row.")}function pe(e){const n=t(e,(e=>ft(e)));if(ft(n))return n;throw new Error("Expected table cell to be inside of table.")}function me(e){const t=fe(e);return pe(t).getChildren().findIndex((e=>e.is(t)))}function Ce(e){return fe(e).getChildren().findIndex((t=>t.is(e)))}function Se(e,t){const n=pe(e),{x:o,y:r}=n.getCordsFromCellNode(e,t);return{above:n.getCellNodeFromCords(o,r-1,t),below:n.getCellNodeFromCords(o,r+1,t),left:n.getCellNodeFromCords(o-1,r,t),right:n.getCellNodeFromCords(o+1,r,t)}}function _e(e,t){const n=e.getChildren();if(t>=n.length||t<0)throw new Error("Expected table cell to be inside of table row.");return n[t].remove(),e}function we(e,t,n=!0,o,r){const l=e.getChildren();if(t>=l.length||t<0)throw new Error("Table row target index out of range");const i=l[t];if(!he(i))throw new Error("Row before insertion index does not exist.");for(let e=0;e<o;e++){const e=i.getChildren(),t=e.length,o=ue();for(let n=0;n<t;n++){const t=e[n];oe(t)||se(12);const{above:l,below:i}=Se(t,r);let c=Z.NO_STATUS;const a=l&&l.getWidth()||i&&i.getWidth()||void 0;(l&&l.hasHeaderState(Z.COLUMN)||i&&i.hasHeaderState(Z.COLUMN))&&(c|=Z.COLUMN);const u=ne(c,1,a);u.append(s()),o.append(u)}n?i.insertAfter(o):i.insertBefore(o)}return e}const be=(e,t)=>e===Z.BOTH||e===t?t:Z.NO_STATUS;function ye(e=!0){const t=g();f(t)||He(t)||se(188);const n=t.focus.getNode(),[o,,r]=ke(n),[l,i]=Fe(r,o,o),c=l[0].length,{startRow:a}=i;let u=null;if(e){const e=a+o.__rowSpan-1,t=l[e],n=ue();for(let o=0;o<c;o++){const{cell:r,startRow:l}=t[o];if(l+r.__rowSpan-1<=e){const e=t[o].cell.__headerState,r=be(e,Z.COLUMN);n.append(ne(r).append(s()))}else r.setRowSpan(r.__rowSpan+1)}const i=r.getChildAtIndex(e);he(i)||se(145),i.insertAfter(n),u=n}else{const e=l[a],t=ue();for(let n=0;n<c;n++){const{cell:o,startRow:r}=e[n];if(r===a){const o=e[n].cell.__headerState,r=be(o,Z.COLUMN);t.append(ne(r).append(s()))}else o.setRowSpan(o.__rowSpan+1)}const n=r.getChildAtIndex(a);he(n)||se(145),n.insertBefore(t),u=t}return u}function Ne(e,t,n=!0,o,r){const l=e.getChildren(),i=[];for(let e=0;e<l.length;e++){const n=l[e];if(he(n))for(let e=0;e<o;e++){const e=n.getChildren();if(t>=e.length||t<0)throw new Error("Table column target index out of range");const o=e[t];oe(o)||se(12);const{left:l,right:c}=Se(o,r);let a=Z.NO_STATUS;(l&&l.hasHeaderState(Z.ROW)||c&&c.hasHeaderState(Z.ROW))&&(a|=Z.ROW);const u=ne(a);u.append(s()),i.push({newTableCell:u,targetCell:o})}}return i.forEach((({newTableCell:e,targetCell:t})=>{n?t.insertAfter(e):t.insertBefore(e)})),e}function xe(e=!0){const t=g();f(t)||He(t)||se(188);const n=t.anchor.getNode(),o=t.focus.getNode(),[r]=ke(n),[l,,i]=ke(o),[c,a,u]=Fe(i,l,r),h=c.length,d=e?Math.max(a.startColumn,u.startColumn):Math.min(a.startColumn,u.startColumn),p=e?d+l.__colSpan-1:d-1,m=i.getFirstChild();he(m)||se(120);let C=null;function S(e=Z.NO_STATUS){const t=ne(e).append(s());return null===C&&(C=t),t}let _=m;e:for(let e=0;e<h;e++){if(0!==e){const e=_.getNextSibling();he(e)||se(121),_=e}const t=c[e],n=t[p<0?0:p].cell.__headerState,o=be(n,Z.ROW);if(p<0){Re(_,S(o));continue}const{cell:r,startColumn:l,startRow:s}=t[p];if(l+r.__colSpan-1<=p){let n=r,l=s,i=p;for(;l!==e&&n.__rowSpan>1;){if(i-=r.__colSpan,!(i>=0)){_.append(S(o));continue e}{const{cell:e,startRow:o}=t[i];n=e,l=o}}n.insertAfter(S(o))}else r.setColSpan(r.__colSpan+1)}null!==C&&Ee(C);const w=i.getColWidths();if(w){const e=[...w],t=p<0?0:p,n=e[t];e.splice(t,0,n),i.setColWidths(e)}return C}function Te(e,t){const n=e.getChildren();for(let e=0;e<n.length;e++){const o=n[e];if(he(o)){const e=o.getChildren();if(t>=e.length||t<0)throw new Error("Table column target index out of range");e[t].remove()}}return e}function ve(){const e=g();f(e)||He(e)||se(188);const[t,n]=e.isBackward()?[e.focus.getNode(),e.anchor.getNode()]:[e.anchor.getNode(),e.focus.getNode()],[o,,r]=ke(t),[l]=ke(n),[s,i,c]=Fe(r,o,l),{startRow:a}=i,{startRow:u}=c,h=u+l.__rowSpan-1;if(s.length===h-a+1)return void r.remove();const d=s[0].length,p=s[h+1],m=r.getChildAtIndex(h+1);for(let e=h;e>=a;e--){for(let t=d-1;t>=0;t--){const{cell:n,startRow:o,startColumn:r}=s[e][t];if(r===t&&(e===a&&o<a&&n.setRowSpan(n.__rowSpan-(o-a)),o>=a&&o+n.__rowSpan-1>h))if(n.setRowSpan(n.__rowSpan-(h-o+1)),null===m&&se(122),0===t)Re(m,n);else{const{cell:e}=p[t-1];e.insertAfter(n)}}const t=r.getChildAtIndex(e);he(t)||se(206,String(e)),t.remove()}if(void 0!==p){const{cell:e}=p[0];Ee(e)}else{const e=s[a-1],{cell:t}=e[0];Ee(t)}}function Oe(){const e=g();f(e)||He(e)||se(188);const t=e.anchor.getNode(),n=e.focus.getNode(),[o,,r]=ke(t),[l]=ke(n),[s,i,c]=Fe(r,o,l),{startColumn:a}=i,{startRow:u,startColumn:h}=c,d=Math.min(a,h),p=Math.max(a+o.__colSpan-1,h+l.__colSpan-1),m=p-d+1;if(s[0].length===p-d+1)return r.selectPrevious(),void r.remove();const C=s.length;for(let e=0;e<C;e++)for(let t=d;t<=p;t++){const{cell:n,startColumn:o}=s[e][t];if(o<d){if(t===d){const e=d-o;n.setColSpan(n.__colSpan-Math.min(m,n.__colSpan-e))}}else if(o+n.__colSpan-1>p){if(t===p){const e=p-o+1;n.setColSpan(n.__colSpan-e)}}else n.remove()}const S=s[u],_=a>h?S[a+o.__colSpan]:S[h+l.__colSpan];if(void 0!==_){const{cell:e}=_;Ee(e)}else{const e=h<a?S[h-1]:S[a-1],{cell:t}=e;Ee(t)}const w=r.getColWidths();if(w){const e=[...w];e.splice(d,m),r.setColWidths(e)}}function Ee(e){const t=e.getFirstDescendant();null==t?e.selectStart():t.getParentOrThrow().selectStart()}function Re(e,t){const n=e.getFirstChild();null!==n?n.insertBefore(t):e.append(t)}function Me(){const e=g();f(e)||He(e)||se(188);const t=e.anchor.getNode(),[n,o,r]=ke(t),l=n.__colSpan,i=n.__rowSpan;if(1===l&&1===i)return;const[c,a]=Fe(r,n,n),{startColumn:u,startRow:h}=a,d=n.__headerState&Z.COLUMN,p=Array.from({length:l},((e,t)=>{let n=d;for(let e=0;0!==n&&e<c.length;e++)n&=c[e][t+u].cell.__headerState;return n})),m=n.__headerState&Z.ROW,C=Array.from({length:i},((e,t)=>{let n=m;for(let e=0;0!==n&&e<c[0].length;e++)n&=c[t+h][e].cell.__headerState;return n}));if(l>1){for(let e=1;e<l;e++)n.insertAfter(ne(p[e]|C[0]).append(s()));n.setColSpan(1)}if(i>1){let e;for(let t=1;t<i;t++){const n=h+t,r=c[n];e=(e||o).getNextSibling(),he(e)||se(125);let i=null;for(let e=0;e<u;e++){const t=r[e],o=t.cell;t.startRow===n&&(i=o),o.__colSpan>1&&(e+=o.__colSpan-1)}if(null===i)for(let n=l-1;n>=0;n--)Re(e,ne(p[n]|C[t]).append(s()));else for(let e=l-1;e>=0;e--)i.insertAfter(ne(p[e]|C[t]).append(s()))}n.setRowSpan(1)}}function Fe(e,t,n){const[o,r,l]=Ke(e,t,n);return null===r&&se(207),null===l&&se(208),[o,r,l]}function Ke(e,t,n){const o=[];let r=null,l=null;function s(e){let t=o[e];return void 0===t&&(o[e]=t=[]),t}const i=e.getChildren();for(let e=0;e<i.length;e++){const o=i[e];he(o)||se(209);for(let c=o.getFirstChild(),a=0;null!=c;c=c.getNextSibling()){oe(c)||se(147);const o=s(e);for(;void 0!==o[a];)a++;const u={cell:c,startColumn:a,startRow:e},{__rowSpan:h,__colSpan:d}=c;for(let t=0;t<h&&!(e+t>=i.length);t++){const n=s(e+t);for(let e=0;e<d;e++)n[a+e]=u}null!==t&&null===r&&t.is(c)&&(r=u),null!==n&&null===l&&n.is(c)&&(l=u)}}return[o,r,l]}function ke(e){let n;if(e instanceof ee)n=e;else if("__type"in e){const o=t(e,oe);oe(o)||se(148),n=o}else{const o=t(e.getNode(),oe);oe(o)||se(148),n=o}const o=n.getParent();he(o)||se(149);const r=o.getParent();return ft(r)||se(210),[n,o,r]}function Ae(e){const[t,,n]=ke(e),o=n.getChildren(),r=o.length,l=o[0].getChildren().length,s=new Array(r);for(let e=0;e<r;e++)s[e]=new Array(l);for(let e=0;e<r;e++){const n=o[e].getChildren();let r=0;for(let o=0;o<n.length;o++){for(;s[e][r];)r++;const l=n[o],i=l.__rowSpan||1,c=l.__colSpan||1;for(let t=0;t<i;t++)for(let n=0;n<c;n++)s[e+t][r+n]=l;if(t===l)return{colSpan:c,columnIndex:r,rowIndex:e,rowSpan:i};r+=c}}return null}class Be{constructor(e,t,n){this.anchor=t,this.focus=n,t._selection=this,n._selection=this,this._cachedNodes=null,this.dirty=!1,this.tableKey=e}getStartEndPoints(){return[this.anchor,this.focus]}isBackward(){return this.focus.isBefore(this.anchor)}getCachedNodes(){return this._cachedNodes}setCachedNodes(e){this._cachedNodes=e}is(e){return!!He(e)&&(this.tableKey===e.tableKey&&this.anchor.is(e.anchor)&&this.focus.is(e.focus))}set(e,t,n){this.dirty=!0,this.tableKey=e,this.anchor.key=t,this.focus.key=n,this._cachedNodes=null}clone(){return new Be(this.tableKey,this.anchor,this.focus)}isCollapsed(){return!1}extract(){return this.getNodes()}insertRawText(e){}insertText(){}hasFormat(e){let t=0;this.getNodes().filter(oe).forEach((e=>{const n=e.getFirstChild();m(n)&&(t|=n.getTextFormat())}));const n=w[e];return!!(t&n)}insertNodes(e){const t=this.focus.getNode();i(t)||se(151);C(t.select(0,t.getChildrenSize())).insertNodes(e)}getShape(){const e=S(this.anchor.key);oe(e)||se(152);const t=Ae(e);null===t&&se(153);const n=S(this.focus.key);oe(n)||se(154);const o=Ae(n);null===o&&se(155);const r=Math.min(t.columnIndex,o.columnIndex),l=Math.max(t.columnIndex+t.colSpan-1,o.columnIndex+o.colSpan-1),s=Math.min(t.rowIndex,o.rowIndex),i=Math.max(t.rowIndex+t.rowSpan-1,o.rowIndex+o.rowSpan-1);return{fromX:Math.min(r,l),fromY:Math.min(s,i),toX:Math.max(r,l),toY:Math.max(s,i)}}getNodes(){const e=this._cachedNodes;if(null!==e)return e;const n=this.anchor.getNode(),o=this.focus.getNode(),r=t(n,oe),l=t(o,oe);oe(r)||se(152),oe(l)||se(154);const s=r.getParent();he(s)||se(156);const i=s.getParent();ft(i)||se(157);const c=l.getParents()[1];if(c!==i){if(i.isParentOf(l)){const e=c.getParent();null==e&&se(159),this.set(this.tableKey,l.getKey(),e.getKey())}else{const e=i.getParent();null==e&&se(158),this.set(this.tableKey,e.getKey(),l.getKey())}return this.getNodes()}const[a,u,h]=Fe(i,r,l);let d=Math.min(u.startColumn,h.startColumn),g=Math.min(u.startRow,h.startRow),f=Math.max(u.startColumn+u.cell.__colSpan-1,h.startColumn+h.cell.__colSpan-1),p=Math.max(u.startRow+u.cell.__rowSpan-1,h.startRow+h.cell.__rowSpan-1),m=d,C=g,S=d,w=g;function b(e){const{cell:t,startColumn:n,startRow:o}=e;d=Math.min(d,n),g=Math.min(g,o),f=Math.max(f,n+t.__colSpan-1),p=Math.max(p,o+t.__rowSpan-1)}for(;d<m||g<C||f>S||p>w;){if(d<m){const e=w-C,t=m-1;for(let n=0;n<=e;n++)b(a[C+n][t]);m=t}if(g<C){const e=S-m,t=C-1;for(let n=0;n<=e;n++)b(a[t][m+n]);C=t}if(f>S){const e=w-C,t=S+1;for(let n=0;n<=e;n++)b(a[C+n][t]);S=t}if(p>w){const e=S-m,t=w+1;for(let n=0;n<=e;n++)b(a[t][m+n]);w=t}}const y=new Map([[i.getKey(),i]]);let N=null;for(let e=g;e<=p;e++)for(let t=d;t<=f;t++){const{cell:n}=a[e][t],o=n.getParent();he(o)||se(160),o!==N&&y.set(o.getKey(),o),y.set(n.getKey(),n);for(const e of De(n))y.set(e.getKey(),e);N=o}const x=Array.from(y.values());return _()||(this._cachedNodes=x),x}getTextContent(){const e=this.getNodes().filter((e=>oe(e)));let t="";for(let n=0;n<e.length;n++){const o=e[n],r=o.__parent,l=(e[n+1]||{}).__parent;t+=o.getTextContent()+(l!==r?"\n":"\t")}return t}}function He(e){return e instanceof Be}function Pe(){const e=p("root",0,"element"),t=p("root",0,"element");return new Be("root",e,t)}function De(e){const t=[],n=[e];for(;n.length>0;){const o=n.pop();void 0===o&&se(112),i(o)&&n.unshift(...o.getChildren()),o!==e&&t.push(o)}return t}class We{constructor(e,t){this.isHighlightingCells=!1,this.anchorX=-1,this.anchorY=-1,this.focusX=-1,this.focusY=-1,this.listenersToRemove=new Set,this.tableNodeKey=t,this.editor=e,this.table={columns:0,domRows:[],rows:0},this.tableSelection=null,this.anchorCellNodeKey=null,this.focusCellNodeKey=null,this.anchorCell=null,this.focusCell=null,this.hasHijackedSelectionStyles=!1,this.trackTable(),this.isSelecting=!1,this.abortController=new AbortController,this.listenerOptions={signal:this.abortController.signal}}getTable(){return this.table}removeListeners(){this.abortController.abort("removeListeners"),Array.from(this.listenersToRemove).forEach((e=>e())),this.listenersToRemove.clear()}trackTable(){const e=new MutationObserver((e=>{this.editor.update((()=>{let t=!1;for(let n=0;n<e.length;n++){const o=e[n].target.nodeName;if("TABLE"===o||"TBODY"===o||"THEAD"===o||"TR"===o){t=!0;break}}if(!t)return;const n=this.editor.getElementByKey(this.tableNodeKey);if(!n)throw new Error("Expected to find TableElement in DOM");this.table=Xe(n)}))}));this.editor.update((()=>{const t=this.editor.getElementByKey(this.tableNodeKey);if(!t)throw new Error("Expected to find TableElement in DOM");this.table=Xe(t),e.observe(t,{attributes:!0,childList:!0,subtree:!0})}))}clearHighlight(){const e=this.editor;this.isHighlightingCells=!1,this.anchorX=-1,this.anchorY=-1,this.focusX=-1,this.focusY=-1,this.tableSelection=null,this.anchorCellNodeKey=null,this.focusCellNodeKey=null,this.anchorCell=null,this.focusCell=null,this.hasHijackedSelectionStyles=!1,this.enableHighlightStyle(),e.update((()=>{if(!ft(S(this.tableNodeKey)))throw new Error("Expected TableNode.");const t=e.getElementByKey(this.tableNodeKey);if(!t)throw new Error("Expected to find TableElement in DOM");const n=Xe(t);$e(e,n,null),b(null),e.dispatchCommand(y,void 0)}))}enableHighlightStyle(){const e=this.editor;e.update((()=>{const t=e.getElementByKey(this.tableNodeKey);if(!t)throw new Error("Expected to find TableElement in DOM");n(t,e._config.theme.tableSelection),t.classList.remove("disable-selection"),this.hasHijackedSelectionStyles=!1}))}disableHighlightStyle(){const t=this.editor;t.update((()=>{const n=t.getElementByKey(this.tableNodeKey);if(!n)throw new Error("Expected to find TableElement in DOM");e(n,t._config.theme.tableSelection),this.hasHijackedSelectionStyles=!0}))}updateTableTableSelection(e){if(null!==e&&e.tableKey===this.tableNodeKey){const t=this.editor;this.tableSelection=e,this.isHighlightingCells=!0,this.disableHighlightStyle(),$e(t,this.table,this.tableSelection)}else null==e?this.clearHighlight():(this.tableNodeKey=e.tableKey,this.updateTableTableSelection(e))}setFocusCellForSelection(e,t=!1){const n=this.editor;n.update((()=>{const o=S(this.tableNodeKey);if(!ft(o))throw new Error("Expected TableNode.");if(!n.getElementByKey(this.tableNodeKey))throw new Error("Expected to find TableElement in DOM");const r=e.x,l=e.y;if(this.focusCell=e,null!==this.anchorCell){const e=Ie(n._window);e&&e.setBaseAndExtent(this.anchorCell.elem,0,this.focusCell.elem,0)}if(this.isHighlightingCells||this.anchorX===r&&this.anchorY===l&&!t){if(r===this.focusX&&l===this.focusY)return}else this.isHighlightingCells=!0,this.disableHighlightStyle();if(this.focusX=r,this.focusY=l,this.isHighlightingCells){const t=N(e.elem);if(null!=this.tableSelection&&null!=this.anchorCellNodeKey&&oe(t)&&o.is(ot(t))){const e=t.getKey();this.tableSelection=this.tableSelection.clone()||Pe(),this.focusCellNodeKey=e,this.tableSelection.set(this.tableNodeKey,this.anchorCellNodeKey,this.focusCellNodeKey),b(this.tableSelection),n.dispatchCommand(y,void 0),$e(n,this.table,this.tableSelection)}}}))}setAnchorCellForSelection(e){this.isHighlightingCells=!1,this.anchorCell=e,this.anchorX=e.x,this.anchorY=e.y,this.editor.update((()=>{const t=N(e.elem);if(oe(t)){const e=t.getKey();this.tableSelection=null!=this.tableSelection?this.tableSelection.clone():Pe(),this.anchorCellNodeKey=e}}))}formatCells(e){this.editor.update((()=>{const t=g();He(t)||se(11);const n=x(),o=n.anchor,r=n.focus,l=t.getNodes().filter(oe),s=l[0].getFirstChild(),i=m(s)?s.getFormatFlags(e,null):null;l.forEach((t=>{o.set(t.getKey(),0,"element"),r.set(t.getKey(),t.getChildrenSize(),"element"),n.formatText(e,i)})),b(t),this.editor.dispatchCommand(y,void 0)}))}clearText(){const e=this.editor;e.update((()=>{const t=S(this.tableNodeKey);if(!ft(t))throw new Error("Expected TableNode.");const n=g();He(n)||se(11);const o=n.getNodes().filter(oe);if(o.length!==this.table.columns*this.table.rows)o.forEach((e=>{if(i(e)){const t=s(),n=d();t.append(n),e.append(t),e.getChildren().forEach((e=>{e!==t&&e.remove()}))}})),$e(e,this.table,null),b(null),e.dispatchCommand(y,void 0);else{t.selectPrevious(),t.remove();T().selectStart()}}))}}const Le="__lexicalTableSelection",Ie=e=>ie?(e||window).getSelection():null;function Ue(e,n,r,l){const c=r.getRootElement();if(null===c)throw new Error("No root element.");const u=new We(r,e.getKey()),h=r._window||window;!function(e,t){null!==ze(e)&&se(205);e[Le]=t}(n,u),u.listenersToRemove.add((()=>function(e,t){ze(e)===t&&delete e[Le]}(n,u)));const p=()=>{const e=()=>{u.isSelecting=!1,h.removeEventListener("mouseup",e),h.removeEventListener("mousemove",t)},t=n=>{setTimeout((()=>{if(1&~n.buttons&&u.isSelecting)return u.isSelecting=!1,h.removeEventListener("mouseup",e),void h.removeEventListener("mousemove",t);const o=Ye(n.target);null===o||u.anchorX===o.x&&u.anchorY===o.y||(n.preventDefault(),u.setFocusCellForSelection(o))}),0)};return{onMouseMove:t,onMouseUp:e}};n.addEventListener("mousedown",(e=>{setTimeout((()=>{if(0!==e.button)return;if(!h)return;const t=Ye(e.target);null!==t&&(lt(e),u.setAnchorCellForSelection(t));const{onMouseUp:n,onMouseMove:o}=p();u.isSelecting=!0,h.addEventListener("mouseup",n,u.listenerOptions),h.addEventListener("mousemove",o,u.listenerOptions)}),0)}),u.listenerOptions);h.addEventListener("mousedown",(e=>{0===e.button&&r.update((()=>{const t=g(),n=e.target;He(t)&&t.tableKey===u.tableNodeKey&&c.contains(n)&&u.clearHighlight()}))}),u.listenerOptions),u.listenersToRemove.add(r.registerCommand(v,(t=>rt(r,t,"down",e,u)),O)),u.listenersToRemove.add(r.registerCommand(E,(t=>rt(r,t,"up",e,u)),O)),u.listenersToRemove.add(r.registerCommand(R,(t=>rt(r,t,"backward",e,u)),O)),u.listenersToRemove.add(r.registerCommand(M,(t=>rt(r,t,"forward",e,u)),O)),u.listenersToRemove.add(r.registerCommand(F,(e=>{const n=g();if(He(n)){const o=t(n.focus.getNode(),oe);if(oe(o))return lt(e),o.selectEnd(),!0}return!1}),O));[K,k,A].forEach((n=>{u.listenersToRemove.add(r.registerCommand(n,(n=>()=>{const o=g();if(!Qe(o,e))return!1;if(He(o))return u.clearText(),!0;if(f(o)){const r=t(o.anchor.getNode(),(e=>oe(e)));if(!oe(r))return!1;const l=o.anchor.getNode(),s=o.focus.getNode(),c=e.isParentOf(l),a=e.isParentOf(s);if(c&&!a||a&&!c)return u.clearText(),!0;const h=t(o.anchor.getNode(),(e=>i(e))),d=h&&t(h,(e=>i(e)&&oe(e.getParent())));if(!i(d)||!i(h))return!1;if(n===k&&null===d.getPreviousSibling())return!0}return!1})(n),B))}));const m=t=>{const n=g();if(!He(n)&&!f(n))return!1;const o=e.isParentOf(n.anchor.getNode());if(o!==e.isParentOf(n.focus.getNode())){const t=o?"anchor":"focus",r=o?"focus":"anchor",{key:l,offset:s,type:i}=n[r];return e[n[t].isBefore(n[r])?"selectPrevious":"selectNext"]()[r].set(l,s,i),!1}return!!He(n)&&(t&&(t.preventDefault(),t.stopPropagation()),u.clearText(),!0)};function C(t){const n=e.getCordsFromCellNode(t,u.table);return e.getDOMCellFromCordsOrThrow(n.x,n.y,u.table)}return u.listenersToRemove.add(r.registerCommand(H,m,B)),u.listenersToRemove.add(r.registerCommand(P,m,B)),u.listenersToRemove.add(r.registerCommand(D,(e=>{const t=g();if(t){if(!He(t)&&!f(t))return!1;G(r,o(e,ClipboardEvent)?e:null,Q(t));const n=m(e);return f(t)?(t.removeText(),!0):n}return!1}),B)),u.listenersToRemove.add(r.registerCommand(W,(n=>{const o=g();if(!Qe(o,e))return!1;if(He(o))return u.formatCells(n),!0;if(f(o)){const e=t(o.anchor.getNode(),(e=>oe(e)));if(!oe(e))return!1}return!1}),B)),u.listenersToRemove.add(r.registerCommand(L,(t=>{const n=g();if(!He(n)||!Qe(n,e))return!1;const o=n.anchor.getNode(),r=n.focus.getNode();if(!oe(o)||!oe(r))return!1;const[l,s,c]=Fe(e,o,r),a=Math.max(s.startRow,c.startRow),u=Math.max(s.startColumn,c.startColumn),h=Math.min(s.startRow,c.startRow),d=Math.min(s.startColumn,c.startColumn);for(let e=h;e<=a;e++)for(let n=d;n<=u;n++){const o=l[e][n].cell;o.setFormat(t);const r=o.getChildren();for(let e=0;e<r.length;e++){const n=r[e];i(n)&&!n.isInline()&&n.setFormat(t)}}return!0}),B)),u.listenersToRemove.add(r.registerCommand(I,(n=>{const o=g();if(!Qe(o,e))return!1;if(He(o))return u.clearHighlight(),!1;if(f(o)){const l=t(o.anchor.getNode(),(e=>oe(e)));if(!oe(l))return!1;if("string"==typeof n){const t=it(r,o,e);if(t)return st(t,e,[d(n)]),!0}}return!1}),B)),l&&u.listenersToRemove.add(r.registerCommand(U,(t=>{const n=g();if(!f(n)||!n.isCollapsed()||!Qe(n,e))return!1;const o=nt(n.anchor.getNode());if(null===o)return!1;lt(t);const r=e.getCordsFromCellNode(o,u.table);return qe(u,e,r.x,r.y,t.shiftKey?"backward":"forward"),!0}),B)),u.listenersToRemove.add(r.registerCommand(z,(t=>e.isSelected()),O)),u.listenersToRemove.add(r.registerCommand(Y,(e=>{const{nodes:n,selection:o}=e,r=o.getStartEndPoints(),l=He(o),i=f(o)&&null!==t(o.anchor.getNode(),(e=>oe(e)))&&null!==t(o.focus.getNode(),(e=>oe(e)))||l;if(1!==n.length||!ft(n[0])||!i||null===r)return!1;const[c]=r,u=n[0],h=u.getChildren(),d=u.getFirstChildOrThrow().getChildrenSize(),g=u.getChildrenSize(),p=t(c.getNode(),(e=>oe(e))),m=p&&t(p,(e=>he(e))),C=m&&t(m,(e=>ft(e)));if(!oe(p)||!he(m)||!ft(C))return!1;const S=m.getIndexWithinParent(),_=Math.min(C.getChildrenSize()-1,S+g-1),w=p.getIndexWithinParent(),b=Math.min(m.getChildrenSize()-1,w+d-1),y=Math.min(w,b),N=Math.min(S,_),x=Math.max(w,b),T=Math.max(S,_),v=C.getChildren();let O=0;for(let e=N;e<=T;e++){const t=v[e];if(!he(t))return!1;const n=h[O];if(!he(n))return!1;const o=t.getChildren(),r=n.getChildren();let l=0;for(let e=y;e<=x;e++){const t=o[e];if(!oe(t))return!1;const n=r[l];if(!oe(n))return!1;const i=t.getChildren();n.getChildren().forEach((e=>{if(a(e)){s().append(e),t.append(e)}else t.append(e)})),i.forEach((e=>e.remove())),l++}O++}return!0}),B)),u.listenersToRemove.add(r.registerCommand(y,(()=>{const t=g(),n=X();if(f(t)){const{anchor:n,focus:o}=t,l=n.getNode(),s=o.getNode(),i=nt(l),c=nt(s),a=!(!i||!e.is(ot(i))),d=!(!c||!e.is(ot(c))),g=a!==d,f=a&&d,m=t.isBackward();if(g){const n=t.clone();if(d){const[t]=Fe(e,c,c),o=t[0][0].cell,r=t[t.length-1].at(-1).cell;n.focus.set(m?o.getKey():r.getKey(),m?o.getChildrenSize():r.getChildrenSize(),"element")}else if(a){const[t]=Fe(e,i,i),o=t[0][0].cell,r=t[t.length-1].at(-1).cell;n.anchor.set(m?r.getKey():o.getKey(),m?r.getChildrenSize():0,"element")}b(n),je(r,u)}else f&&(i.is(c)||(u.setAnchorCellForSelection(C(i)),u.setFocusCellForSelection(C(c),!0),u.isSelecting||setTimeout((()=>{const{onMouseUp:e,onMouseMove:t}=p();u.isSelecting=!0,h.addEventListener("mouseup",e),h.addEventListener("mousemove",t)}),0)))}else if(t&&He(t)&&t.is(n)&&t.tableKey===e.getKey()){const n=Ie(r._window);if(n&&n.anchorNode&&n.focusNode){const o=N(n.focusNode),l=o&&!e.is(ot(o)),s=N(n.anchorNode),i=s&&e.is(ot(s));if(l&&i&&n.rangeCount>0){const o=$(n,r);o&&(o.anchor.set(e.getKey(),t.isBackward()?e.getChildrenSize():0,"element"),n.removeAllRanges(),b(o))}}}return t&&!t.is(n)&&(He(t)||He(n))&&u.tableSelection&&!u.tableSelection.is(n)?(He(t)&&t.tableKey===u.tableNodeKey?u.updateTableTableSelection(t):!He(t)&&He(n)&&n.tableKey===u.tableNodeKey&&u.updateTableTableSelection(null),!1):(u.hasHijackedSelectionStyles&&!e.isSelected()?function(e,t){t.enableHighlightStyle(),Je(t.table,(t=>{const n=t.elem;t.highlighted=!1,tt(e,t),n.getAttribute("style")||n.removeAttribute("style")}))}(r,u):!u.hasHijackedSelectionStyles&&e.isSelected()&&je(r,u),!1)}),B)),u.listenersToRemove.add(r.registerCommand(J,(()=>{const t=g();if(!f(t)||!t.isCollapsed()||!Qe(t,e))return!1;const n=it(r,t,e);return!!n&&(st(n,e),!0)}),B)),u}function ze(e){return e[Le]||null}function Ye(e){let t=e;for(;null!=t;){const e=t.nodeName;if("TD"===e||"TH"===e){const e=t._cell;return void 0===e?null:e}t=t.parentNode}return null}function Xe(e){const t=[],n={columns:0,domRows:t,rows:0};let o=e.querySelector("tr"),r=0,l=0;for(t.length=0;null!=o;){const e=o.nodeName;if("TD"===e||"TH"===e){const e={elem:o,hasBackgroundColor:""!==o.style.backgroundColor,highlighted:!1,x:r,y:l};o._cell=e;let n=t[l];void 0===n&&(n=t[l]=[]),n[r]=e}else{const e=o.firstChild;if(null!=e){o=e;continue}}const n=o.nextSibling;if(null!=n){r++,o=n;continue}const s=o.parentNode;if(null!=s){const e=s.nextSibling;if(null==e)break;l++,r=0,o=e}}return n.columns=r+1,n.rows=l+1,n}function $e(e,t,n){const o=new Set(n?n.getNodes():[]);Je(t,((t,n)=>{const r=t.elem;o.has(n)?(t.highlighted=!0,et(e,t)):(t.highlighted=!1,tt(e,t),r.getAttribute("style")||r.removeAttribute("style"))}))}function Je(e,t){const{domRows:n}=e;for(let e=0;e<n.length;e++){const o=n[e];if(o)for(let n=0;n<o.length;n++){const r=o[n];if(!r)continue;const l=N(r.elem);null!==l&&t(r,l,{x:n,y:e})}}}function je(e,t){t.disableHighlightStyle(),Je(t.table,(t=>{t.highlighted=!0,et(e,t)}))}const qe=(e,t,n,o,r)=>{const l="forward"===r;switch(r){case"backward":case"forward":return n!==(l?e.table.columns-1:0)?Ve(t.getCellNodeFromCordsOrThrow(n+(l?1:-1),o,e.table),l):o!==(l?e.table.rows-1:0)?Ve(t.getCellNodeFromCordsOrThrow(l?0:e.table.columns-1,o+(l?1:-1),e.table),l):l?t.selectNext():t.selectPrevious(),!0;case"up":return 0!==o?Ve(t.getCellNodeFromCordsOrThrow(n,o-1,e.table),!1):t.selectPrevious(),!0;case"down":return o!==e.table.rows-1?Ve(t.getCellNodeFromCordsOrThrow(n,o+1,e.table),!0):t.selectNext(),!0;default:return!1}},Ge=(e,t,n,o,r)=>{const l="forward"===r;switch(r){case"backward":case"forward":return n!==(l?e.table.columns-1:0)&&e.setFocusCellForSelection(t.getDOMCellFromCordsOrThrow(n+(l?1:-1),o,e.table)),!0;case"up":return 0!==o&&(e.setFocusCellForSelection(t.getDOMCellFromCordsOrThrow(n,o-1,e.table)),!0);case"down":return o!==e.table.rows-1&&(e.setFocusCellForSelection(t.getDOMCellFromCordsOrThrow(n,o+1,e.table)),!0);default:return!1}};function Qe(e,t){if(f(e)||He(e)){const n=t.isParentOf(e.anchor.getNode()),o=t.isParentOf(e.focus.getNode());return n&&o}return!1}function Ve(e,t){t?e.selectStart():e.selectEnd()}const Ze="172,206,247";function et(e,t){const n=t.elem,o=N(n);oe(o)||se(131);null===o.getBackgroundColor()?n.style.setProperty("background-color",`rgb(${Ze})`):n.style.setProperty("background-image",`linear-gradient(to right, rgba(${Ze},0.85), rgba(${Ze},0.85))`),n.style.setProperty("caret-color","transparent")}function tt(e,t){const n=t.elem,o=N(n);oe(o)||se(131);null===o.getBackgroundColor()&&n.style.removeProperty("background-color"),n.style.removeProperty("background-image"),n.style.removeProperty("caret-color")}function nt(e){const n=t(e,oe);return oe(n)?n:null}function ot(e){const n=t(e,ft);return ft(n)?n:null}function rt(e,n,o,r,l){if(("up"===o||"down"===o)&&function(e){const t=e.getRootElement();if(!t)return!1;return t.hasAttribute("aria-controls")&&"typeahead-menu"===t.getAttribute("aria-controls")}(e))return!1;const s=g();if(!Qe(s,r)){if(f(s)){if(s.isCollapsed()&&"backward"===o){const e=s.anchor.type,o=s.anchor.offset;if("element"!==e&&("text"!==e||0!==o))return!1;const r=s.anchor.getNode();if(!r)return!1;const l=t(r,(e=>i(e)&&!e.isInline()));if(!l)return!1;const c=l.getPreviousSibling();return!(!c||!ft(c))&&(lt(n),c.selectEnd(),!0)}if(n.shiftKey&&("up"===o||"down"===o)){const e=s.focus.getNode();if(!s.isCollapsed()&&("up"===o&&!s.isBackward()||"down"===o&&s.isBackward())){let l=t(e,(e=>ft(e)));if(oe(l)&&(l=t(l,ft)),l!==r)return!1;if(!l)return!1;const c="down"===o?l.getNextSibling():l.getPreviousSibling();if(!c)return!1;let u=0;"up"===o&&i(c)&&(u=c.getChildrenSize());let h=c;if("up"===o&&i(c)){const e=c.getLastChild();h=e||c,u=a(h)?h.getTextContentSize():0}const d=s.clone();return d.focus.set(h.getKey(),u,a(h)?"text":"element"),b(d),lt(n),!0}if(j(e)){const e="up"===o?s.getNodes()[s.getNodes().length-1]:s.getNodes()[0];if(e){const n=t(e,oe);if(n&&r.isParentOf(n)){const e=r.getFirstDescendant(),t=r.getLastDescendant();if(!e||!t)return!1;const[n]=ke(e),[o]=ke(t),s=r.getCordsFromCellNode(n,l.table),i=r.getCordsFromCellNode(o,l.table),c=r.getDOMCellFromCordsOrThrow(s.x,s.y,l.table),a=r.getDOMCellFromCordsOrThrow(i.x,i.y,l.table);return l.setAnchorCellForSelection(c),l.setFocusCellForSelection(a,!0),!0}}return!1}{let r=t(e,(e=>i(e)&&!e.isInline()));if(oe(r)&&(r=t(r,ft)),!r)return!1;const c="down"===o?r.getNextSibling():r.getPreviousSibling();if(ft(c)&&l.tableNodeKey===c.getKey()){const e=c.getFirstDescendant(),t=c.getLastDescendant();if(!e||!t)return!1;const[r]=ke(e),[l]=ke(t),i=s.clone();return i.focus.set(("up"===o?r:l).getKey(),"up"===o?0:l.getChildrenSize(),"element"),lt(n),b(i),!0}}}}return!1}if(f(s)&&s.isCollapsed()){const{anchor:c,focus:a}=s,u=t(c.getNode(),oe),h=t(a.getNode(),oe);if(!oe(u)||!u.is(h))return!1;const d=ot(u);if(d!==r&&null!=d){const t=e.getElementByKey(d.getKey());if(null!=t)return l.table=Xe(t),rt(e,n,o,d,l)}if("backward"===o||"forward"===o){const e=c.type,l=c.offset,a=c.getNode();if(!a)return!1;const u=s.getNodes();return(1!==u.length||!q(u[0]))&&(!!function(e,n,o,r){return function(e,t,n){return"element"===e&&("backward"===n?null===t.getPreviousSibling():null===t.getNextSibling())}(e,o,r)||function(e,n,o,r){const l=t(o,(e=>i(e)&&!e.isInline()));if(!l)return!1;const s="backward"===r?0===n:n===o.getTextContentSize();return"text"===e&&s&&("backward"===r?null===l.getPreviousSibling():null===l.getNextSibling())}(e,n,o,r)}(e,l,a,o)&&function(e,n,o,r){const l=t(n,oe);if(!oe(l))return!1;const[s,c]=Fe(o,l,l);if(!function(e,t,n){const o=e[0][0],r=e[e.length-1][e[0].length-1],{startColumn:l,startRow:s}=t;return"backward"===n?l===o.startColumn&&s===o.startRow:l===r.startColumn&&s===r.startRow}(s,c,r))return!1;const a=function(e,n,o){const r=t(e,(e=>i(e)&&!e.isInline()));if(!r)return;const l="backward"===n?r.getPreviousSibling():r.getNextSibling();return l&&ft(l)?l:"backward"===n?o.getPreviousSibling():o.getNextSibling()}(n,r,o);if(!a||ft(a))return!1;lt(e),"backward"===r?a.selectEnd():a.selectStart();return!0}(n,a,r,o))}const g=e.getElementByKey(u.__key),f=e.getElementByKey(c.key);if(null==f||null==g)return!1;let p;if("element"===c.type)p=f.getBoundingClientRect();else{const e=window.getSelection();if(null===e||0===e.rangeCount)return!1;p=e.getRangeAt(0).getBoundingClientRect()}const m="up"===o?u.getFirstChild():u.getLastChild();if(null==m)return!1;const C=e.getElementByKey(m.__key);if(null==C)return!1;const S=C.getBoundingClientRect();if("up"===o?S.top>p.top-p.height:p.bottom+p.height>S.bottom){lt(n);const e=r.getCordsFromCellNode(u,l.table);if(!n.shiftKey)return qe(l,r,e.x,e.y,o);{const t=r.getDOMCellFromCordsOrThrow(e.x,e.y,l.table);l.setAnchorCellForSelection(t),l.setFocusCellForSelection(t,!0)}return!0}}else if(He(s)){const{anchor:i,focus:c}=s,a=t(i.getNode(),oe),u=t(c.getNode(),oe),[h]=s.getNodes(),d=e.getElementByKey(h.getKey());if(!oe(a)||!oe(u)||!ft(h)||null==d)return!1;l.updateTableTableSelection(s);const g=Xe(d),f=r.getCordsFromCellNode(a,g),p=r.getDOMCellFromCordsOrThrow(f.x,f.y,g);if(l.setAnchorCellForSelection(p),lt(n),n.shiftKey){const e=r.getCordsFromCellNode(u,g);return Ge(l,h,e.x,e.y,o)}return u.selectEnd(),!0}return!1}function lt(e){e.preventDefault(),e.stopImmediatePropagation(),e.stopPropagation()}function st(e,t,n){const o=s();"first"===e?t.insertBefore(o):t.insertAfter(o),o.append(...n||[]),o.selectEnd()}function it(e,n,o){const r=o.getParent();if(!r)return;const l=e.getElementByKey(r.getKey());if(!l)return;const s=window.getSelection();if(!s||s.anchorNode!==l)return;const i=t(n.anchor.getNode(),(e=>oe(e)));if(!i)return;const c=t(i,(e=>ft(e)));if(!ft(c)||!c.is(o))return;const[a,u]=Fe(o,i,i),h=a[0][0],d=a[a.length-1][a[0].length-1],{startRow:g,startColumn:f}=u,p=g===h.startRow&&f===h.startColumn,m=g===d.startRow&&f===d.startColumn;return p?"first":m?"last":void 0}function ct(e,t,n,o){const r=e.querySelector("colgroup");if(!r)return;const l=[];for(let e=0;e<n;e++){const t=document.createElement("col"),n=o&&o[e];n&&(t.style.width=`${n}px`),l.push(t)}r.replaceChildren(...l)}function at(t,o,r){r?(e(t,o.theme.tableRowStriping),t.setAttribute("data-lexical-row-striping","true")):(n(t,o.theme.tableRowStriping),t.removeAttribute("data-lexical-row-striping"))}class ut extends l{static getType(){return"table"}getColWidths(){return this.getLatest().__colWidths}setColWidths(e){const t=this.getWritable();return t.__colWidths=e,t}static clone(e){return new ut(e.__key)}afterCloneFrom(e){super.afterCloneFrom(e),this.__colWidths=e.__colWidths,this.__rowStriping=e.__rowStriping}static importDOM(){return{table:e=>({conversion:dt,priority:1})}}static importJSON(e){const t=gt();return t.__rowStriping=e.rowStriping||!1,t.__colWidths=e.colWidths,t}constructor(e){super(e),this.__rowStriping=!1}exportJSON(){return{...super.exportJSON(),colWidths:this.getColWidths(),rowStriping:this.__rowStriping?this.__rowStriping:void 0,type:"table",version:1}}createDOM(t,n){const o=document.createElement("table"),r=document.createElement("colgroup");return o.appendChild(r),ct(o,0,this.getColumnCount(),this.getColWidths()),e(o,t.theme.table),this.__rowStriping&&at(o,t,!0),o}updateDOM(e,t,n){return e.__rowStriping!==this.__rowStriping&&at(t,n,this.__rowStriping),ct(t,0,this.getColumnCount(),this.getColWidths()),!1}exportDOM(e){return{...super.exportDOM(e),after:e=>{if(e){const t=e.cloneNode(),n=document.createElement("colgroup"),o=document.createElement("tbody");if(r(e)){const t=e.querySelectorAll("col");n.append(...t);const r=e.querySelectorAll("tr");o.append(...r)}return t.replaceChildren(n,o),t}}}}canBeEmpty(){return!1}isShadowRoot(){return!0}getCordsFromCellNode(e,t){const{rows:n,domRows:o}=t;for(let t=0;t<n;t++){const n=o[t];if(null==n)continue;const r=n.findIndex((t=>{if(!t)return;const{elem:n}=t;return N(n)===e}));if(-1!==r)return{x:r,y:t}}throw new Error("Cell not found in table.")}getDOMCellFromCords(e,t,n){const{domRows:o}=n,r=o[t];if(null==r)return null;const l=r[e<r.length?e:r.length-1];return null==l?null:l}getDOMCellFromCordsOrThrow(e,t,n){const o=this.getDOMCellFromCords(e,t,n);if(!o)throw new Error("Cell not found at cords.");return o}getCellNodeFromCords(e,t,n){const o=this.getDOMCellFromCords(e,t,n);if(null==o)return null;const r=N(o.elem);return oe(r)?r:null}getCellNodeFromCordsOrThrow(e,t,n){const o=this.getCellNodeFromCords(e,t,n);if(!o)throw new Error("Node at cords not TableCellNode.");return o}getRowStriping(){return Boolean(this.getLatest().__rowStriping)}setRowStriping(e){this.getWritable().__rowStriping=e}canSelectBefore(){return!0}canIndent(){return!1}getColumnCount(){const e=this.getFirstChild();if(!e)return 0;let t=0;return e.getChildren().forEach((e=>{oe(e)&&(t+=e.getColSpan())})),t}}function ht(e,t){const n=e.getElementByKey(t.getKey());if(null==n)throw new Error("Table Element Not Found");return Xe(n)}function dt(e){const t=gt();e.hasAttribute("data-lexical-row-striping")&&t.setRowStriping(!0);const n=e.querySelector(":scope > colgroup");if(n){let e=[];for(const t of n.querySelectorAll(":scope > col")){const n=t.style.width;if(!n||!V.test(n)){e=void 0;break}e.push(parseFloat(n))}e&&t.setColWidths(e)}return{node:t}}function gt(){return u(new ut)}function ft(e){return e instanceof ut}export{Fe as $computeTableMap,Ke as $computeTableMapSkipCellCheck,ne as $createTableCellNode,gt as $createTableNode,de as $createTableNodeWithDimensions,ue as $createTableRowNode,Pe as $createTableSelection,Te as $deleteTableColumn,Oe as $deleteTableColumn__EXPERIMENTAL,ve as $deleteTableRow__EXPERIMENTAL,nt as $findCellNode,ot as $findTableNode,ht as $getElementForTableNode,ke as $getNodeTriplet,ge as $getTableCellNodeFromLexicalNode,Ae as $getTableCellNodeRect,Ce as $getTableColumnIndexFromTableCellNode,pe as $getTableNodeFromLexicalNodeOrThrow,me as $getTableRowIndexFromTableCellNode,fe as $getTableRowNodeFromTableCellNodeOrThrow,Ne as $insertTableColumn,xe as $insertTableColumn__EXPERIMENTAL,we as $insertTableRow,ye as $insertTableRow__EXPERIMENTAL,oe as $isTableCellNode,ft as $isTableNode,he as $isTableRowNode,He as $isTableSelection,_e as $removeTableRowAtIndex,Me as $unmergeCell,re as INSERT_TABLE_COMMAND,Z as TableCellHeaderStates,ee as TableCellNode,ut as TableNode,We as TableObserver,ce as TableRowNode,Ue as applyTableHandlers,Ye as getDOMCellFromTarget,ze as getTableObserverFromTableElement};
@@ -28,9 +28,19 @@ export type TableCellSiblings = {
28
28
  export declare function $getTableCellSiblingsFromTableCellNode(tableCellNode: TableCellNode, table: TableDOMTable): TableCellSiblings;
29
29
  export declare function $removeTableRowAtIndex(tableNode: TableNode, indexToDelete: number): TableNode;
30
30
  export declare function $insertTableRow(tableNode: TableNode, targetIndex: number, shouldInsertAfter: boolean | undefined, rowCount: number, table: TableDOMTable): TableNode;
31
- export declare function $insertTableRow__EXPERIMENTAL(insertAfter?: boolean): void;
31
+ /**
32
+ * Inserts a table row before or after the current focus cell node,
33
+ * taking into account any spans. If successful, returns the
34
+ * inserted table row node.
35
+ */
36
+ export declare function $insertTableRow__EXPERIMENTAL(insertAfter?: boolean): TableRowNode | null;
32
37
  export declare function $insertTableColumn(tableNode: TableNode, targetIndex: number, shouldInsertAfter: boolean | undefined, columnCount: number, table: TableDOMTable): TableNode;
33
- export declare function $insertTableColumn__EXPERIMENTAL(insertAfter?: boolean): void;
38
+ /**
39
+ * Inserts a column before or after the current focus cell node,
40
+ * taking into account any spans. If successful, returns the
41
+ * first inserted cell node.
42
+ */
43
+ export declare function $insertTableColumn__EXPERIMENTAL(insertAfter?: boolean): TableCellNode | null;
34
44
  export declare function $deleteTableColumn(tableNode: TableNode, targetIndex: number): TableNode;
35
45
  export declare function $deleteTableRow__EXPERIMENTAL(): void;
36
46
  export declare function $deleteTableColumn__EXPERIMENTAL(): void;
package/package.json CHANGED
@@ -8,13 +8,13 @@
8
8
  "table"
9
9
  ],
10
10
  "license": "MIT",
11
- "version": "0.18.1-nightly.20241016.0",
11
+ "version": "0.18.1-nightly.20241017.0",
12
12
  "main": "LexicalTable.js",
13
13
  "types": "index.d.ts",
14
14
  "dependencies": {
15
- "@lexical/clipboard": "0.18.1-nightly.20241016.0",
16
- "@lexical/utils": "0.18.1-nightly.20241016.0",
17
- "lexical": "0.18.1-nightly.20241016.0"
15
+ "@lexical/clipboard": "0.18.1-nightly.20241017.0",
16
+ "@lexical/utils": "0.18.1-nightly.20241017.0",
17
+ "lexical": "0.18.1-nightly.20241017.0"
18
18
  },
19
19
  "repository": {
20
20
  "type": "git",