@ones-editor/editor 2.1.2-beta.4 → 2.1.2-beta.6

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.
@@ -15,6 +15,8 @@ export declare class AddCommentToOldDocCommandProvider implements ReadonlyToolba
15
15
  id: string;
16
16
  name: string;
17
17
  icon: string;
18
+ groupOrder: number;
19
+ order: number;
18
20
  }[];
19
21
  executeCommand: (editor: OnesEditor, block: BlockElement, item: CommandItem, child: TextBlockContentChild | null) => void;
20
22
  } | undefined;
@@ -0,0 +1,2 @@
1
+ import type { OnesEditor } from '../../../../@ones-editor/editor';
2
+ export declare const isAllContainersSelected: (editor: OnesEditor) => boolean;
@@ -10,6 +10,7 @@ export type EditorInputOptions = {
10
10
  maxLength?: number;
11
11
  prefix?: Element;
12
12
  suffixClose?: boolean;
13
+ mode?: 'textarea' | 'input';
13
14
  };
14
15
  export declare class EditorInput {
15
16
  private parent;