designertool 0.43.0 → 0.45.0

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.
@@ -20,6 +20,7 @@ declare function getSelectionFormat(): {
20
20
  textAlign: any;
21
21
  };
22
22
  declare function hasSelection(): boolean;
23
+ declare function applyToAll(command: (chain: any) => void): void;
23
24
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
24
25
  id: {
25
26
  type: NumberConstructor;
@@ -37,6 +38,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
37
38
  applyFormat: typeof applyFormat;
38
39
  getSelectionFormat: typeof getSelectionFormat;
39
40
  hasSelection: typeof hasSelection;
41
+ applyToAll: typeof applyToAll;
40
42
  editor: import('vue').ComputedRef<Editor | undefined>;
41
43
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
42
44
  "update:modelValue": (...args: any[]) => void;
@@ -1,21 +1,14 @@
1
+ interface Props {
2
+ id: number;
3
+ }
1
4
  declare function applyFormat(format: string, value: any): void;
2
5
  declare function getSelectionFormat(): any;
3
6
  declare function hasSelection(): any;
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
- id: {
6
- type: NumberConstructor;
7
- required: true;
8
- };
9
- }>, {
7
+ declare const _default: import('vue').DefineComponent<Props, {
10
8
  applyFormat: typeof applyFormat;
11
9
  getSelectionFormat: typeof getSelectionFormat;
12
10
  hasSelection: typeof hasSelection;
13
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
14
- id: {
15
- type: NumberConstructor;
16
- required: true;
17
- };
18
- }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
11
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
19
12
  editorRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
20
13
  id: {
21
14
  type: NumberConstructor;
@@ -55,6 +48,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
55
48
  textAlign: any;
56
49
  };
57
50
  hasSelection: () => boolean;
51
+ applyToAll: (command: (chain: any) => void) => void;
58
52
  editor: import('vue').ComputedRef<import('@tiptap/vue-3').Editor | undefined>;
59
53
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
60
54
  "update:modelValue": (...args: any[]) => void;
@@ -109,6 +103,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
109
103
  textAlign: any;
110
104
  };
111
105
  hasSelection: () => boolean;
106
+ applyToAll: (command: (chain: any) => void) => void;
112
107
  editor: import('vue').ComputedRef<import('@tiptap/vue-3').Editor | undefined>;
113
108
  }, {}, {}, {}, {
114
109
  modelValue: string;
package/dist/config.d.ts CHANGED
@@ -66,6 +66,8 @@ declare const _default: {
66
66
  address_zip: string;
67
67
  image: string;
68
68
  image2: string;
69
+ phone_number: string;
70
+ web_address: string;
69
71
  } | {
70
72
  company: string;
71
73
  first_name: string;
@@ -75,6 +77,8 @@ declare const _default: {
75
77
  address_city: string;
76
78
  address_state: string;
77
79
  address_zip: string;
80
+ phone_number: string;
81
+ web_address: string;
78
82
  image?: undefined;
79
83
  image2?: undefined;
80
84
  })[];