@ones-editor/editor 4.0.1 → 4.0.2-beta.h1433.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.
- package/@ones-editor/core/src/core/types.d.ts +2 -0
- package/@ones-editor/tsconfig.tsbuildinfo +1 -1
- package/dist/index.js +1250 -1211
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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
|
};
|