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.
@@ -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
@@ -196,6 +196,10 @@ export interface EditorProps {
196
196
  * input value
197
197
  */
198
198
  commentValue?: string | object;
199
+ /**
200
+ * font size default editor
201
+ */
202
+ fontSizeDefault?: number;
199
203
  /**
200
204
  * super view of comment editor
201
205
  */