vdc-editor 0.1.129 → 0.1.130
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/lib/src/components/editor/CoreEditorV2.vue.d.ts +3 -3
- package/lib/src/type.d.ts +1 -1
- package/lib/vdc-editor.mjs +4445 -4433
- package/lib/vdc-editor.mjs.map +1 -1
- package/lib/vdc-editor.umd.js +47 -47
- package/lib/vdc-editor.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -24,7 +24,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
24
24
|
fontFamilyDefault: string;
|
|
25
25
|
toolBarClass: undefined;
|
|
26
26
|
readonly: boolean;
|
|
27
|
-
|
|
27
|
+
canEditSuperReadOnly: boolean;
|
|
28
28
|
hideComment: boolean;
|
|
29
29
|
disableSuperInput: boolean;
|
|
30
30
|
}>>, {
|
|
@@ -62,7 +62,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
62
62
|
fontFamilyDefault: string;
|
|
63
63
|
toolBarClass: undefined;
|
|
64
64
|
readonly: boolean;
|
|
65
|
-
|
|
65
|
+
canEditSuperReadOnly: boolean;
|
|
66
66
|
hideComment: boolean;
|
|
67
67
|
disableSuperInput: boolean;
|
|
68
68
|
}>>> & Readonly<{
|
|
@@ -103,7 +103,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
103
103
|
autoHeight: boolean;
|
|
104
104
|
toolBarClass: string | string[] | Record<string, unknown>;
|
|
105
105
|
readonly: boolean;
|
|
106
|
-
|
|
106
|
+
canEditSuperReadOnly: boolean;
|
|
107
107
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
108
108
|
export default _default;
|
|
109
109
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|