@ones-editor/editor 5.0.1 → 5.0.2-beta.h1434.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.
@@ -460,6 +460,7 @@ export interface OnesEditorSettingsProvider {
460
460
  export interface OnesEditorOptionalOptions {
461
461
  shortcuts?: ShortcutRecords[];
462
462
  id?: string;
463
+ readonly?: boolean;
463
464
  components?: OnesEditorComponents;
464
465
  colors?: string[];
465
466
  scrollContainer?: HTMLElement;
@@ -471,6 +472,7 @@ export interface OnesEditorOptionalOptions {
471
472
  }
472
473
  export interface OnesEditorOptions {
473
474
  colors: string[];
475
+ readonly: boolean;
474
476
  componentsOptions: {
475
477
  [index: string]: unknown;
476
478
  };