@dialpad/dialtone-vue 2.180.1 → 2.182.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/recipes/conversation_view/editor/editor.vue.cjs +30 -2
- package/dist/recipes/conversation_view/editor/editor.vue.cjs.map +1 -1
- package/dist/recipes/conversation_view/editor/editor.vue.js +31 -3
- package/dist/recipes/conversation_view/editor/editor.vue.js.map +1 -1
- package/dist/recipes/leftbar/callbox/callbox.vue.cjs +1 -1
- package/dist/recipes/leftbar/callbox/callbox.vue.cjs.map +1 -1
- package/dist/recipes/leftbar/callbox/callbox.vue.js +1 -1
- package/dist/recipes/leftbar/callbox/callbox.vue.js.map +1 -1
- package/dist/types/recipes/conversation_view/editor/editor.vue.d.ts +12 -1
- package/dist/types/recipes/leftbar/callbox/callbox.vue.d.ts.map +1 -1
- package/package.json +6 -6
|
@@ -106,6 +106,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
106
106
|
type: BooleanConstructor;
|
|
107
107
|
default: boolean;
|
|
108
108
|
};
|
|
109
|
+
showInlineImageButton: {
|
|
110
|
+
type: BooleanConstructor;
|
|
111
|
+
default: boolean;
|
|
112
|
+
};
|
|
109
113
|
showAddLink: {
|
|
110
114
|
type: ObjectConstructor;
|
|
111
115
|
default: () => {
|
|
@@ -222,13 +226,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
222
226
|
onOrderedListToggle(): void;
|
|
223
227
|
onCodeBlockToggle(): void;
|
|
224
228
|
onQuickRepliesClick(): void;
|
|
229
|
+
onInsertInlineImageClick(): void;
|
|
230
|
+
insertInlineImage(imageUrl: any): void;
|
|
225
231
|
onBlockquoteToggle(): void;
|
|
226
232
|
insertInMessageBody(messageContent: any): void;
|
|
227
233
|
setCursorPosition(position?: null): void;
|
|
228
234
|
onFocus(event: any): void;
|
|
229
235
|
onBlur(event: any): void;
|
|
230
236
|
onInput(event: any): void;
|
|
231
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("input" | "focus" | "blur" | "quick-replies-click")[], string, Readonly<import('vue').ExtractPropTypes<{
|
|
237
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("input" | "focus" | "blur" | "quick-replies-click" | "inline-image-click")[], string, Readonly<import('vue').ExtractPropTypes<{
|
|
232
238
|
value: {
|
|
233
239
|
type: (ObjectConstructor | StringConstructor)[];
|
|
234
240
|
default: string;
|
|
@@ -336,6 +342,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
336
342
|
type: BooleanConstructor;
|
|
337
343
|
default: boolean;
|
|
338
344
|
};
|
|
345
|
+
showInlineImageButton: {
|
|
346
|
+
type: BooleanConstructor;
|
|
347
|
+
default: boolean;
|
|
348
|
+
};
|
|
339
349
|
showAddLink: {
|
|
340
350
|
type: ObjectConstructor;
|
|
341
351
|
default: () => {
|
|
@@ -374,6 +384,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
374
384
|
showQuoteButton: boolean;
|
|
375
385
|
showCodeBlockButton: boolean;
|
|
376
386
|
showQuickRepliesButton: boolean;
|
|
387
|
+
showInlineImageButton: boolean;
|
|
377
388
|
showAddLink: Record<string, any>;
|
|
378
389
|
}>;
|
|
379
390
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"callbox.vue.d.ts","sourceRoot":"","sources":["../../../../../recipes/leftbar/callbox/callbox.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"callbox.vue.d.ts","sourceRoot":"","sources":["../../../../../recipes/leftbar/callbox/callbox.vue"],"names":[],"mappings":"AA0FA;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dialpad/dialtone-vue",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.182.0",
|
|
4
4
|
"description": "Vue component library for Dialpad's design system Dialtone",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"overlayscrollbars": "2.10.0",
|
|
39
39
|
"regex-combined-emojis": "1.6.0",
|
|
40
40
|
"tippy.js": "6.3.7",
|
|
41
|
-
"@dialpad/dialtone-
|
|
42
|
-
"@dialpad/dialtone-
|
|
41
|
+
"@dialpad/dialtone-emojis": "1.1.2",
|
|
42
|
+
"@dialpad/dialtone-icons": "4.34.6"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@storybook/addon-a11y": "7.6.20",
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
"react": "17.0.2",
|
|
52
52
|
"storybook-dark-mode": "^3.0.3",
|
|
53
53
|
"vue": "^2.7.15",
|
|
54
|
-
"@dialpad/
|
|
55
|
-
"@dialpad/dialtone
|
|
54
|
+
"@dialpad/dialtone-css": "8.51.0",
|
|
55
|
+
"@dialpad/generator-dialtone": "0.1.0"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"vue": ">=2.6",
|
|
59
|
-
"@dialpad/dialtone-css": "^8.
|
|
59
|
+
"@dialpad/dialtone-css": "^8.51.0"
|
|
60
60
|
},
|
|
61
61
|
"bugs": {
|
|
62
62
|
"email": "dialtone@dialpad.com"
|