@ones-editor/editor 1.1.31-beta.3 → 1.1.32-beta.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.
@@ -25,11 +25,11 @@ export declare class EditorInput implements OnesEditorInput {
25
25
  editor: OnesEditor;
26
26
  composing: boolean;
27
27
  callbacks: EditorInputCallbacks;
28
- inputElement: HTMLInputElement;
28
+ inputElement: HTMLTextAreaElement;
29
29
  constructor(editor: OnesEditor, callbacks: EditorInputCallbacks);
30
30
  private isInCommandBar;
31
31
  destroy(): void;
32
- getInput(): HTMLInputElement;
32
+ getInput(): HTMLTextAreaElement;
33
33
  focus(): void;
34
34
  isInDisableScrollMask(target: Node): boolean;
35
35
  handleWindowBlur: () => void;
@@ -583,7 +583,7 @@ export type PasteOptions = {
583
583
  toPlainText?: boolean;
584
584
  };
585
585
  export interface OnesEditorInput {
586
- readonly inputElement: HTMLInputElement;
586
+ readonly inputElement: HTMLTextAreaElement;
587
587
  destroy: () => void;
588
588
  focus: () => void;
589
589
  handleDocumentSelectionChange: () => void;
@@ -5,7 +5,6 @@ export interface DocTableCellData {
5
5
  col: number;
6
6
  colSpan: number;
7
7
  rowSpan: number;
8
- background?: string;
9
8
  virtual?: boolean;
10
9
  }
11
10
  export declare class DocTableRow {
@@ -6,7 +6,6 @@ export declare class TableCell implements DocTableCellData {
6
6
  col: number;
7
7
  colSpan: number;
8
8
  rowSpan: number;
9
- background?: string;
10
9
  virtual?: boolean;
11
10
  table: HTMLTableElement;
12
11
  constructor(table: HTMLTableElement, cellData: DocTableCellData);