quill-table-up 3.5.0 → 3.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -444,6 +444,7 @@ declare class TableClipboard extends Clipboard {
444
444
  constructor(quill: Quill, options: Partial<ClipboardOptions>);
445
445
  normalizeHTML(doc: Document): void;
446
446
  getStyleBackgroundColor(node: Node, delta: Delta$1): void;
447
+ getTargetFull(): boolean;
447
448
  matchTable(node: Node, delta: Delta$1): Delta$1;
448
449
  matchTbody(node: Node, delta: Delta$1): Delta$1;
449
450
  matchThead(node: Node, delta: Delta$1): Delta$1;
@@ -910,6 +911,7 @@ declare class TableSelection extends TableDomSelector {
910
911
  setSelectionData(selection: Selection, selectionData: SelectionData): void;
911
912
  selectionDirectionUp(selection: SelectionData): boolean;
912
913
  resolveOptions(options: Partial<TableSelectionOptions>): TableSelectionOptions;
914
+ getSelectedTdsFormat(): Record<string, any>;
913
915
  selectionChangeHandler: () => void;
914
916
  helpLinesInitial(): HTMLDivElement;
915
917
  computeSelectedTds(startPoint: Position, endPoint: Position): TableCellInnerFormat[];