@vonage/vivid-vue 3.18.0 → 3.19.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/dist/generated/components/VAvatar.vue2.d.ts +3 -3
- package/dist/generated/components/VAvatar.vue3.d.ts +3 -3
- package/dist/generated/components/VCheckbox.vue2.d.ts +2 -2
- package/dist/generated/components/VCheckbox.vue3.d.ts +3 -2
- package/dist/generated/components/VCombobox.vue2.d.ts +2 -2
- package/dist/generated/components/VCombobox.vue3.d.ts +3 -2
- package/dist/generated/components/VDatePicker.vue2.d.ts +1 -1
- package/dist/generated/components/VDatePicker.vue3.d.ts +2 -1
- package/dist/generated/components/VMenuItem.vue2.d.ts +1 -1
- package/dist/generated/components/VMenuItem.vue3.d.ts +2 -1
- package/dist/generated/components/VNumberField.vue2.d.ts +2 -2
- package/dist/generated/components/VNumberField.vue3.d.ts +3 -2
- package/dist/generated/components/VPagination.vue2.d.ts +1 -1
- package/dist/generated/components/VPagination.vue3.d.ts +2 -1
- package/dist/generated/components/VProgressRing.vue2.d.ts +4 -4
- package/dist/generated/components/VProgressRing.vue3.d.ts +4 -4
- package/dist/generated/components/VRadioGroup.vue2.d.ts +1 -1
- package/dist/generated/components/VRadioGroup.vue3.d.ts +2 -1
- package/dist/generated/components/VSelect.vue2.d.ts +2 -2
- package/dist/generated/components/VSelect.vue3.d.ts +3 -2
- package/dist/generated/components/VSlider.vue2.d.ts +1 -1
- package/dist/generated/components/VSlider.vue3.d.ts +2 -1
- package/dist/generated/components/VSwitch.vue2.d.ts +16 -1
- package/dist/generated/components/VSwitch.vue3.d.ts +18 -1
- package/dist/generated/components/VTextArea.vue2.d.ts +2 -2
- package/dist/generated/components/VTextArea.vue3.d.ts +3 -2
- package/dist/generated/components/VTextField.vue2.d.ts +2 -2
- package/dist/generated/components/VTextField.vue3.d.ts +3 -2
- package/dist/index.es.js +173 -46
- package/dist/index.umd.js +1 -1
- package/dist/web-types.json +11 -3
- package/package.json +2 -2
|
@@ -21,13 +21,20 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
21
21
|
type: PropType<"accent" | "success" | "alert" | "cta">;
|
|
22
22
|
default: undefined;
|
|
23
23
|
};
|
|
24
|
+
/**
|
|
25
|
+
* The current checked state of the switch.
|
|
26
|
+
*/
|
|
27
|
+
modelValue: {
|
|
28
|
+
type: PropType<boolean>;
|
|
29
|
+
default: undefined;
|
|
30
|
+
};
|
|
24
31
|
}, {
|
|
25
32
|
componentName: import("vue").Ref<string>;
|
|
26
33
|
element: import("vue").Ref<{
|
|
27
34
|
label?: string | undefined;
|
|
28
35
|
connotation?: import("@vonage/vivid").SwitchConnotation | undefined;
|
|
29
36
|
} | null>;
|
|
30
|
-
}, import("vue").Data, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
37
|
+
}, import("vue").Data, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "change" | "update:modelValue")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
31
38
|
/**
|
|
32
39
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
33
40
|
*/
|
|
@@ -46,9 +53,17 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
46
53
|
type: PropType<"accent" | "success" | "alert" | "cta">;
|
|
47
54
|
default: undefined;
|
|
48
55
|
};
|
|
56
|
+
/**
|
|
57
|
+
* The current checked state of the switch.
|
|
58
|
+
*/
|
|
59
|
+
modelValue: {
|
|
60
|
+
type: PropType<boolean>;
|
|
61
|
+
default: undefined;
|
|
62
|
+
};
|
|
49
63
|
}>>, {
|
|
50
64
|
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
51
65
|
connotation: "accent" | "success" | "alert" | "cta";
|
|
52
66
|
label: string;
|
|
67
|
+
modelValue: boolean;
|
|
53
68
|
}>;
|
|
54
69
|
export default _default;
|
|
@@ -21,13 +21,20 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
21
21
|
type: PropType<"accent" | "success" | "alert" | "cta">;
|
|
22
22
|
default: undefined;
|
|
23
23
|
};
|
|
24
|
+
/**
|
|
25
|
+
* The current checked state of the switch.
|
|
26
|
+
*/
|
|
27
|
+
modelValue: {
|
|
28
|
+
type: PropType<boolean>;
|
|
29
|
+
default: undefined;
|
|
30
|
+
};
|
|
24
31
|
}, {
|
|
25
32
|
componentName: import("vue").Ref<string>;
|
|
26
33
|
element: import("vue").Ref<{
|
|
27
34
|
label?: string | undefined;
|
|
28
35
|
connotation?: import("@vonage/vivid").SwitchConnotation | undefined;
|
|
29
36
|
} | null>;
|
|
30
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input")[], "click" | "focus" | "blur" | "keydown" | "keyup" | "input", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
37
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "change" | "update:modelValue")[], "click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
38
|
/**
|
|
32
39
|
* Indicates the element that represents the current item within a container or set of related elements.
|
|
33
40
|
*/
|
|
@@ -46,6 +53,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
46
53
|
type: PropType<"accent" | "success" | "alert" | "cta">;
|
|
47
54
|
default: undefined;
|
|
48
55
|
};
|
|
56
|
+
/**
|
|
57
|
+
* The current checked state of the switch.
|
|
58
|
+
*/
|
|
59
|
+
modelValue: {
|
|
60
|
+
type: PropType<boolean>;
|
|
61
|
+
default: undefined;
|
|
62
|
+
};
|
|
49
63
|
}>> & {
|
|
50
64
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
51
65
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
@@ -53,9 +67,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
53
67
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
54
68
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
55
69
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
70
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
71
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
56
72
|
}, {
|
|
57
73
|
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
58
74
|
connotation: "accent" | "success" | "alert" | "cta";
|
|
59
75
|
label: string;
|
|
76
|
+
modelValue: boolean;
|
|
60
77
|
}>;
|
|
61
78
|
export default _default;
|
|
@@ -14,7 +14,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
14
14
|
componentName: import("vue").Ref<string>;
|
|
15
15
|
element: import("vue").Ref<{
|
|
16
16
|
wrap?: import("@vonage/vivid").TextAreaWrap | undefined;
|
|
17
|
-
errorValidationMessage:
|
|
17
|
+
errorValidationMessage: string;
|
|
18
18
|
label: string;
|
|
19
19
|
userValid: boolean;
|
|
20
20
|
dirtyValue: boolean;
|
|
@@ -23,7 +23,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
23
23
|
helperText?: string | undefined;
|
|
24
24
|
successText?: string | undefined;
|
|
25
25
|
} | null>;
|
|
26
|
-
}, import("vue").Data, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "update:modelValue")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
+
}, import("vue").Data, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "update:modelValue")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
27
27
|
/**
|
|
28
28
|
* The current value of the text-area.
|
|
29
29
|
*/
|
|
@@ -14,7 +14,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14
14
|
componentName: import("vue").Ref<string>;
|
|
15
15
|
element: import("vue").Ref<{
|
|
16
16
|
wrap?: import("@vonage/vivid").TextAreaWrap | undefined;
|
|
17
|
-
errorValidationMessage:
|
|
17
|
+
errorValidationMessage: string;
|
|
18
18
|
label: string;
|
|
19
19
|
userValid: boolean;
|
|
20
20
|
dirtyValue: boolean;
|
|
@@ -23,7 +23,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
helperText?: string | undefined;
|
|
24
24
|
successText?: string | undefined;
|
|
25
25
|
} | null>;
|
|
26
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "update:modelValue")[], "click" | "focus" | "blur" | "keydown" | "keyup" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "update:modelValue")[], "click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
27
|
/**
|
|
28
28
|
* The current value of the text-area.
|
|
29
29
|
*/
|
|
@@ -37,6 +37,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
37
37
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
38
38
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
39
39
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
40
41
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
41
42
|
}, {
|
|
42
43
|
modelValue: string;
|
|
@@ -184,7 +184,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
184
184
|
leadingActionItemsSlottedContent?: HTMLElement[] | undefined;
|
|
185
185
|
icon?: string | undefined;
|
|
186
186
|
errorText: string;
|
|
187
|
-
errorValidationMessage:
|
|
187
|
+
errorValidationMessage: string;
|
|
188
188
|
label: string;
|
|
189
189
|
userValid: boolean;
|
|
190
190
|
dirtyValue: boolean;
|
|
@@ -192,7 +192,7 @@ declare const _default: import("vue/types/v3-define-component").DefineComponent<
|
|
|
192
192
|
helperText?: string | undefined;
|
|
193
193
|
successText?: string | undefined;
|
|
194
194
|
} | null>;
|
|
195
|
-
}, import("vue").Data, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "change" | "update:modelValue")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
195
|
+
}, import("vue").Data, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "change" | "update:modelValue")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
196
196
|
/**
|
|
197
197
|
* The success text for the form element.
|
|
198
198
|
*/
|
|
@@ -184,7 +184,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
184
184
|
leadingActionItemsSlottedContent?: HTMLElement[] | undefined;
|
|
185
185
|
icon?: string | undefined;
|
|
186
186
|
errorText: string;
|
|
187
|
-
errorValidationMessage:
|
|
187
|
+
errorValidationMessage: string;
|
|
188
188
|
label: string;
|
|
189
189
|
userValid: boolean;
|
|
190
190
|
dirtyValue: boolean;
|
|
@@ -192,7 +192,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
192
192
|
helperText?: string | undefined;
|
|
193
193
|
successText?: string | undefined;
|
|
194
194
|
} | null>;
|
|
195
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "change" | "update:modelValue")[], "click" | "focus" | "blur" | "keydown" | "keyup" | "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
195
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "change" | "update:modelValue")[], "click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
196
196
|
/**
|
|
197
197
|
* The success text for the form element.
|
|
198
198
|
*/
|
|
@@ -371,6 +371,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
371
371
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
372
372
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
373
373
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
374
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
374
375
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
375
376
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
376
377
|
}, {
|