vdc-editor 0.1.40 → 0.1.41
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 -0
- package/lib/src/constants/index.d.ts +0 -2
- package/lib/src/type.d.ts +4 -0
- package/lib/vdc-editor.mjs +1530 -1526
- package/lib/vdc-editor.mjs.map +1 -1
- package/lib/vdc-editor.umd.js +42 -42
- package/lib/vdc-editor.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -19,6 +19,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
19
19
|
extensions: () => never[];
|
|
20
20
|
editorClass: undefined;
|
|
21
21
|
contentClass: undefined;
|
|
22
|
+
fontSizeDefault: number;
|
|
22
23
|
}>>, {
|
|
23
24
|
editor: Editor;
|
|
24
25
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -45,6 +46,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
45
46
|
extensions: () => never[];
|
|
46
47
|
editorClass: undefined;
|
|
47
48
|
contentClass: undefined;
|
|
49
|
+
fontSizeDefault: number;
|
|
48
50
|
}>>> & Readonly<{
|
|
49
51
|
onChange?: ((value: import('../../type').SBSEditorOnChange) => any) | undefined;
|
|
50
52
|
onEnter?: (() => any) | undefined;
|
|
@@ -66,6 +68,7 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
|
|
|
66
68
|
view: boolean;
|
|
67
69
|
button: boolean;
|
|
68
70
|
};
|
|
71
|
+
fontSizeDefault: number;
|
|
69
72
|
dark: boolean;
|
|
70
73
|
hideToolbar: boolean;
|
|
71
74
|
disableBubble: boolean;
|
|
@@ -26,8 +26,6 @@ export declare const COLORS_LIST: readonly ["#000000", "#262626", "#595959", "#8
|
|
|
26
26
|
export declare const DEFAULT_FONT_SIZE_LIST: readonly ["10px", "11px", "12px", "14px", "16px", "18px", "20px", "22px", "24px", "26px", "28px", "36px", "48px", "72px"];
|
|
27
27
|
/** Default font size value */
|
|
28
28
|
export declare const DEFAULT_FONT_SIZE_VALUE: "defaut";
|
|
29
|
-
/** Default font size */
|
|
30
|
-
export declare const DEFAULT_FONT_SIZE: 16;
|
|
31
29
|
/** Options for setting image size in the bubble menu */
|
|
32
30
|
export declare enum IMAGE_SIZE {
|
|
33
31
|
'size-small' = 200,
|
package/lib/src/type.d.ts
CHANGED