voiptime-components 1.13.54 → 1.13.56
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/index.cjs.js +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.es.js +2 -2
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ declare const __VLS_component_12: DefineComponent<VTabsProps, {}, {}, {}, {}, Co
|
|
|
57
57
|
"onTab-remove"?: ((name: string) => any) | undefined;
|
|
58
58
|
"onTab-add"?: (() => any) | undefined;
|
|
59
59
|
}>, {
|
|
60
|
-
modelValue: string;
|
|
60
|
+
modelValue: string | number;
|
|
61
61
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
62
62
|
navRef: HTMLDivElement;
|
|
63
63
|
scrollableRef: HTMLDivElement;
|
|
@@ -65,7 +65,7 @@ declare const __VLS_component_12: DefineComponent<VTabsProps, {}, {}, {}, {}, Co
|
|
|
65
65
|
|
|
66
66
|
declare const __VLS_component_13: DefineComponent<ExtractPropTypes<{
|
|
67
67
|
name: {
|
|
68
|
-
type: StringConstructor;
|
|
68
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
69
69
|
required: true;
|
|
70
70
|
};
|
|
71
71
|
label: StringConstructor;
|
|
@@ -78,7 +78,7 @@ declare const __VLS_component_13: DefineComponent<ExtractPropTypes<{
|
|
|
78
78
|
};
|
|
79
79
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
80
80
|
name: {
|
|
81
|
-
type: StringConstructor;
|
|
81
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
82
82
|
required: true;
|
|
83
83
|
};
|
|
84
84
|
label: StringConstructor;
|
|
@@ -1917,7 +1917,7 @@ export declare const VTabItem: __VLS_WithTemplateSlots_13<typeof __VLS_component
|
|
|
1917
1917
|
export declare interface VTabItemProps {
|
|
1918
1918
|
label?: string;
|
|
1919
1919
|
disabled?: boolean;
|
|
1920
|
-
name?: string;
|
|
1920
|
+
name?: string | number;
|
|
1921
1921
|
closable?: boolean;
|
|
1922
1922
|
icon?: IconName;
|
|
1923
1923
|
}
|
|
@@ -2060,7 +2060,7 @@ export declare type VTabsEmits = {
|
|
|
2060
2060
|
};
|
|
2061
2061
|
|
|
2062
2062
|
export declare interface VTabsProps {
|
|
2063
|
-
modelValue?: string;
|
|
2063
|
+
modelValue?: string | number;
|
|
2064
2064
|
}
|
|
2065
2065
|
|
|
2066
2066
|
export declare const VTimePicker: DefineComponent<VTimePickerProps, {
|
package/dist/index.es.js
CHANGED
|
@@ -5068,7 +5068,7 @@ const am = ["for"], um = {
|
|
|
5068
5068
|
Y.validationErrors.value = [], Y.isValid.value = !0, d("validation", { isValid: !0, errors: [] });
|
|
5069
5069
|
}
|
|
5070
5070
|
}, Y1 = M(() => i.multiple), W1 = M(() => {
|
|
5071
|
-
if (
|
|
5071
|
+
if (i.modelValue === null || i.modelValue === void 0) return [];
|
|
5072
5072
|
let Z;
|
|
5073
5073
|
if (Y1.value) {
|
|
5074
5074
|
if (!Array.isArray(i.modelValue))
|
|
@@ -9185,7 +9185,7 @@ const il = new XZ(), VZ = {
|
|
|
9185
9185
|
}), NI = /* @__PURE__ */ C1({
|
|
9186
9186
|
__name: "VTabItem",
|
|
9187
9187
|
props: {
|
|
9188
|
-
name: { type: String, required: !0 },
|
|
9188
|
+
name: { type: [String, Number], required: !0 },
|
|
9189
9189
|
label: String,
|
|
9190
9190
|
disabled: Boolean,
|
|
9191
9191
|
closable: Boolean,
|