@ones-editor/editor 1.1.20-beta.1 → 1.1.20-beta.2

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: HTMLElement): boolean;
35
35
  handleWindowBlur: () => void;
@@ -581,7 +581,7 @@ export type PasteOptions = {
581
581
  toPlainText?: boolean;
582
582
  };
583
583
  export interface OnesEditorInput {
584
- readonly inputElement: HTMLInputElement;
584
+ readonly inputElement: HTMLTextAreaElement;
585
585
  destroy: () => void;
586
586
  focus: () => void;
587
587
  handleDocumentSelectionChange: () => void;