@dialpad/dialtone-vue 3.93.1 → 3.94.1
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/CHANGELOG.json +1 -1
- package/CHANGELOG.md +32 -0
- package/dist/component-documentation.json +1 -1
- package/dist/dialtone-vue.cjs +5 -5
- package/dist/dialtone-vue.js +1126 -1059
- package/dist/directives.cjs +1 -1
- package/dist/directives.js +1 -1
- package/dist/{emoji-ee056efb.js → emoji-322f7836.js} +1079 -17037
- package/dist/emoji-d2bf66f9.cjs +1 -0
- package/dist/emoji.cjs +1 -1
- package/dist/emoji.js +3 -3
- package/dist/{message_input-2f040a4e.cjs → message_input-5dca1218.cjs} +15 -15
- package/dist/{message_input-97a05856.js → message_input-d05b8cc1.js} +260 -247
- package/dist/message_input.cjs +1 -1
- package/dist/message_input.js +5 -4
- package/dist/style.css +1 -1
- package/dist/{tooltip-02b802bc.js → tooltip-4136a819.js} +19 -21
- package/dist/{tooltip-3390fc3b.cjs → tooltip-4736031b.cjs} +6 -6
- package/dist/types/common/storybook_utils.d.ts +1 -1
- package/dist/types/common/storybook_utils.d.ts.map +1 -1
- package/dist/types/components/avatar/avatar.vue.d.ts +1 -1
- package/dist/types/components/button/button.vue.d.ts +1 -1
- package/dist/types/components/chip/chip.vue.d.ts +1 -1
- package/dist/types/components/combobox/combobox.vue.d.ts +1 -1
- package/dist/types/components/datepicker/modules/month-year-picker.vue.d.ts +1 -1
- package/dist/types/components/description_list/description_list.vue.d.ts +98 -0
- package/dist/types/components/description_list/description_list.vue.d.ts.map +1 -0
- package/dist/types/components/description_list/description_list_constants.d.ts +2 -0
- package/dist/types/components/description_list/description_list_constants.d.ts.map +1 -0
- package/dist/types/components/description_list/description_list_validators.d.ts +2 -0
- package/dist/types/components/description_list/description_list_validators.d.ts.map +1 -0
- package/dist/types/components/description_list/index.d.ts +3 -0
- package/dist/types/components/description_list/index.d.ts.map +1 -0
- package/dist/types/components/icon/icon.vue.d.ts +16 -2
- package/dist/types/components/icon/icon.vue.d.ts.map +1 -1
- package/dist/types/components/icon/icon_constants.d.ts +0 -2
- package/dist/types/components/icon/icon_constants.d.ts.map +1 -1
- package/dist/types/components/input/input.vue.d.ts +1 -1
- package/dist/types/components/modal/modal.vue.d.ts +1 -1
- package/dist/types/components/notice/notice.vue.d.ts +1 -1
- package/dist/types/components/radio/radio.vue.d.ts +1 -1
- package/dist/types/components/root_layout/root_layout.vue.d.ts +2 -2
- package/dist/types/components/scroller/modules/core_scroller.vue.d.ts +1 -1
- package/dist/types/components/scroller/modules/scroller_item.vue.d.ts +1 -1
- package/dist/types/components/tabs/tab.vue.d.ts +1 -1
- package/dist/types/components/toast/toast.vue.d.ts +2 -2
- package/dist/types/components/tooltip/tooltip.vue.d.ts +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/recipes/comboboxes/combobox_multi_select/combobox_multi_select.vue.d.ts +1 -1
- package/dist/types/recipes/comboboxes/combobox_with_popover/combobox_with_popover.vue.d.ts +1 -1
- package/dist/types/recipes/conversation_view/message_input/message_input.vue.d.ts +17 -0
- package/dist/types/recipes/conversation_view/message_input/message_input.vue.d.ts.map +1 -1
- package/package.json +8 -4
- package/dist/emoji-125c2250.cjs +0 -1
|
@@ -77,7 +77,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
77
|
chipClasses(): any[];
|
|
78
78
|
chipCloseButtonClasses(): any[];
|
|
79
79
|
onClose(): void;
|
|
80
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
80
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "click" | "keyup")[], "close" | "click" | "keyup", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
81
81
|
/**
|
|
82
82
|
* A set of props to be passed into the modal's close button. Requires an 'ariaLabel' property.
|
|
83
83
|
*/
|
|
@@ -312,8 +312,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
312
312
|
onHighlight?: ((...args: any[]) => any) | undefined;
|
|
313
313
|
}, {
|
|
314
314
|
size: string;
|
|
315
|
-
description: string;
|
|
316
315
|
loading: boolean;
|
|
316
|
+
description: string;
|
|
317
317
|
showList: boolean;
|
|
318
318
|
labelVisible: boolean;
|
|
319
319
|
listId: string;
|
|
@@ -8,7 +8,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
8
8
|
readonly changeToLabel?: string | undefined;
|
|
9
9
|
readonly selectedDate?: Date | undefined;
|
|
10
10
|
};
|
|
11
|
-
$emit: (event: "
|
|
11
|
+
$emit: (event: "calendar-days" | "focus-day" | "close-datepicker", ...args: any[]) => void;
|
|
12
12
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
13
13
|
export default _default;
|
|
14
14
|
//# sourceMappingURL=month-year-picker.vue.d.ts.map
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
/**
|
|
3
|
+
* The direction for the list
|
|
4
|
+
* @values row, column
|
|
5
|
+
*/
|
|
6
|
+
direction: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
validator: (direction: unknown) => boolean;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* A list of items that represent the term and the description
|
|
13
|
+
*/
|
|
14
|
+
items: {
|
|
15
|
+
type: ArrayConstructor;
|
|
16
|
+
default: () => never[];
|
|
17
|
+
validator: (items: unknown) => boolean;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* Set the space between the elements
|
|
22
|
+
* @values 0, 100, 200, 300, 400, 500, 600
|
|
23
|
+
*/
|
|
24
|
+
gap: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
validator: (gap: unknown) => boolean;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Used to customize the term element
|
|
31
|
+
*/
|
|
32
|
+
termClass: {
|
|
33
|
+
type: (ObjectConstructor | ArrayConstructor | StringConstructor)[];
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Used to customize the description element
|
|
38
|
+
*/
|
|
39
|
+
descriptionClass: {
|
|
40
|
+
type: (ObjectConstructor | ArrayConstructor | StringConstructor)[];
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
}, any, any, {
|
|
44
|
+
dtClass(): any[];
|
|
45
|
+
ddClass(): any[];
|
|
46
|
+
getDirectionClass(): string;
|
|
47
|
+
getGapClass(): string;
|
|
48
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
49
|
+
/**
|
|
50
|
+
* The direction for the list
|
|
51
|
+
* @values row, column
|
|
52
|
+
*/
|
|
53
|
+
direction: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: string;
|
|
56
|
+
validator: (direction: unknown) => boolean;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* A list of items that represent the term and the description
|
|
60
|
+
*/
|
|
61
|
+
items: {
|
|
62
|
+
type: ArrayConstructor;
|
|
63
|
+
default: () => never[];
|
|
64
|
+
validator: (items: unknown) => boolean;
|
|
65
|
+
required: true;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Set the space between the elements
|
|
69
|
+
* @values 0, 100, 200, 300, 400, 500, 600
|
|
70
|
+
*/
|
|
71
|
+
gap: {
|
|
72
|
+
type: StringConstructor;
|
|
73
|
+
default: string;
|
|
74
|
+
validator: (gap: unknown) => boolean;
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* Used to customize the term element
|
|
78
|
+
*/
|
|
79
|
+
termClass: {
|
|
80
|
+
type: (ObjectConstructor | ArrayConstructor | StringConstructor)[];
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* Used to customize the description element
|
|
85
|
+
*/
|
|
86
|
+
descriptionClass: {
|
|
87
|
+
type: (ObjectConstructor | ArrayConstructor | StringConstructor)[];
|
|
88
|
+
default: string;
|
|
89
|
+
};
|
|
90
|
+
}>>, {
|
|
91
|
+
direction: string;
|
|
92
|
+
items: unknown[];
|
|
93
|
+
gap: string;
|
|
94
|
+
termClass: string | Record<string, any> | unknown[];
|
|
95
|
+
descriptionClass: string | Record<string, any> | unknown[];
|
|
96
|
+
}, {}>;
|
|
97
|
+
export default _default;
|
|
98
|
+
//# sourceMappingURL=description_list.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"description_list.vue.d.ts","sourceRoot":"","sources":["../../../../components/description_list/description_list.vue.js"],"names":[],"mappings":";IAUI;;;OAGG;;;;;;IAOH;;OAEG;;;;;;;IAQH;;;OAGG;;;;;;IAOH;;OAEG;;;;;IAMH;;OAEG;;;;;;;;;;;IAxCH;;;OAGG;;;;;;IAOH;;OAEG;;;;;;;IAQH;;;OAGG;;;;;;IAOH;;OAEG;;;;;IAMH;;OAEG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"description_list_constants.d.ts","sourceRoot":"","sources":["../../../../components/description_list/description_list_constants.js"],"names":[],"mappings":"AAAA,qDAA+D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"description_list_validators.d.ts","sourceRoot":"","sources":["../../../../components/description_list/description_list_validators.js"],"names":[],"mappings":"AAgBO,oDAoBN"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../components/description_list/index.js"],"names":[],"mappings":""}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
/**
|
|
3
|
+
* DtIcon identifier
|
|
4
|
+
*/
|
|
5
|
+
id: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default(): string;
|
|
8
|
+
};
|
|
2
9
|
/**
|
|
3
10
|
* The size of the icon.
|
|
4
11
|
* @values 100, 200, 300, 400, 500, 600, 700, 800
|
|
@@ -24,9 +31,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
31
|
};
|
|
25
32
|
}, any, any, {
|
|
26
33
|
iconSize(): any;
|
|
27
|
-
|
|
28
|
-
currentIcon(): any;
|
|
34
|
+
icon(): any;
|
|
29
35
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
|
+
/**
|
|
37
|
+
* DtIcon identifier
|
|
38
|
+
*/
|
|
39
|
+
id: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default(): string;
|
|
42
|
+
};
|
|
30
43
|
/**
|
|
31
44
|
* The size of the icon.
|
|
32
45
|
* @values 100, 200, 300, 400, 500, 600, 700, 800
|
|
@@ -51,6 +64,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
64
|
default: undefined;
|
|
52
65
|
};
|
|
53
66
|
}>>, {
|
|
67
|
+
id: string;
|
|
54
68
|
size: string;
|
|
55
69
|
ariaLabel: string;
|
|
56
70
|
}, {}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon.vue.d.ts","sourceRoot":"","sources":["../../../../components/icon/icon.vue.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"icon.vue.d.ts","sourceRoot":"","sources":["../../../../components/icon/icon.vue.js"],"names":[],"mappings":";IAcI;;OAEG;;;;;IAQH;;;OAGG;;;;;;IAOH;;OAEG;;;;;IAMH;;OAEG;;;;;;;;;IA9BH;;OAEG;;;;;IAQH;;;OAGG;;;;;;IAOH;;OAEG;;;;;IAMH;;OAEG"}
|
|
@@ -8,10 +8,8 @@ export const ICON_SIZE_MODIFIERS: {
|
|
|
8
8
|
700: string;
|
|
9
9
|
800: string;
|
|
10
10
|
};
|
|
11
|
-
export const DIALTONE_ICONS: any;
|
|
12
11
|
declare namespace _default {
|
|
13
12
|
export { ICON_SIZE_MODIFIERS };
|
|
14
|
-
export { DIALTONE_ICONS };
|
|
15
13
|
}
|
|
16
14
|
export default _default;
|
|
17
15
|
//# sourceMappingURL=icon_constants.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon_constants.d.ts","sourceRoot":"","sources":["../../../../components/icon/icon_constants.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"icon_constants.d.ts","sourceRoot":"","sources":["../../../../components/icon/icon_constants.js"],"names":[],"mappings":"AAAA;;;;;;;;;EASE"}
|
|
@@ -215,7 +215,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
215
215
|
computed: {
|
|
216
216
|
formattedMessages(): any;
|
|
217
217
|
};
|
|
218
|
-
}, import("vue").ComponentOptionsMixin, ("input" | "
|
|
218
|
+
}, import("vue").ComponentOptionsMixin, ("input" | "focus" | "focusin" | "focusout" | "clear" | "blur" | "update:modelValue" | "update:length" | "update:invalid")[], "input" | "focus" | "focusin" | "focusout" | "clear" | "blur" | "update:modelValue" | "update:length" | "update:invalid", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
219
219
|
/**
|
|
220
220
|
* Name property of the input element
|
|
221
221
|
*/
|
|
@@ -372,13 +372,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
372
372
|
}, {
|
|
373
373
|
title: string;
|
|
374
374
|
size: string;
|
|
375
|
+
copy: string;
|
|
375
376
|
kind: string;
|
|
376
377
|
hideClose: boolean;
|
|
377
378
|
dialogClass: string | Record<string, any> | unknown[];
|
|
378
379
|
bannerClass: string | Record<string, any> | unknown[];
|
|
379
380
|
contentClass: string | Record<string, any> | unknown[];
|
|
380
381
|
show: boolean;
|
|
381
|
-
copy: string;
|
|
382
382
|
describedById: string;
|
|
383
383
|
labelledById: string;
|
|
384
384
|
bannerTitle: string;
|
|
@@ -92,7 +92,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
92
92
|
methods: {
|
|
93
93
|
validateVisuallyHiddenCloseProps(): void;
|
|
94
94
|
};
|
|
95
|
-
}, import("vue").ComponentOptionsMixin, ("
|
|
95
|
+
}, import("vue").ComponentOptionsMixin, ("close" | "click")[], "close" | "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
96
96
|
/**
|
|
97
97
|
* Sets an ID on the title element of the component. Useful for aria-describedby
|
|
98
98
|
* or aria-labelledby or any other reason you may need an id to refer to the title.
|
|
@@ -162,7 +162,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
162
162
|
computed: {
|
|
163
163
|
formattedMessages(): any;
|
|
164
164
|
};
|
|
165
|
-
}, import("vue").ComponentOptionsMixin, ("input" | "
|
|
165
|
+
}, import("vue").ComponentOptionsMixin, ("input" | "focus" | "click" | "focusin" | "focusout")[], "input" | "focus" | "click" | "focusin" | "focusout", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
166
166
|
/**
|
|
167
167
|
* A provided value for the radio
|
|
168
168
|
*/
|
|
@@ -52,7 +52,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
52
52
|
default: string;
|
|
53
53
|
};
|
|
54
54
|
/**
|
|
55
|
-
* DEPRECATED: set the
|
|
55
|
+
* DEPRECATED: set the width of the inner element instead.
|
|
56
56
|
*/
|
|
57
57
|
sidebarWidth: {
|
|
58
58
|
type: StringConstructor;
|
|
@@ -147,7 +147,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
147
147
|
default: string;
|
|
148
148
|
};
|
|
149
149
|
/**
|
|
150
|
-
* DEPRECATED: set the
|
|
150
|
+
* DEPRECATED: set the width of the inner element instead.
|
|
151
151
|
*/
|
|
152
152
|
sidebarWidth: {
|
|
153
153
|
type: StringConstructor;
|
|
@@ -5,9 +5,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
5
5
|
};
|
|
6
6
|
$props: {
|
|
7
7
|
readonly itemClass?: string | Record<string, any> | unknown[] | undefined;
|
|
8
|
-
readonly listClass?: string | Record<string, any> | unknown[] | undefined;
|
|
9
8
|
readonly direction?: string | undefined;
|
|
10
9
|
readonly items?: unknown[] | undefined;
|
|
10
|
+
readonly listClass?: string | Record<string, any> | unknown[] | undefined;
|
|
11
11
|
readonly keyField?: string | undefined;
|
|
12
12
|
readonly itemSize?: number | undefined;
|
|
13
13
|
readonly minItemSize?: string | number | undefined;
|
|
@@ -70,10 +70,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
70
70
|
default: string;
|
|
71
71
|
};
|
|
72
72
|
}>>, {
|
|
73
|
+
tag: string;
|
|
73
74
|
index: number;
|
|
74
75
|
watchData: boolean;
|
|
75
76
|
sizeDependencies: Record<string, any> | unknown[];
|
|
76
|
-
tag: string;
|
|
77
77
|
}, {}>;
|
|
78
78
|
export default _default;
|
|
79
79
|
//# sourceMappingURL=scroller_item.vue.d.ts.map
|
|
@@ -56,7 +56,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
56
|
}, {
|
|
57
57
|
setSelectedPanelByDefault(): void;
|
|
58
58
|
selectPanel(selectOverride?: boolean): void;
|
|
59
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
59
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "click")[], "focus" | "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
60
60
|
/**
|
|
61
61
|
* Id of the tab
|
|
62
62
|
*/
|
|
@@ -125,7 +125,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
125
125
|
methods: {
|
|
126
126
|
validateVisuallyHiddenCloseProps(): void;
|
|
127
127
|
};
|
|
128
|
-
}, import("vue").ComponentOptionsMixin, ("
|
|
128
|
+
}, import("vue").ComponentOptionsMixin, ("close" | "click" | "update:show")[], "close" | "click" | "update:show", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
129
129
|
/**
|
|
130
130
|
* Sets an ID on the title element of the component. Useful for aria-describedby
|
|
131
131
|
* or aria-labelledby or any other reason you may need an id to refer to the title.
|
|
@@ -226,13 +226,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
226
226
|
}, {
|
|
227
227
|
title: string;
|
|
228
228
|
role: string;
|
|
229
|
+
message: string;
|
|
229
230
|
kind: string;
|
|
230
231
|
titleId: string;
|
|
231
232
|
contentId: string;
|
|
232
233
|
closeButtonProps: Record<string, any>;
|
|
233
234
|
hideClose: boolean;
|
|
234
235
|
important: boolean;
|
|
235
|
-
message: string;
|
|
236
236
|
show: boolean;
|
|
237
237
|
duration: number;
|
|
238
238
|
}, {}>;
|
|
@@ -426,10 +426,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
426
426
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
427
427
|
}, {
|
|
428
428
|
id: string;
|
|
429
|
+
message: string;
|
|
429
430
|
inverted: boolean;
|
|
430
431
|
transition: string;
|
|
431
432
|
contentClass: string | Record<string, any> | unknown[];
|
|
432
|
-
message: string;
|
|
433
433
|
show: boolean;
|
|
434
434
|
offset: unknown[];
|
|
435
435
|
fallbackPlacements: unknown[];
|
package/dist/types/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export * from "./components/card";
|
|
|
8
8
|
export * from "./components/codeblock";
|
|
9
9
|
export * from "./components/combobox";
|
|
10
10
|
export * from "./components/collapsible";
|
|
11
|
+
export * from "./components/description_list";
|
|
11
12
|
export * from "./components/dropdown";
|
|
12
13
|
export * from "./components/image_viewer";
|
|
13
14
|
export * from "./components/input";
|
|
@@ -349,8 +349,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
349
349
|
}, {
|
|
350
350
|
placeholder: string;
|
|
351
351
|
size: string;
|
|
352
|
-
description: string;
|
|
353
352
|
loading: boolean;
|
|
353
|
+
description: string;
|
|
354
354
|
transition: string;
|
|
355
355
|
showList: boolean;
|
|
356
356
|
labelVisible: boolean;
|
|
@@ -411,8 +411,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
411
411
|
onHighlight?: ((...args: any[]) => any) | undefined;
|
|
412
412
|
}, {
|
|
413
413
|
size: string;
|
|
414
|
-
description: string;
|
|
415
414
|
loading: boolean;
|
|
415
|
+
description: string;
|
|
416
416
|
transition: string;
|
|
417
417
|
maxHeight: string;
|
|
418
418
|
maxWidth: string;
|
|
@@ -131,6 +131,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
131
131
|
default: string;
|
|
132
132
|
validate(kind: any): boolean;
|
|
133
133
|
};
|
|
134
|
+
/**
|
|
135
|
+
* Content area needs to dynamically adjust height based on the conversation area height.
|
|
136
|
+
* can be vh|px|rem|em|%
|
|
137
|
+
*/
|
|
138
|
+
maxHeight: {
|
|
139
|
+
type: StringConstructor;
|
|
140
|
+
default: string;
|
|
141
|
+
};
|
|
134
142
|
/**
|
|
135
143
|
* tab labels for emoji
|
|
136
144
|
*/
|
|
@@ -350,6 +358,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
350
358
|
default: string;
|
|
351
359
|
validate(kind: any): boolean;
|
|
352
360
|
};
|
|
361
|
+
/**
|
|
362
|
+
* Content area needs to dynamically adjust height based on the conversation area height.
|
|
363
|
+
* can be vh|px|rem|em|%
|
|
364
|
+
*/
|
|
365
|
+
maxHeight: {
|
|
366
|
+
type: StringConstructor;
|
|
367
|
+
default: string;
|
|
368
|
+
};
|
|
353
369
|
/**
|
|
354
370
|
* tab labels for emoji
|
|
355
371
|
*/
|
|
@@ -417,6 +433,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
417
433
|
}, {
|
|
418
434
|
link: boolean | Record<string, any>;
|
|
419
435
|
placeholder: string;
|
|
436
|
+
maxHeight: string;
|
|
420
437
|
modelValue: string | Record<string, any>;
|
|
421
438
|
inputClass: string;
|
|
422
439
|
editable: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message_input.vue.d.ts","sourceRoot":"","sources":["../../../../../recipes/conversation_view/message_input/message_input.vue.js"],"names":[],"mappings":";IAoCI;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;;IAOH;;;;OAIG;;;;;IAMH;;;;;;;;;;OAUG;;;;;;IAYH;;;;;OAKG;;;;;;IASH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAQH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAQH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;;
|
|
1
|
+
{"version":3,"file":"message_input.vue.d.ts","sourceRoot":"","sources":["../../../../../recipes/conversation_view/message_input/message_input.vue.js"],"names":[],"mappings":";IAoCI;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;;IAOH;;;;OAIG;;;;;IAMH;;;;;;;;;;OAUG;;;;;;IAYH;;;;;OAKG;;;;;;IASH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAQH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAQH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;;IASH;;;OAGG;;;;;IAQH;;OAEG;;;;;;;;;;;;;;;;;;;;;IAoCH;;OAEG;;;;;IAQH;;OAEG;;;;;;;;;IAWH;;OAEG;;;;;;;;;IAWH;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAxPH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;;IAOH;;;;OAIG;;;;;IAMH;;;;;;;;;;OAUG;;;;;;IAYH;;;;;OAKG;;;;;;IASH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAQH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAQH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;;IASH;;;OAGG;;;;;IAQH;;OAEG;;;;;;;;;;;;;;;;;;;;;IAoCH;;OAEG;;;;;IAQH;;OAEG;;;;;;;;;IAWH;;OAEG;;;;;;;;;IAWH;;OAEG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dialpad/dialtone-vue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.94.1",
|
|
4
4
|
"description": "Vue component library for Dialpad's design system Dialtone",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "run-s clean build:main build:typescript build:documentation",
|
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
"CHANGELOG.json"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@dialpad/dialtone-icons": "^3.4.0",
|
|
39
38
|
"@tiptap/extension-code-block": "^2.0.3",
|
|
40
39
|
"@tiptap/extension-document": "^2.0.3",
|
|
41
40
|
"@tiptap/extension-hard-break": "^2.0.3",
|
|
@@ -55,10 +54,12 @@
|
|
|
55
54
|
"@commitlint/cli": "^17.6.6",
|
|
56
55
|
"@commitlint/config-conventional": "^17.6.6",
|
|
57
56
|
"@dialpad/conventional-changelog-angular": "^1.1.1",
|
|
58
|
-
"@dialpad/dialtone": "^8.21.
|
|
57
|
+
"@dialpad/dialtone": "^8.21.3",
|
|
58
|
+
"@dialpad/dialtone-icons": "^4.1.0",
|
|
59
59
|
"@dialpad/semantic-release-changelog-json": "^1.0.0",
|
|
60
|
-
"@percy/cli": "^1.27.
|
|
60
|
+
"@percy/cli": "^1.27.4",
|
|
61
61
|
"@percy/storybook": "^4.3.7",
|
|
62
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
62
63
|
"@semantic-release/changelog": "^6.0.3",
|
|
63
64
|
"@semantic-release/git": "^10.0.1",
|
|
64
65
|
"@storybook/addon-a11y": "^7.4.6",
|
|
@@ -104,9 +105,11 @@
|
|
|
104
105
|
"source-map-support": "^0.5.21",
|
|
105
106
|
"storybook": "^7.4.6",
|
|
106
107
|
"storybook-dark-mode": "^3.0.1",
|
|
108
|
+
"string-hash": "^1.1.3",
|
|
107
109
|
"typedoc": "^0.25.2",
|
|
108
110
|
"typedoc-plugin-markdown": "^3.16.0",
|
|
109
111
|
"vite": "^4.4.9",
|
|
112
|
+
"vite-svg-loader": "^4.0.0",
|
|
110
113
|
"vitest": "0.33.0",
|
|
111
114
|
"vue": "^3.3.4",
|
|
112
115
|
"vue-cli-plugin-webpack-bundle-analyzer": "~4.0.0",
|
|
@@ -117,6 +120,7 @@
|
|
|
117
120
|
},
|
|
118
121
|
"peerDependencies": {
|
|
119
122
|
"@dialpad/dialtone": "^7.30.0 || ^8.21.2",
|
|
123
|
+
"@dialpad/dialtone-icons": "^4.1.0",
|
|
120
124
|
"vue": ">=3.2"
|
|
121
125
|
},
|
|
122
126
|
"bugs": {
|