@ones-editor/editor 1.1.31-beta.2 → 1.1.31-beta.3

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.
@@ -16,6 +16,8 @@ declare class UndoManager implements OnesEditorUndoManager, EditorDocLocalAction
16
16
  private endGroup;
17
17
  hasGroup(): boolean;
18
18
  runInGroup<T>(action: () => T): T;
19
+ private verifyPos;
20
+ private checkRange;
19
21
  undo(): boolean;
20
22
  redo(): boolean;
21
23
  canUndo(): boolean;
@@ -5,6 +5,7 @@ export interface DocTableCellData {
5
5
  col: number;
6
6
  colSpan: number;
7
7
  rowSpan: number;
8
+ background?: string;
8
9
  virtual?: boolean;
9
10
  }
10
11
  export declare class DocTableRow {
@@ -6,6 +6,7 @@ export declare class TableCell implements DocTableCellData {
6
6
  col: number;
7
7
  colSpan: number;
8
8
  rowSpan: number;
9
+ background?: string;
9
10
  virtual?: boolean;
10
11
  table: HTMLTableElement;
11
12
  constructor(table: HTMLTableElement, cellData: DocTableCellData);