@dialpad/dialtone-vue 3.177.0 → 3.178.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/common/mixins/input.cjs +1 -1
- package/dist/common/mixins/input.cjs.map +1 -1
- package/dist/common/mixins/input.js +12 -16
- package/dist/common/mixins/input.js.map +1 -1
- package/dist/component-documentation.json +1 -1
- package/dist/lib/callbar-button-with-dropdown/callbar-button-with-dropdown.cjs +1 -1
- package/dist/lib/callbar-button-with-dropdown/callbar-button-with-dropdown.cjs.map +1 -1
- package/dist/lib/callbar-button-with-dropdown/callbar-button-with-dropdown.js +5 -4
- package/dist/lib/callbar-button-with-dropdown/callbar-button-with-dropdown.js.map +1 -1
- package/dist/lib/checkbox/checkbox.cjs +1 -1
- package/dist/lib/checkbox/checkbox.cjs.map +1 -1
- package/dist/lib/checkbox/checkbox.js +33 -32
- package/dist/lib/checkbox/checkbox.js.map +1 -1
- package/dist/lib/checkbox-group/checkbox-group.cjs +1 -1
- package/dist/lib/checkbox-group/checkbox-group.cjs.map +1 -1
- package/dist/lib/checkbox-group/checkbox-group.js +15 -11
- package/dist/lib/checkbox-group/checkbox-group.js.map +1 -1
- package/dist/lib/editor/editor.cjs +1 -1
- package/dist/lib/editor/editor.cjs.map +1 -1
- package/dist/lib/editor/editor.js +22 -16
- package/dist/lib/editor/editor.js.map +1 -1
- package/dist/lib/radio/radio.cjs +1 -1
- package/dist/lib/radio/radio.cjs.map +1 -1
- package/dist/lib/radio/radio.js +34 -33
- package/dist/lib/radio/radio.js.map +1 -1
- package/dist/lib/radio-group/radio-group.cjs +1 -1
- package/dist/lib/radio-group/radio-group.cjs.map +1 -1
- package/dist/lib/radio-group/radio-group.js +12 -5
- package/dist/lib/radio-group/radio-group.js.map +1 -1
- package/dist/lib/root-layout/root-layout.cjs +1 -1
- package/dist/lib/root-layout/root-layout.cjs.map +1 -1
- package/dist/lib/root-layout/root-layout.js +21 -18
- package/dist/lib/root-layout/root-layout.js.map +1 -1
- package/dist/lib/select-menu/select-menu.cjs +1 -1
- package/dist/lib/select-menu/select-menu.cjs.map +1 -1
- package/dist/lib/select-menu/select-menu.js +20 -13
- package/dist/lib/select-menu/select-menu.js.map +1 -1
- package/dist/lib/toggle/toggle.cjs +1 -1
- package/dist/lib/toggle/toggle.cjs.map +1 -1
- package/dist/lib/toggle/toggle.js +33 -29
- package/dist/lib/toggle/toggle.js.map +1 -1
- package/dist/types/common/mixins/input.d.ts +2 -5
- package/dist/types/common/mixins/input.d.ts.map +1 -1
- package/dist/types/components/checkbox/checkbox.vue.d.ts +4 -8
- package/dist/types/components/checkbox/checkbox.vue.d.ts.map +1 -1
- package/dist/types/components/checkbox_group/checkbox_group.vue.d.ts +5 -4
- package/dist/types/components/input/input.vue.d.ts +2 -2
- package/dist/types/components/radio/radio.vue.d.ts +4 -8
- package/dist/types/components/radio/radio.vue.d.ts.map +1 -1
- package/dist/types/components/radio_group/radio_group.vue.d.ts +5 -4
- package/dist/types/components/rich_text_editor/rich_text_editor.vue.d.ts +2 -2
- package/dist/types/components/root_layout/root_layout.vue.d.ts +1 -0
- package/dist/types/components/select_menu/select_menu.vue.d.ts +2 -1
- package/dist/types/components/select_menu/select_menu.vue.d.ts.map +1 -1
- package/dist/types/components/toggle/toggle.vue.d.ts +5 -4
- package/dist/types/components/toggle/toggle.vue.d.ts.map +1 -1
- package/dist/types/recipes/buttons/callbar_button_with_dropdown/callbar_button_with_dropdown.vue.d.ts.map +1 -1
- package/dist/types/recipes/conversation_view/editor/editor.vue.d.ts +5 -4
- package/dist/types/recipes/conversation_view/editor/editor.vue.d.ts.map +1 -1
- package/dist/types/recipes/conversation_view/message_input/message_input.vue.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toggle.js","sources":["../../../components/toggle/toggle.vue"],"sourcesContent":["<template>\n <div\n class=\"d-toggle-wrapper\"\n v-bind=\"addClassStyleAttrs($attrs)\"\n >\n <label\n v-if=\"hasSlotContent($slots.default)\"\n :class=\"labelClass\"\n :for=\"id\"\n v-bind=\"labelChildProps\"\n data-qa=\"toggle-label\"\n >\n <!-- @slot Slot for the main content -->\n <slot />\n </label>\n <button\n :id=\"id\"\n :role=\"toggleRole\"\n type=\"button\"\n :aria-checked=\"internalChecked.toString()\"\n :disabled=\"disabled\"\n :aria-disabled=\"disabled.toString()\"\n :class=\"toggleClasses\"\n v-bind=\"inputListeners\"\n >\n <span\n v-if=\"showIcon\"\n class=\"d-toggle__inner\"\n />\n </button>\n </div>\n</template>\n\n<script>\nimport { warn } from 'vue';\nimport { getUniqueString, hasSlotContent, removeClassStyleAttrs, addClassStyleAttrs } from '@/common/utils';\nimport { TOGGLE_CHECKED_VALUES, TOGGLE_SIZE_MODIFIERS } from '@/components/toggle/toggle_constants';\n\n/**\n * A toggle (or \"switch\") is a button control element that allows the user to make a binary (on/off) selection.\n * @see https://dialtone.dialpad.com/components/toggle.html\n */\nexport default {\n compatConfig: { MODE: 3 },\n\n name: 'DtToggle',\n\n inheritAttrs: false,\n\n
|
|
1
|
+
{"version":3,"file":"toggle.js","sources":["../../../components/toggle/toggle.vue"],"sourcesContent":["<template>\n <div\n class=\"d-toggle-wrapper\"\n v-bind=\"addClassStyleAttrs($attrs)\"\n >\n <label\n v-if=\"hasSlotContent($slots.default)\"\n :class=\"labelClass\"\n :for=\"id\"\n v-bind=\"labelChildProps\"\n data-qa=\"toggle-label\"\n >\n <!-- @slot Slot for the main content -->\n <slot />\n </label>\n <button\n :id=\"id\"\n :role=\"toggleRole\"\n type=\"button\"\n :aria-checked=\"internalChecked.toString()\"\n :disabled=\"disabled\"\n :aria-disabled=\"disabled.toString()\"\n :class=\"toggleClasses\"\n v-bind=\"inputListeners\"\n >\n <span\n v-if=\"showIcon\"\n class=\"d-toggle__inner\"\n />\n </button>\n </div>\n</template>\n\n<script>\nimport { warn } from 'vue';\nimport { getUniqueString, hasSlotContent, removeClassStyleAttrs, addClassStyleAttrs } from '@/common/utils';\nimport { TOGGLE_CHECKED_VALUES, TOGGLE_SIZE_MODIFIERS } from '@/components/toggle/toggle_constants';\n\n/**\n * A toggle (or \"switch\") is a button control element that allows the user to make a binary (on/off) selection.\n * @see https://dialtone.dialpad.com/components/toggle.html\n */\nexport default {\n compatConfig: { MODE: 3 },\n\n name: 'DtToggle',\n\n inheritAttrs: false,\n\n props: {\n\n /**\n * The id of the toggle\n */\n id: {\n type: String,\n default () { return getUniqueString(); },\n },\n\n /**\n * Disables the toggle interactions\n * @values true, false\n */\n disabled: {\n type: Boolean,\n default: false,\n },\n\n /**\n * Value of the toggle\n * @model modelValue\n * @values true, false, 'mixed'\n */\n modelValue: {\n type: [Boolean, String],\n default: false,\n validator: (v) => TOGGLE_CHECKED_VALUES.includes(v),\n },\n\n /**\n * Whether the component toggles on click. If you set this to false it means you will handle the toggling manually\n * via the checked prop or v-model. Change events will still be triggered.\n * @values true, false\n */\n toggleOnClick: {\n type: Boolean,\n default: true,\n },\n\n /**\n * The size of the toggle.\n * @values sm, md\n */\n size: {\n type: String,\n default: 'md',\n validator: (s) => Object.keys(TOGGLE_SIZE_MODIFIERS).includes(s),\n },\n\n /**\n * Shows the icon\n * @values true, false\n */\n showIcon: {\n type: Boolean,\n default: true,\n },\n\n /**\n * Used to customize the label container\n */\n labelClass: {\n type: [String, Array, Object],\n default: '',\n },\n\n /**\n * A set of props that are passed into the label container\n */\n labelChildProps: {\n type: Object,\n default: () => ({}),\n },\n },\n\n emits: [\n /**\n * Toggle change event\n *\n * @event change\n * @type {Boolean}\n * @model change\n */\n 'change',\n\n /**\n * v-model event event\n *\n * @event change\n * @type {Boolean}\n * @model change\n */\n 'update:modelValue',\n ],\n\n data () {\n return {\n internalChecked: this.modelValue,\n hasSlotContent,\n };\n },\n\n computed: {\n inputListeners () {\n return {\n ...removeClassStyleAttrs(this.$attrs),\n onClick: _ => this.toggleCheckedValue(),\n };\n },\n\n isIndeterminate () {\n return this.internalChecked === 'mixed';\n },\n\n toggleRole () {\n return this.isIndeterminate ? 'checkbox' : 'switch';\n },\n\n toggleClasses () {\n return [\n 'd-toggle',\n TOGGLE_SIZE_MODIFIERS[this.size],\n {\n 'd-toggle--checked': this.internalChecked === true,\n 'd-toggle--disabled': this.disabled,\n 'd-toggle--indeterminate': this.isIndeterminate,\n },\n ];\n },\n },\n\n watch: {\n modelValue (newChecked) {\n this.internalChecked = newChecked;\n },\n },\n\n mounted () {\n this.runValidations();\n },\n\n methods: {\n addClassStyleAttrs,\n toggleCheckedValue () {\n this.$emit('change', !this.internalChecked);\n this.$emit('update:modelValue', !this.internalChecked);\n\n if (this.toggleOnClick) {\n this.internalChecked = !this.internalChecked;\n }\n },\n\n hasSlotLabel () {\n return !!(this.$slots.default);\n },\n\n runValidations () {\n this.validateInputLabels(this.hasSlotLabel(), this.$attrs['aria-label']);\n },\n\n validateInputLabels (hasLabel, ariaLabel) {\n if (!hasLabel && !ariaLabel) {\n warn(\n 'You must provide an aria-label when there is no label passed',\n this,\n );\n }\n },\n },\n};\n</script>\n"],"names":["_sfc_main","getUniqueString","v","TOGGLE_CHECKED_VALUES","s","TOGGLE_SIZE_MODIFIERS","hasSlotContent","removeClassStyleAttrs","_","newChecked","addClassStyleAttrs","hasLabel","ariaLabel","warn","_hoisted_1","_hoisted_2","_createElementBlock","_mergeProps","$options","_ctx","$data","_openBlock","$props","_renderSlot","_createCommentVNode","_createElementVNode","_hoisted_3"],"mappings":"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"}
|
|
@@ -78,11 +78,8 @@ export namespace InputMixin {
|
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
export namespace CheckableMixin {
|
|
81
|
-
export namespace model {
|
|
82
|
-
let prop: string;
|
|
83
|
-
}
|
|
84
81
|
export namespace props_1 {
|
|
85
|
-
export namespace
|
|
82
|
+
export namespace modelValue {
|
|
86
83
|
let type_11: BooleanConstructor;
|
|
87
84
|
export { type_11 as type };
|
|
88
85
|
let _default_11: boolean;
|
|
@@ -105,7 +102,7 @@ export namespace CheckableMixin {
|
|
|
105
102
|
export { props_1 as props };
|
|
106
103
|
export function data(): any;
|
|
107
104
|
export namespace watch_1 {
|
|
108
|
-
function
|
|
105
|
+
function modelValue(newChecked: any): void;
|
|
109
106
|
function indeterminate(newValue: any): void;
|
|
110
107
|
}
|
|
111
108
|
export { watch_1 as watch };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../../common/mixins/input.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../../common/mixins/input.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA2DiB,yDAMV;;;;;;;;;;;;;;;;;;;;;;;YAgCQ,0BAAU;;;;;;YAQV,2BAAU;;;;IAIvB,qBAKC;;QAGC,0CAGC;QAED,wDAGC;;;QAQD,yFAOC;;;;;;;;;;;;;;;;;;;;;;;;;;IAqCH,4BAKC;;QAGC,2CAGC;QAED,4CAEC;;;;;;;;;;;YAoBU,mCAA0B;;;;IAIvC,4BAIC;;QAGC,yBAEC;QAED,0BAEC;QAED,2BAEC;QAED,8BAEC;QAED,qCAEC;QAED,6BAEC;;;QAID,oCAGC;;;YAIC,2CAKC;;;;;YAKD,qDAKC;;;;;YAKD,4DAKC;;;;IAIL,gCAWC;;;;;;;;;;;;;YAsBY,2BAAU;;;;;;;;;;;;YAiBV,gCAAQ;;YACN,gDAEV;;;;;;QAKH,kCAEC"}
|
|
@@ -3,8 +3,6 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {
|
|
|
3
3
|
inputValidationClass(): any;
|
|
4
4
|
checkboxGroupValueChecked(): any;
|
|
5
5
|
hasLabel(): boolean;
|
|
6
|
-
hasDescription(): boolean;
|
|
7
|
-
hasDescriptionOrMessages(): any;
|
|
8
6
|
hasMessages(): any;
|
|
9
7
|
inputListeners(): {
|
|
10
8
|
input: () => void;
|
|
@@ -75,11 +73,8 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {
|
|
|
75
73
|
validateInputLabels(hasLabelOrLabel: string | boolean, ariaLabel: string): void;
|
|
76
74
|
};
|
|
77
75
|
} | {
|
|
78
|
-
model: {
|
|
79
|
-
prop: string;
|
|
80
|
-
};
|
|
81
76
|
props: {
|
|
82
|
-
|
|
77
|
+
modelValue: {
|
|
83
78
|
type: BooleanConstructor;
|
|
84
79
|
default: boolean;
|
|
85
80
|
};
|
|
@@ -94,7 +89,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {
|
|
|
94
89
|
};
|
|
95
90
|
data(): any;
|
|
96
91
|
watch: {
|
|
97
|
-
|
|
92
|
+
modelValue(newChecked: any): void;
|
|
98
93
|
indeterminate(newValue: any): void;
|
|
99
94
|
};
|
|
100
95
|
} | {
|
|
@@ -154,10 +149,11 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {
|
|
|
154
149
|
computed: {
|
|
155
150
|
formattedMessages(): any;
|
|
156
151
|
};
|
|
157
|
-
}, import('vue').ComponentOptionsMixin, ("input" | "focusin" | "focusout")[], "input" | "focusin" | "focusout", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
152
|
+
}, import('vue').ComponentOptionsMixin, ("input" | "focusin" | "focusout" | "update:modelValue")[], "input" | "focusin" | "focusout" | "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
158
153
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
159
154
|
onFocusin?: ((...args: any[]) => any) | undefined;
|
|
160
155
|
onFocusout?: ((...args: any[]) => any) | undefined;
|
|
156
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
161
157
|
}, {}, {}>;
|
|
162
158
|
export default _default;
|
|
163
159
|
//# sourceMappingURL=checkbox.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"checkbox.vue.d.ts","sourceRoot":"","sources":["../../../../components/checkbox/checkbox.vue"],"names":[],"mappings":"AAsDA
|
|
1
|
+
{"version":3,"file":"checkbox.vue.d.ts","sourceRoot":"","sources":["../../../../components/checkbox/checkbox.vue"],"names":[],"mappings":"AAsDA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sCAuM0D,gBAAgB;mCAAhB,gBAAgB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{
|
|
2
|
-
|
|
2
|
+
modelValue: {
|
|
3
3
|
type: never[];
|
|
4
4
|
default: null;
|
|
5
5
|
validator: (value: unknown) => boolean;
|
|
@@ -174,8 +174,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
174
174
|
dataQaGroup: string;
|
|
175
175
|
dataQaGroupLegend: string;
|
|
176
176
|
dataQaGroupMessages: string;
|
|
177
|
-
}, {}>, "input"[], "input", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
178
|
-
|
|
177
|
+
}, {}>, ("input" | "update:selectedValues")[], "input" | "update:selectedValues", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
178
|
+
modelValue: {
|
|
179
179
|
type: never[];
|
|
180
180
|
default: null;
|
|
181
181
|
validator: (value: unknown) => boolean;
|
|
@@ -198,8 +198,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
198
198
|
};
|
|
199
199
|
}>> & {
|
|
200
200
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
201
|
+
"onUpdate:selectedValues"?: ((...args: any[]) => any) | undefined;
|
|
201
202
|
}, {
|
|
202
|
-
|
|
203
|
+
modelValue: never;
|
|
203
204
|
dataQaGroup: string;
|
|
204
205
|
dataQaGroupLegend: string;
|
|
205
206
|
dataQaGroupMessages: string;
|
|
@@ -204,13 +204,14 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
204
204
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
205
205
|
onFocusin?: ((...args: any[]) => any) | undefined;
|
|
206
206
|
onFocusout?: ((...args: any[]) => any) | undefined;
|
|
207
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
208
207
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
208
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
209
209
|
"onUpdate:length"?: ((...args: any[]) => any) | undefined;
|
|
210
210
|
"onUpdate:invalid"?: ((...args: any[]) => any) | undefined;
|
|
211
211
|
}, {
|
|
212
212
|
label: string;
|
|
213
213
|
disabled: boolean;
|
|
214
|
+
modelValue: string | number;
|
|
214
215
|
name: string;
|
|
215
216
|
size: string;
|
|
216
217
|
type: string;
|
|
@@ -218,7 +219,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
218
219
|
hidden: boolean;
|
|
219
220
|
validate: Record<string, any>;
|
|
220
221
|
labelVisible: boolean;
|
|
221
|
-
modelValue: string | number;
|
|
222
222
|
inputClass: string | Record<string, any> | unknown[];
|
|
223
223
|
inputWrapperClass: string | Record<string, any> | unknown[];
|
|
224
224
|
currentLength: number;
|
|
@@ -15,8 +15,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
15
15
|
focusout: (event: any) => any;
|
|
16
16
|
change: (event: any) => any;
|
|
17
17
|
};
|
|
18
|
-
hasDescription(): boolean;
|
|
19
|
-
hasDescriptionOrMessages(): any;
|
|
20
18
|
hasMessages(): any;
|
|
21
19
|
}, {
|
|
22
20
|
removeClassStyleAttrs: typeof removeClassStyleAttrs;
|
|
@@ -80,11 +78,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
80
78
|
validateInputLabels(hasLabelOrLabel: string | boolean, ariaLabel: string): void;
|
|
81
79
|
};
|
|
82
80
|
} | {
|
|
83
|
-
model: {
|
|
84
|
-
prop: string;
|
|
85
|
-
};
|
|
86
81
|
props: {
|
|
87
|
-
|
|
82
|
+
modelValue: {
|
|
88
83
|
type: BooleanConstructor;
|
|
89
84
|
default: boolean;
|
|
90
85
|
};
|
|
@@ -99,7 +94,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
99
94
|
};
|
|
100
95
|
data(): any;
|
|
101
96
|
watch: {
|
|
102
|
-
|
|
97
|
+
modelValue(newChecked: any): void;
|
|
103
98
|
indeterminate(newValue: any): void;
|
|
104
99
|
};
|
|
105
100
|
} | {
|
|
@@ -159,7 +154,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
159
154
|
computed: {
|
|
160
155
|
formattedMessages(): any;
|
|
161
156
|
};
|
|
162
|
-
}, import('vue').ComponentOptionsMixin, ("input" | "click" | "focus" | "focusin" | "focusout")[], "input" | "click" | "focus" | "focusin" | "focusout", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
157
|
+
}, import('vue').ComponentOptionsMixin, ("input" | "click" | "focus" | "focusin" | "focusout" | "update:modelValue")[], "input" | "click" | "focus" | "focusin" | "focusout" | "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
163
158
|
value: {
|
|
164
159
|
type: (StringConstructor | NumberConstructor)[];
|
|
165
160
|
default: string;
|
|
@@ -170,6 +165,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
170
165
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
171
166
|
onFocusin?: ((...args: any[]) => any) | undefined;
|
|
172
167
|
onFocusout?: ((...args: any[]) => any) | undefined;
|
|
168
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
173
169
|
}, {
|
|
174
170
|
value: string | number;
|
|
175
171
|
}, {}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radio.vue.d.ts","sourceRoot":"","sources":["../../../../components/radio/radio.vue"],"names":[],"mappings":"AAoDA
|
|
1
|
+
{"version":3,"file":"radio.vue.d.ts","sourceRoot":"","sources":["../../../../components/radio/radio.vue"],"names":[],"mappings":"AAoDA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BAgN0E,gBAAgB;sCAAhB,gBAAgB;mCAAhB,gBAAgB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{
|
|
2
|
-
|
|
2
|
+
modelValue: {
|
|
3
3
|
type: (StringConstructor | NumberConstructor)[];
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
@@ -169,8 +169,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
169
169
|
dataQaGroup: string;
|
|
170
170
|
dataQaGroupLegend: string;
|
|
171
171
|
dataQaGroupMessages: string;
|
|
172
|
-
}, {}>, "input"[], "input", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
173
|
-
|
|
172
|
+
}, {}>, ("input" | "update:modelValue")[], "input" | "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
173
|
+
modelValue: {
|
|
174
174
|
type: (StringConstructor | NumberConstructor)[];
|
|
175
175
|
default: string;
|
|
176
176
|
};
|
|
@@ -188,8 +188,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
188
188
|
};
|
|
189
189
|
}>> & {
|
|
190
190
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
191
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
191
192
|
}, {
|
|
192
|
-
|
|
193
|
+
modelValue: string | number;
|
|
193
194
|
dataQaGroup: string;
|
|
194
195
|
dataQaGroupLegend: string;
|
|
195
196
|
dataQaGroupMessages: string;
|
|
@@ -147,7 +147,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
147
147
|
getExtension(extension: any, options: any): any;
|
|
148
148
|
updateEditorAttributes(attributes: any): void;
|
|
149
149
|
focusEditor(): void;
|
|
150
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("input" | "blur" | "focus" | "selected" | "
|
|
150
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("input" | "blur" | "focus" | "selected" | "update:modelValue" | "enter" | "json-input" | "html-input" | "text-input" | "edit-link")[], "input" | "blur" | "focus" | "selected" | "update:modelValue" | "enter" | "json-input" | "html-input" | "text-input" | "edit-link", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
151
151
|
modelValue: {
|
|
152
152
|
type: (ObjectConstructor | StringConstructor)[];
|
|
153
153
|
default: string;
|
|
@@ -258,8 +258,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
258
258
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
259
259
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
260
260
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
261
|
-
onEnter?: ((...args: any[]) => any) | undefined;
|
|
262
261
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
262
|
+
onEnter?: ((...args: any[]) => any) | undefined;
|
|
263
263
|
onSelected?: ((...args: any[]) => any) | undefined;
|
|
264
264
|
"onJson-input"?: ((...args: any[]) => any) | undefined;
|
|
265
265
|
"onHtml-input"?: ((...args: any[]) => any) | undefined;
|
|
@@ -51,6 +51,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
51
51
|
};
|
|
52
52
|
}, any, any, {
|
|
53
53
|
isInverted(): boolean;
|
|
54
|
+
responsiveBreakpointClass(): string;
|
|
54
55
|
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
55
56
|
fixed: {
|
|
56
57
|
type: BooleanConstructor;
|
|
@@ -116,7 +116,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
116
116
|
computed: {
|
|
117
117
|
formattedMessages(): any;
|
|
118
118
|
};
|
|
119
|
-
}, import('vue').ComponentOptionsMixin, ("input" | "change")[], "input" | "change", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
119
|
+
}, import('vue').ComponentOptionsMixin, ("input" | "change" | "update:modelValue")[], "input" | "change" | "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
120
120
|
label: {
|
|
121
121
|
type: StringConstructor;
|
|
122
122
|
default: string;
|
|
@@ -170,6 +170,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
170
170
|
}>> & {
|
|
171
171
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
172
172
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
173
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
173
174
|
}, {
|
|
174
175
|
label: string;
|
|
175
176
|
disabled: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select_menu.vue.d.ts","sourceRoot":"","sources":["../../../../components/select_menu/select_menu.vue"],"names":[],"mappings":"AA6EA
|
|
1
|
+
{"version":3,"file":"select_menu.vue.d.ts","sourceRoot":"","sources":["../../../../components/select_menu/select_menu.vue"],"names":[],"mappings":"AA6EA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BA6VO,gBAAgB;sCAAhB,gBAAgB;mCAAhB,gBAAgB"}
|
|
@@ -8,7 +8,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
8
8
|
type: BooleanConstructor;
|
|
9
9
|
default: boolean;
|
|
10
10
|
};
|
|
11
|
-
|
|
11
|
+
modelValue: {
|
|
12
12
|
type: (StringConstructor | BooleanConstructor)[];
|
|
13
13
|
default: boolean;
|
|
14
14
|
validator: (v: unknown) => boolean;
|
|
@@ -48,7 +48,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
48
48
|
hasSlotLabel(): boolean;
|
|
49
49
|
runValidations(): void;
|
|
50
50
|
validateInputLabels(hasLabel: any, ariaLabel: any): void;
|
|
51
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "change"[], "change", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
51
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
52
52
|
id: {
|
|
53
53
|
type: StringConstructor;
|
|
54
54
|
default(): string;
|
|
@@ -57,7 +57,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
57
57
|
type: BooleanConstructor;
|
|
58
58
|
default: boolean;
|
|
59
59
|
};
|
|
60
|
-
|
|
60
|
+
modelValue: {
|
|
61
61
|
type: (StringConstructor | BooleanConstructor)[];
|
|
62
62
|
default: boolean;
|
|
63
63
|
validator: (v: unknown) => boolean;
|
|
@@ -85,9 +85,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
85
85
|
};
|
|
86
86
|
}>> & {
|
|
87
87
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
88
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
88
89
|
}, {
|
|
89
|
-
checked: string | boolean;
|
|
90
90
|
disabled: boolean;
|
|
91
|
+
modelValue: string | boolean;
|
|
91
92
|
id: string;
|
|
92
93
|
size: string;
|
|
93
94
|
labelClass: string | Record<string, any> | unknown[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toggle.vue.d.ts","sourceRoot":"","sources":["../../../../components/toggle/toggle.vue"],"names":[],"mappings":"AAgCA
|
|
1
|
+
{"version":3,"file":"toggle.vue.d.ts","sourceRoot":"","sources":["../../../../components/toggle/toggle.vue"],"names":[],"mappings":"AAgCA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BAgO2F,gBAAgB;mCAAhB,gBAAgB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"callbar_button_with_dropdown.vue.d.ts","sourceRoot":"","sources":["../../../../../recipes/buttons/callbar_button_with_dropdown/callbar_button_with_dropdown.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"callbar_button_with_dropdown.vue.d.ts","sourceRoot":"","sources":["../../../../../recipes/buttons/callbar_button_with_dropdown/callbar_button_with_dropdown.vue"],"names":[],"mappings":"AAqEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sCAsWiG,gBAAgB;mCAAhB,gBAAgB"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { removeClassStyleAttrs, addClassStyleAttrs } from '../../../common/utils';
|
|
2
2
|
declare const _default: import('vue').DefineComponent<{
|
|
3
|
-
|
|
3
|
+
modelValue: {
|
|
4
4
|
type: (ObjectConstructor | StringConstructor)[];
|
|
5
5
|
default: string;
|
|
6
6
|
};
|
|
@@ -470,8 +470,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
470
470
|
onFocus(event: any): void;
|
|
471
471
|
onBlur(event: any): void;
|
|
472
472
|
onInput(event: any): void;
|
|
473
|
-
}, never, import('vue').ComponentOptionsMixin, ("input" | "blur" | "focus" | "text-input" | "quick-replies-click" | "inline-image-click")[], "input" | "blur" | "focus" | "text-input" | "quick-replies-click" | "inline-image-click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
474
|
-
|
|
473
|
+
}, never, import('vue').ComponentOptionsMixin, ("input" | "blur" | "focus" | "update:modelValue" | "text-input" | "quick-replies-click" | "inline-image-click")[], "input" | "blur" | "focus" | "update:modelValue" | "text-input" | "quick-replies-click" | "inline-image-click", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
474
|
+
modelValue: {
|
|
475
475
|
type: (ObjectConstructor | StringConstructor)[];
|
|
476
476
|
default: string;
|
|
477
477
|
};
|
|
@@ -598,11 +598,12 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
598
598
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
599
599
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
600
600
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
601
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
601
602
|
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
602
603
|
"onQuick-replies-click"?: ((...args: any[]) => any) | undefined;
|
|
603
604
|
"onInline-image-click"?: ((...args: any[]) => any) | undefined;
|
|
604
605
|
}, {
|
|
605
|
-
|
|
606
|
+
modelValue: string | Record<string, any>;
|
|
606
607
|
maxHeight: string;
|
|
607
608
|
inputClass: string;
|
|
608
609
|
placeholder: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"editor.vue.d.ts","sourceRoot":"","sources":["../../../../../recipes/conversation_view/editor/editor.vue"],"names":[],"mappings":"AAqLA
|
|
1
|
+
{"version":3,"file":"editor.vue.d.ts","sourceRoot":"","sources":["../../../../../recipes/conversation_view/editor/editor.vue"],"names":[],"mappings":"AAqLA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sCAs5B0D,gBAAgB;mCAAhB,gBAAgB"}
|
|
@@ -424,8 +424,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
424
424
|
"onAdd-media"?: ((...args: any[]) => any) | undefined;
|
|
425
425
|
"onPaste-media"?: ((...args: any[]) => any) | undefined;
|
|
426
426
|
}, {
|
|
427
|
-
maxHeight: string;
|
|
428
427
|
modelValue: string | Record<string, any>;
|
|
428
|
+
maxHeight: string;
|
|
429
429
|
inputClass: string;
|
|
430
430
|
placeholder: string;
|
|
431
431
|
mentionSuggestion: Record<string, any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dialpad/dialtone-vue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.178.0",
|
|
4
4
|
"description": "Vue component library for Dialpad's design system Dialtone",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
"react": "17.0.2",
|
|
53
53
|
"storybook-dark-mode": "^3.0.3",
|
|
54
54
|
"vue": "^3.3.4",
|
|
55
|
-
"@dialpad/dialtone
|
|
56
|
-
"@dialpad/
|
|
55
|
+
"@dialpad/generator-dialtone": "0.1.0",
|
|
56
|
+
"@dialpad/dialtone-css": "8.54.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"vue": ">=3.2",
|
|
60
|
-
"@dialpad/dialtone-css": "^8.
|
|
60
|
+
"@dialpad/dialtone-css": "^8.54.0"
|
|
61
61
|
},
|
|
62
62
|
"bugs": {
|
|
63
63
|
"email": "dialtone@dialpad.com"
|