@dialpad/dialtone-vue 3.206.0 → 3.207.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.
- package/dist/component-documentation.json +1 -1
- package/dist/lib/input/input.cjs +1 -1
- package/dist/lib/input/input.cjs.map +1 -1
- package/dist/lib/input/input.js +14 -6
- package/dist/lib/input/input.js.map +1 -1
- package/dist/lib/rich-text-editor/rich-text-editor.cjs +4 -4
- package/dist/lib/rich-text-editor/rich-text-editor.cjs.map +1 -1
- package/dist/lib/rich-text-editor/rich-text-editor.js +72 -40
- package/dist/lib/rich-text-editor/rich-text-editor.js.map +1 -1
- package/dist/localization/de-DE.cjs +24 -19
- package/dist/localization/de-DE.cjs.map +1 -1
- package/dist/localization/de-DE.js +24 -19
- package/dist/localization/de-DE.js.map +1 -1
- package/dist/localization/es-LA.cjs +12 -7
- package/dist/localization/es-LA.cjs.map +1 -1
- package/dist/localization/es-LA.js +12 -7
- package/dist/localization/es-LA.js.map +1 -1
- package/dist/localization/fr-FR.cjs +11 -6
- package/dist/localization/fr-FR.cjs.map +1 -1
- package/dist/localization/fr-FR.js +11 -6
- package/dist/localization/fr-FR.js.map +1 -1
- package/dist/localization/it-IT.cjs +17 -12
- package/dist/localization/it-IT.cjs.map +1 -1
- package/dist/localization/it-IT.js +17 -12
- package/dist/localization/it-IT.js.map +1 -1
- package/dist/localization/ja-JP.cjs +5 -0
- package/dist/localization/ja-JP.cjs.map +1 -1
- package/dist/localization/ja-JP.js +5 -0
- package/dist/localization/ja-JP.js.map +1 -1
- package/dist/localization/nl-NL.cjs +10 -5
- package/dist/localization/nl-NL.cjs.map +1 -1
- package/dist/localization/nl-NL.js +10 -5
- package/dist/localization/nl-NL.js.map +1 -1
- package/dist/localization/pt-BR.cjs +21 -16
- package/dist/localization/pt-BR.cjs.map +1 -1
- package/dist/localization/pt-BR.js +21 -16
- package/dist/localization/pt-BR.js.map +1 -1
- package/dist/localization/ru-RU.cjs +27 -22
- package/dist/localization/ru-RU.cjs.map +1 -1
- package/dist/localization/ru-RU.js +27 -22
- package/dist/localization/ru-RU.js.map +1 -1
- package/dist/localization/zh-CN.cjs +28 -23
- package/dist/localization/zh-CN.cjs.map +1 -1
- package/dist/localization/zh-CN.js +28 -23
- package/dist/localization/zh-CN.js.map +1 -1
- package/dist/types/components/emoji_picker/emoji_picker.vue.d.ts +6 -0
- package/dist/types/components/emoji_picker/modules/emoji_search.vue.d.ts +6 -0
- package/dist/types/components/emoji_picker/modules/emoji_search.vue.d.ts.map +1 -1
- package/dist/types/components/input/input.vue.d.ts +3 -0
- package/dist/types/components/input/input.vue.d.ts.map +1 -1
- package/dist/types/components/rich_text_editor/extensions/mentions/MentionComponent.vue.d.ts +8 -0
- package/dist/types/components/rich_text_editor/extensions/mentions/MentionComponent.vue.d.ts.map +1 -1
- package/dist/types/components/rich_text_editor/extensions/variable/VariableComponent.vue.d.ts +3 -0
- package/dist/types/recipes/conversation_view/message_input/message_input_link.vue.d.ts +3 -0
- package/dist/types/recipes/conversation_view/message_input/message_input_link.vue.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -112,6 +112,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
112
112
|
isInvalid: boolean;
|
|
113
113
|
defaultLength: number;
|
|
114
114
|
hasSlotContent: typeof import('../..').hasSlotContent;
|
|
115
|
+
isComposing: boolean;
|
|
115
116
|
}, {
|
|
116
117
|
isTextarea(): boolean;
|
|
117
118
|
isDefaultSize(): boolean;
|
|
@@ -120,6 +121,8 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
120
121
|
isValidDescriptionSize(): boolean;
|
|
121
122
|
inputComponent(): "input" | "textarea";
|
|
122
123
|
inputListeners(): {
|
|
124
|
+
compositionstart: () => void;
|
|
125
|
+
compositionend: () => void;
|
|
123
126
|
input: (event: any) => Promise<void>;
|
|
124
127
|
blur: (event: any) => void;
|
|
125
128
|
focus: (event: any) => void;
|
|
@@ -339,6 +342,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
339
342
|
isInvalid: boolean;
|
|
340
343
|
defaultLength: number;
|
|
341
344
|
hasSlotContent: typeof import('../..').hasSlotContent;
|
|
345
|
+
isComposing: boolean;
|
|
342
346
|
}, {
|
|
343
347
|
formattedMessages(): any;
|
|
344
348
|
} & {
|
|
@@ -349,6 +353,8 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
349
353
|
isValidDescriptionSize(): boolean;
|
|
350
354
|
inputComponent(): "input" | "textarea";
|
|
351
355
|
inputListeners(): {
|
|
356
|
+
compositionstart: () => void;
|
|
357
|
+
compositionend: () => void;
|
|
352
358
|
input: (event: any) => Promise<void>;
|
|
353
359
|
blur: (event: any) => void;
|
|
354
360
|
focus: (event: any) => void;
|
|
@@ -86,6 +86,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
86
86
|
isInvalid: boolean;
|
|
87
87
|
defaultLength: number;
|
|
88
88
|
hasSlotContent: typeof import('../../..').hasSlotContent;
|
|
89
|
+
isComposing: boolean;
|
|
89
90
|
}, {
|
|
90
91
|
isTextarea(): boolean;
|
|
91
92
|
isDefaultSize(): boolean;
|
|
@@ -94,6 +95,8 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
94
95
|
isValidDescriptionSize(): boolean;
|
|
95
96
|
inputComponent(): "input" | "textarea";
|
|
96
97
|
inputListeners(): {
|
|
98
|
+
compositionstart: () => void;
|
|
99
|
+
compositionend: () => void;
|
|
97
100
|
input: (event: any) => Promise<void>;
|
|
98
101
|
blur: (event: any) => void;
|
|
99
102
|
focus: (event: any) => void;
|
|
@@ -313,6 +316,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
313
316
|
isInvalid: boolean;
|
|
314
317
|
defaultLength: number;
|
|
315
318
|
hasSlotContent: typeof import('../../..').hasSlotContent;
|
|
319
|
+
isComposing: boolean;
|
|
316
320
|
}, {
|
|
317
321
|
formattedMessages(): any;
|
|
318
322
|
} & {
|
|
@@ -323,6 +327,8 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
323
327
|
isValidDescriptionSize(): boolean;
|
|
324
328
|
inputComponent(): "input" | "textarea";
|
|
325
329
|
inputListeners(): {
|
|
330
|
+
compositionstart: () => void;
|
|
331
|
+
compositionend: () => void;
|
|
326
332
|
input: (event: any) => Promise<void>;
|
|
327
333
|
blur: (event: any) => void;
|
|
328
334
|
focus: (event: any) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"emoji_search.vue.d.ts","sourceRoot":"","sources":["../../../../../components/emoji_picker/modules/emoji_search.vue"],"names":[],"mappings":"AAuCA
|
|
1
|
+
{"version":3,"file":"emoji_search.vue.d.ts","sourceRoot":"","sources":["../../../../../components/emoji_picker/modules/emoji_search.vue"],"names":[],"mappings":"AAuCA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwGA,0CAEC"}
|
|
@@ -67,6 +67,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
67
67
|
isInvalid: boolean;
|
|
68
68
|
defaultLength: number;
|
|
69
69
|
hasSlotContent: typeof hasSlotContent;
|
|
70
|
+
isComposing: boolean;
|
|
70
71
|
}, {
|
|
71
72
|
isTextarea(): boolean;
|
|
72
73
|
isDefaultSize(): boolean;
|
|
@@ -75,6 +76,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
75
76
|
isValidDescriptionSize(): boolean;
|
|
76
77
|
inputComponent(): "input" | "textarea";
|
|
77
78
|
inputListeners(): {
|
|
79
|
+
compositionstart: () => void;
|
|
80
|
+
compositionend: () => void;
|
|
78
81
|
input: (event: any) => Promise<void>;
|
|
79
82
|
blur: (event: any) => void;
|
|
80
83
|
focus: (event: any) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.vue.d.ts","sourceRoot":"","sources":["../../../../components/input/input.vue"],"names":[],"mappings":"AAoHA
|
|
1
|
+
{"version":3,"file":"input.vue.d.ts","sourceRoot":"","sources":["../../../../components/input/input.vue"],"names":[],"mappings":"AAoHA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BA6pBO,gBAAgB;sCAAhB,gBAAgB;mCAAhB,gBAAgB"}
|
package/dist/types/components/rich_text_editor/extensions/mentions/MentionComponent.vue.d.ts
CHANGED
|
@@ -46,7 +46,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
46
46
|
}>, {}, {}, {
|
|
47
47
|
text(): string;
|
|
48
48
|
}, {
|
|
49
|
+
getMentionData(): {
|
|
50
|
+
name: any;
|
|
51
|
+
id: any;
|
|
52
|
+
avatarSrc: any;
|
|
53
|
+
contactKey: any;
|
|
54
|
+
};
|
|
49
55
|
handleClick(): void;
|
|
56
|
+
handleMouseEnter(event: any): void;
|
|
57
|
+
handleMouseLeave(event: any): void;
|
|
50
58
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
51
59
|
editor: {
|
|
52
60
|
type: import('vue').PropType<import('@tiptap/core').NodeViewProps["editor"]>;
|
package/dist/types/components/rich_text_editor/extensions/mentions/MentionComponent.vue.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MentionComponent.vue.d.ts","sourceRoot":"","sources":["../../../../../../components/rich_text_editor/extensions/mentions/MentionComponent.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MentionComponent.vue.d.ts","sourceRoot":"","sources":["../../../../../../components/rich_text_editor/extensions/mentions/MentionComponent.vue"],"names":[],"mappings":"AAiBA;"}
|
package/dist/types/components/rich_text_editor/extensions/variable/VariableComponent.vue.d.ts
CHANGED
|
@@ -1579,6 +1579,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1579
1579
|
isInvalid: boolean;
|
|
1580
1580
|
defaultLength: number;
|
|
1581
1581
|
hasSlotContent: typeof import('../../../..').hasSlotContent;
|
|
1582
|
+
isComposing: boolean;
|
|
1582
1583
|
}, {
|
|
1583
1584
|
isTextarea(): boolean;
|
|
1584
1585
|
isDefaultSize(): boolean;
|
|
@@ -1587,6 +1588,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1587
1588
|
isValidDescriptionSize(): boolean;
|
|
1588
1589
|
inputComponent(): "input" | "textarea";
|
|
1589
1590
|
inputListeners(): {
|
|
1591
|
+
compositionstart: () => void;
|
|
1592
|
+
compositionend: () => void;
|
|
1590
1593
|
input: (event: any) => Promise<void>;
|
|
1591
1594
|
blur: (event: any) => void;
|
|
1592
1595
|
focus: (event: any) => void;
|
|
@@ -1149,6 +1149,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1149
1149
|
isInvalid: boolean;
|
|
1150
1150
|
defaultLength: number;
|
|
1151
1151
|
hasSlotContent: typeof import('../../..').hasSlotContent;
|
|
1152
|
+
isComposing: boolean;
|
|
1152
1153
|
}, {
|
|
1153
1154
|
isTextarea(): boolean;
|
|
1154
1155
|
isDefaultSize(): boolean;
|
|
@@ -1157,6 +1158,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1157
1158
|
isValidDescriptionSize(): boolean;
|
|
1158
1159
|
inputComponent(): "input" | "textarea";
|
|
1159
1160
|
inputListeners(): {
|
|
1161
|
+
compositionstart: () => void;
|
|
1162
|
+
compositionend: () => void;
|
|
1160
1163
|
input: (event: any) => Promise<void>;
|
|
1161
1164
|
blur: (event: any) => void;
|
|
1162
1165
|
focus: (event: any) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message_input_link.vue.d.ts","sourceRoot":"","sources":["../../../../../recipes/conversation_view/message_input/message_input_link.vue"],"names":[],"mappings":"AAsGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yEAsLA,IAnFM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAmFN,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA8ID,GA9IC
|
|
1
|
+
{"version":3,"file":"message_input_link.vue.d.ts","sourceRoot":"","sources":["../../../../../recipes/conversation_view/message_input/message_input_link.vue"],"names":[],"mappings":"AAsGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yEAsLA,IAnFM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAmFN,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA8ID,GA9IC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA8ID,GA9IC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dialpad/dialtone-vue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.207.0",
|
|
4
4
|
"description": "Vue component library for Dialpad's design system Dialtone",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"react": "19.2.4",
|
|
61
61
|
"storybook": "10.2.6",
|
|
62
62
|
"vue": "^3.3.4",
|
|
63
|
-
"@dialpad/dialtone
|
|
64
|
-
"@dialpad/
|
|
63
|
+
"@dialpad/generator-dialtone": "0.1.0",
|
|
64
|
+
"@dialpad/dialtone-css": "8.73.0"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
67
|
"vue": ">=3.2",
|