vuetify 3.3.10 → 3.3.11
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-variables-labs.sass +3 -1
- package/dist/json/attributes.json +221 -33
- package/dist/json/importMap-labs.json +28 -0
- package/dist/json/tags.json +79 -0
- package/dist/json/web-types.json +693 -34
- package/dist/vuetify-labs.css +1050 -885
- package/dist/vuetify-labs.d.ts +2802 -304
- package/dist/vuetify-labs.esm.js +719 -68
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +719 -68
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +187 -182
- package/dist/vuetify.d.ts +64 -29
- package/dist/vuetify.esm.js +137 -61
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +137 -61
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +954 -947
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/md1.mjs +5 -0
- package/lib/blueprints/md1.mjs.map +1 -1
- package/lib/blueprints/md2.mjs +5 -0
- package/lib/blueprints/md2.mjs.map +1 -1
- package/lib/blueprints/md3.mjs +5 -0
- package/lib/blueprints/md3.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +13 -10
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +6 -0
- package/lib/components/VCarousel/index.d.mts +12 -10
- package/lib/components/VChip/VChip.mjs +3 -3
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +10 -4
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.mts +6 -0
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs +8 -3
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs.map +1 -1
- package/lib/components/VMenu/VMenu.mjs +29 -4
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VOverlay/useActivator.mjs +2 -2
- package/lib/components/VOverlay/useActivator.mjs.map +1 -1
- package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.mts +8 -8
- package/lib/components/VRating/VRating.mjs +4 -2
- package/lib/components/VRating/VRating.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.mjs +11 -4
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +6 -0
- package/lib/components/VSelectionControl/VSelectionControl.mjs +2 -2
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSlider/VSlider.mjs +2 -3
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/slider.mjs +1 -0
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/VSwitch/VSwitch.css +3 -0
- package/lib/components/VSwitch/VSwitch.sass +3 -0
- package/lib/components/VSwitch/_variables.scss +1 -0
- package/lib/components/VTable/VTable.css +2 -0
- package/lib/components/VTable/VTable.sass +2 -0
- package/lib/components/VTimeline/VTimeline.css +2 -2
- package/lib/components/VTimeline/VTimeline.sass +2 -2
- package/lib/components/VWindow/VWindow.mjs +1 -0
- package/lib/components/VWindow/VWindow.mjs.map +1 -1
- package/lib/components/VWindow/VWindowItem.mjs +3 -1
- package/lib/components/VWindow/VWindowItem.mjs.map +1 -1
- package/lib/components/VWindow/index.d.mts +29 -11
- package/lib/components/index.d.mts +57 -29
- package/lib/composables/group.mjs +1 -1
- package/lib/composables/group.mjs.map +1 -1
- package/lib/composables/theme.mjs +12 -6
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +7 -0
- package/lib/labs/VDatePicker/VDatePicker.css +6 -5
- package/lib/labs/VDatePicker/VDatePicker.mjs +3 -3
- package/lib/labs/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePicker.sass +8 -9
- package/lib/labs/VDateRangePicker/VDateRangePickerHeader.mjs +2 -2
- package/lib/labs/VDateRangePicker/VDateRangePickerHeader.mjs.map +1 -1
- package/lib/labs/VInfiniteScroll/VInfiniteScroll.mjs +4 -5
- package/lib/labs/VInfiniteScroll/VInfiniteScroll.mjs.map +1 -1
- package/lib/labs/VOtpInput/VOtpInput.css +53 -0
- package/lib/labs/VOtpInput/VOtpInput.mjs +213 -0
- package/lib/labs/VOtpInput/VOtpInput.mjs.map +1 -0
- package/lib/labs/VOtpInput/VOtpInput.sass +55 -0
- package/lib/labs/VOtpInput/_variables.scss +2 -0
- package/lib/labs/VOtpInput/index.d.mts +459 -0
- package/lib/labs/VOtpInput/index.mjs +2 -0
- package/lib/labs/VOtpInput/index.mjs.map +1 -0
- package/lib/labs/VPicker/VPicker.mjs +1 -1
- package/lib/labs/VPicker/VPicker.mjs.map +1 -1
- package/lib/labs/VStepper/VStepper.css +42 -0
- package/lib/labs/VStepper/VStepper.mjs +147 -0
- package/lib/labs/VStepper/VStepper.mjs.map +1 -0
- package/lib/labs/VStepper/VStepper.sass +44 -0
- package/lib/labs/VStepper/VStepperActions.mjs +61 -0
- package/lib/labs/VStepper/VStepperActions.mjs.map +1 -0
- package/lib/labs/VStepper/VStepperHeader.mjs +4 -0
- package/lib/labs/VStepper/VStepperHeader.mjs.map +1 -0
- package/lib/labs/VStepper/VStepperItem.css +67 -0
- package/lib/labs/VStepper/VStepperItem.mjs +114 -0
- package/lib/labs/VStepper/VStepperItem.mjs.map +1 -0
- package/lib/labs/VStepper/VStepperItem.sass +71 -0
- package/lib/labs/VStepper/VStepperWindow.mjs +50 -0
- package/lib/labs/VStepper/VStepperWindow.mjs.map +1 -0
- package/lib/labs/VStepper/VStepperWindowItem.mjs +24 -0
- package/lib/labs/VStepper/VStepperWindowItem.mjs.map +1 -0
- package/lib/labs/VStepper/_variables.scss +4 -0
- package/lib/labs/VStepper/index.d.mts +2051 -0
- package/lib/labs/VStepper/index.mjs +7 -0
- package/lib/labs/VStepper/index.mjs.map +1 -0
- package/lib/labs/components.d.mts +2751 -267
- package/lib/labs/components.mjs +2 -0
- package/lib/labs/components.mjs.map +1 -1
- package/lib/labs/date/adapters/vuetify.mjs +6 -7
- package/lib/labs/date/adapters/vuetify.mjs.map +1 -1
- package/lib/locale/af.mjs +6 -1
- package/lib/locale/af.mjs.map +1 -1
- package/lib/locale/ar.mjs +6 -1
- package/lib/locale/ar.mjs.map +1 -1
- package/lib/locale/az.mjs +6 -1
- package/lib/locale/az.mjs.map +1 -1
- package/lib/locale/bg.mjs +6 -1
- package/lib/locale/bg.mjs.map +1 -1
- package/lib/locale/ca.mjs +6 -1
- package/lib/locale/ca.mjs.map +1 -1
- package/lib/locale/ckb.mjs +6 -1
- package/lib/locale/ckb.mjs.map +1 -1
- package/lib/locale/cs.mjs +6 -1
- package/lib/locale/cs.mjs.map +1 -1
- package/lib/locale/da.mjs +6 -1
- package/lib/locale/da.mjs.map +1 -1
- package/lib/locale/de.mjs +6 -1
- package/lib/locale/de.mjs.map +1 -1
- package/lib/locale/el.mjs +6 -1
- package/lib/locale/el.mjs.map +1 -1
- package/lib/locale/en.mjs +6 -1
- package/lib/locale/en.mjs.map +1 -1
- package/lib/locale/es.mjs +6 -1
- package/lib/locale/es.mjs.map +1 -1
- package/lib/locale/et.mjs +6 -1
- package/lib/locale/et.mjs.map +1 -1
- package/lib/locale/fa.mjs +6 -1
- package/lib/locale/fa.mjs.map +1 -1
- package/lib/locale/fi.mjs +6 -1
- package/lib/locale/fi.mjs.map +1 -1
- package/lib/locale/fr.mjs +6 -1
- package/lib/locale/fr.mjs.map +1 -1
- package/lib/locale/he.mjs +6 -1
- package/lib/locale/he.mjs.map +1 -1
- package/lib/locale/hr.mjs +6 -1
- package/lib/locale/hr.mjs.map +1 -1
- package/lib/locale/hu.mjs +6 -1
- package/lib/locale/hu.mjs.map +1 -1
- package/lib/locale/id.mjs +6 -1
- package/lib/locale/id.mjs.map +1 -1
- package/lib/locale/index.d.mts +210 -0
- package/lib/locale/it.mjs +6 -1
- package/lib/locale/it.mjs.map +1 -1
- package/lib/locale/ja.mjs +6 -1
- package/lib/locale/ja.mjs.map +1 -1
- package/lib/locale/ko.mjs +6 -1
- package/lib/locale/ko.mjs.map +1 -1
- package/lib/locale/lt.mjs +6 -1
- package/lib/locale/lt.mjs.map +1 -1
- package/lib/locale/lv.mjs +6 -1
- package/lib/locale/lv.mjs.map +1 -1
- package/lib/locale/nl.mjs +6 -1
- package/lib/locale/nl.mjs.map +1 -1
- package/lib/locale/no.mjs +6 -1
- package/lib/locale/no.mjs.map +1 -1
- package/lib/locale/pl.mjs +6 -1
- package/lib/locale/pl.mjs.map +1 -1
- package/lib/locale/pt.mjs +6 -1
- package/lib/locale/pt.mjs.map +1 -1
- package/lib/locale/ro.mjs +23 -18
- package/lib/locale/ro.mjs.map +1 -1
- package/lib/locale/ru.mjs +6 -1
- package/lib/locale/ru.mjs.map +1 -1
- package/lib/locale/sk.mjs +6 -1
- package/lib/locale/sk.mjs.map +1 -1
- package/lib/locale/sl.mjs +6 -1
- package/lib/locale/sl.mjs.map +1 -1
- package/lib/locale/sr-Cyrl.mjs +6 -1
- package/lib/locale/sr-Cyrl.mjs.map +1 -1
- package/lib/locale/sr-Latn.mjs +6 -1
- package/lib/locale/sr-Latn.mjs.map +1 -1
- package/lib/locale/sv.mjs +6 -1
- package/lib/locale/sv.mjs.map +1 -1
- package/lib/locale/th.mjs +6 -1
- package/lib/locale/th.mjs.map +1 -1
- package/lib/locale/tr.mjs +6 -1
- package/lib/locale/tr.mjs.map +1 -1
- package/lib/locale/uk.mjs +6 -1
- package/lib/locale/uk.mjs.map +1 -1
- package/lib/locale/vi.mjs +6 -1
- package/lib/locale/vi.mjs.map +1 -1
- package/lib/locale/zh-Hans.mjs +6 -1
- package/lib/locale/zh-Hans.mjs.map +1 -1
- package/lib/locale/zh-Hant.mjs +6 -1
- package/lib/locale/zh-Hant.mjs.map +1 -1
- package/lib/util/globals.mjs +0 -1
- package/lib/util/globals.mjs.map +1 -1
- package/lib/util/helpers.mjs +32 -12
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +3 -2
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -889,7 +889,7 @@ declare function useLayout(): {
|
|
|
889
889
|
};
|
|
890
890
|
|
|
891
891
|
type ValidationResult = string | boolean;
|
|
892
|
-
type ValidationRule = ValidationResult | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>);
|
|
892
|
+
type ValidationRule$1 = ValidationResult | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>);
|
|
893
893
|
|
|
894
894
|
interface FieldValidationResult {
|
|
895
895
|
id: number | string;
|
|
@@ -4460,7 +4460,7 @@ declare const VInput: {
|
|
|
4460
4460
|
focused?: boolean | undefined;
|
|
4461
4461
|
errorMessages?: string | readonly string[] | undefined;
|
|
4462
4462
|
maxErrors?: string | number | undefined;
|
|
4463
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
4463
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
4464
4464
|
centerAffix?: boolean | undefined;
|
|
4465
4465
|
persistentHint?: boolean | undefined;
|
|
4466
4466
|
key?: string | number | symbol | undefined;
|
|
@@ -4578,7 +4578,7 @@ declare const VInput: {
|
|
|
4578
4578
|
focused: boolean;
|
|
4579
4579
|
errorMessages: string | readonly string[];
|
|
4580
4580
|
maxErrors: string | number;
|
|
4581
|
-
rules: readonly ValidationRule[];
|
|
4581
|
+
rules: readonly ValidationRule$1[];
|
|
4582
4582
|
centerAffix: boolean;
|
|
4583
4583
|
persistentHint: boolean;
|
|
4584
4584
|
} & {
|
|
@@ -4636,7 +4636,7 @@ declare const VInput: {
|
|
|
4636
4636
|
focused: boolean;
|
|
4637
4637
|
errorMessages: string | readonly string[];
|
|
4638
4638
|
maxErrors: string | number;
|
|
4639
|
-
rules: readonly ValidationRule[];
|
|
4639
|
+
rules: readonly ValidationRule$1[];
|
|
4640
4640
|
centerAffix: boolean;
|
|
4641
4641
|
persistentHint: boolean;
|
|
4642
4642
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -4686,7 +4686,7 @@ declare const VInput: {
|
|
|
4686
4686
|
focused: boolean;
|
|
4687
4687
|
errorMessages: string | readonly string[];
|
|
4688
4688
|
maxErrors: string | number;
|
|
4689
|
-
rules: readonly ValidationRule[];
|
|
4689
|
+
rules: readonly ValidationRule$1[];
|
|
4690
4690
|
centerAffix: boolean;
|
|
4691
4691
|
persistentHint: boolean;
|
|
4692
4692
|
} & {
|
|
@@ -4746,7 +4746,7 @@ declare const VInput: {
|
|
|
4746
4746
|
focused: boolean;
|
|
4747
4747
|
errorMessages: string | readonly string[];
|
|
4748
4748
|
maxErrors: string | number;
|
|
4749
|
-
rules: readonly ValidationRule[];
|
|
4749
|
+
rules: readonly ValidationRule$1[];
|
|
4750
4750
|
centerAffix: boolean;
|
|
4751
4751
|
persistentHint: boolean;
|
|
4752
4752
|
} & {
|
|
@@ -4804,7 +4804,7 @@ declare const VInput: {
|
|
|
4804
4804
|
focused: boolean;
|
|
4805
4805
|
errorMessages: string | readonly string[];
|
|
4806
4806
|
maxErrors: string | number;
|
|
4807
|
-
rules: readonly ValidationRule[];
|
|
4807
|
+
rules: readonly ValidationRule$1[];
|
|
4808
4808
|
centerAffix: boolean;
|
|
4809
4809
|
persistentHint: boolean;
|
|
4810
4810
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -4846,7 +4846,7 @@ declare const VInput: {
|
|
|
4846
4846
|
default: null;
|
|
4847
4847
|
};
|
|
4848
4848
|
rules: {
|
|
4849
|
-
type: PropType<readonly ValidationRule[]>;
|
|
4849
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
4850
4850
|
default: () => never[];
|
|
4851
4851
|
};
|
|
4852
4852
|
modelValue: null;
|
|
@@ -4906,7 +4906,7 @@ declare const VInput: {
|
|
|
4906
4906
|
default: null;
|
|
4907
4907
|
};
|
|
4908
4908
|
rules: {
|
|
4909
|
-
type: PropType<readonly ValidationRule[]>;
|
|
4909
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
4910
4910
|
default: () => never[];
|
|
4911
4911
|
};
|
|
4912
4912
|
modelValue: null;
|
|
@@ -5059,7 +5059,7 @@ declare const VAutocomplete: {
|
|
|
5059
5059
|
focused?: boolean | undefined;
|
|
5060
5060
|
errorMessages?: string | readonly string[] | undefined;
|
|
5061
5061
|
maxErrors?: string | number | undefined;
|
|
5062
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
5062
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
5063
5063
|
centerAffix?: boolean | undefined;
|
|
5064
5064
|
persistentHint?: boolean | undefined;
|
|
5065
5065
|
itemTitle?: SelectItemKey | undefined;
|
|
@@ -5265,6 +5265,7 @@ declare const VAutocomplete: {
|
|
|
5265
5265
|
contentProps?: any;
|
|
5266
5266
|
attach?: string | boolean | Element | undefined;
|
|
5267
5267
|
} | undefined;
|
|
5268
|
+
itemColor?: string | undefined;
|
|
5268
5269
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
5269
5270
|
customFilter?: FilterFunction | undefined;
|
|
5270
5271
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
@@ -5367,7 +5368,7 @@ declare const VAutocomplete: {
|
|
|
5367
5368
|
focused: boolean;
|
|
5368
5369
|
errorMessages: string | readonly string[];
|
|
5369
5370
|
maxErrors: string | number;
|
|
5370
|
-
rules: readonly ValidationRule[];
|
|
5371
|
+
rules: readonly ValidationRule$1[];
|
|
5371
5372
|
persistentHint: boolean;
|
|
5372
5373
|
itemTitle: SelectItemKey;
|
|
5373
5374
|
itemValue: SelectItemKey;
|
|
@@ -5532,6 +5533,7 @@ declare const VAutocomplete: {
|
|
|
5532
5533
|
contentProps?: any;
|
|
5533
5534
|
attach?: string | boolean | Element | undefined;
|
|
5534
5535
|
} | undefined;
|
|
5536
|
+
itemColor?: string | undefined;
|
|
5535
5537
|
customFilter?: FilterFunction | undefined;
|
|
5536
5538
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
5537
5539
|
autoSelectFirst?: boolean | "exact" | undefined;
|
|
@@ -5571,7 +5573,7 @@ declare const VAutocomplete: {
|
|
|
5571
5573
|
focused: boolean;
|
|
5572
5574
|
errorMessages: string | readonly string[];
|
|
5573
5575
|
maxErrors: string | number;
|
|
5574
|
-
rules: readonly ValidationRule[];
|
|
5576
|
+
rules: readonly ValidationRule$1[];
|
|
5575
5577
|
centerAffix: boolean;
|
|
5576
5578
|
persistentHint: boolean;
|
|
5577
5579
|
itemTitle: SelectItemKey;
|
|
@@ -5697,7 +5699,7 @@ declare const VAutocomplete: {
|
|
|
5697
5699
|
focused: boolean;
|
|
5698
5700
|
errorMessages: string | readonly string[];
|
|
5699
5701
|
maxErrors: string | number;
|
|
5700
|
-
rules: readonly ValidationRule[];
|
|
5702
|
+
rules: readonly ValidationRule$1[];
|
|
5701
5703
|
persistentHint: boolean;
|
|
5702
5704
|
itemTitle: SelectItemKey;
|
|
5703
5705
|
itemValue: SelectItemKey;
|
|
@@ -5862,6 +5864,7 @@ declare const VAutocomplete: {
|
|
|
5862
5864
|
contentProps?: any;
|
|
5863
5865
|
attach?: string | boolean | Element | undefined;
|
|
5864
5866
|
} | undefined;
|
|
5867
|
+
itemColor?: string | undefined;
|
|
5865
5868
|
customFilter?: FilterFunction | undefined;
|
|
5866
5869
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
5867
5870
|
autoSelectFirst?: boolean | "exact" | undefined;
|
|
@@ -5899,7 +5902,7 @@ declare const VAutocomplete: {
|
|
|
5899
5902
|
focused: boolean;
|
|
5900
5903
|
errorMessages: string | readonly string[];
|
|
5901
5904
|
maxErrors: string | number;
|
|
5902
|
-
rules: readonly ValidationRule[];
|
|
5905
|
+
rules: readonly ValidationRule$1[];
|
|
5903
5906
|
persistentHint: boolean;
|
|
5904
5907
|
itemTitle: SelectItemKey;
|
|
5905
5908
|
itemValue: SelectItemKey;
|
|
@@ -6064,6 +6067,7 @@ declare const VAutocomplete: {
|
|
|
6064
6067
|
contentProps?: any;
|
|
6065
6068
|
attach?: string | boolean | Element | undefined;
|
|
6066
6069
|
} | undefined;
|
|
6070
|
+
itemColor?: string | undefined;
|
|
6067
6071
|
customFilter?: FilterFunction | undefined;
|
|
6068
6072
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
6069
6073
|
autoSelectFirst?: boolean | "exact" | undefined;
|
|
@@ -6103,7 +6107,7 @@ declare const VAutocomplete: {
|
|
|
6103
6107
|
focused: boolean;
|
|
6104
6108
|
errorMessages: string | readonly string[];
|
|
6105
6109
|
maxErrors: string | number;
|
|
6106
|
-
rules: readonly ValidationRule[];
|
|
6110
|
+
rules: readonly ValidationRule$1[];
|
|
6107
6111
|
centerAffix: boolean;
|
|
6108
6112
|
persistentHint: boolean;
|
|
6109
6113
|
itemTitle: SelectItemKey;
|
|
@@ -6330,7 +6334,7 @@ declare const VAutocomplete: {
|
|
|
6330
6334
|
default: number;
|
|
6331
6335
|
};
|
|
6332
6336
|
rules: {
|
|
6333
|
-
type: PropType<readonly ValidationRule[]>;
|
|
6337
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
6334
6338
|
default: () => never[];
|
|
6335
6339
|
};
|
|
6336
6340
|
centerAffix: {
|
|
@@ -6509,6 +6513,7 @@ declare const VAutocomplete: {
|
|
|
6509
6513
|
type: PropType<typeof deepEqual>;
|
|
6510
6514
|
default: typeof deepEqual;
|
|
6511
6515
|
};
|
|
6516
|
+
itemColor: StringConstructor;
|
|
6512
6517
|
customFilter: PropType<FilterFunction>;
|
|
6513
6518
|
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
6514
6519
|
filterKeys: {
|
|
@@ -6622,7 +6627,7 @@ declare const VAutocomplete: {
|
|
|
6622
6627
|
default: number;
|
|
6623
6628
|
};
|
|
6624
6629
|
rules: {
|
|
6625
|
-
type: PropType<readonly ValidationRule[]>;
|
|
6630
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
6626
6631
|
default: () => never[];
|
|
6627
6632
|
};
|
|
6628
6633
|
centerAffix: {
|
|
@@ -6801,6 +6806,7 @@ declare const VAutocomplete: {
|
|
|
6801
6806
|
type: PropType<typeof deepEqual>;
|
|
6802
6807
|
default: typeof deepEqual;
|
|
6803
6808
|
};
|
|
6809
|
+
itemColor: StringConstructor;
|
|
6804
6810
|
customFilter: PropType<FilterFunction>;
|
|
6805
6811
|
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
6806
6812
|
filterKeys: {
|
|
@@ -12258,7 +12264,7 @@ declare const VCarousel: {
|
|
|
12258
12264
|
style?: vue.StyleValue | undefined;
|
|
12259
12265
|
disabled?: boolean | undefined;
|
|
12260
12266
|
tag?: string | undefined;
|
|
12261
|
-
mandatory?: "force" | undefined;
|
|
12267
|
+
mandatory?: NonNullable<boolean | "force"> | undefined;
|
|
12262
12268
|
touch?: boolean | TouchHandlers | undefined;
|
|
12263
12269
|
selectedClass?: string | undefined;
|
|
12264
12270
|
continuous?: boolean | undefined;
|
|
@@ -12475,7 +12481,7 @@ declare const VCarousel: {
|
|
|
12475
12481
|
style: vue.StyleValue;
|
|
12476
12482
|
disabled: boolean;
|
|
12477
12483
|
tag: string;
|
|
12478
|
-
mandatory: "force"
|
|
12484
|
+
mandatory: NonNullable<boolean | "force">;
|
|
12479
12485
|
selectedClass: string;
|
|
12480
12486
|
continuous: boolean;
|
|
12481
12487
|
nextIcon: IconValue;
|
|
@@ -12603,7 +12609,7 @@ declare const VCarousel: {
|
|
|
12603
12609
|
style: vue.StyleValue;
|
|
12604
12610
|
disabled: boolean;
|
|
12605
12611
|
tag: string;
|
|
12606
|
-
mandatory: "force"
|
|
12612
|
+
mandatory: NonNullable<boolean | "force">;
|
|
12607
12613
|
touch: boolean | TouchHandlers;
|
|
12608
12614
|
selectedClass: string;
|
|
12609
12615
|
continuous: boolean;
|
|
@@ -12683,7 +12689,7 @@ declare const VCarousel: {
|
|
|
12683
12689
|
style: vue.StyleValue;
|
|
12684
12690
|
disabled: boolean;
|
|
12685
12691
|
tag: string;
|
|
12686
|
-
mandatory: "force"
|
|
12692
|
+
mandatory: NonNullable<boolean | "force">;
|
|
12687
12693
|
selectedClass: string;
|
|
12688
12694
|
continuous: boolean;
|
|
12689
12695
|
nextIcon: IconValue;
|
|
@@ -12813,7 +12819,7 @@ declare const VCarousel: {
|
|
|
12813
12819
|
style: vue.StyleValue;
|
|
12814
12820
|
disabled: boolean;
|
|
12815
12821
|
tag: string;
|
|
12816
|
-
mandatory: "force"
|
|
12822
|
+
mandatory: NonNullable<boolean | "force">;
|
|
12817
12823
|
selectedClass: string;
|
|
12818
12824
|
continuous: boolean;
|
|
12819
12825
|
nextIcon: IconValue;
|
|
@@ -12941,7 +12947,7 @@ declare const VCarousel: {
|
|
|
12941
12947
|
style: vue.StyleValue;
|
|
12942
12948
|
disabled: boolean;
|
|
12943
12949
|
tag: string;
|
|
12944
|
-
mandatory: "force"
|
|
12950
|
+
mandatory: NonNullable<boolean | "force">;
|
|
12945
12951
|
touch: boolean | TouchHandlers;
|
|
12946
12952
|
selectedClass: string;
|
|
12947
12953
|
continuous: boolean;
|
|
@@ -13039,10 +13045,11 @@ declare const VCarousel: {
|
|
|
13039
13045
|
default: string;
|
|
13040
13046
|
};
|
|
13041
13047
|
mandatory: Omit<{
|
|
13048
|
+
type: PropType<boolean | "force">;
|
|
13042
13049
|
default: "force";
|
|
13043
13050
|
}, "type" | "default"> & {
|
|
13044
|
-
type: PropType<"force"
|
|
13045
|
-
default: "force"
|
|
13051
|
+
type: PropType<NonNullable<boolean | "force">>;
|
|
13052
|
+
default: NonNullable<boolean | "force">;
|
|
13046
13053
|
};
|
|
13047
13054
|
color: StringConstructor;
|
|
13048
13055
|
cycle: BooleanConstructor;
|
|
@@ -13109,10 +13116,11 @@ declare const VCarousel: {
|
|
|
13109
13116
|
default: string;
|
|
13110
13117
|
};
|
|
13111
13118
|
mandatory: Omit<{
|
|
13119
|
+
type: PropType<boolean | "force">;
|
|
13112
13120
|
default: "force";
|
|
13113
13121
|
}, "type" | "default"> & {
|
|
13114
|
-
type: PropType<"force"
|
|
13115
|
-
default: "force"
|
|
13122
|
+
type: PropType<NonNullable<boolean | "force">>;
|
|
13123
|
+
default: NonNullable<boolean | "force">;
|
|
13116
13124
|
};
|
|
13117
13125
|
color: StringConstructor;
|
|
13118
13126
|
cycle: BooleanConstructor;
|
|
@@ -14711,7 +14719,7 @@ declare const VCheckbox: {
|
|
|
14711
14719
|
focused?: boolean | undefined;
|
|
14712
14720
|
errorMessages?: string | readonly string[] | undefined;
|
|
14713
14721
|
maxErrors?: string | number | undefined;
|
|
14714
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
14722
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
14715
14723
|
centerAffix?: boolean | undefined;
|
|
14716
14724
|
persistentHint?: boolean | undefined;
|
|
14717
14725
|
type?: string | undefined;
|
|
@@ -14867,7 +14875,7 @@ declare const VCheckbox: {
|
|
|
14867
14875
|
focused: boolean;
|
|
14868
14876
|
errorMessages: string | readonly string[];
|
|
14869
14877
|
maxErrors: string | number;
|
|
14870
|
-
rules: readonly ValidationRule[];
|
|
14878
|
+
rules: readonly ValidationRule$1[];
|
|
14871
14879
|
centerAffix: boolean;
|
|
14872
14880
|
persistentHint: boolean;
|
|
14873
14881
|
} & {
|
|
@@ -14952,7 +14960,7 @@ declare const VCheckbox: {
|
|
|
14952
14960
|
focused: boolean;
|
|
14953
14961
|
errorMessages: string | readonly string[];
|
|
14954
14962
|
maxErrors: string | number;
|
|
14955
|
-
rules: readonly ValidationRule[];
|
|
14963
|
+
rules: readonly ValidationRule$1[];
|
|
14956
14964
|
centerAffix: boolean;
|
|
14957
14965
|
persistentHint: boolean;
|
|
14958
14966
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -15018,7 +15026,7 @@ declare const VCheckbox: {
|
|
|
15018
15026
|
focused: boolean;
|
|
15019
15027
|
errorMessages: string | readonly string[];
|
|
15020
15028
|
maxErrors: string | number;
|
|
15021
|
-
rules: readonly ValidationRule[];
|
|
15029
|
+
rules: readonly ValidationRule$1[];
|
|
15022
15030
|
centerAffix: boolean;
|
|
15023
15031
|
persistentHint: boolean;
|
|
15024
15032
|
} & {
|
|
@@ -15104,7 +15112,7 @@ declare const VCheckbox: {
|
|
|
15104
15112
|
focused: boolean;
|
|
15105
15113
|
errorMessages: string | readonly string[];
|
|
15106
15114
|
maxErrors: string | number;
|
|
15107
|
-
rules: readonly ValidationRule[];
|
|
15115
|
+
rules: readonly ValidationRule$1[];
|
|
15108
15116
|
centerAffix: boolean;
|
|
15109
15117
|
persistentHint: boolean;
|
|
15110
15118
|
} & {
|
|
@@ -15189,7 +15197,7 @@ declare const VCheckbox: {
|
|
|
15189
15197
|
focused: boolean;
|
|
15190
15198
|
errorMessages: string | readonly string[];
|
|
15191
15199
|
maxErrors: string | number;
|
|
15192
|
-
rules: readonly ValidationRule[];
|
|
15200
|
+
rules: readonly ValidationRule$1[];
|
|
15193
15201
|
centerAffix: boolean;
|
|
15194
15202
|
persistentHint: boolean;
|
|
15195
15203
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -15281,7 +15289,7 @@ declare const VCheckbox: {
|
|
|
15281
15289
|
default: number;
|
|
15282
15290
|
};
|
|
15283
15291
|
rules: {
|
|
15284
|
-
type: vue.PropType<readonly ValidationRule[]>;
|
|
15292
|
+
type: vue.PropType<readonly ValidationRule$1[]>;
|
|
15285
15293
|
default: () => never[];
|
|
15286
15294
|
};
|
|
15287
15295
|
validateOn: vue.PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
|
@@ -15370,7 +15378,7 @@ declare const VCheckbox: {
|
|
|
15370
15378
|
default: number;
|
|
15371
15379
|
};
|
|
15372
15380
|
rules: {
|
|
15373
|
-
type: vue.PropType<readonly ValidationRule[]>;
|
|
15381
|
+
type: vue.PropType<readonly ValidationRule$1[]>;
|
|
15374
15382
|
default: () => never[];
|
|
15375
15383
|
};
|
|
15376
15384
|
validateOn: vue.PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
|
@@ -17899,7 +17907,7 @@ declare const VCombobox: {
|
|
|
17899
17907
|
focused?: boolean | undefined;
|
|
17900
17908
|
errorMessages?: string | readonly string[] | undefined;
|
|
17901
17909
|
maxErrors?: string | number | undefined;
|
|
17902
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
17910
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
17903
17911
|
centerAffix?: boolean | undefined;
|
|
17904
17912
|
persistentHint?: boolean | undefined;
|
|
17905
17913
|
itemTitle?: SelectItemKey | undefined;
|
|
@@ -18105,6 +18113,7 @@ declare const VCombobox: {
|
|
|
18105
18113
|
contentProps?: any;
|
|
18106
18114
|
attach?: string | boolean | Element | undefined;
|
|
18107
18115
|
} | undefined;
|
|
18116
|
+
itemColor?: string | undefined;
|
|
18108
18117
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
18109
18118
|
customFilter?: FilterFunction | undefined;
|
|
18110
18119
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
@@ -18207,7 +18216,7 @@ declare const VCombobox: {
|
|
|
18207
18216
|
focused: boolean;
|
|
18208
18217
|
errorMessages: string | readonly string[];
|
|
18209
18218
|
maxErrors: string | number;
|
|
18210
|
-
rules: readonly ValidationRule[];
|
|
18219
|
+
rules: readonly ValidationRule$1[];
|
|
18211
18220
|
persistentHint: boolean;
|
|
18212
18221
|
itemTitle: SelectItemKey;
|
|
18213
18222
|
itemValue: SelectItemKey;
|
|
@@ -18372,6 +18381,7 @@ declare const VCombobox: {
|
|
|
18372
18381
|
contentProps?: any;
|
|
18373
18382
|
attach?: string | boolean | Element | undefined;
|
|
18374
18383
|
} | undefined;
|
|
18384
|
+
itemColor?: string | undefined;
|
|
18375
18385
|
customFilter?: FilterFunction | undefined;
|
|
18376
18386
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
18377
18387
|
autoSelectFirst?: boolean | "exact" | undefined;
|
|
@@ -18411,7 +18421,7 @@ declare const VCombobox: {
|
|
|
18411
18421
|
focused: boolean;
|
|
18412
18422
|
errorMessages: string | readonly string[];
|
|
18413
18423
|
maxErrors: string | number;
|
|
18414
|
-
rules: readonly ValidationRule[];
|
|
18424
|
+
rules: readonly ValidationRule$1[];
|
|
18415
18425
|
centerAffix: boolean;
|
|
18416
18426
|
persistentHint: boolean;
|
|
18417
18427
|
itemTitle: SelectItemKey;
|
|
@@ -18537,7 +18547,7 @@ declare const VCombobox: {
|
|
|
18537
18547
|
focused: boolean;
|
|
18538
18548
|
errorMessages: string | readonly string[];
|
|
18539
18549
|
maxErrors: string | number;
|
|
18540
|
-
rules: readonly ValidationRule[];
|
|
18550
|
+
rules: readonly ValidationRule$1[];
|
|
18541
18551
|
persistentHint: boolean;
|
|
18542
18552
|
itemTitle: SelectItemKey;
|
|
18543
18553
|
itemValue: SelectItemKey;
|
|
@@ -18702,6 +18712,7 @@ declare const VCombobox: {
|
|
|
18702
18712
|
contentProps?: any;
|
|
18703
18713
|
attach?: string | boolean | Element | undefined;
|
|
18704
18714
|
} | undefined;
|
|
18715
|
+
itemColor?: string | undefined;
|
|
18705
18716
|
customFilter?: FilterFunction | undefined;
|
|
18706
18717
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
18707
18718
|
autoSelectFirst?: boolean | "exact" | undefined;
|
|
@@ -18739,7 +18750,7 @@ declare const VCombobox: {
|
|
|
18739
18750
|
focused: boolean;
|
|
18740
18751
|
errorMessages: string | readonly string[];
|
|
18741
18752
|
maxErrors: string | number;
|
|
18742
|
-
rules: readonly ValidationRule[];
|
|
18753
|
+
rules: readonly ValidationRule$1[];
|
|
18743
18754
|
persistentHint: boolean;
|
|
18744
18755
|
itemTitle: SelectItemKey;
|
|
18745
18756
|
itemValue: SelectItemKey;
|
|
@@ -18904,6 +18915,7 @@ declare const VCombobox: {
|
|
|
18904
18915
|
contentProps?: any;
|
|
18905
18916
|
attach?: string | boolean | Element | undefined;
|
|
18906
18917
|
} | undefined;
|
|
18918
|
+
itemColor?: string | undefined;
|
|
18907
18919
|
customFilter?: FilterFunction | undefined;
|
|
18908
18920
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
18909
18921
|
autoSelectFirst?: boolean | "exact" | undefined;
|
|
@@ -18943,7 +18955,7 @@ declare const VCombobox: {
|
|
|
18943
18955
|
focused: boolean;
|
|
18944
18956
|
errorMessages: string | readonly string[];
|
|
18945
18957
|
maxErrors: string | number;
|
|
18946
|
-
rules: readonly ValidationRule[];
|
|
18958
|
+
rules: readonly ValidationRule$1[];
|
|
18947
18959
|
centerAffix: boolean;
|
|
18948
18960
|
persistentHint: boolean;
|
|
18949
18961
|
itemTitle: SelectItemKey;
|
|
@@ -19170,7 +19182,7 @@ declare const VCombobox: {
|
|
|
19170
19182
|
default: number;
|
|
19171
19183
|
};
|
|
19172
19184
|
rules: {
|
|
19173
|
-
type: PropType<readonly ValidationRule[]>;
|
|
19185
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
19174
19186
|
default: () => never[];
|
|
19175
19187
|
};
|
|
19176
19188
|
centerAffix: {
|
|
@@ -19355,6 +19367,7 @@ declare const VCombobox: {
|
|
|
19355
19367
|
type: PropType<typeof deepEqual>;
|
|
19356
19368
|
default: typeof deepEqual;
|
|
19357
19369
|
};
|
|
19370
|
+
itemColor: StringConstructor;
|
|
19358
19371
|
customFilter: PropType<FilterFunction>;
|
|
19359
19372
|
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
19360
19373
|
filterKeys: {
|
|
@@ -19468,7 +19481,7 @@ declare const VCombobox: {
|
|
|
19468
19481
|
default: number;
|
|
19469
19482
|
};
|
|
19470
19483
|
rules: {
|
|
19471
|
-
type: PropType<readonly ValidationRule[]>;
|
|
19484
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
19472
19485
|
default: () => never[];
|
|
19473
19486
|
};
|
|
19474
19487
|
centerAffix: {
|
|
@@ -19653,6 +19666,7 @@ declare const VCombobox: {
|
|
|
19653
19666
|
type: PropType<typeof deepEqual>;
|
|
19654
19667
|
default: typeof deepEqual;
|
|
19655
19668
|
};
|
|
19669
|
+
itemColor: StringConstructor;
|
|
19656
19670
|
customFilter: PropType<FilterFunction>;
|
|
19657
19671
|
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
19658
19672
|
filterKeys: {
|
|
@@ -23436,7 +23450,7 @@ declare const VFileInput: {
|
|
|
23436
23450
|
focused?: boolean | undefined;
|
|
23437
23451
|
errorMessages?: string | readonly string[] | undefined;
|
|
23438
23452
|
maxErrors?: string | number | undefined;
|
|
23439
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
23453
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
23440
23454
|
centerAffix?: boolean | undefined;
|
|
23441
23455
|
persistentHint?: boolean | undefined;
|
|
23442
23456
|
clearable?: boolean | undefined;
|
|
@@ -23651,7 +23665,7 @@ declare const VFileInput: {
|
|
|
23651
23665
|
focused: boolean;
|
|
23652
23666
|
errorMessages: string | readonly string[];
|
|
23653
23667
|
maxErrors: string | number;
|
|
23654
|
-
rules: readonly ValidationRule[];
|
|
23668
|
+
rules: readonly ValidationRule$1[];
|
|
23655
23669
|
persistentHint: boolean;
|
|
23656
23670
|
clearable: boolean;
|
|
23657
23671
|
dirty: boolean;
|
|
@@ -23768,7 +23782,7 @@ declare const VFileInput: {
|
|
|
23768
23782
|
focused?: boolean | undefined;
|
|
23769
23783
|
errorMessages?: string | readonly string[] | undefined;
|
|
23770
23784
|
maxErrors?: string | number | undefined;
|
|
23771
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
23785
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
23772
23786
|
centerAffix?: boolean | undefined;
|
|
23773
23787
|
persistentHint?: boolean | undefined;
|
|
23774
23788
|
key?: string | number | symbol | undefined;
|
|
@@ -23886,7 +23900,7 @@ declare const VFileInput: {
|
|
|
23886
23900
|
focused: boolean;
|
|
23887
23901
|
errorMessages: string | readonly string[];
|
|
23888
23902
|
maxErrors: string | number;
|
|
23889
|
-
rules: readonly ValidationRule[];
|
|
23903
|
+
rules: readonly ValidationRule$1[];
|
|
23890
23904
|
centerAffix: boolean;
|
|
23891
23905
|
persistentHint: boolean;
|
|
23892
23906
|
} & {
|
|
@@ -23944,7 +23958,7 @@ declare const VFileInput: {
|
|
|
23944
23958
|
focused: boolean;
|
|
23945
23959
|
errorMessages: string | readonly string[];
|
|
23946
23960
|
maxErrors: string | number;
|
|
23947
|
-
rules: readonly ValidationRule[];
|
|
23961
|
+
rules: readonly ValidationRule$1[];
|
|
23948
23962
|
centerAffix: boolean;
|
|
23949
23963
|
persistentHint: boolean;
|
|
23950
23964
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -23994,7 +24008,7 @@ declare const VFileInput: {
|
|
|
23994
24008
|
focused: boolean;
|
|
23995
24009
|
errorMessages: string | readonly string[];
|
|
23996
24010
|
maxErrors: string | number;
|
|
23997
|
-
rules: readonly ValidationRule[];
|
|
24011
|
+
rules: readonly ValidationRule$1[];
|
|
23998
24012
|
centerAffix: boolean;
|
|
23999
24013
|
persistentHint: boolean;
|
|
24000
24014
|
} & {
|
|
@@ -24065,7 +24079,7 @@ declare const VFileInput: {
|
|
|
24065
24079
|
focused: boolean;
|
|
24066
24080
|
errorMessages: string | readonly string[];
|
|
24067
24081
|
maxErrors: string | number;
|
|
24068
|
-
rules: readonly ValidationRule[];
|
|
24082
|
+
rules: readonly ValidationRule$1[];
|
|
24069
24083
|
centerAffix: boolean;
|
|
24070
24084
|
persistentHint: boolean;
|
|
24071
24085
|
clearable: boolean;
|
|
@@ -24160,7 +24174,7 @@ declare const VFileInput: {
|
|
|
24160
24174
|
focused: boolean;
|
|
24161
24175
|
errorMessages: string | readonly string[];
|
|
24162
24176
|
maxErrors: string | number;
|
|
24163
|
-
rules: readonly ValidationRule[];
|
|
24177
|
+
rules: readonly ValidationRule$1[];
|
|
24164
24178
|
persistentHint: boolean;
|
|
24165
24179
|
clearable: boolean;
|
|
24166
24180
|
dirty: boolean;
|
|
@@ -24277,7 +24291,7 @@ declare const VFileInput: {
|
|
|
24277
24291
|
focused?: boolean | undefined;
|
|
24278
24292
|
errorMessages?: string | readonly string[] | undefined;
|
|
24279
24293
|
maxErrors?: string | number | undefined;
|
|
24280
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
24294
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
24281
24295
|
centerAffix?: boolean | undefined;
|
|
24282
24296
|
persistentHint?: boolean | undefined;
|
|
24283
24297
|
key?: string | number | symbol | undefined;
|
|
@@ -24395,7 +24409,7 @@ declare const VFileInput: {
|
|
|
24395
24409
|
focused: boolean;
|
|
24396
24410
|
errorMessages: string | readonly string[];
|
|
24397
24411
|
maxErrors: string | number;
|
|
24398
|
-
rules: readonly ValidationRule[];
|
|
24412
|
+
rules: readonly ValidationRule$1[];
|
|
24399
24413
|
centerAffix: boolean;
|
|
24400
24414
|
persistentHint: boolean;
|
|
24401
24415
|
} & {
|
|
@@ -24453,7 +24467,7 @@ declare const VFileInput: {
|
|
|
24453
24467
|
focused: boolean;
|
|
24454
24468
|
errorMessages: string | readonly string[];
|
|
24455
24469
|
maxErrors: string | number;
|
|
24456
|
-
rules: readonly ValidationRule[];
|
|
24470
|
+
rules: readonly ValidationRule$1[];
|
|
24457
24471
|
centerAffix: boolean;
|
|
24458
24472
|
persistentHint: boolean;
|
|
24459
24473
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -24503,7 +24517,7 @@ declare const VFileInput: {
|
|
|
24503
24517
|
focused: boolean;
|
|
24504
24518
|
errorMessages: string | readonly string[];
|
|
24505
24519
|
maxErrors: string | number;
|
|
24506
|
-
rules: readonly ValidationRule[];
|
|
24520
|
+
rules: readonly ValidationRule$1[];
|
|
24507
24521
|
centerAffix: boolean;
|
|
24508
24522
|
persistentHint: boolean;
|
|
24509
24523
|
} & {
|
|
@@ -24572,7 +24586,7 @@ declare const VFileInput: {
|
|
|
24572
24586
|
focused: boolean;
|
|
24573
24587
|
errorMessages: string | readonly string[];
|
|
24574
24588
|
maxErrors: string | number;
|
|
24575
|
-
rules: readonly ValidationRule[];
|
|
24589
|
+
rules: readonly ValidationRule$1[];
|
|
24576
24590
|
persistentHint: boolean;
|
|
24577
24591
|
clearable: boolean;
|
|
24578
24592
|
dirty: boolean;
|
|
@@ -24689,7 +24703,7 @@ declare const VFileInput: {
|
|
|
24689
24703
|
focused?: boolean | undefined;
|
|
24690
24704
|
errorMessages?: string | readonly string[] | undefined;
|
|
24691
24705
|
maxErrors?: string | number | undefined;
|
|
24692
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
24706
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
24693
24707
|
centerAffix?: boolean | undefined;
|
|
24694
24708
|
persistentHint?: boolean | undefined;
|
|
24695
24709
|
key?: string | number | symbol | undefined;
|
|
@@ -24807,7 +24821,7 @@ declare const VFileInput: {
|
|
|
24807
24821
|
focused: boolean;
|
|
24808
24822
|
errorMessages: string | readonly string[];
|
|
24809
24823
|
maxErrors: string | number;
|
|
24810
|
-
rules: readonly ValidationRule[];
|
|
24824
|
+
rules: readonly ValidationRule$1[];
|
|
24811
24825
|
centerAffix: boolean;
|
|
24812
24826
|
persistentHint: boolean;
|
|
24813
24827
|
} & {
|
|
@@ -24865,7 +24879,7 @@ declare const VFileInput: {
|
|
|
24865
24879
|
focused: boolean;
|
|
24866
24880
|
errorMessages: string | readonly string[];
|
|
24867
24881
|
maxErrors: string | number;
|
|
24868
|
-
rules: readonly ValidationRule[];
|
|
24882
|
+
rules: readonly ValidationRule$1[];
|
|
24869
24883
|
centerAffix: boolean;
|
|
24870
24884
|
persistentHint: boolean;
|
|
24871
24885
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -24915,7 +24929,7 @@ declare const VFileInput: {
|
|
|
24915
24929
|
focused: boolean;
|
|
24916
24930
|
errorMessages: string | readonly string[];
|
|
24917
24931
|
maxErrors: string | number;
|
|
24918
|
-
rules: readonly ValidationRule[];
|
|
24932
|
+
rules: readonly ValidationRule$1[];
|
|
24919
24933
|
centerAffix: boolean;
|
|
24920
24934
|
persistentHint: boolean;
|
|
24921
24935
|
} & {
|
|
@@ -24986,7 +25000,7 @@ declare const VFileInput: {
|
|
|
24986
25000
|
focused: boolean;
|
|
24987
25001
|
errorMessages: string | readonly string[];
|
|
24988
25002
|
maxErrors: string | number;
|
|
24989
|
-
rules: readonly ValidationRule[];
|
|
25003
|
+
rules: readonly ValidationRule$1[];
|
|
24990
25004
|
centerAffix: boolean;
|
|
24991
25005
|
persistentHint: boolean;
|
|
24992
25006
|
clearable: boolean;
|
|
@@ -25111,7 +25125,7 @@ declare const VFileInput: {
|
|
|
25111
25125
|
default: null;
|
|
25112
25126
|
};
|
|
25113
25127
|
rules: {
|
|
25114
|
-
type: PropType<readonly ValidationRule[]>;
|
|
25128
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
25115
25129
|
default: () => never[];
|
|
25116
25130
|
};
|
|
25117
25131
|
validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
|
@@ -25227,7 +25241,7 @@ declare const VFileInput: {
|
|
|
25227
25241
|
default: null;
|
|
25228
25242
|
};
|
|
25229
25243
|
rules: {
|
|
25230
|
-
type: PropType<readonly ValidationRule[]>;
|
|
25244
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
25231
25245
|
default: () => never[];
|
|
25232
25246
|
};
|
|
25233
25247
|
validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
|
@@ -38045,7 +38059,7 @@ declare const VRadioGroup: {
|
|
|
38045
38059
|
focused?: boolean | undefined;
|
|
38046
38060
|
errorMessages?: string | readonly string[] | undefined;
|
|
38047
38061
|
maxErrors?: string | number | undefined;
|
|
38048
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
38062
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
38049
38063
|
centerAffix?: boolean | undefined;
|
|
38050
38064
|
persistentHint?: boolean | undefined;
|
|
38051
38065
|
key?: string | number | symbol | undefined;
|
|
@@ -38197,7 +38211,7 @@ declare const VRadioGroup: {
|
|
|
38197
38211
|
focused: boolean;
|
|
38198
38212
|
errorMessages: string | readonly string[];
|
|
38199
38213
|
maxErrors: string | number;
|
|
38200
|
-
rules: readonly ValidationRule[];
|
|
38214
|
+
rules: readonly ValidationRule$1[];
|
|
38201
38215
|
centerAffix: boolean;
|
|
38202
38216
|
persistentHint: boolean;
|
|
38203
38217
|
} & {
|
|
@@ -38276,7 +38290,7 @@ declare const VRadioGroup: {
|
|
|
38276
38290
|
focused: boolean;
|
|
38277
38291
|
errorMessages: string | readonly string[];
|
|
38278
38292
|
maxErrors: string | number;
|
|
38279
|
-
rules: readonly ValidationRule[];
|
|
38293
|
+
rules: readonly ValidationRule$1[];
|
|
38280
38294
|
centerAffix: boolean;
|
|
38281
38295
|
persistentHint: boolean;
|
|
38282
38296
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -38342,7 +38356,7 @@ declare const VRadioGroup: {
|
|
|
38342
38356
|
focused: boolean;
|
|
38343
38357
|
errorMessages: string | readonly string[];
|
|
38344
38358
|
maxErrors: string | number;
|
|
38345
|
-
rules: readonly ValidationRule[];
|
|
38359
|
+
rules: readonly ValidationRule$1[];
|
|
38346
38360
|
centerAffix: boolean;
|
|
38347
38361
|
persistentHint: boolean;
|
|
38348
38362
|
} & {
|
|
@@ -38423,7 +38437,7 @@ declare const VRadioGroup: {
|
|
|
38423
38437
|
focused: boolean;
|
|
38424
38438
|
errorMessages: string | readonly string[];
|
|
38425
38439
|
maxErrors: string | number;
|
|
38426
|
-
rules: readonly ValidationRule[];
|
|
38440
|
+
rules: readonly ValidationRule$1[];
|
|
38427
38441
|
centerAffix: boolean;
|
|
38428
38442
|
persistentHint: boolean;
|
|
38429
38443
|
} & {
|
|
@@ -38502,7 +38516,7 @@ declare const VRadioGroup: {
|
|
|
38502
38516
|
focused: boolean;
|
|
38503
38517
|
errorMessages: string | readonly string[];
|
|
38504
38518
|
maxErrors: string | number;
|
|
38505
|
-
rules: readonly ValidationRule[];
|
|
38519
|
+
rules: readonly ValidationRule$1[];
|
|
38506
38520
|
centerAffix: boolean;
|
|
38507
38521
|
persistentHint: boolean;
|
|
38508
38522
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -38586,7 +38600,7 @@ declare const VRadioGroup: {
|
|
|
38586
38600
|
};
|
|
38587
38601
|
label: StringConstructor;
|
|
38588
38602
|
rules: {
|
|
38589
|
-
type: vue.PropType<readonly ValidationRule[]>;
|
|
38603
|
+
type: vue.PropType<readonly ValidationRule$1[]>;
|
|
38590
38604
|
default: () => never[];
|
|
38591
38605
|
};
|
|
38592
38606
|
validateOn: vue.PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
|
@@ -38671,7 +38685,7 @@ declare const VRadioGroup: {
|
|
|
38671
38685
|
};
|
|
38672
38686
|
label: StringConstructor;
|
|
38673
38687
|
rules: {
|
|
38674
|
-
type: vue.PropType<readonly ValidationRule[]>;
|
|
38688
|
+
type: vue.PropType<readonly ValidationRule$1[]>;
|
|
38675
38689
|
default: () => never[];
|
|
38676
38690
|
};
|
|
38677
38691
|
validateOn: vue.PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
|
@@ -38722,11 +38736,11 @@ declare const VRangeSlider: {
|
|
|
38722
38736
|
messages?: string | readonly string[] | undefined;
|
|
38723
38737
|
rounded?: string | number | boolean | undefined;
|
|
38724
38738
|
density?: Density | undefined;
|
|
38725
|
-
modelValue?: readonly number[] | undefined;
|
|
38739
|
+
modelValue?: readonly (string | number)[] | undefined;
|
|
38726
38740
|
focused?: boolean | undefined;
|
|
38727
38741
|
errorMessages?: string | readonly string[] | undefined;
|
|
38728
38742
|
maxErrors?: string | number | undefined;
|
|
38729
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
38743
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
38730
38744
|
centerAffix?: boolean | undefined;
|
|
38731
38745
|
persistentHint?: boolean | undefined;
|
|
38732
38746
|
showTicks?: boolean | "always" | undefined;
|
|
@@ -38876,11 +38890,11 @@ declare const VRangeSlider: {
|
|
|
38876
38890
|
elevation: NonNullable<string | number>;
|
|
38877
38891
|
messages: string | readonly string[];
|
|
38878
38892
|
density: Density;
|
|
38879
|
-
modelValue: readonly number[];
|
|
38893
|
+
modelValue: readonly (string | number)[];
|
|
38880
38894
|
focused: boolean;
|
|
38881
38895
|
errorMessages: string | readonly string[];
|
|
38882
38896
|
maxErrors: string | number;
|
|
38883
|
-
rules: readonly ValidationRule[];
|
|
38897
|
+
rules: readonly ValidationRule$1[];
|
|
38884
38898
|
centerAffix: boolean;
|
|
38885
38899
|
persistentHint: boolean;
|
|
38886
38900
|
showTicks: boolean | "always";
|
|
@@ -38963,11 +38977,11 @@ declare const VRangeSlider: {
|
|
|
38963
38977
|
messages: string | readonly string[];
|
|
38964
38978
|
rounded: string | number | boolean;
|
|
38965
38979
|
density: Density;
|
|
38966
|
-
modelValue: readonly number[];
|
|
38980
|
+
modelValue: readonly (string | number)[];
|
|
38967
38981
|
focused: boolean;
|
|
38968
38982
|
errorMessages: string | readonly string[];
|
|
38969
38983
|
maxErrors: string | number;
|
|
38970
|
-
rules: readonly ValidationRule[];
|
|
38984
|
+
rules: readonly ValidationRule$1[];
|
|
38971
38985
|
centerAffix: boolean;
|
|
38972
38986
|
persistentHint: boolean;
|
|
38973
38987
|
showTicks: boolean | "always";
|
|
@@ -39034,11 +39048,11 @@ declare const VRangeSlider: {
|
|
|
39034
39048
|
elevation: NonNullable<string | number>;
|
|
39035
39049
|
messages: string | readonly string[];
|
|
39036
39050
|
density: Density;
|
|
39037
|
-
modelValue: readonly number[];
|
|
39051
|
+
modelValue: readonly (string | number)[];
|
|
39038
39052
|
focused: boolean;
|
|
39039
39053
|
errorMessages: string | readonly string[];
|
|
39040
39054
|
maxErrors: string | number;
|
|
39041
|
-
rules: readonly ValidationRule[];
|
|
39055
|
+
rules: readonly ValidationRule$1[];
|
|
39042
39056
|
centerAffix: boolean;
|
|
39043
39057
|
persistentHint: boolean;
|
|
39044
39058
|
showTicks: boolean | "always";
|
|
@@ -39119,11 +39133,11 @@ declare const VRangeSlider: {
|
|
|
39119
39133
|
elevation: NonNullable<string | number>;
|
|
39120
39134
|
messages: string | readonly string[];
|
|
39121
39135
|
density: Density;
|
|
39122
|
-
modelValue: readonly number[];
|
|
39136
|
+
modelValue: readonly (string | number)[];
|
|
39123
39137
|
focused: boolean;
|
|
39124
39138
|
errorMessages: string | readonly string[];
|
|
39125
39139
|
maxErrors: string | number;
|
|
39126
|
-
rules: readonly ValidationRule[];
|
|
39140
|
+
rules: readonly ValidationRule$1[];
|
|
39127
39141
|
centerAffix: boolean;
|
|
39128
39142
|
persistentHint: boolean;
|
|
39129
39143
|
showTicks: boolean | "always";
|
|
@@ -39206,11 +39220,11 @@ declare const VRangeSlider: {
|
|
|
39206
39220
|
messages: string | readonly string[];
|
|
39207
39221
|
rounded: string | number | boolean;
|
|
39208
39222
|
density: Density;
|
|
39209
|
-
modelValue: readonly number[];
|
|
39223
|
+
modelValue: readonly (string | number)[];
|
|
39210
39224
|
focused: boolean;
|
|
39211
39225
|
errorMessages: string | readonly string[];
|
|
39212
39226
|
maxErrors: string | number;
|
|
39213
|
-
rules: readonly ValidationRule[];
|
|
39227
|
+
rules: readonly ValidationRule$1[];
|
|
39214
39228
|
centerAffix: boolean;
|
|
39215
39229
|
persistentHint: boolean;
|
|
39216
39230
|
showTicks: boolean | "always";
|
|
@@ -39246,7 +39260,7 @@ declare const VRangeSlider: {
|
|
|
39246
39260
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
39247
39261
|
strict: BooleanConstructor;
|
|
39248
39262
|
modelValue: {
|
|
39249
|
-
type: PropType<readonly number[]>;
|
|
39263
|
+
type: PropType<readonly (string | number)[]>;
|
|
39250
39264
|
default: () => number[];
|
|
39251
39265
|
};
|
|
39252
39266
|
elevation: Omit<{
|
|
@@ -39329,7 +39343,7 @@ declare const VRangeSlider: {
|
|
|
39329
39343
|
name: StringConstructor;
|
|
39330
39344
|
label: StringConstructor;
|
|
39331
39345
|
rules: {
|
|
39332
|
-
type: PropType<readonly ValidationRule[]>;
|
|
39346
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
39333
39347
|
default: () => never[];
|
|
39334
39348
|
};
|
|
39335
39349
|
validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
|
@@ -39363,7 +39377,7 @@ declare const VRangeSlider: {
|
|
|
39363
39377
|
}, vue.ExtractPropTypes<{
|
|
39364
39378
|
strict: BooleanConstructor;
|
|
39365
39379
|
modelValue: {
|
|
39366
|
-
type: PropType<readonly number[]>;
|
|
39380
|
+
type: PropType<readonly (string | number)[]>;
|
|
39367
39381
|
default: () => number[];
|
|
39368
39382
|
};
|
|
39369
39383
|
elevation: Omit<{
|
|
@@ -39446,7 +39460,7 @@ declare const VRangeSlider: {
|
|
|
39446
39460
|
name: StringConstructor;
|
|
39447
39461
|
label: StringConstructor;
|
|
39448
39462
|
rules: {
|
|
39449
|
-
type: PropType<readonly ValidationRule[]>;
|
|
39463
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
39450
39464
|
default: () => never[];
|
|
39451
39465
|
};
|
|
39452
39466
|
validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
|
@@ -40171,7 +40185,7 @@ declare const VSelect: {
|
|
|
40171
40185
|
focused?: boolean | undefined;
|
|
40172
40186
|
errorMessages?: string | readonly string[] | undefined;
|
|
40173
40187
|
maxErrors?: string | number | undefined;
|
|
40174
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
40188
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
40175
40189
|
centerAffix?: boolean | undefined;
|
|
40176
40190
|
persistentHint?: boolean | undefined;
|
|
40177
40191
|
itemTitle?: SelectItemKey | undefined;
|
|
@@ -40373,6 +40387,7 @@ declare const VSelect: {
|
|
|
40373
40387
|
contentProps?: any;
|
|
40374
40388
|
attach?: string | boolean | Element | undefined;
|
|
40375
40389
|
} | undefined;
|
|
40390
|
+
itemColor?: string | undefined;
|
|
40376
40391
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
40377
40392
|
};
|
|
40378
40393
|
$attrs: {
|
|
@@ -40473,7 +40488,7 @@ declare const VSelect: {
|
|
|
40473
40488
|
focused: boolean;
|
|
40474
40489
|
errorMessages: string | readonly string[];
|
|
40475
40490
|
maxErrors: string | number;
|
|
40476
|
-
rules: readonly ValidationRule[];
|
|
40491
|
+
rules: readonly ValidationRule$1[];
|
|
40477
40492
|
persistentHint: boolean;
|
|
40478
40493
|
itemTitle: SelectItemKey;
|
|
40479
40494
|
itemValue: SelectItemKey;
|
|
@@ -40634,6 +40649,7 @@ declare const VSelect: {
|
|
|
40634
40649
|
contentProps?: any;
|
|
40635
40650
|
attach?: string | boolean | Element | undefined;
|
|
40636
40651
|
} | undefined;
|
|
40652
|
+
itemColor?: string | undefined;
|
|
40637
40653
|
} & {
|
|
40638
40654
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
40639
40655
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -40670,7 +40686,7 @@ declare const VSelect: {
|
|
|
40670
40686
|
focused: boolean;
|
|
40671
40687
|
errorMessages: string | readonly string[];
|
|
40672
40688
|
maxErrors: string | number;
|
|
40673
|
-
rules: readonly ValidationRule[];
|
|
40689
|
+
rules: readonly ValidationRule$1[];
|
|
40674
40690
|
centerAffix: boolean;
|
|
40675
40691
|
persistentHint: boolean;
|
|
40676
40692
|
itemTitle: SelectItemKey;
|
|
@@ -40795,7 +40811,7 @@ declare const VSelect: {
|
|
|
40795
40811
|
focused: boolean;
|
|
40796
40812
|
errorMessages: string | readonly string[];
|
|
40797
40813
|
maxErrors: string | number;
|
|
40798
|
-
rules: readonly ValidationRule[];
|
|
40814
|
+
rules: readonly ValidationRule$1[];
|
|
40799
40815
|
persistentHint: boolean;
|
|
40800
40816
|
itemTitle: SelectItemKey;
|
|
40801
40817
|
itemValue: SelectItemKey;
|
|
@@ -40956,6 +40972,7 @@ declare const VSelect: {
|
|
|
40956
40972
|
contentProps?: any;
|
|
40957
40973
|
attach?: string | boolean | Element | undefined;
|
|
40958
40974
|
} | undefined;
|
|
40975
|
+
itemColor?: string | undefined;
|
|
40959
40976
|
} & {
|
|
40960
40977
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
40961
40978
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -40991,7 +41008,7 @@ declare const VSelect: {
|
|
|
40991
41008
|
focused: boolean;
|
|
40992
41009
|
errorMessages: string | readonly string[];
|
|
40993
41010
|
maxErrors: string | number;
|
|
40994
|
-
rules: readonly ValidationRule[];
|
|
41011
|
+
rules: readonly ValidationRule$1[];
|
|
40995
41012
|
persistentHint: boolean;
|
|
40996
41013
|
itemTitle: SelectItemKey;
|
|
40997
41014
|
itemValue: SelectItemKey;
|
|
@@ -41152,6 +41169,7 @@ declare const VSelect: {
|
|
|
41152
41169
|
contentProps?: any;
|
|
41153
41170
|
attach?: string | boolean | Element | undefined;
|
|
41154
41171
|
} | undefined;
|
|
41172
|
+
itemColor?: string | undefined;
|
|
41155
41173
|
} & {
|
|
41156
41174
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
41157
41175
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -41188,7 +41206,7 @@ declare const VSelect: {
|
|
|
41188
41206
|
focused: boolean;
|
|
41189
41207
|
errorMessages: string | readonly string[];
|
|
41190
41208
|
maxErrors: string | number;
|
|
41191
|
-
rules: readonly ValidationRule[];
|
|
41209
|
+
rules: readonly ValidationRule$1[];
|
|
41192
41210
|
centerAffix: boolean;
|
|
41193
41211
|
persistentHint: boolean;
|
|
41194
41212
|
itemTitle: SelectItemKey;
|
|
@@ -41416,7 +41434,7 @@ declare const VSelect: {
|
|
|
41416
41434
|
default: number;
|
|
41417
41435
|
};
|
|
41418
41436
|
rules: {
|
|
41419
|
-
type: PropType<readonly ValidationRule[]>;
|
|
41437
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
41420
41438
|
default: () => never[];
|
|
41421
41439
|
};
|
|
41422
41440
|
centerAffix: {
|
|
@@ -41595,6 +41613,7 @@ declare const VSelect: {
|
|
|
41595
41613
|
type: PropType<typeof deepEqual>;
|
|
41596
41614
|
default: typeof deepEqual;
|
|
41597
41615
|
};
|
|
41616
|
+
itemColor: StringConstructor;
|
|
41598
41617
|
}, vue.ExtractPropTypes<{
|
|
41599
41618
|
transition: Omit<{
|
|
41600
41619
|
type: PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -41697,7 +41716,7 @@ declare const VSelect: {
|
|
|
41697
41716
|
default: number;
|
|
41698
41717
|
};
|
|
41699
41718
|
rules: {
|
|
41700
|
-
type: PropType<readonly ValidationRule[]>;
|
|
41719
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
41701
41720
|
default: () => never[];
|
|
41702
41721
|
};
|
|
41703
41722
|
centerAffix: {
|
|
@@ -41876,6 +41895,7 @@ declare const VSelect: {
|
|
|
41876
41895
|
type: PropType<typeof deepEqual>;
|
|
41877
41896
|
default: typeof deepEqual;
|
|
41878
41897
|
};
|
|
41898
|
+
itemColor: StringConstructor;
|
|
41879
41899
|
}>>;
|
|
41880
41900
|
type VSelect = InstanceType<typeof VSelect>;
|
|
41881
41901
|
|
|
@@ -42847,7 +42867,7 @@ declare const VSlider: {
|
|
|
42847
42867
|
focused?: boolean | undefined;
|
|
42848
42868
|
errorMessages?: string | readonly string[] | undefined;
|
|
42849
42869
|
maxErrors?: string | number | undefined;
|
|
42850
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
42870
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
42851
42871
|
centerAffix?: boolean | undefined;
|
|
42852
42872
|
persistentHint?: boolean | undefined;
|
|
42853
42873
|
showTicks?: boolean | "always" | undefined;
|
|
@@ -43000,7 +43020,7 @@ declare const VSlider: {
|
|
|
43000
43020
|
focused: boolean;
|
|
43001
43021
|
errorMessages: string | readonly string[];
|
|
43002
43022
|
maxErrors: string | number;
|
|
43003
|
-
rules: readonly ValidationRule[];
|
|
43023
|
+
rules: readonly ValidationRule$1[];
|
|
43004
43024
|
centerAffix: boolean;
|
|
43005
43025
|
persistentHint: boolean;
|
|
43006
43026
|
showTicks: boolean | "always";
|
|
@@ -43086,7 +43106,7 @@ declare const VSlider: {
|
|
|
43086
43106
|
focused: boolean;
|
|
43087
43107
|
errorMessages: string | readonly string[];
|
|
43088
43108
|
maxErrors: string | number;
|
|
43089
|
-
rules: readonly ValidationRule[];
|
|
43109
|
+
rules: readonly ValidationRule$1[];
|
|
43090
43110
|
centerAffix: boolean;
|
|
43091
43111
|
persistentHint: boolean;
|
|
43092
43112
|
showTicks: boolean | "always";
|
|
@@ -43156,7 +43176,7 @@ declare const VSlider: {
|
|
|
43156
43176
|
focused: boolean;
|
|
43157
43177
|
errorMessages: string | readonly string[];
|
|
43158
43178
|
maxErrors: string | number;
|
|
43159
|
-
rules: readonly ValidationRule[];
|
|
43179
|
+
rules: readonly ValidationRule$1[];
|
|
43160
43180
|
centerAffix: boolean;
|
|
43161
43181
|
persistentHint: boolean;
|
|
43162
43182
|
showTicks: boolean | "always";
|
|
@@ -43240,7 +43260,7 @@ declare const VSlider: {
|
|
|
43240
43260
|
focused: boolean;
|
|
43241
43261
|
errorMessages: string | readonly string[];
|
|
43242
43262
|
maxErrors: string | number;
|
|
43243
|
-
rules: readonly ValidationRule[];
|
|
43263
|
+
rules: readonly ValidationRule$1[];
|
|
43244
43264
|
centerAffix: boolean;
|
|
43245
43265
|
persistentHint: boolean;
|
|
43246
43266
|
showTicks: boolean | "always";
|
|
@@ -43326,7 +43346,7 @@ declare const VSlider: {
|
|
|
43326
43346
|
focused: boolean;
|
|
43327
43347
|
errorMessages: string | readonly string[];
|
|
43328
43348
|
maxErrors: string | number;
|
|
43329
|
-
rules: readonly ValidationRule[];
|
|
43349
|
+
rules: readonly ValidationRule$1[];
|
|
43330
43350
|
centerAffix: boolean;
|
|
43331
43351
|
persistentHint: boolean;
|
|
43332
43352
|
showTicks: boolean | "always";
|
|
@@ -43386,7 +43406,7 @@ declare const VSlider: {
|
|
|
43386
43406
|
default: null;
|
|
43387
43407
|
};
|
|
43388
43408
|
rules: {
|
|
43389
|
-
type: vue.PropType<readonly ValidationRule[]>;
|
|
43409
|
+
type: vue.PropType<readonly ValidationRule$1[]>;
|
|
43390
43410
|
default: () => never[];
|
|
43391
43411
|
};
|
|
43392
43412
|
validateOn: vue.PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
|
@@ -43502,7 +43522,7 @@ declare const VSlider: {
|
|
|
43502
43522
|
default: null;
|
|
43503
43523
|
};
|
|
43504
43524
|
rules: {
|
|
43505
|
-
type: vue.PropType<readonly ValidationRule[]>;
|
|
43525
|
+
type: vue.PropType<readonly ValidationRule$1[]>;
|
|
43506
43526
|
default: () => never[];
|
|
43507
43527
|
};
|
|
43508
43528
|
validateOn: vue.PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
|
@@ -45381,7 +45401,7 @@ declare const VSwitch: {
|
|
|
45381
45401
|
focused?: boolean | undefined;
|
|
45382
45402
|
errorMessages?: string | readonly string[] | undefined;
|
|
45383
45403
|
maxErrors?: string | number | undefined;
|
|
45384
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
45404
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
45385
45405
|
centerAffix?: boolean | undefined;
|
|
45386
45406
|
persistentHint?: boolean | undefined;
|
|
45387
45407
|
type?: string | undefined;
|
|
@@ -45547,7 +45567,7 @@ declare const VSwitch: {
|
|
|
45547
45567
|
focused: boolean;
|
|
45548
45568
|
errorMessages: string | readonly string[];
|
|
45549
45569
|
maxErrors: string | number;
|
|
45550
|
-
rules: readonly ValidationRule[];
|
|
45570
|
+
rules: readonly ValidationRule$1[];
|
|
45551
45571
|
centerAffix: boolean;
|
|
45552
45572
|
persistentHint: boolean;
|
|
45553
45573
|
} & {
|
|
@@ -45640,7 +45660,7 @@ declare const VSwitch: {
|
|
|
45640
45660
|
focused: boolean;
|
|
45641
45661
|
errorMessages: string | readonly string[];
|
|
45642
45662
|
maxErrors: string | number;
|
|
45643
|
-
rules: readonly ValidationRule[];
|
|
45663
|
+
rules: readonly ValidationRule$1[];
|
|
45644
45664
|
centerAffix: boolean;
|
|
45645
45665
|
persistentHint: boolean;
|
|
45646
45666
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -45710,7 +45730,7 @@ declare const VSwitch: {
|
|
|
45710
45730
|
focused: boolean;
|
|
45711
45731
|
errorMessages: string | readonly string[];
|
|
45712
45732
|
maxErrors: string | number;
|
|
45713
|
-
rules: readonly ValidationRule[];
|
|
45733
|
+
rules: readonly ValidationRule$1[];
|
|
45714
45734
|
centerAffix: boolean;
|
|
45715
45735
|
persistentHint: boolean;
|
|
45716
45736
|
} & {
|
|
@@ -45803,7 +45823,7 @@ declare const VSwitch: {
|
|
|
45803
45823
|
focused: boolean;
|
|
45804
45824
|
errorMessages: string | readonly string[];
|
|
45805
45825
|
maxErrors: string | number;
|
|
45806
|
-
rules: readonly ValidationRule[];
|
|
45826
|
+
rules: readonly ValidationRule$1[];
|
|
45807
45827
|
centerAffix: boolean;
|
|
45808
45828
|
persistentHint: boolean;
|
|
45809
45829
|
} & {
|
|
@@ -45896,7 +45916,7 @@ declare const VSwitch: {
|
|
|
45896
45916
|
focused: boolean;
|
|
45897
45917
|
errorMessages: string | readonly string[];
|
|
45898
45918
|
maxErrors: string | number;
|
|
45899
|
-
rules: readonly ValidationRule[];
|
|
45919
|
+
rules: readonly ValidationRule$1[];
|
|
45900
45920
|
centerAffix: boolean;
|
|
45901
45921
|
persistentHint: boolean;
|
|
45902
45922
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -45981,7 +46001,7 @@ declare const VSwitch: {
|
|
|
45981
46001
|
default: number;
|
|
45982
46002
|
};
|
|
45983
46003
|
rules: {
|
|
45984
|
-
type: vue.PropType<readonly ValidationRule[]>;
|
|
46004
|
+
type: vue.PropType<readonly ValidationRule$1[]>;
|
|
45985
46005
|
default: () => never[];
|
|
45986
46006
|
};
|
|
45987
46007
|
validateOn: vue.PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
|
@@ -46067,7 +46087,7 @@ declare const VSwitch: {
|
|
|
46067
46087
|
default: number;
|
|
46068
46088
|
};
|
|
46069
46089
|
rules: {
|
|
46070
|
-
type: vue.PropType<readonly ValidationRule[]>;
|
|
46090
|
+
type: vue.PropType<readonly ValidationRule$1[]>;
|
|
46071
46091
|
default: () => never[];
|
|
46072
46092
|
};
|
|
46073
46093
|
validateOn: vue.PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
|
|
@@ -47591,7 +47611,7 @@ declare const VTextarea: {
|
|
|
47591
47611
|
focused?: boolean | undefined;
|
|
47592
47612
|
errorMessages?: string | readonly string[] | undefined;
|
|
47593
47613
|
maxErrors?: string | number | undefined;
|
|
47594
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
47614
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
47595
47615
|
centerAffix?: boolean | undefined;
|
|
47596
47616
|
persistentHint?: boolean | undefined;
|
|
47597
47617
|
clearable?: boolean | undefined;
|
|
@@ -47785,7 +47805,7 @@ declare const VTextarea: {
|
|
|
47785
47805
|
focused: boolean;
|
|
47786
47806
|
errorMessages: string | readonly string[];
|
|
47787
47807
|
maxErrors: string | number;
|
|
47788
|
-
rules: readonly ValidationRule[];
|
|
47808
|
+
rules: readonly ValidationRule$1[];
|
|
47789
47809
|
persistentHint: boolean;
|
|
47790
47810
|
clearable: boolean;
|
|
47791
47811
|
dirty: boolean;
|
|
@@ -47894,7 +47914,7 @@ declare const VTextarea: {
|
|
|
47894
47914
|
focused?: boolean | undefined;
|
|
47895
47915
|
errorMessages?: string | readonly string[] | undefined;
|
|
47896
47916
|
maxErrors?: string | number | undefined;
|
|
47897
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
47917
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
47898
47918
|
centerAffix?: boolean | undefined;
|
|
47899
47919
|
persistentHint?: boolean | undefined;
|
|
47900
47920
|
key?: string | number | symbol | undefined;
|
|
@@ -48012,7 +48032,7 @@ declare const VTextarea: {
|
|
|
48012
48032
|
focused: boolean;
|
|
48013
48033
|
errorMessages: string | readonly string[];
|
|
48014
48034
|
maxErrors: string | number;
|
|
48015
|
-
rules: readonly ValidationRule[];
|
|
48035
|
+
rules: readonly ValidationRule$1[];
|
|
48016
48036
|
centerAffix: boolean;
|
|
48017
48037
|
persistentHint: boolean;
|
|
48018
48038
|
} & {
|
|
@@ -48070,7 +48090,7 @@ declare const VTextarea: {
|
|
|
48070
48090
|
focused: boolean;
|
|
48071
48091
|
errorMessages: string | readonly string[];
|
|
48072
48092
|
maxErrors: string | number;
|
|
48073
|
-
rules: readonly ValidationRule[];
|
|
48093
|
+
rules: readonly ValidationRule$1[];
|
|
48074
48094
|
centerAffix: boolean;
|
|
48075
48095
|
persistentHint: boolean;
|
|
48076
48096
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -48120,7 +48140,7 @@ declare const VTextarea: {
|
|
|
48120
48140
|
focused: boolean;
|
|
48121
48141
|
errorMessages: string | readonly string[];
|
|
48122
48142
|
maxErrors: string | number;
|
|
48123
|
-
rules: readonly ValidationRule[];
|
|
48143
|
+
rules: readonly ValidationRule$1[];
|
|
48124
48144
|
centerAffix: boolean;
|
|
48125
48145
|
persistentHint: boolean;
|
|
48126
48146
|
} & {
|
|
@@ -48188,7 +48208,7 @@ declare const VTextarea: {
|
|
|
48188
48208
|
focused: boolean;
|
|
48189
48209
|
errorMessages: string | readonly string[];
|
|
48190
48210
|
maxErrors: string | number;
|
|
48191
|
-
rules: readonly ValidationRule[];
|
|
48211
|
+
rules: readonly ValidationRule$1[];
|
|
48192
48212
|
centerAffix: boolean;
|
|
48193
48213
|
persistentHint: boolean;
|
|
48194
48214
|
clearable: boolean;
|
|
@@ -48271,7 +48291,7 @@ declare const VTextarea: {
|
|
|
48271
48291
|
focused: boolean;
|
|
48272
48292
|
errorMessages: string | readonly string[];
|
|
48273
48293
|
maxErrors: string | number;
|
|
48274
|
-
rules: readonly ValidationRule[];
|
|
48294
|
+
rules: readonly ValidationRule$1[];
|
|
48275
48295
|
persistentHint: boolean;
|
|
48276
48296
|
clearable: boolean;
|
|
48277
48297
|
dirty: boolean;
|
|
@@ -48380,7 +48400,7 @@ declare const VTextarea: {
|
|
|
48380
48400
|
focused?: boolean | undefined;
|
|
48381
48401
|
errorMessages?: string | readonly string[] | undefined;
|
|
48382
48402
|
maxErrors?: string | number | undefined;
|
|
48383
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
48403
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
48384
48404
|
centerAffix?: boolean | undefined;
|
|
48385
48405
|
persistentHint?: boolean | undefined;
|
|
48386
48406
|
key?: string | number | symbol | undefined;
|
|
@@ -48498,7 +48518,7 @@ declare const VTextarea: {
|
|
|
48498
48518
|
focused: boolean;
|
|
48499
48519
|
errorMessages: string | readonly string[];
|
|
48500
48520
|
maxErrors: string | number;
|
|
48501
|
-
rules: readonly ValidationRule[];
|
|
48521
|
+
rules: readonly ValidationRule$1[];
|
|
48502
48522
|
centerAffix: boolean;
|
|
48503
48523
|
persistentHint: boolean;
|
|
48504
48524
|
} & {
|
|
@@ -48556,7 +48576,7 @@ declare const VTextarea: {
|
|
|
48556
48576
|
focused: boolean;
|
|
48557
48577
|
errorMessages: string | readonly string[];
|
|
48558
48578
|
maxErrors: string | number;
|
|
48559
|
-
rules: readonly ValidationRule[];
|
|
48579
|
+
rules: readonly ValidationRule$1[];
|
|
48560
48580
|
centerAffix: boolean;
|
|
48561
48581
|
persistentHint: boolean;
|
|
48562
48582
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -48606,7 +48626,7 @@ declare const VTextarea: {
|
|
|
48606
48626
|
focused: boolean;
|
|
48607
48627
|
errorMessages: string | readonly string[];
|
|
48608
48628
|
maxErrors: string | number;
|
|
48609
|
-
rules: readonly ValidationRule[];
|
|
48629
|
+
rules: readonly ValidationRule$1[];
|
|
48610
48630
|
centerAffix: boolean;
|
|
48611
48631
|
persistentHint: boolean;
|
|
48612
48632
|
} & {
|
|
@@ -48672,7 +48692,7 @@ declare const VTextarea: {
|
|
|
48672
48692
|
focused: boolean;
|
|
48673
48693
|
errorMessages: string | readonly string[];
|
|
48674
48694
|
maxErrors: string | number;
|
|
48675
|
-
rules: readonly ValidationRule[];
|
|
48695
|
+
rules: readonly ValidationRule$1[];
|
|
48676
48696
|
persistentHint: boolean;
|
|
48677
48697
|
clearable: boolean;
|
|
48678
48698
|
dirty: boolean;
|
|
@@ -48781,7 +48801,7 @@ declare const VTextarea: {
|
|
|
48781
48801
|
focused?: boolean | undefined;
|
|
48782
48802
|
errorMessages?: string | readonly string[] | undefined;
|
|
48783
48803
|
maxErrors?: string | number | undefined;
|
|
48784
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
48804
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
48785
48805
|
centerAffix?: boolean | undefined;
|
|
48786
48806
|
persistentHint?: boolean | undefined;
|
|
48787
48807
|
key?: string | number | symbol | undefined;
|
|
@@ -48899,7 +48919,7 @@ declare const VTextarea: {
|
|
|
48899
48919
|
focused: boolean;
|
|
48900
48920
|
errorMessages: string | readonly string[];
|
|
48901
48921
|
maxErrors: string | number;
|
|
48902
|
-
rules: readonly ValidationRule[];
|
|
48922
|
+
rules: readonly ValidationRule$1[];
|
|
48903
48923
|
centerAffix: boolean;
|
|
48904
48924
|
persistentHint: boolean;
|
|
48905
48925
|
} & {
|
|
@@ -48957,7 +48977,7 @@ declare const VTextarea: {
|
|
|
48957
48977
|
focused: boolean;
|
|
48958
48978
|
errorMessages: string | readonly string[];
|
|
48959
48979
|
maxErrors: string | number;
|
|
48960
|
-
rules: readonly ValidationRule[];
|
|
48980
|
+
rules: readonly ValidationRule$1[];
|
|
48961
48981
|
centerAffix: boolean;
|
|
48962
48982
|
persistentHint: boolean;
|
|
48963
48983
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -49007,7 +49027,7 @@ declare const VTextarea: {
|
|
|
49007
49027
|
focused: boolean;
|
|
49008
49028
|
errorMessages: string | readonly string[];
|
|
49009
49029
|
maxErrors: string | number;
|
|
49010
|
-
rules: readonly ValidationRule[];
|
|
49030
|
+
rules: readonly ValidationRule$1[];
|
|
49011
49031
|
centerAffix: boolean;
|
|
49012
49032
|
persistentHint: boolean;
|
|
49013
49033
|
} & {
|
|
@@ -49075,7 +49095,7 @@ declare const VTextarea: {
|
|
|
49075
49095
|
focused: boolean;
|
|
49076
49096
|
errorMessages: string | readonly string[];
|
|
49077
49097
|
maxErrors: string | number;
|
|
49078
|
-
rules: readonly ValidationRule[];
|
|
49098
|
+
rules: readonly ValidationRule$1[];
|
|
49079
49099
|
centerAffix: boolean;
|
|
49080
49100
|
persistentHint: boolean;
|
|
49081
49101
|
clearable: boolean;
|
|
@@ -49183,7 +49203,7 @@ declare const VTextarea: {
|
|
|
49183
49203
|
default: null;
|
|
49184
49204
|
};
|
|
49185
49205
|
rules: {
|
|
49186
|
-
type: PropType<readonly ValidationRule[]>;
|
|
49206
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
49187
49207
|
default: () => never[];
|
|
49188
49208
|
};
|
|
49189
49209
|
modelValue: null;
|
|
@@ -49293,7 +49313,7 @@ declare const VTextarea: {
|
|
|
49293
49313
|
default: null;
|
|
49294
49314
|
};
|
|
49295
49315
|
rules: {
|
|
49296
|
-
type: PropType<readonly ValidationRule[]>;
|
|
49316
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
49297
49317
|
default: () => never[];
|
|
49298
49318
|
};
|
|
49299
49319
|
modelValue: null;
|
|
@@ -49367,7 +49387,7 @@ declare const VTextField: {
|
|
|
49367
49387
|
focused?: boolean | undefined;
|
|
49368
49388
|
errorMessages?: string | readonly string[] | undefined;
|
|
49369
49389
|
maxErrors?: string | number | undefined;
|
|
49370
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
49390
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
49371
49391
|
centerAffix?: boolean | undefined;
|
|
49372
49392
|
persistentHint?: boolean | undefined;
|
|
49373
49393
|
clearable?: boolean | undefined;
|
|
@@ -49564,7 +49584,7 @@ declare const VTextField: {
|
|
|
49564
49584
|
focused: boolean;
|
|
49565
49585
|
errorMessages: string | readonly string[];
|
|
49566
49586
|
maxErrors: string | number;
|
|
49567
|
-
rules: readonly ValidationRule[];
|
|
49587
|
+
rules: readonly ValidationRule$1[];
|
|
49568
49588
|
persistentHint: boolean;
|
|
49569
49589
|
clearable: boolean;
|
|
49570
49590
|
dirty: boolean;
|
|
@@ -49672,7 +49692,7 @@ declare const VTextField: {
|
|
|
49672
49692
|
focused?: boolean | undefined;
|
|
49673
49693
|
errorMessages?: string | readonly string[] | undefined;
|
|
49674
49694
|
maxErrors?: string | number | undefined;
|
|
49675
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
49695
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
49676
49696
|
centerAffix?: boolean | undefined;
|
|
49677
49697
|
persistentHint?: boolean | undefined;
|
|
49678
49698
|
key?: string | number | symbol | undefined;
|
|
@@ -49790,7 +49810,7 @@ declare const VTextField: {
|
|
|
49790
49810
|
focused: boolean;
|
|
49791
49811
|
errorMessages: string | readonly string[];
|
|
49792
49812
|
maxErrors: string | number;
|
|
49793
|
-
rules: readonly ValidationRule[];
|
|
49813
|
+
rules: readonly ValidationRule$1[];
|
|
49794
49814
|
centerAffix: boolean;
|
|
49795
49815
|
persistentHint: boolean;
|
|
49796
49816
|
} & {
|
|
@@ -49848,7 +49868,7 @@ declare const VTextField: {
|
|
|
49848
49868
|
focused: boolean;
|
|
49849
49869
|
errorMessages: string | readonly string[];
|
|
49850
49870
|
maxErrors: string | number;
|
|
49851
|
-
rules: readonly ValidationRule[];
|
|
49871
|
+
rules: readonly ValidationRule$1[];
|
|
49852
49872
|
centerAffix: boolean;
|
|
49853
49873
|
persistentHint: boolean;
|
|
49854
49874
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -49898,7 +49918,7 @@ declare const VTextField: {
|
|
|
49898
49918
|
focused: boolean;
|
|
49899
49919
|
errorMessages: string | readonly string[];
|
|
49900
49920
|
maxErrors: string | number;
|
|
49901
|
-
rules: readonly ValidationRule[];
|
|
49921
|
+
rules: readonly ValidationRule$1[];
|
|
49902
49922
|
centerAffix: boolean;
|
|
49903
49923
|
persistentHint: boolean;
|
|
49904
49924
|
} & {
|
|
@@ -50213,7 +50233,7 @@ declare const VTextField: {
|
|
|
50213
50233
|
focused: boolean;
|
|
50214
50234
|
errorMessages: string | readonly string[];
|
|
50215
50235
|
maxErrors: string | number;
|
|
50216
|
-
rules: readonly ValidationRule[];
|
|
50236
|
+
rules: readonly ValidationRule$1[];
|
|
50217
50237
|
centerAffix: boolean;
|
|
50218
50238
|
persistentHint: boolean;
|
|
50219
50239
|
clearable: boolean;
|
|
@@ -50297,7 +50317,7 @@ declare const VTextField: {
|
|
|
50297
50317
|
focused: boolean;
|
|
50298
50318
|
errorMessages: string | readonly string[];
|
|
50299
50319
|
maxErrors: string | number;
|
|
50300
|
-
rules: readonly ValidationRule[];
|
|
50320
|
+
rules: readonly ValidationRule$1[];
|
|
50301
50321
|
persistentHint: boolean;
|
|
50302
50322
|
clearable: boolean;
|
|
50303
50323
|
dirty: boolean;
|
|
@@ -50405,7 +50425,7 @@ declare const VTextField: {
|
|
|
50405
50425
|
focused?: boolean | undefined;
|
|
50406
50426
|
errorMessages?: string | readonly string[] | undefined;
|
|
50407
50427
|
maxErrors?: string | number | undefined;
|
|
50408
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
50428
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
50409
50429
|
centerAffix?: boolean | undefined;
|
|
50410
50430
|
persistentHint?: boolean | undefined;
|
|
50411
50431
|
key?: string | number | symbol | undefined;
|
|
@@ -50523,7 +50543,7 @@ declare const VTextField: {
|
|
|
50523
50543
|
focused: boolean;
|
|
50524
50544
|
errorMessages: string | readonly string[];
|
|
50525
50545
|
maxErrors: string | number;
|
|
50526
|
-
rules: readonly ValidationRule[];
|
|
50546
|
+
rules: readonly ValidationRule$1[];
|
|
50527
50547
|
centerAffix: boolean;
|
|
50528
50548
|
persistentHint: boolean;
|
|
50529
50549
|
} & {
|
|
@@ -50581,7 +50601,7 @@ declare const VTextField: {
|
|
|
50581
50601
|
focused: boolean;
|
|
50582
50602
|
errorMessages: string | readonly string[];
|
|
50583
50603
|
maxErrors: string | number;
|
|
50584
|
-
rules: readonly ValidationRule[];
|
|
50604
|
+
rules: readonly ValidationRule$1[];
|
|
50585
50605
|
centerAffix: boolean;
|
|
50586
50606
|
persistentHint: boolean;
|
|
50587
50607
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -50631,7 +50651,7 @@ declare const VTextField: {
|
|
|
50631
50651
|
focused: boolean;
|
|
50632
50652
|
errorMessages: string | readonly string[];
|
|
50633
50653
|
maxErrors: string | number;
|
|
50634
|
-
rules: readonly ValidationRule[];
|
|
50654
|
+
rules: readonly ValidationRule$1[];
|
|
50635
50655
|
centerAffix: boolean;
|
|
50636
50656
|
persistentHint: boolean;
|
|
50637
50657
|
} & {
|
|
@@ -50944,7 +50964,7 @@ declare const VTextField: {
|
|
|
50944
50964
|
focused: boolean;
|
|
50945
50965
|
errorMessages: string | readonly string[];
|
|
50946
50966
|
maxErrors: string | number;
|
|
50947
|
-
rules: readonly ValidationRule[];
|
|
50967
|
+
rules: readonly ValidationRule$1[];
|
|
50948
50968
|
persistentHint: boolean;
|
|
50949
50969
|
clearable: boolean;
|
|
50950
50970
|
dirty: boolean;
|
|
@@ -51052,7 +51072,7 @@ declare const VTextField: {
|
|
|
51052
51072
|
focused?: boolean | undefined;
|
|
51053
51073
|
errorMessages?: string | readonly string[] | undefined;
|
|
51054
51074
|
maxErrors?: string | number | undefined;
|
|
51055
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
51075
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
51056
51076
|
centerAffix?: boolean | undefined;
|
|
51057
51077
|
persistentHint?: boolean | undefined;
|
|
51058
51078
|
key?: string | number | symbol | undefined;
|
|
@@ -51170,7 +51190,7 @@ declare const VTextField: {
|
|
|
51170
51190
|
focused: boolean;
|
|
51171
51191
|
errorMessages: string | readonly string[];
|
|
51172
51192
|
maxErrors: string | number;
|
|
51173
|
-
rules: readonly ValidationRule[];
|
|
51193
|
+
rules: readonly ValidationRule$1[];
|
|
51174
51194
|
centerAffix: boolean;
|
|
51175
51195
|
persistentHint: boolean;
|
|
51176
51196
|
} & {
|
|
@@ -51228,7 +51248,7 @@ declare const VTextField: {
|
|
|
51228
51248
|
focused: boolean;
|
|
51229
51249
|
errorMessages: string | readonly string[];
|
|
51230
51250
|
maxErrors: string | number;
|
|
51231
|
-
rules: readonly ValidationRule[];
|
|
51251
|
+
rules: readonly ValidationRule$1[];
|
|
51232
51252
|
centerAffix: boolean;
|
|
51233
51253
|
persistentHint: boolean;
|
|
51234
51254
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -51278,7 +51298,7 @@ declare const VTextField: {
|
|
|
51278
51298
|
focused: boolean;
|
|
51279
51299
|
errorMessages: string | readonly string[];
|
|
51280
51300
|
maxErrors: string | number;
|
|
51281
|
-
rules: readonly ValidationRule[];
|
|
51301
|
+
rules: readonly ValidationRule$1[];
|
|
51282
51302
|
centerAffix: boolean;
|
|
51283
51303
|
persistentHint: boolean;
|
|
51284
51304
|
} & {
|
|
@@ -51593,7 +51613,7 @@ declare const VTextField: {
|
|
|
51593
51613
|
focused: boolean;
|
|
51594
51614
|
errorMessages: string | readonly string[];
|
|
51595
51615
|
maxErrors: string | number;
|
|
51596
|
-
rules: readonly ValidationRule[];
|
|
51616
|
+
rules: readonly ValidationRule$1[];
|
|
51597
51617
|
centerAffix: boolean;
|
|
51598
51618
|
persistentHint: boolean;
|
|
51599
51619
|
clearable: boolean;
|
|
@@ -51701,7 +51721,7 @@ declare const VTextField: {
|
|
|
51701
51721
|
default: null;
|
|
51702
51722
|
};
|
|
51703
51723
|
rules: {
|
|
51704
|
-
type: PropType<readonly ValidationRule[]>;
|
|
51724
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
51705
51725
|
default: () => never[];
|
|
51706
51726
|
};
|
|
51707
51727
|
modelValue: null;
|
|
@@ -51804,7 +51824,7 @@ declare const VTextField: {
|
|
|
51804
51824
|
default: null;
|
|
51805
51825
|
};
|
|
51806
51826
|
rules: {
|
|
51807
|
-
type: PropType<readonly ValidationRule[]>;
|
|
51827
|
+
type: PropType<readonly ValidationRule$1[]>;
|
|
51808
51828
|
default: () => never[];
|
|
51809
51829
|
};
|
|
51810
51830
|
modelValue: null;
|
|
@@ -54901,7 +54921,7 @@ declare const VValidation: {
|
|
|
54901
54921
|
focused?: boolean | undefined;
|
|
54902
54922
|
errorMessages?: string | readonly string[] | undefined;
|
|
54903
54923
|
maxErrors?: string | number | undefined;
|
|
54904
|
-
rules?: readonly ValidationRule[] | undefined;
|
|
54924
|
+
rules?: readonly ValidationRule$1[] | undefined;
|
|
54905
54925
|
key?: string | number | symbol | undefined;
|
|
54906
54926
|
name?: string | undefined;
|
|
54907
54927
|
label?: string | undefined;
|
|
@@ -55053,7 +55073,7 @@ declare const VValidation: {
|
|
|
55053
55073
|
focused: boolean;
|
|
55054
55074
|
errorMessages: string | readonly string[];
|
|
55055
55075
|
maxErrors: string | number;
|
|
55056
|
-
rules: readonly ValidationRule[];
|
|
55076
|
+
rules: readonly ValidationRule$1[];
|
|
55057
55077
|
} & {
|
|
55058
55078
|
name?: string | undefined;
|
|
55059
55079
|
label?: string | undefined;
|
|
@@ -55139,7 +55159,7 @@ declare const VValidation: {
|
|
|
55139
55159
|
focused: boolean;
|
|
55140
55160
|
errorMessages: string | readonly string[];
|
|
55141
55161
|
maxErrors: string | number;
|
|
55142
|
-
rules: readonly ValidationRule[];
|
|
55162
|
+
rules: readonly ValidationRule$1[];
|
|
55143
55163
|
}, {}, string, vue.SlotsType<Partial<{
|
|
55144
55164
|
default: (arg: {
|
|
55145
55165
|
errorMessages: vue.ComputedRef<string[]>;
|
|
@@ -55185,7 +55205,7 @@ declare const VValidation: {
|
|
|
55185
55205
|
focused: boolean;
|
|
55186
55206
|
errorMessages: string | readonly string[];
|
|
55187
55207
|
maxErrors: string | number;
|
|
55188
|
-
rules: readonly ValidationRule[];
|
|
55208
|
+
rules: readonly ValidationRule$1[];
|
|
55189
55209
|
} & {
|
|
55190
55210
|
name?: string | undefined;
|
|
55191
55211
|
label?: string | undefined;
|
|
@@ -55273,7 +55293,7 @@ declare const VValidation: {
|
|
|
55273
55293
|
focused: boolean;
|
|
55274
55294
|
errorMessages: string | readonly string[];
|
|
55275
55295
|
maxErrors: string | number;
|
|
55276
|
-
rules: readonly ValidationRule[];
|
|
55296
|
+
rules: readonly ValidationRule$1[];
|
|
55277
55297
|
} & {
|
|
55278
55298
|
name?: string | undefined;
|
|
55279
55299
|
label?: string | undefined;
|
|
@@ -55359,7 +55379,7 @@ declare const VValidation: {
|
|
|
55359
55379
|
focused: boolean;
|
|
55360
55380
|
errorMessages: string | readonly string[];
|
|
55361
55381
|
maxErrors: string | number;
|
|
55362
|
-
rules: readonly ValidationRule[];
|
|
55382
|
+
rules: readonly ValidationRule$1[];
|
|
55363
55383
|
}, {}, string, vue.SlotsType<Partial<{
|
|
55364
55384
|
default: (arg: {
|
|
55365
55385
|
errorMessages: vue.ComputedRef<string[]>;
|
|
@@ -55401,7 +55421,7 @@ declare const VValidation: {
|
|
|
55401
55421
|
default: null;
|
|
55402
55422
|
};
|
|
55403
55423
|
rules: {
|
|
55404
|
-
type: vue.PropType<readonly ValidationRule[]>;
|
|
55424
|
+
type: vue.PropType<readonly ValidationRule$1[]>;
|
|
55405
55425
|
default: () => never[];
|
|
55406
55426
|
};
|
|
55407
55427
|
modelValue: null;
|
|
@@ -55430,7 +55450,7 @@ declare const VValidation: {
|
|
|
55430
55450
|
default: null;
|
|
55431
55451
|
};
|
|
55432
55452
|
rules: {
|
|
55433
|
-
type: vue.PropType<readonly ValidationRule[]>;
|
|
55453
|
+
type: vue.PropType<readonly ValidationRule$1[]>;
|
|
55434
55454
|
default: () => never[];
|
|
55435
55455
|
};
|
|
55436
55456
|
modelValue: null;
|
|
@@ -55673,7 +55693,7 @@ declare const VWindow: {
|
|
|
55673
55693
|
style?: vue.StyleValue | undefined;
|
|
55674
55694
|
disabled?: boolean | undefined;
|
|
55675
55695
|
tag?: string | undefined;
|
|
55676
|
-
mandatory?: "force" | undefined;
|
|
55696
|
+
mandatory?: boolean | "force" | undefined;
|
|
55677
55697
|
touch?: boolean | TouchHandlers | undefined;
|
|
55678
55698
|
selectedClass?: string | undefined;
|
|
55679
55699
|
continuous?: boolean | undefined;
|
|
@@ -55807,7 +55827,7 @@ declare const VWindow: {
|
|
|
55807
55827
|
style: vue.StyleValue;
|
|
55808
55828
|
disabled: boolean;
|
|
55809
55829
|
tag: string;
|
|
55810
|
-
mandatory: "force";
|
|
55830
|
+
mandatory: boolean | "force";
|
|
55811
55831
|
selectedClass: string;
|
|
55812
55832
|
continuous: boolean;
|
|
55813
55833
|
nextIcon: IconValue;
|
|
@@ -55874,7 +55894,7 @@ declare const VWindow: {
|
|
|
55874
55894
|
style: vue.StyleValue;
|
|
55875
55895
|
disabled: boolean;
|
|
55876
55896
|
tag: string;
|
|
55877
|
-
mandatory: "force";
|
|
55897
|
+
mandatory: boolean | "force";
|
|
55878
55898
|
touch: boolean | TouchHandlers;
|
|
55879
55899
|
selectedClass: string;
|
|
55880
55900
|
continuous: boolean;
|
|
@@ -55927,7 +55947,7 @@ declare const VWindow: {
|
|
|
55927
55947
|
style: vue.StyleValue;
|
|
55928
55948
|
disabled: boolean;
|
|
55929
55949
|
tag: string;
|
|
55930
|
-
mandatory: "force";
|
|
55950
|
+
mandatory: boolean | "force";
|
|
55931
55951
|
selectedClass: string;
|
|
55932
55952
|
continuous: boolean;
|
|
55933
55953
|
nextIcon: IconValue;
|
|
@@ -55996,7 +56016,7 @@ declare const VWindow: {
|
|
|
55996
56016
|
style: vue.StyleValue;
|
|
55997
56017
|
disabled: boolean;
|
|
55998
56018
|
tag: string;
|
|
55999
|
-
mandatory: "force";
|
|
56019
|
+
mandatory: boolean | "force";
|
|
56000
56020
|
selectedClass: string;
|
|
56001
56021
|
continuous: boolean;
|
|
56002
56022
|
nextIcon: IconValue;
|
|
@@ -56063,7 +56083,7 @@ declare const VWindow: {
|
|
|
56063
56083
|
style: vue.StyleValue;
|
|
56064
56084
|
disabled: boolean;
|
|
56065
56085
|
tag: string;
|
|
56066
|
-
mandatory: "force";
|
|
56086
|
+
mandatory: boolean | "force";
|
|
56067
56087
|
touch: boolean | TouchHandlers;
|
|
56068
56088
|
selectedClass: string;
|
|
56069
56089
|
continuous: boolean;
|
|
@@ -56130,6 +56150,7 @@ declare const VWindow: {
|
|
|
56130
56150
|
default: string;
|
|
56131
56151
|
};
|
|
56132
56152
|
mandatory: {
|
|
56153
|
+
type: PropType<boolean | "force">;
|
|
56133
56154
|
default: "force";
|
|
56134
56155
|
};
|
|
56135
56156
|
}, vue.ExtractPropTypes<{
|
|
@@ -56172,6 +56193,7 @@ declare const VWindow: {
|
|
|
56172
56193
|
default: string;
|
|
56173
56194
|
};
|
|
56174
56195
|
mandatory: {
|
|
56196
|
+
type: PropType<boolean | "force">;
|
|
56175
56197
|
default: "force";
|
|
56176
56198
|
};
|
|
56177
56199
|
}>>;
|
|
@@ -56283,10 +56305,12 @@ declare const VWindowItem: {
|
|
|
56283
56305
|
"onGroup:selected"?: ((val: {
|
|
56284
56306
|
value: boolean;
|
|
56285
56307
|
}) => any) | undefined;
|
|
56286
|
-
}, {
|
|
56308
|
+
}, {
|
|
56309
|
+
groupItem: GroupItemProvide;
|
|
56310
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
56287
56311
|
'group:selected': (val: {
|
|
56288
56312
|
value: boolean;
|
|
56289
|
-
}) =>
|
|
56313
|
+
}) => true;
|
|
56290
56314
|
}, string, {
|
|
56291
56315
|
transition: string | boolean;
|
|
56292
56316
|
style: vue.StyleValue;
|
|
@@ -56340,7 +56364,9 @@ declare const VWindowItem: {
|
|
|
56340
56364
|
"onGroup:selected"?: ((val: {
|
|
56341
56365
|
value: boolean;
|
|
56342
56366
|
}) => any) | undefined;
|
|
56343
|
-
} & vue.ShallowUnwrapRef<{
|
|
56367
|
+
} & vue.ShallowUnwrapRef<{
|
|
56368
|
+
groupItem: GroupItemProvide;
|
|
56369
|
+
}> & {} & vue.ComponentCustomProperties & {};
|
|
56344
56370
|
__isFragment?: undefined;
|
|
56345
56371
|
__isTeleport?: undefined;
|
|
56346
56372
|
__isSuspense?: undefined;
|
|
@@ -56367,10 +56393,12 @@ declare const VWindowItem: {
|
|
|
56367
56393
|
"onGroup:selected"?: ((val: {
|
|
56368
56394
|
value: boolean;
|
|
56369
56395
|
}) => any) | undefined;
|
|
56370
|
-
}, {
|
|
56396
|
+
}, {
|
|
56397
|
+
groupItem: GroupItemProvide;
|
|
56398
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
56371
56399
|
'group:selected': (val: {
|
|
56372
56400
|
value: boolean;
|
|
56373
|
-
}) =>
|
|
56401
|
+
}) => true;
|
|
56374
56402
|
}, string, {
|
|
56375
56403
|
transition: string | boolean;
|
|
56376
56404
|
style: vue.StyleValue;
|
|
@@ -74144,44 +74172,47 @@ declare const VInfiniteScroll: {
|
|
|
74144
74172
|
}>>;
|
|
74145
74173
|
type VInfiniteScroll = InstanceType<typeof VInfiniteScroll>;
|
|
74146
74174
|
|
|
74147
|
-
declare const
|
|
74175
|
+
declare const VOtpInput: {
|
|
74148
74176
|
new (...args: any[]): {
|
|
74149
74177
|
$: vue.ComponentInternalInstance;
|
|
74150
74178
|
$data: {};
|
|
74151
74179
|
$props: {
|
|
74180
|
+
length?: string | number | undefined;
|
|
74181
|
+
type?: "number" | "text" | "password" | undefined;
|
|
74182
|
+
error?: boolean | undefined;
|
|
74183
|
+
label?: string | undefined;
|
|
74152
74184
|
style?: vue.StyleValue | undefined;
|
|
74153
|
-
|
|
74154
|
-
|
|
74185
|
+
autofocus?: boolean | undefined;
|
|
74186
|
+
disabled?: boolean | undefined;
|
|
74155
74187
|
rounded?: string | number | boolean | undefined;
|
|
74188
|
+
variant?: NonNullable<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled"> | undefined;
|
|
74189
|
+
modelValue?: string | number | undefined;
|
|
74190
|
+
focused?: boolean | undefined;
|
|
74191
|
+
focusAll?: boolean | undefined;
|
|
74156
74192
|
key?: string | number | symbol | undefined;
|
|
74157
|
-
location?: Anchor | undefined;
|
|
74158
74193
|
height?: string | number | undefined;
|
|
74159
74194
|
width?: string | number | undefined;
|
|
74160
|
-
|
|
74195
|
+
color?: string | undefined;
|
|
74161
74196
|
maxHeight?: string | number | undefined;
|
|
74162
74197
|
maxWidth?: string | number | undefined;
|
|
74163
74198
|
minHeight?: string | number | undefined;
|
|
74164
74199
|
minWidth?: string | number | undefined;
|
|
74165
|
-
|
|
74166
|
-
title?: string | undefined;
|
|
74200
|
+
loading?: string | boolean | undefined;
|
|
74167
74201
|
class?: any;
|
|
74202
|
+
placeholder?: string | undefined;
|
|
74168
74203
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
74169
|
-
header?: (() => vue.VNodeChild) | undefined;
|
|
74170
74204
|
default?: (() => vue.VNodeChild) | undefined;
|
|
74171
|
-
|
|
74172
|
-
title?: (() => vue.VNodeChild) | undefined;
|
|
74205
|
+
loader?: (() => vue.VNodeChild) | undefined;
|
|
74173
74206
|
};
|
|
74174
|
-
elevation?: string | number | undefined;
|
|
74175
74207
|
ref?: vue.VNodeRef | undefined;
|
|
74176
74208
|
ref_for?: boolean | undefined;
|
|
74177
74209
|
ref_key?: string | undefined;
|
|
74178
74210
|
theme?: string | undefined;
|
|
74179
74211
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
74212
|
+
divider?: string | undefined;
|
|
74180
74213
|
'v-slots'?: {
|
|
74181
|
-
header?: false | (() => vue.VNodeChild) | undefined;
|
|
74182
74214
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
74183
|
-
|
|
74184
|
-
title?: false | (() => vue.VNodeChild) | undefined;
|
|
74215
|
+
loader?: false | (() => vue.VNodeChild) | undefined;
|
|
74185
74216
|
} | undefined;
|
|
74186
74217
|
onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74187
74218
|
[key: string]: any;
|
|
@@ -74221,9 +74252,12 @@ declare const VPicker: {
|
|
|
74221
74252
|
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74222
74253
|
[key: string]: any;
|
|
74223
74254
|
}>) => void)[] | undefined;
|
|
74224
|
-
"
|
|
74225
|
-
|
|
74226
|
-
"v-slot:
|
|
74255
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
74256
|
+
bgColor?: string | undefined;
|
|
74257
|
+
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
74258
|
+
'onUpdate:focused'?: (EventProp<[boolean], (args_0: boolean) => any> & ((val: boolean) => any)) | undefined;
|
|
74259
|
+
baseColor?: string | undefined;
|
|
74260
|
+
onFinish?: ((val: string) => any) | undefined;
|
|
74227
74261
|
};
|
|
74228
74262
|
$attrs: {
|
|
74229
74263
|
[x: string]: unknown;
|
|
@@ -74232,76 +74266,91 @@ declare const VPicker: {
|
|
|
74232
74266
|
[x: string]: unknown;
|
|
74233
74267
|
};
|
|
74234
74268
|
$slots: Readonly<{
|
|
74235
|
-
header?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74236
|
-
[key: string]: any;
|
|
74237
|
-
}>[]) | undefined;
|
|
74238
74269
|
default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74239
74270
|
[key: string]: any;
|
|
74240
74271
|
}>[]) | undefined;
|
|
74241
|
-
|
|
74242
|
-
[key: string]: any;
|
|
74243
|
-
}>[]) | undefined;
|
|
74244
|
-
title?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74272
|
+
loader?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74245
74273
|
[key: string]: any;
|
|
74246
74274
|
}>[]) | undefined;
|
|
74247
74275
|
}>;
|
|
74248
74276
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
74249
74277
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
74250
|
-
$emit: (event: string,
|
|
74278
|
+
$emit: ((event: "finish", val: string) => void) & ((event: "update:modelValue", val: string) => void) & ((event: "update:focused", val: boolean) => void);
|
|
74251
74279
|
$el: any;
|
|
74252
74280
|
$options: vue.ComponentOptionsBase<{
|
|
74281
|
+
length: string | number;
|
|
74282
|
+
type: "number" | "text" | "password";
|
|
74283
|
+
error: boolean;
|
|
74284
|
+
label: string;
|
|
74253
74285
|
style: vue.StyleValue;
|
|
74254
|
-
|
|
74255
|
-
|
|
74286
|
+
autofocus: boolean;
|
|
74287
|
+
disabled: boolean;
|
|
74288
|
+
variant: NonNullable<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
|
74289
|
+
focused: boolean;
|
|
74290
|
+
focusAll: boolean;
|
|
74256
74291
|
} & {
|
|
74257
|
-
location?: Anchor | undefined;
|
|
74258
74292
|
height?: string | number | undefined;
|
|
74259
74293
|
width?: string | number | undefined;
|
|
74260
|
-
|
|
74294
|
+
color?: string | undefined;
|
|
74261
74295
|
maxHeight?: string | number | undefined;
|
|
74262
74296
|
maxWidth?: string | number | undefined;
|
|
74263
74297
|
minHeight?: string | number | undefined;
|
|
74264
74298
|
minWidth?: string | number | undefined;
|
|
74265
|
-
|
|
74266
|
-
title?: string | undefined;
|
|
74299
|
+
loading?: string | boolean | undefined;
|
|
74267
74300
|
class?: any;
|
|
74268
|
-
|
|
74301
|
+
placeholder?: string | undefined;
|
|
74269
74302
|
theme?: string | undefined;
|
|
74303
|
+
divider?: string | undefined;
|
|
74270
74304
|
rounded?: string | number | boolean | undefined;
|
|
74305
|
+
modelValue?: string | number | undefined;
|
|
74306
|
+
bgColor?: string | undefined;
|
|
74307
|
+
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
74308
|
+
baseColor?: string | undefined;
|
|
74271
74309
|
} & {
|
|
74272
74310
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
74273
|
-
header?: (() => vue.VNodeChild) | undefined;
|
|
74274
74311
|
default?: (() => vue.VNodeChild) | undefined;
|
|
74275
|
-
|
|
74276
|
-
title?: (() => vue.VNodeChild) | undefined;
|
|
74312
|
+
loader?: (() => vue.VNodeChild) | undefined;
|
|
74277
74313
|
};
|
|
74278
74314
|
'v-slots'?: {
|
|
74279
|
-
header?: false | (() => vue.VNodeChild) | undefined;
|
|
74280
74315
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
74281
|
-
|
|
74282
|
-
title?: false | (() => vue.VNodeChild) | undefined;
|
|
74316
|
+
loader?: false | (() => vue.VNodeChild) | undefined;
|
|
74283
74317
|
} | undefined;
|
|
74284
74318
|
} & {
|
|
74285
|
-
"v-slot:header"?: false | (() => vue.VNodeChild) | undefined;
|
|
74286
74319
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
74287
|
-
"v-slot:
|
|
74288
|
-
|
|
74289
|
-
|
|
74320
|
+
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
74321
|
+
} & {
|
|
74322
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
74323
|
+
"onUpdate:focused"?: ((val: boolean) => any) | undefined;
|
|
74324
|
+
onFinish?: ((val: string) => any) | undefined;
|
|
74325
|
+
}, {
|
|
74326
|
+
blur: () => void;
|
|
74327
|
+
focus: () => void;
|
|
74328
|
+
reset: () => void;
|
|
74329
|
+
isFocused: vue.Ref<boolean> & {
|
|
74330
|
+
readonly externalValue: boolean;
|
|
74331
|
+
};
|
|
74332
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
74333
|
+
finish: (val: string) => true;
|
|
74334
|
+
'update:focused': (val: boolean) => true;
|
|
74335
|
+
'update:modelValue': (val: string) => true;
|
|
74336
|
+
}, string, {
|
|
74337
|
+
length: string | number;
|
|
74338
|
+
type: "number" | "text" | "password";
|
|
74339
|
+
error: boolean;
|
|
74340
|
+
label: string;
|
|
74290
74341
|
style: vue.StyleValue;
|
|
74291
|
-
|
|
74292
|
-
|
|
74342
|
+
autofocus: boolean;
|
|
74343
|
+
disabled: boolean;
|
|
74293
74344
|
rounded: string | number | boolean;
|
|
74345
|
+
variant: NonNullable<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
|
74346
|
+
modelValue: string | number;
|
|
74347
|
+
focused: boolean;
|
|
74348
|
+
focusAll: boolean;
|
|
74294
74349
|
}, {}, string, vue.SlotsType<Partial<{
|
|
74295
|
-
header: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74296
|
-
[key: string]: any;
|
|
74297
|
-
}>[];
|
|
74298
74350
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74299
74351
|
[key: string]: any;
|
|
74300
74352
|
}>[];
|
|
74301
|
-
|
|
74302
|
-
[key: string]: any;
|
|
74303
|
-
}>[];
|
|
74304
|
-
title: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74353
|
+
loader: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74305
74354
|
[key: string]: any;
|
|
74306
74355
|
}>[];
|
|
74307
74356
|
}>>> & {
|
|
@@ -74325,171 +74374,598 @@ declare const VPicker: {
|
|
|
74325
74374
|
$nextTick: typeof vue.nextTick;
|
|
74326
74375
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
74327
74376
|
} & {
|
|
74377
|
+
length: string | number;
|
|
74378
|
+
type: "number" | "text" | "password";
|
|
74379
|
+
error: boolean;
|
|
74380
|
+
label: string;
|
|
74328
74381
|
style: vue.StyleValue;
|
|
74329
|
-
|
|
74330
|
-
|
|
74382
|
+
autofocus: boolean;
|
|
74383
|
+
disabled: boolean;
|
|
74384
|
+
variant: NonNullable<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
|
74385
|
+
focused: boolean;
|
|
74386
|
+
focusAll: boolean;
|
|
74331
74387
|
} & {
|
|
74332
|
-
location?: Anchor | undefined;
|
|
74333
74388
|
height?: string | number | undefined;
|
|
74334
74389
|
width?: string | number | undefined;
|
|
74335
|
-
|
|
74390
|
+
color?: string | undefined;
|
|
74336
74391
|
maxHeight?: string | number | undefined;
|
|
74337
74392
|
maxWidth?: string | number | undefined;
|
|
74338
74393
|
minHeight?: string | number | undefined;
|
|
74339
74394
|
minWidth?: string | number | undefined;
|
|
74340
|
-
|
|
74341
|
-
title?: string | undefined;
|
|
74395
|
+
loading?: string | boolean | undefined;
|
|
74342
74396
|
class?: any;
|
|
74343
|
-
|
|
74397
|
+
placeholder?: string | undefined;
|
|
74344
74398
|
theme?: string | undefined;
|
|
74399
|
+
divider?: string | undefined;
|
|
74345
74400
|
rounded?: string | number | boolean | undefined;
|
|
74401
|
+
modelValue?: string | number | undefined;
|
|
74402
|
+
bgColor?: string | undefined;
|
|
74403
|
+
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
74404
|
+
baseColor?: string | undefined;
|
|
74346
74405
|
} & {
|
|
74347
74406
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
74348
|
-
header?: (() => vue.VNodeChild) | undefined;
|
|
74349
74407
|
default?: (() => vue.VNodeChild) | undefined;
|
|
74350
|
-
|
|
74351
|
-
title?: (() => vue.VNodeChild) | undefined;
|
|
74408
|
+
loader?: (() => vue.VNodeChild) | undefined;
|
|
74352
74409
|
};
|
|
74353
74410
|
'v-slots'?: {
|
|
74354
|
-
header?: false | (() => vue.VNodeChild) | undefined;
|
|
74355
74411
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
74356
|
-
|
|
74357
|
-
title?: false | (() => vue.VNodeChild) | undefined;
|
|
74412
|
+
loader?: false | (() => vue.VNodeChild) | undefined;
|
|
74358
74413
|
} | undefined;
|
|
74359
74414
|
} & {
|
|
74360
|
-
"v-slot:header"?: false | (() => vue.VNodeChild) | undefined;
|
|
74361
74415
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
74362
|
-
"v-slot:
|
|
74363
|
-
|
|
74364
|
-
|
|
74416
|
+
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
74417
|
+
} & {
|
|
74418
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
74419
|
+
"onUpdate:focused"?: ((val: boolean) => any) | undefined;
|
|
74420
|
+
onFinish?: ((val: string) => any) | undefined;
|
|
74421
|
+
} & vue.ShallowUnwrapRef<{
|
|
74422
|
+
blur: () => void;
|
|
74423
|
+
focus: () => void;
|
|
74424
|
+
reset: () => void;
|
|
74425
|
+
isFocused: vue.Ref<boolean> & {
|
|
74426
|
+
readonly externalValue: boolean;
|
|
74427
|
+
};
|
|
74428
|
+
}> & {} & vue.ComponentCustomProperties & {};
|
|
74365
74429
|
__isFragment?: undefined;
|
|
74366
74430
|
__isTeleport?: undefined;
|
|
74367
74431
|
__isSuspense?: undefined;
|
|
74368
74432
|
} & vue.ComponentOptionsBase<{
|
|
74433
|
+
length: string | number;
|
|
74434
|
+
type: "number" | "text" | "password";
|
|
74435
|
+
error: boolean;
|
|
74436
|
+
label: string;
|
|
74369
74437
|
style: vue.StyleValue;
|
|
74370
|
-
|
|
74371
|
-
|
|
74438
|
+
autofocus: boolean;
|
|
74439
|
+
disabled: boolean;
|
|
74440
|
+
variant: NonNullable<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
|
74441
|
+
focused: boolean;
|
|
74442
|
+
focusAll: boolean;
|
|
74372
74443
|
} & {
|
|
74373
|
-
location?: Anchor | undefined;
|
|
74374
74444
|
height?: string | number | undefined;
|
|
74375
74445
|
width?: string | number | undefined;
|
|
74376
|
-
|
|
74446
|
+
color?: string | undefined;
|
|
74377
74447
|
maxHeight?: string | number | undefined;
|
|
74378
74448
|
maxWidth?: string | number | undefined;
|
|
74379
74449
|
minHeight?: string | number | undefined;
|
|
74380
74450
|
minWidth?: string | number | undefined;
|
|
74381
|
-
|
|
74382
|
-
title?: string | undefined;
|
|
74451
|
+
loading?: string | boolean | undefined;
|
|
74383
74452
|
class?: any;
|
|
74384
|
-
|
|
74453
|
+
placeholder?: string | undefined;
|
|
74385
74454
|
theme?: string | undefined;
|
|
74455
|
+
divider?: string | undefined;
|
|
74386
74456
|
rounded?: string | number | boolean | undefined;
|
|
74457
|
+
modelValue?: string | number | undefined;
|
|
74458
|
+
bgColor?: string | undefined;
|
|
74459
|
+
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
74460
|
+
baseColor?: string | undefined;
|
|
74387
74461
|
} & {
|
|
74388
74462
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
74389
|
-
header?: (() => vue.VNodeChild) | undefined;
|
|
74390
74463
|
default?: (() => vue.VNodeChild) | undefined;
|
|
74391
|
-
|
|
74392
|
-
title?: (() => vue.VNodeChild) | undefined;
|
|
74464
|
+
loader?: (() => vue.VNodeChild) | undefined;
|
|
74393
74465
|
};
|
|
74394
74466
|
'v-slots'?: {
|
|
74395
|
-
header?: false | (() => vue.VNodeChild) | undefined;
|
|
74396
74467
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
74397
|
-
|
|
74398
|
-
title?: false | (() => vue.VNodeChild) | undefined;
|
|
74468
|
+
loader?: false | (() => vue.VNodeChild) | undefined;
|
|
74399
74469
|
} | undefined;
|
|
74400
74470
|
} & {
|
|
74401
|
-
"v-slot:header"?: false | (() => vue.VNodeChild) | undefined;
|
|
74402
74471
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
74403
|
-
"v-slot:
|
|
74404
|
-
|
|
74405
|
-
|
|
74472
|
+
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
74473
|
+
} & {
|
|
74474
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
74475
|
+
"onUpdate:focused"?: ((val: boolean) => any) | undefined;
|
|
74476
|
+
onFinish?: ((val: string) => any) | undefined;
|
|
74477
|
+
}, {
|
|
74478
|
+
blur: () => void;
|
|
74479
|
+
focus: () => void;
|
|
74480
|
+
reset: () => void;
|
|
74481
|
+
isFocused: vue.Ref<boolean> & {
|
|
74482
|
+
readonly externalValue: boolean;
|
|
74483
|
+
};
|
|
74484
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
74485
|
+
finish: (val: string) => true;
|
|
74486
|
+
'update:focused': (val: boolean) => true;
|
|
74487
|
+
'update:modelValue': (val: string) => true;
|
|
74488
|
+
}, string, {
|
|
74489
|
+
length: string | number;
|
|
74490
|
+
type: "number" | "text" | "password";
|
|
74491
|
+
error: boolean;
|
|
74492
|
+
label: string;
|
|
74406
74493
|
style: vue.StyleValue;
|
|
74407
|
-
|
|
74408
|
-
|
|
74494
|
+
autofocus: boolean;
|
|
74495
|
+
disabled: boolean;
|
|
74409
74496
|
rounded: string | number | boolean;
|
|
74497
|
+
variant: NonNullable<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
|
74498
|
+
modelValue: string | number;
|
|
74499
|
+
focused: boolean;
|
|
74500
|
+
focusAll: boolean;
|
|
74410
74501
|
}, {}, string, vue.SlotsType<Partial<{
|
|
74411
|
-
header: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74412
|
-
[key: string]: any;
|
|
74413
|
-
}>[];
|
|
74414
74502
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74415
74503
|
[key: string]: any;
|
|
74416
74504
|
}>[];
|
|
74417
|
-
|
|
74418
|
-
[key: string]: any;
|
|
74419
|
-
}>[];
|
|
74420
|
-
title: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74505
|
+
loader: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74421
74506
|
[key: string]: any;
|
|
74422
74507
|
}>[];
|
|
74423
74508
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
74424
|
-
|
|
74509
|
+
error: BooleanConstructor;
|
|
74510
|
+
color: StringConstructor;
|
|
74511
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
74512
|
+
style: {
|
|
74513
|
+
type: PropType<vue.StyleValue>;
|
|
74514
|
+
default: null;
|
|
74515
|
+
};
|
|
74516
|
+
disabled: {
|
|
74517
|
+
type: BooleanConstructor;
|
|
74518
|
+
default: null;
|
|
74519
|
+
};
|
|
74520
|
+
class: PropType<any>;
|
|
74521
|
+
theme: StringConstructor;
|
|
74522
|
+
rounded: {
|
|
74523
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
74524
|
+
default: undefined;
|
|
74525
|
+
};
|
|
74526
|
+
variant: Omit<{
|
|
74527
|
+
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
|
74528
|
+
default: string;
|
|
74529
|
+
validator: (v: any) => boolean;
|
|
74530
|
+
}, "type" | "default"> & {
|
|
74531
|
+
type: PropType<NonNullable<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">>;
|
|
74532
|
+
default: NonNullable<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
|
74533
|
+
};
|
|
74534
|
+
bgColor: StringConstructor;
|
|
74535
|
+
baseColor: StringConstructor;
|
|
74536
|
+
focused: BooleanConstructor;
|
|
74537
|
+
'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
|
|
74425
74538
|
height: (StringConstructor | NumberConstructor)[];
|
|
74426
|
-
width: (StringConstructor | NumberConstructor)[];
|
|
74427
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
74428
74539
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
74429
74540
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
74430
74541
|
minHeight: (StringConstructor | NumberConstructor)[];
|
|
74431
74542
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
74432
|
-
|
|
74433
|
-
|
|
74434
|
-
|
|
74435
|
-
|
|
74436
|
-
|
|
74437
|
-
type: vue.PropType<vue.StyleValue>;
|
|
74438
|
-
default: null;
|
|
74439
|
-
};
|
|
74440
|
-
class: vue.PropType<any>;
|
|
74441
|
-
tag: {
|
|
74543
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
74544
|
+
autofocus: BooleanConstructor;
|
|
74545
|
+
divider: StringConstructor;
|
|
74546
|
+
focusAll: BooleanConstructor;
|
|
74547
|
+
label: {
|
|
74442
74548
|
type: StringConstructor;
|
|
74443
74549
|
default: string;
|
|
74444
74550
|
};
|
|
74445
|
-
|
|
74551
|
+
length: {
|
|
74446
74552
|
type: (StringConstructor | NumberConstructor)[];
|
|
74447
|
-
|
|
74553
|
+
default: number;
|
|
74554
|
+
};
|
|
74555
|
+
modelValue: {
|
|
74556
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
74557
|
+
default: undefined;
|
|
74558
|
+
};
|
|
74559
|
+
placeholder: StringConstructor;
|
|
74560
|
+
type: {
|
|
74561
|
+
type: PropType<"number" | "text" | "password">;
|
|
74562
|
+
default: string;
|
|
74563
|
+
};
|
|
74564
|
+
}, vue.ExtractPropTypes<{
|
|
74565
|
+
error: BooleanConstructor;
|
|
74566
|
+
color: StringConstructor;
|
|
74567
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
74568
|
+
style: {
|
|
74569
|
+
type: PropType<vue.StyleValue>;
|
|
74570
|
+
default: null;
|
|
74571
|
+
};
|
|
74572
|
+
disabled: {
|
|
74573
|
+
type: BooleanConstructor;
|
|
74574
|
+
default: null;
|
|
74448
74575
|
};
|
|
74576
|
+
class: PropType<any>;
|
|
74449
74577
|
theme: StringConstructor;
|
|
74450
74578
|
rounded: {
|
|
74451
74579
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
74452
74580
|
default: undefined;
|
|
74453
74581
|
};
|
|
74454
|
-
|
|
74455
|
-
|
|
74456
|
-
|
|
74457
|
-
|
|
74582
|
+
variant: Omit<{
|
|
74583
|
+
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
|
74584
|
+
default: string;
|
|
74585
|
+
validator: (v: any) => boolean;
|
|
74586
|
+
}, "type" | "default"> & {
|
|
74587
|
+
type: PropType<NonNullable<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">>;
|
|
74588
|
+
default: NonNullable<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
|
74589
|
+
};
|
|
74590
|
+
bgColor: StringConstructor;
|
|
74591
|
+
baseColor: StringConstructor;
|
|
74592
|
+
focused: BooleanConstructor;
|
|
74593
|
+
'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
|
|
74458
74594
|
height: (StringConstructor | NumberConstructor)[];
|
|
74459
|
-
width: (StringConstructor | NumberConstructor)[];
|
|
74460
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
74461
74595
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
74462
74596
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
74463
74597
|
minHeight: (StringConstructor | NumberConstructor)[];
|
|
74464
74598
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
74465
|
-
|
|
74466
|
-
|
|
74467
|
-
|
|
74468
|
-
|
|
74469
|
-
|
|
74470
|
-
type: vue.PropType<vue.StyleValue>;
|
|
74471
|
-
default: null;
|
|
74472
|
-
};
|
|
74473
|
-
class: vue.PropType<any>;
|
|
74474
|
-
tag: {
|
|
74599
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
74600
|
+
autofocus: BooleanConstructor;
|
|
74601
|
+
divider: StringConstructor;
|
|
74602
|
+
focusAll: BooleanConstructor;
|
|
74603
|
+
label: {
|
|
74475
74604
|
type: StringConstructor;
|
|
74476
74605
|
default: string;
|
|
74477
74606
|
};
|
|
74478
|
-
|
|
74607
|
+
length: {
|
|
74479
74608
|
type: (StringConstructor | NumberConstructor)[];
|
|
74480
|
-
|
|
74609
|
+
default: number;
|
|
74481
74610
|
};
|
|
74482
|
-
|
|
74483
|
-
|
|
74484
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
74611
|
+
modelValue: {
|
|
74612
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
74485
74613
|
default: undefined;
|
|
74486
74614
|
};
|
|
74487
|
-
|
|
74488
|
-
|
|
74615
|
+
placeholder: StringConstructor;
|
|
74616
|
+
type: {
|
|
74617
|
+
type: PropType<"number" | "text" | "password">;
|
|
74618
|
+
default: string;
|
|
74619
|
+
};
|
|
74489
74620
|
}>>;
|
|
74490
|
-
type
|
|
74621
|
+
type VOtpInput = InstanceType<typeof VOtpInput>;
|
|
74491
74622
|
|
|
74492
|
-
declare const
|
|
74623
|
+
declare const VPicker: {
|
|
74624
|
+
new (...args: any[]): {
|
|
74625
|
+
$: vue.ComponentInternalInstance;
|
|
74626
|
+
$data: {};
|
|
74627
|
+
$props: {
|
|
74628
|
+
style?: vue.StyleValue | undefined;
|
|
74629
|
+
landscape?: boolean | undefined;
|
|
74630
|
+
tag?: string | undefined;
|
|
74631
|
+
rounded?: string | number | boolean | undefined;
|
|
74632
|
+
key?: string | number | symbol | undefined;
|
|
74633
|
+
location?: Anchor | undefined;
|
|
74634
|
+
height?: string | number | undefined;
|
|
74635
|
+
width?: string | number | undefined;
|
|
74636
|
+
border?: string | number | boolean | undefined;
|
|
74637
|
+
maxHeight?: string | number | undefined;
|
|
74638
|
+
maxWidth?: string | number | undefined;
|
|
74639
|
+
minHeight?: string | number | undefined;
|
|
74640
|
+
minWidth?: string | number | undefined;
|
|
74641
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
74642
|
+
title?: string | undefined;
|
|
74643
|
+
class?: any;
|
|
74644
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
74645
|
+
header?: (() => vue.VNodeChild) | undefined;
|
|
74646
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
74647
|
+
actions?: (() => vue.VNodeChild) | undefined;
|
|
74648
|
+
title?: (() => vue.VNodeChild) | undefined;
|
|
74649
|
+
};
|
|
74650
|
+
elevation?: string | number | undefined;
|
|
74651
|
+
ref?: vue.VNodeRef | undefined;
|
|
74652
|
+
ref_for?: boolean | undefined;
|
|
74653
|
+
ref_key?: string | undefined;
|
|
74654
|
+
theme?: string | undefined;
|
|
74655
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
74656
|
+
'v-slots'?: {
|
|
74657
|
+
header?: false | (() => vue.VNodeChild) | undefined;
|
|
74658
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
74659
|
+
actions?: false | (() => vue.VNodeChild) | undefined;
|
|
74660
|
+
title?: false | (() => vue.VNodeChild) | undefined;
|
|
74661
|
+
} | undefined;
|
|
74662
|
+
onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74663
|
+
[key: string]: any;
|
|
74664
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74665
|
+
[key: string]: any;
|
|
74666
|
+
}>) => void)[] | undefined;
|
|
74667
|
+
onVnodeMounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74668
|
+
[key: string]: any;
|
|
74669
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74670
|
+
[key: string]: any;
|
|
74671
|
+
}>) => void)[] | undefined;
|
|
74672
|
+
onVnodeBeforeUpdate?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74673
|
+
[key: string]: any;
|
|
74674
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74675
|
+
[key: string]: any;
|
|
74676
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74677
|
+
[key: string]: any;
|
|
74678
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74679
|
+
[key: string]: any;
|
|
74680
|
+
}>) => void)[] | undefined;
|
|
74681
|
+
onVnodeUpdated?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74682
|
+
[key: string]: any;
|
|
74683
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74684
|
+
[key: string]: any;
|
|
74685
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74686
|
+
[key: string]: any;
|
|
74687
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74688
|
+
[key: string]: any;
|
|
74689
|
+
}>) => void)[] | undefined;
|
|
74690
|
+
onVnodeBeforeUnmount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74691
|
+
[key: string]: any;
|
|
74692
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74693
|
+
[key: string]: any;
|
|
74694
|
+
}>) => void)[] | undefined;
|
|
74695
|
+
onVnodeUnmounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74696
|
+
[key: string]: any;
|
|
74697
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74698
|
+
[key: string]: any;
|
|
74699
|
+
}>) => void)[] | undefined;
|
|
74700
|
+
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
|
74701
|
+
"v-slot:header"?: false | (() => vue.VNodeChild) | undefined;
|
|
74702
|
+
"v-slot:actions"?: false | (() => vue.VNodeChild) | undefined;
|
|
74703
|
+
};
|
|
74704
|
+
$attrs: {
|
|
74705
|
+
[x: string]: unknown;
|
|
74706
|
+
};
|
|
74707
|
+
$refs: {
|
|
74708
|
+
[x: string]: unknown;
|
|
74709
|
+
};
|
|
74710
|
+
$slots: Readonly<{
|
|
74711
|
+
header?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74712
|
+
[key: string]: any;
|
|
74713
|
+
}>[]) | undefined;
|
|
74714
|
+
default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74715
|
+
[key: string]: any;
|
|
74716
|
+
}>[]) | undefined;
|
|
74717
|
+
actions?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74718
|
+
[key: string]: any;
|
|
74719
|
+
}>[]) | undefined;
|
|
74720
|
+
title?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74721
|
+
[key: string]: any;
|
|
74722
|
+
}>[]) | undefined;
|
|
74723
|
+
}>;
|
|
74724
|
+
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
74725
|
+
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
74726
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
74727
|
+
$el: any;
|
|
74728
|
+
$options: vue.ComponentOptionsBase<{
|
|
74729
|
+
style: vue.StyleValue;
|
|
74730
|
+
landscape: boolean;
|
|
74731
|
+
tag: string;
|
|
74732
|
+
} & {
|
|
74733
|
+
location?: Anchor | undefined;
|
|
74734
|
+
height?: string | number | undefined;
|
|
74735
|
+
width?: string | number | undefined;
|
|
74736
|
+
border?: string | number | boolean | undefined;
|
|
74737
|
+
maxHeight?: string | number | undefined;
|
|
74738
|
+
maxWidth?: string | number | undefined;
|
|
74739
|
+
minHeight?: string | number | undefined;
|
|
74740
|
+
minWidth?: string | number | undefined;
|
|
74741
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
74742
|
+
title?: string | undefined;
|
|
74743
|
+
class?: any;
|
|
74744
|
+
elevation?: string | number | undefined;
|
|
74745
|
+
theme?: string | undefined;
|
|
74746
|
+
rounded?: string | number | boolean | undefined;
|
|
74747
|
+
} & {
|
|
74748
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
74749
|
+
header?: (() => vue.VNodeChild) | undefined;
|
|
74750
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
74751
|
+
actions?: (() => vue.VNodeChild) | undefined;
|
|
74752
|
+
title?: (() => vue.VNodeChild) | undefined;
|
|
74753
|
+
};
|
|
74754
|
+
'v-slots'?: {
|
|
74755
|
+
header?: false | (() => vue.VNodeChild) | undefined;
|
|
74756
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
74757
|
+
actions?: false | (() => vue.VNodeChild) | undefined;
|
|
74758
|
+
title?: false | (() => vue.VNodeChild) | undefined;
|
|
74759
|
+
} | undefined;
|
|
74760
|
+
} & {
|
|
74761
|
+
"v-slot:header"?: false | (() => vue.VNodeChild) | undefined;
|
|
74762
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
74763
|
+
"v-slot:actions"?: false | (() => vue.VNodeChild) | undefined;
|
|
74764
|
+
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
|
74765
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
74766
|
+
style: vue.StyleValue;
|
|
74767
|
+
landscape: boolean;
|
|
74768
|
+
tag: string;
|
|
74769
|
+
rounded: string | number | boolean;
|
|
74770
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
74771
|
+
header: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74772
|
+
[key: string]: any;
|
|
74773
|
+
}>[];
|
|
74774
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74775
|
+
[key: string]: any;
|
|
74776
|
+
}>[];
|
|
74777
|
+
actions: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74778
|
+
[key: string]: any;
|
|
74779
|
+
}>[];
|
|
74780
|
+
title: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74781
|
+
[key: string]: any;
|
|
74782
|
+
}>[];
|
|
74783
|
+
}>>> & {
|
|
74784
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
74785
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
74786
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
74787
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
74788
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
74789
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
74790
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
74791
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
74792
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
74793
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
74794
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
74795
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
74796
|
+
renderTracked?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
74797
|
+
renderTriggered?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
74798
|
+
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
74799
|
+
};
|
|
74800
|
+
$forceUpdate: () => void;
|
|
74801
|
+
$nextTick: typeof vue.nextTick;
|
|
74802
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
74803
|
+
} & {
|
|
74804
|
+
style: vue.StyleValue;
|
|
74805
|
+
landscape: boolean;
|
|
74806
|
+
tag: string;
|
|
74807
|
+
} & {
|
|
74808
|
+
location?: Anchor | undefined;
|
|
74809
|
+
height?: string | number | undefined;
|
|
74810
|
+
width?: string | number | undefined;
|
|
74811
|
+
border?: string | number | boolean | undefined;
|
|
74812
|
+
maxHeight?: string | number | undefined;
|
|
74813
|
+
maxWidth?: string | number | undefined;
|
|
74814
|
+
minHeight?: string | number | undefined;
|
|
74815
|
+
minWidth?: string | number | undefined;
|
|
74816
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
74817
|
+
title?: string | undefined;
|
|
74818
|
+
class?: any;
|
|
74819
|
+
elevation?: string | number | undefined;
|
|
74820
|
+
theme?: string | undefined;
|
|
74821
|
+
rounded?: string | number | boolean | undefined;
|
|
74822
|
+
} & {
|
|
74823
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
74824
|
+
header?: (() => vue.VNodeChild) | undefined;
|
|
74825
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
74826
|
+
actions?: (() => vue.VNodeChild) | undefined;
|
|
74827
|
+
title?: (() => vue.VNodeChild) | undefined;
|
|
74828
|
+
};
|
|
74829
|
+
'v-slots'?: {
|
|
74830
|
+
header?: false | (() => vue.VNodeChild) | undefined;
|
|
74831
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
74832
|
+
actions?: false | (() => vue.VNodeChild) | undefined;
|
|
74833
|
+
title?: false | (() => vue.VNodeChild) | undefined;
|
|
74834
|
+
} | undefined;
|
|
74835
|
+
} & {
|
|
74836
|
+
"v-slot:header"?: false | (() => vue.VNodeChild) | undefined;
|
|
74837
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
74838
|
+
"v-slot:actions"?: false | (() => vue.VNodeChild) | undefined;
|
|
74839
|
+
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
|
74840
|
+
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
|
|
74841
|
+
__isFragment?: undefined;
|
|
74842
|
+
__isTeleport?: undefined;
|
|
74843
|
+
__isSuspense?: undefined;
|
|
74844
|
+
} & vue.ComponentOptionsBase<{
|
|
74845
|
+
style: vue.StyleValue;
|
|
74846
|
+
landscape: boolean;
|
|
74847
|
+
tag: string;
|
|
74848
|
+
} & {
|
|
74849
|
+
location?: Anchor | undefined;
|
|
74850
|
+
height?: string | number | undefined;
|
|
74851
|
+
width?: string | number | undefined;
|
|
74852
|
+
border?: string | number | boolean | undefined;
|
|
74853
|
+
maxHeight?: string | number | undefined;
|
|
74854
|
+
maxWidth?: string | number | undefined;
|
|
74855
|
+
minHeight?: string | number | undefined;
|
|
74856
|
+
minWidth?: string | number | undefined;
|
|
74857
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
74858
|
+
title?: string | undefined;
|
|
74859
|
+
class?: any;
|
|
74860
|
+
elevation?: string | number | undefined;
|
|
74861
|
+
theme?: string | undefined;
|
|
74862
|
+
rounded?: string | number | boolean | undefined;
|
|
74863
|
+
} & {
|
|
74864
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
74865
|
+
header?: (() => vue.VNodeChild) | undefined;
|
|
74866
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
74867
|
+
actions?: (() => vue.VNodeChild) | undefined;
|
|
74868
|
+
title?: (() => vue.VNodeChild) | undefined;
|
|
74869
|
+
};
|
|
74870
|
+
'v-slots'?: {
|
|
74871
|
+
header?: false | (() => vue.VNodeChild) | undefined;
|
|
74872
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
74873
|
+
actions?: false | (() => vue.VNodeChild) | undefined;
|
|
74874
|
+
title?: false | (() => vue.VNodeChild) | undefined;
|
|
74875
|
+
} | undefined;
|
|
74876
|
+
} & {
|
|
74877
|
+
"v-slot:header"?: false | (() => vue.VNodeChild) | undefined;
|
|
74878
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
74879
|
+
"v-slot:actions"?: false | (() => vue.VNodeChild) | undefined;
|
|
74880
|
+
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
|
74881
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
74882
|
+
style: vue.StyleValue;
|
|
74883
|
+
landscape: boolean;
|
|
74884
|
+
tag: string;
|
|
74885
|
+
rounded: string | number | boolean;
|
|
74886
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
74887
|
+
header: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74888
|
+
[key: string]: any;
|
|
74889
|
+
}>[];
|
|
74890
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74891
|
+
[key: string]: any;
|
|
74892
|
+
}>[];
|
|
74893
|
+
actions: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74894
|
+
[key: string]: any;
|
|
74895
|
+
}>[];
|
|
74896
|
+
title: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74897
|
+
[key: string]: any;
|
|
74898
|
+
}>[];
|
|
74899
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
74900
|
+
location: vue.PropType<Anchor>;
|
|
74901
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
74902
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
74903
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
74904
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
74905
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
74906
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
74907
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
74908
|
+
position: {
|
|
74909
|
+
type: vue.PropType<"fixed" | "absolute" | "static" | "relative" | "sticky">;
|
|
74910
|
+
validator: (v: any) => boolean;
|
|
74911
|
+
};
|
|
74912
|
+
style: {
|
|
74913
|
+
type: vue.PropType<vue.StyleValue>;
|
|
74914
|
+
default: null;
|
|
74915
|
+
};
|
|
74916
|
+
class: vue.PropType<any>;
|
|
74917
|
+
tag: {
|
|
74918
|
+
type: StringConstructor;
|
|
74919
|
+
default: string;
|
|
74920
|
+
};
|
|
74921
|
+
elevation: {
|
|
74922
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
74923
|
+
validator(v: any): boolean;
|
|
74924
|
+
};
|
|
74925
|
+
theme: StringConstructor;
|
|
74926
|
+
rounded: {
|
|
74927
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
74928
|
+
default: undefined;
|
|
74929
|
+
};
|
|
74930
|
+
landscape: BooleanConstructor;
|
|
74931
|
+
title: StringConstructor;
|
|
74932
|
+
}, vue.ExtractPropTypes<{
|
|
74933
|
+
location: vue.PropType<Anchor>;
|
|
74934
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
74935
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
74936
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
74937
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
74938
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
74939
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
74940
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
74941
|
+
position: {
|
|
74942
|
+
type: vue.PropType<"fixed" | "absolute" | "static" | "relative" | "sticky">;
|
|
74943
|
+
validator: (v: any) => boolean;
|
|
74944
|
+
};
|
|
74945
|
+
style: {
|
|
74946
|
+
type: vue.PropType<vue.StyleValue>;
|
|
74947
|
+
default: null;
|
|
74948
|
+
};
|
|
74949
|
+
class: vue.PropType<any>;
|
|
74950
|
+
tag: {
|
|
74951
|
+
type: StringConstructor;
|
|
74952
|
+
default: string;
|
|
74953
|
+
};
|
|
74954
|
+
elevation: {
|
|
74955
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
74956
|
+
validator(v: any): boolean;
|
|
74957
|
+
};
|
|
74958
|
+
theme: StringConstructor;
|
|
74959
|
+
rounded: {
|
|
74960
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
74961
|
+
default: undefined;
|
|
74962
|
+
};
|
|
74963
|
+
landscape: BooleanConstructor;
|
|
74964
|
+
title: StringConstructor;
|
|
74965
|
+
}>>;
|
|
74966
|
+
type VPicker = InstanceType<typeof VPicker>;
|
|
74967
|
+
|
|
74968
|
+
declare const VPickerTitle: {
|
|
74493
74969
|
new (...args: any[]): {
|
|
74494
74970
|
$: vue.ComponentInternalInstance;
|
|
74495
74971
|
$data: {};
|
|
@@ -74919,6 +75395,2014 @@ declare const VSkeletonLoader: {
|
|
|
74919
75395
|
}>>;
|
|
74920
75396
|
type VSkeletonLoader = InstanceType<typeof VSkeletonLoader>;
|
|
74921
75397
|
|
|
75398
|
+
type StepperItemSlot = {
|
|
75399
|
+
canEdit: boolean;
|
|
75400
|
+
hasError: boolean;
|
|
75401
|
+
hasCompleted: boolean;
|
|
75402
|
+
title?: string;
|
|
75403
|
+
subtitle?: string;
|
|
75404
|
+
step: any;
|
|
75405
|
+
};
|
|
75406
|
+
type ValidationRule = () => string | boolean;
|
|
75407
|
+
declare const VStepperItem: {
|
|
75408
|
+
new (...args: any[]): {
|
|
75409
|
+
$: vue.ComponentInternalInstance;
|
|
75410
|
+
$data: {};
|
|
75411
|
+
$props: {
|
|
75412
|
+
error?: boolean | undefined;
|
|
75413
|
+
complete?: boolean | undefined;
|
|
75414
|
+
disabled?: boolean | undefined;
|
|
75415
|
+
ripple?: boolean | {
|
|
75416
|
+
class: string;
|
|
75417
|
+
} | undefined;
|
|
75418
|
+
rules?: readonly ValidationRule[] | undefined;
|
|
75419
|
+
completeIcon?: string | undefined;
|
|
75420
|
+
editable?: boolean | undefined;
|
|
75421
|
+
editIcon?: string | undefined;
|
|
75422
|
+
errorIcon?: string | undefined;
|
|
75423
|
+
key?: string | number | symbol | undefined;
|
|
75424
|
+
color?: string | undefined;
|
|
75425
|
+
value?: any;
|
|
75426
|
+
style?: unknown;
|
|
75427
|
+
title?: string | undefined;
|
|
75428
|
+
class?: unknown;
|
|
75429
|
+
icon?: string | undefined;
|
|
75430
|
+
$children?: vue.VNodeChild | ((arg: StepperItemSlot) => vue.VNodeChild) | {
|
|
75431
|
+
default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75432
|
+
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75433
|
+
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75434
|
+
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75435
|
+
};
|
|
75436
|
+
ref?: vue.VNodeRef | undefined;
|
|
75437
|
+
ref_for?: boolean | undefined;
|
|
75438
|
+
ref_key?: string | undefined;
|
|
75439
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75440
|
+
'v-slots'?: {
|
|
75441
|
+
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75442
|
+
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75443
|
+
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75444
|
+
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75445
|
+
} | undefined;
|
|
75446
|
+
onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75447
|
+
[key: string]: any;
|
|
75448
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75449
|
+
[key: string]: any;
|
|
75450
|
+
}>) => void)[] | undefined;
|
|
75451
|
+
onVnodeMounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75452
|
+
[key: string]: any;
|
|
75453
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75454
|
+
[key: string]: any;
|
|
75455
|
+
}>) => void)[] | undefined;
|
|
75456
|
+
onVnodeBeforeUpdate?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75457
|
+
[key: string]: any;
|
|
75458
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75459
|
+
[key: string]: any;
|
|
75460
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75461
|
+
[key: string]: any;
|
|
75462
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75463
|
+
[key: string]: any;
|
|
75464
|
+
}>) => void)[] | undefined;
|
|
75465
|
+
onVnodeUpdated?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75466
|
+
[key: string]: any;
|
|
75467
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75468
|
+
[key: string]: any;
|
|
75469
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75470
|
+
[key: string]: any;
|
|
75471
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75472
|
+
[key: string]: any;
|
|
75473
|
+
}>) => void)[] | undefined;
|
|
75474
|
+
onVnodeBeforeUnmount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75475
|
+
[key: string]: any;
|
|
75476
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75477
|
+
[key: string]: any;
|
|
75478
|
+
}>) => void)[] | undefined;
|
|
75479
|
+
onVnodeUnmounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75480
|
+
[key: string]: any;
|
|
75481
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75482
|
+
[key: string]: any;
|
|
75483
|
+
}>) => void)[] | undefined;
|
|
75484
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75485
|
+
selectedClass?: string | undefined;
|
|
75486
|
+
"onGroup:selected"?: ((val: {
|
|
75487
|
+
value: boolean;
|
|
75488
|
+
}) => any) | undefined;
|
|
75489
|
+
subtitle?: string | undefined;
|
|
75490
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75491
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75492
|
+
};
|
|
75493
|
+
$attrs: {
|
|
75494
|
+
[x: string]: unknown;
|
|
75495
|
+
};
|
|
75496
|
+
$refs: {
|
|
75497
|
+
[x: string]: unknown;
|
|
75498
|
+
};
|
|
75499
|
+
$slots: Readonly<{
|
|
75500
|
+
default?: ((arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75501
|
+
[key: string]: any;
|
|
75502
|
+
}>[]) | undefined;
|
|
75503
|
+
icon?: ((arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75504
|
+
[key: string]: any;
|
|
75505
|
+
}>[]) | undefined;
|
|
75506
|
+
title?: ((arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75507
|
+
[key: string]: any;
|
|
75508
|
+
}>[]) | undefined;
|
|
75509
|
+
subtitle?: ((arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75510
|
+
[key: string]: any;
|
|
75511
|
+
}>[]) | undefined;
|
|
75512
|
+
}>;
|
|
75513
|
+
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
75514
|
+
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
75515
|
+
$emit: (event: "group:selected", val: {
|
|
75516
|
+
value: boolean;
|
|
75517
|
+
}) => void;
|
|
75518
|
+
$el: any;
|
|
75519
|
+
$options: vue.ComponentOptionsBase<{
|
|
75520
|
+
error: boolean;
|
|
75521
|
+
complete: boolean;
|
|
75522
|
+
disabled: boolean;
|
|
75523
|
+
ripple: boolean | {
|
|
75524
|
+
class: string;
|
|
75525
|
+
} | undefined;
|
|
75526
|
+
rules: readonly ValidationRule[];
|
|
75527
|
+
completeIcon: string;
|
|
75528
|
+
editable: boolean;
|
|
75529
|
+
editIcon: string;
|
|
75530
|
+
errorIcon: string;
|
|
75531
|
+
} & {
|
|
75532
|
+
color?: string | undefined;
|
|
75533
|
+
value?: any;
|
|
75534
|
+
title?: string | undefined;
|
|
75535
|
+
icon?: string | undefined;
|
|
75536
|
+
selectedClass?: string | undefined;
|
|
75537
|
+
subtitle?: string | undefined;
|
|
75538
|
+
} & {
|
|
75539
|
+
$children?: vue.VNodeChild | ((arg: StepperItemSlot) => vue.VNodeChild) | {
|
|
75540
|
+
default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75541
|
+
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75542
|
+
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75543
|
+
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75544
|
+
};
|
|
75545
|
+
'v-slots'?: {
|
|
75546
|
+
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75547
|
+
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75548
|
+
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75549
|
+
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75550
|
+
} | undefined;
|
|
75551
|
+
} & {
|
|
75552
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75553
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75554
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75555
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75556
|
+
} & {
|
|
75557
|
+
"onGroup:selected"?: ((val: {
|
|
75558
|
+
value: boolean;
|
|
75559
|
+
}) => any) | undefined;
|
|
75560
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
75561
|
+
'group:selected': (val: {
|
|
75562
|
+
value: boolean;
|
|
75563
|
+
}) => boolean;
|
|
75564
|
+
}, string, {
|
|
75565
|
+
error: boolean;
|
|
75566
|
+
complete: boolean;
|
|
75567
|
+
disabled: boolean;
|
|
75568
|
+
ripple: boolean | {
|
|
75569
|
+
class: string;
|
|
75570
|
+
} | undefined;
|
|
75571
|
+
rules: readonly ValidationRule[];
|
|
75572
|
+
completeIcon: string;
|
|
75573
|
+
editable: boolean;
|
|
75574
|
+
editIcon: string;
|
|
75575
|
+
errorIcon: string;
|
|
75576
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
75577
|
+
default: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75578
|
+
[key: string]: any;
|
|
75579
|
+
}>[];
|
|
75580
|
+
icon: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75581
|
+
[key: string]: any;
|
|
75582
|
+
}>[];
|
|
75583
|
+
title: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75584
|
+
[key: string]: any;
|
|
75585
|
+
}>[];
|
|
75586
|
+
subtitle: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75587
|
+
[key: string]: any;
|
|
75588
|
+
}>[];
|
|
75589
|
+
}>>> & {
|
|
75590
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
75591
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
75592
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
75593
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
75594
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
75595
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
75596
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
75597
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
75598
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
75599
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
75600
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
75601
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
75602
|
+
renderTracked?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
75603
|
+
renderTriggered?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
75604
|
+
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
75605
|
+
};
|
|
75606
|
+
$forceUpdate: () => void;
|
|
75607
|
+
$nextTick: typeof vue.nextTick;
|
|
75608
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
75609
|
+
} & {
|
|
75610
|
+
error: boolean;
|
|
75611
|
+
complete: boolean;
|
|
75612
|
+
disabled: boolean;
|
|
75613
|
+
ripple: boolean | {
|
|
75614
|
+
class: string;
|
|
75615
|
+
} | undefined;
|
|
75616
|
+
rules: readonly ValidationRule[];
|
|
75617
|
+
completeIcon: string;
|
|
75618
|
+
editable: boolean;
|
|
75619
|
+
editIcon: string;
|
|
75620
|
+
errorIcon: string;
|
|
75621
|
+
} & {
|
|
75622
|
+
color?: string | undefined;
|
|
75623
|
+
value?: any;
|
|
75624
|
+
title?: string | undefined;
|
|
75625
|
+
icon?: string | undefined;
|
|
75626
|
+
selectedClass?: string | undefined;
|
|
75627
|
+
subtitle?: string | undefined;
|
|
75628
|
+
} & {
|
|
75629
|
+
$children?: vue.VNodeChild | ((arg: StepperItemSlot) => vue.VNodeChild) | {
|
|
75630
|
+
default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75631
|
+
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75632
|
+
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75633
|
+
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75634
|
+
};
|
|
75635
|
+
'v-slots'?: {
|
|
75636
|
+
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75637
|
+
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75638
|
+
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75639
|
+
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75640
|
+
} | undefined;
|
|
75641
|
+
} & {
|
|
75642
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75643
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75644
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75645
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75646
|
+
} & {
|
|
75647
|
+
"onGroup:selected"?: ((val: {
|
|
75648
|
+
value: boolean;
|
|
75649
|
+
}) => any) | undefined;
|
|
75650
|
+
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
|
|
75651
|
+
__isFragment?: undefined;
|
|
75652
|
+
__isTeleport?: undefined;
|
|
75653
|
+
__isSuspense?: undefined;
|
|
75654
|
+
} & vue.ComponentOptionsBase<{
|
|
75655
|
+
error: boolean;
|
|
75656
|
+
complete: boolean;
|
|
75657
|
+
disabled: boolean;
|
|
75658
|
+
ripple: boolean | {
|
|
75659
|
+
class: string;
|
|
75660
|
+
} | undefined;
|
|
75661
|
+
rules: readonly ValidationRule[];
|
|
75662
|
+
completeIcon: string;
|
|
75663
|
+
editable: boolean;
|
|
75664
|
+
editIcon: string;
|
|
75665
|
+
errorIcon: string;
|
|
75666
|
+
} & {
|
|
75667
|
+
color?: string | undefined;
|
|
75668
|
+
value?: any;
|
|
75669
|
+
title?: string | undefined;
|
|
75670
|
+
icon?: string | undefined;
|
|
75671
|
+
selectedClass?: string | undefined;
|
|
75672
|
+
subtitle?: string | undefined;
|
|
75673
|
+
} & {
|
|
75674
|
+
$children?: vue.VNodeChild | ((arg: StepperItemSlot) => vue.VNodeChild) | {
|
|
75675
|
+
default?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75676
|
+
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75677
|
+
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75678
|
+
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75679
|
+
};
|
|
75680
|
+
'v-slots'?: {
|
|
75681
|
+
default?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75682
|
+
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75683
|
+
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75684
|
+
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75685
|
+
} | undefined;
|
|
75686
|
+
} & {
|
|
75687
|
+
"v-slot:default"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75688
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75689
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75690
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75691
|
+
} & {
|
|
75692
|
+
"onGroup:selected"?: ((val: {
|
|
75693
|
+
value: boolean;
|
|
75694
|
+
}) => any) | undefined;
|
|
75695
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
75696
|
+
'group:selected': (val: {
|
|
75697
|
+
value: boolean;
|
|
75698
|
+
}) => boolean;
|
|
75699
|
+
}, string, {
|
|
75700
|
+
error: boolean;
|
|
75701
|
+
complete: boolean;
|
|
75702
|
+
disabled: boolean;
|
|
75703
|
+
ripple: boolean | {
|
|
75704
|
+
class: string;
|
|
75705
|
+
} | undefined;
|
|
75706
|
+
rules: readonly ValidationRule[];
|
|
75707
|
+
completeIcon: string;
|
|
75708
|
+
editable: boolean;
|
|
75709
|
+
editIcon: string;
|
|
75710
|
+
errorIcon: string;
|
|
75711
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
75712
|
+
default: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75713
|
+
[key: string]: any;
|
|
75714
|
+
}>[];
|
|
75715
|
+
icon: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75716
|
+
[key: string]: any;
|
|
75717
|
+
}>[];
|
|
75718
|
+
title: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75719
|
+
[key: string]: any;
|
|
75720
|
+
}>[];
|
|
75721
|
+
subtitle: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75722
|
+
[key: string]: any;
|
|
75723
|
+
}>[];
|
|
75724
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
75725
|
+
value: null;
|
|
75726
|
+
disabled: BooleanConstructor;
|
|
75727
|
+
selectedClass: StringConstructor;
|
|
75728
|
+
color: StringConstructor;
|
|
75729
|
+
title: StringConstructor;
|
|
75730
|
+
subtitle: StringConstructor;
|
|
75731
|
+
complete: BooleanConstructor;
|
|
75732
|
+
completeIcon: {
|
|
75733
|
+
type: StringConstructor;
|
|
75734
|
+
default: string;
|
|
75735
|
+
};
|
|
75736
|
+
editable: BooleanConstructor;
|
|
75737
|
+
editIcon: {
|
|
75738
|
+
type: StringConstructor;
|
|
75739
|
+
default: string;
|
|
75740
|
+
};
|
|
75741
|
+
error: BooleanConstructor;
|
|
75742
|
+
errorIcon: {
|
|
75743
|
+
type: StringConstructor;
|
|
75744
|
+
default: string;
|
|
75745
|
+
};
|
|
75746
|
+
icon: StringConstructor;
|
|
75747
|
+
ripple: {
|
|
75748
|
+
type: PropType<boolean | {
|
|
75749
|
+
class: string;
|
|
75750
|
+
} | undefined>;
|
|
75751
|
+
default: boolean;
|
|
75752
|
+
};
|
|
75753
|
+
rules: {
|
|
75754
|
+
type: PropType<readonly ValidationRule[]>;
|
|
75755
|
+
default: () => never[];
|
|
75756
|
+
};
|
|
75757
|
+
}, vue.ExtractPropTypes<{
|
|
75758
|
+
value: null;
|
|
75759
|
+
disabled: BooleanConstructor;
|
|
75760
|
+
selectedClass: StringConstructor;
|
|
75761
|
+
color: StringConstructor;
|
|
75762
|
+
title: StringConstructor;
|
|
75763
|
+
subtitle: StringConstructor;
|
|
75764
|
+
complete: BooleanConstructor;
|
|
75765
|
+
completeIcon: {
|
|
75766
|
+
type: StringConstructor;
|
|
75767
|
+
default: string;
|
|
75768
|
+
};
|
|
75769
|
+
editable: BooleanConstructor;
|
|
75770
|
+
editIcon: {
|
|
75771
|
+
type: StringConstructor;
|
|
75772
|
+
default: string;
|
|
75773
|
+
};
|
|
75774
|
+
error: BooleanConstructor;
|
|
75775
|
+
errorIcon: {
|
|
75776
|
+
type: StringConstructor;
|
|
75777
|
+
default: string;
|
|
75778
|
+
};
|
|
75779
|
+
icon: StringConstructor;
|
|
75780
|
+
ripple: {
|
|
75781
|
+
type: PropType<boolean | {
|
|
75782
|
+
class: string;
|
|
75783
|
+
} | undefined>;
|
|
75784
|
+
default: boolean;
|
|
75785
|
+
};
|
|
75786
|
+
rules: {
|
|
75787
|
+
type: PropType<readonly ValidationRule[]>;
|
|
75788
|
+
default: () => never[];
|
|
75789
|
+
};
|
|
75790
|
+
}>>;
|
|
75791
|
+
|
|
75792
|
+
type StepperItem = string | Record<string, any>;
|
|
75793
|
+
type VStepperSlot = {
|
|
75794
|
+
prev: () => void;
|
|
75795
|
+
next: () => void;
|
|
75796
|
+
};
|
|
75797
|
+
declare const VStepper: {
|
|
75798
|
+
new (...args: any[]): {
|
|
75799
|
+
$: vue.ComponentInternalInstance;
|
|
75800
|
+
$data: {};
|
|
75801
|
+
$props: {
|
|
75802
|
+
[x: `v-slot:item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75803
|
+
[x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75804
|
+
flat?: boolean | undefined;
|
|
75805
|
+
style?: vue.StyleValue | undefined;
|
|
75806
|
+
disabled?: boolean | "next" | "prev" | undefined;
|
|
75807
|
+
multiple?: boolean | undefined;
|
|
75808
|
+
tag?: string | undefined;
|
|
75809
|
+
mandatory?: NonNullable<boolean | "force"> | undefined;
|
|
75810
|
+
items?: readonly StepperItem[] | undefined;
|
|
75811
|
+
rounded?: string | number | boolean | undefined;
|
|
75812
|
+
modelValue?: any;
|
|
75813
|
+
selectedClass?: string | undefined;
|
|
75814
|
+
itemTitle?: string | undefined;
|
|
75815
|
+
itemValue?: string | undefined;
|
|
75816
|
+
mobile?: boolean | undefined;
|
|
75817
|
+
hideActions?: boolean | undefined;
|
|
75818
|
+
prevText?: string | undefined;
|
|
75819
|
+
nextText?: string | undefined;
|
|
75820
|
+
editable?: boolean | undefined;
|
|
75821
|
+
altLabels?: boolean | undefined;
|
|
75822
|
+
nonLinear?: boolean | undefined;
|
|
75823
|
+
max?: number | undefined;
|
|
75824
|
+
key?: string | number | symbol | undefined;
|
|
75825
|
+
location?: Anchor | undefined;
|
|
75826
|
+
height?: string | number | undefined;
|
|
75827
|
+
width?: string | number | undefined;
|
|
75828
|
+
border?: string | number | boolean | undefined;
|
|
75829
|
+
color?: string | undefined;
|
|
75830
|
+
maxHeight?: string | number | undefined;
|
|
75831
|
+
maxWidth?: string | number | undefined;
|
|
75832
|
+
minHeight?: string | number | undefined;
|
|
75833
|
+
minWidth?: string | number | undefined;
|
|
75834
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
75835
|
+
class?: any;
|
|
75836
|
+
$children?: vue.VNodeChild | ((arg: StepperItem) => vue.VNodeChild) | {
|
|
75837
|
+
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75838
|
+
[x: `item.${string}`]: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75839
|
+
actions?: ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
|
|
75840
|
+
default?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75841
|
+
header?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75842
|
+
'header-item'?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75843
|
+
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75844
|
+
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75845
|
+
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75846
|
+
item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75847
|
+
};
|
|
75848
|
+
elevation?: string | number | undefined;
|
|
75849
|
+
ref?: vue.VNodeRef | undefined;
|
|
75850
|
+
ref_for?: boolean | undefined;
|
|
75851
|
+
ref_key?: string | undefined;
|
|
75852
|
+
theme?: string | undefined;
|
|
75853
|
+
"v-slot:default"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75854
|
+
'v-slots'?: {
|
|
75855
|
+
[x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75856
|
+
[x: `item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75857
|
+
actions?: false | ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
|
|
75858
|
+
default?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75859
|
+
header?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75860
|
+
'header-item'?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75861
|
+
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75862
|
+
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75863
|
+
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75864
|
+
item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75865
|
+
} | undefined;
|
|
75866
|
+
onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75867
|
+
[key: string]: any;
|
|
75868
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75869
|
+
[key: string]: any;
|
|
75870
|
+
}>) => void)[] | undefined;
|
|
75871
|
+
onVnodeMounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75872
|
+
[key: string]: any;
|
|
75873
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75874
|
+
[key: string]: any;
|
|
75875
|
+
}>) => void)[] | undefined;
|
|
75876
|
+
onVnodeBeforeUpdate?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75877
|
+
[key: string]: any;
|
|
75878
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75879
|
+
[key: string]: any;
|
|
75880
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75881
|
+
[key: string]: any;
|
|
75882
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75883
|
+
[key: string]: any;
|
|
75884
|
+
}>) => void)[] | undefined;
|
|
75885
|
+
onVnodeUpdated?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75886
|
+
[key: string]: any;
|
|
75887
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75888
|
+
[key: string]: any;
|
|
75889
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75890
|
+
[key: string]: any;
|
|
75891
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75892
|
+
[key: string]: any;
|
|
75893
|
+
}>) => void)[] | undefined;
|
|
75894
|
+
onVnodeBeforeUnmount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75895
|
+
[key: string]: any;
|
|
75896
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75897
|
+
[key: string]: any;
|
|
75898
|
+
}>) => void)[] | undefined;
|
|
75899
|
+
onVnodeUnmounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75900
|
+
[key: string]: any;
|
|
75901
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75902
|
+
[key: string]: any;
|
|
75903
|
+
}>) => void)[] | undefined;
|
|
75904
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75905
|
+
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
75906
|
+
bgColor?: string | undefined;
|
|
75907
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75908
|
+
"v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75909
|
+
"v-slot:header"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75910
|
+
"v-slot:actions"?: false | ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
|
|
75911
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75912
|
+
"v-slot:header-item"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75913
|
+
};
|
|
75914
|
+
$attrs: {
|
|
75915
|
+
[x: string]: unknown;
|
|
75916
|
+
};
|
|
75917
|
+
$refs: {
|
|
75918
|
+
[x: string]: unknown;
|
|
75919
|
+
};
|
|
75920
|
+
$slots: Readonly<{
|
|
75921
|
+
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75922
|
+
[key: string]: any;
|
|
75923
|
+
}>[]) | undefined;
|
|
75924
|
+
[x: `item.${string}`]: ((arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75925
|
+
[key: string]: any;
|
|
75926
|
+
}>[]) | undefined;
|
|
75927
|
+
actions?: ((arg: VStepperSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75928
|
+
[key: string]: any;
|
|
75929
|
+
}>[]) | undefined;
|
|
75930
|
+
default?: ((arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75931
|
+
[key: string]: any;
|
|
75932
|
+
}>[]) | undefined;
|
|
75933
|
+
header?: ((arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75934
|
+
[key: string]: any;
|
|
75935
|
+
}>[]) | undefined;
|
|
75936
|
+
'header-item'?: ((arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75937
|
+
[key: string]: any;
|
|
75938
|
+
}>[]) | undefined;
|
|
75939
|
+
icon?: ((arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75940
|
+
[key: string]: any;
|
|
75941
|
+
}>[]) | undefined;
|
|
75942
|
+
title?: ((arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75943
|
+
[key: string]: any;
|
|
75944
|
+
}>[]) | undefined;
|
|
75945
|
+
subtitle?: ((arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75946
|
+
[key: string]: any;
|
|
75947
|
+
}>[]) | undefined;
|
|
75948
|
+
item?: ((arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
75949
|
+
[key: string]: any;
|
|
75950
|
+
}>[]) | undefined;
|
|
75951
|
+
}>;
|
|
75952
|
+
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
75953
|
+
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
75954
|
+
$emit: (event: "update:modelValue", v: unknown) => void;
|
|
75955
|
+
$el: any;
|
|
75956
|
+
$options: vue.ComponentOptionsBase<{
|
|
75957
|
+
flat: boolean;
|
|
75958
|
+
style: vue.StyleValue;
|
|
75959
|
+
disabled: boolean | "next" | "prev";
|
|
75960
|
+
multiple: boolean;
|
|
75961
|
+
tag: string;
|
|
75962
|
+
mandatory: NonNullable<boolean | "force">;
|
|
75963
|
+
items: readonly StepperItem[];
|
|
75964
|
+
selectedClass: string;
|
|
75965
|
+
itemTitle: string;
|
|
75966
|
+
itemValue: string;
|
|
75967
|
+
mobile: boolean;
|
|
75968
|
+
hideActions: boolean;
|
|
75969
|
+
prevText: string;
|
|
75970
|
+
nextText: string;
|
|
75971
|
+
editable: boolean;
|
|
75972
|
+
altLabels: boolean;
|
|
75973
|
+
nonLinear: boolean;
|
|
75974
|
+
} & {
|
|
75975
|
+
max?: number | undefined;
|
|
75976
|
+
location?: Anchor | undefined;
|
|
75977
|
+
height?: string | number | undefined;
|
|
75978
|
+
width?: string | number | undefined;
|
|
75979
|
+
border?: string | number | boolean | undefined;
|
|
75980
|
+
color?: string | undefined;
|
|
75981
|
+
maxHeight?: string | number | undefined;
|
|
75982
|
+
maxWidth?: string | number | undefined;
|
|
75983
|
+
minHeight?: string | number | undefined;
|
|
75984
|
+
minWidth?: string | number | undefined;
|
|
75985
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
75986
|
+
class?: any;
|
|
75987
|
+
elevation?: string | number | undefined;
|
|
75988
|
+
theme?: string | undefined;
|
|
75989
|
+
rounded?: string | number | boolean | undefined;
|
|
75990
|
+
modelValue?: any;
|
|
75991
|
+
bgColor?: string | undefined;
|
|
75992
|
+
} & {
|
|
75993
|
+
$children?: vue.VNodeChild | ((arg: StepperItem) => vue.VNodeChild) | {
|
|
75994
|
+
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
75995
|
+
[x: `item.${string}`]: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75996
|
+
actions?: ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
|
|
75997
|
+
default?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75998
|
+
header?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
75999
|
+
'header-item'?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76000
|
+
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76001
|
+
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76002
|
+
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76003
|
+
item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76004
|
+
};
|
|
76005
|
+
'v-slots'?: {
|
|
76006
|
+
[x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76007
|
+
[x: `item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76008
|
+
actions?: false | ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
|
|
76009
|
+
default?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76010
|
+
header?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76011
|
+
'header-item'?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76012
|
+
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76013
|
+
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76014
|
+
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76015
|
+
item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76016
|
+
} | undefined;
|
|
76017
|
+
} & {
|
|
76018
|
+
[x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76019
|
+
[x: `v-slot:item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76020
|
+
"v-slot:actions"?: false | ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
|
|
76021
|
+
"v-slot:default"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76022
|
+
"v-slot:header"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76023
|
+
"v-slot:header-item"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76024
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76025
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76026
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76027
|
+
"v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76028
|
+
} & {
|
|
76029
|
+
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
76030
|
+
}, {
|
|
76031
|
+
prev: () => void;
|
|
76032
|
+
next: () => void;
|
|
76033
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
76034
|
+
'update:modelValue': (v: unknown) => boolean;
|
|
76035
|
+
}, string, {
|
|
76036
|
+
flat: boolean;
|
|
76037
|
+
style: vue.StyleValue;
|
|
76038
|
+
disabled: boolean | "next" | "prev";
|
|
76039
|
+
multiple: boolean;
|
|
76040
|
+
tag: string;
|
|
76041
|
+
mandatory: NonNullable<boolean | "force">;
|
|
76042
|
+
items: readonly StepperItem[];
|
|
76043
|
+
rounded: string | number | boolean;
|
|
76044
|
+
modelValue: any;
|
|
76045
|
+
selectedClass: string;
|
|
76046
|
+
itemTitle: string;
|
|
76047
|
+
itemValue: string;
|
|
76048
|
+
mobile: boolean;
|
|
76049
|
+
hideActions: boolean;
|
|
76050
|
+
prevText: string;
|
|
76051
|
+
nextText: string;
|
|
76052
|
+
editable: boolean;
|
|
76053
|
+
altLabels: boolean;
|
|
76054
|
+
nonLinear: boolean;
|
|
76055
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
76056
|
+
[x: `header-item.${string}`]: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76057
|
+
[key: string]: any;
|
|
76058
|
+
}>[];
|
|
76059
|
+
[x: `item.${string}`]: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76060
|
+
[key: string]: any;
|
|
76061
|
+
}>[];
|
|
76062
|
+
actions: (arg: VStepperSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76063
|
+
[key: string]: any;
|
|
76064
|
+
}>[];
|
|
76065
|
+
default: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76066
|
+
[key: string]: any;
|
|
76067
|
+
}>[];
|
|
76068
|
+
header: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76069
|
+
[key: string]: any;
|
|
76070
|
+
}>[];
|
|
76071
|
+
'header-item': (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76072
|
+
[key: string]: any;
|
|
76073
|
+
}>[];
|
|
76074
|
+
icon: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76075
|
+
[key: string]: any;
|
|
76076
|
+
}>[];
|
|
76077
|
+
title: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76078
|
+
[key: string]: any;
|
|
76079
|
+
}>[];
|
|
76080
|
+
subtitle: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76081
|
+
[key: string]: any;
|
|
76082
|
+
}>[];
|
|
76083
|
+
item: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76084
|
+
[key: string]: any;
|
|
76085
|
+
}>[];
|
|
76086
|
+
}>>> & {
|
|
76087
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
76088
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
76089
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
76090
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
76091
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
76092
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
76093
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
76094
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
76095
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
76096
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
76097
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
76098
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
76099
|
+
renderTracked?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
76100
|
+
renderTriggered?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
76101
|
+
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
76102
|
+
};
|
|
76103
|
+
$forceUpdate: () => void;
|
|
76104
|
+
$nextTick: typeof vue.nextTick;
|
|
76105
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
76106
|
+
} & {
|
|
76107
|
+
flat: boolean;
|
|
76108
|
+
style: vue.StyleValue;
|
|
76109
|
+
disabled: boolean | "next" | "prev";
|
|
76110
|
+
multiple: boolean;
|
|
76111
|
+
tag: string;
|
|
76112
|
+
mandatory: NonNullable<boolean | "force">;
|
|
76113
|
+
items: readonly StepperItem[];
|
|
76114
|
+
selectedClass: string;
|
|
76115
|
+
itemTitle: string;
|
|
76116
|
+
itemValue: string;
|
|
76117
|
+
mobile: boolean;
|
|
76118
|
+
hideActions: boolean;
|
|
76119
|
+
prevText: string;
|
|
76120
|
+
nextText: string;
|
|
76121
|
+
editable: boolean;
|
|
76122
|
+
altLabels: boolean;
|
|
76123
|
+
nonLinear: boolean;
|
|
76124
|
+
} & {
|
|
76125
|
+
max?: number | undefined;
|
|
76126
|
+
location?: Anchor | undefined;
|
|
76127
|
+
height?: string | number | undefined;
|
|
76128
|
+
width?: string | number | undefined;
|
|
76129
|
+
border?: string | number | boolean | undefined;
|
|
76130
|
+
color?: string | undefined;
|
|
76131
|
+
maxHeight?: string | number | undefined;
|
|
76132
|
+
maxWidth?: string | number | undefined;
|
|
76133
|
+
minHeight?: string | number | undefined;
|
|
76134
|
+
minWidth?: string | number | undefined;
|
|
76135
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
76136
|
+
class?: any;
|
|
76137
|
+
elevation?: string | number | undefined;
|
|
76138
|
+
theme?: string | undefined;
|
|
76139
|
+
rounded?: string | number | boolean | undefined;
|
|
76140
|
+
modelValue?: any;
|
|
76141
|
+
bgColor?: string | undefined;
|
|
76142
|
+
} & {
|
|
76143
|
+
$children?: vue.VNodeChild | ((arg: StepperItem) => vue.VNodeChild) | {
|
|
76144
|
+
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76145
|
+
[x: `item.${string}`]: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76146
|
+
actions?: ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
|
|
76147
|
+
default?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76148
|
+
header?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76149
|
+
'header-item'?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76150
|
+
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76151
|
+
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76152
|
+
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76153
|
+
item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76154
|
+
};
|
|
76155
|
+
'v-slots'?: {
|
|
76156
|
+
[x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76157
|
+
[x: `item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76158
|
+
actions?: false | ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
|
|
76159
|
+
default?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76160
|
+
header?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76161
|
+
'header-item'?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76162
|
+
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76163
|
+
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76164
|
+
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76165
|
+
item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76166
|
+
} | undefined;
|
|
76167
|
+
} & {
|
|
76168
|
+
[x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76169
|
+
[x: `v-slot:item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76170
|
+
"v-slot:actions"?: false | ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
|
|
76171
|
+
"v-slot:default"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76172
|
+
"v-slot:header"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76173
|
+
"v-slot:header-item"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76174
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76175
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76176
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76177
|
+
"v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76178
|
+
} & {
|
|
76179
|
+
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
76180
|
+
} & vue.ShallowUnwrapRef<{
|
|
76181
|
+
prev: () => void;
|
|
76182
|
+
next: () => void;
|
|
76183
|
+
}> & {} & vue.ComponentCustomProperties & {};
|
|
76184
|
+
__isFragment?: undefined;
|
|
76185
|
+
__isTeleport?: undefined;
|
|
76186
|
+
__isSuspense?: undefined;
|
|
76187
|
+
} & vue.ComponentOptionsBase<{
|
|
76188
|
+
flat: boolean;
|
|
76189
|
+
style: vue.StyleValue;
|
|
76190
|
+
disabled: boolean | "next" | "prev";
|
|
76191
|
+
multiple: boolean;
|
|
76192
|
+
tag: string;
|
|
76193
|
+
mandatory: NonNullable<boolean | "force">;
|
|
76194
|
+
items: readonly StepperItem[];
|
|
76195
|
+
selectedClass: string;
|
|
76196
|
+
itemTitle: string;
|
|
76197
|
+
itemValue: string;
|
|
76198
|
+
mobile: boolean;
|
|
76199
|
+
hideActions: boolean;
|
|
76200
|
+
prevText: string;
|
|
76201
|
+
nextText: string;
|
|
76202
|
+
editable: boolean;
|
|
76203
|
+
altLabels: boolean;
|
|
76204
|
+
nonLinear: boolean;
|
|
76205
|
+
} & {
|
|
76206
|
+
max?: number | undefined;
|
|
76207
|
+
location?: Anchor | undefined;
|
|
76208
|
+
height?: string | number | undefined;
|
|
76209
|
+
width?: string | number | undefined;
|
|
76210
|
+
border?: string | number | boolean | undefined;
|
|
76211
|
+
color?: string | undefined;
|
|
76212
|
+
maxHeight?: string | number | undefined;
|
|
76213
|
+
maxWidth?: string | number | undefined;
|
|
76214
|
+
minHeight?: string | number | undefined;
|
|
76215
|
+
minWidth?: string | number | undefined;
|
|
76216
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
76217
|
+
class?: any;
|
|
76218
|
+
elevation?: string | number | undefined;
|
|
76219
|
+
theme?: string | undefined;
|
|
76220
|
+
rounded?: string | number | boolean | undefined;
|
|
76221
|
+
modelValue?: any;
|
|
76222
|
+
bgColor?: string | undefined;
|
|
76223
|
+
} & {
|
|
76224
|
+
$children?: vue.VNodeChild | ((arg: StepperItem) => vue.VNodeChild) | {
|
|
76225
|
+
[x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76226
|
+
[x: `item.${string}`]: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76227
|
+
actions?: ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
|
|
76228
|
+
default?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76229
|
+
header?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76230
|
+
'header-item'?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76231
|
+
icon?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76232
|
+
title?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76233
|
+
subtitle?: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76234
|
+
item?: ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76235
|
+
};
|
|
76236
|
+
'v-slots'?: {
|
|
76237
|
+
[x: `header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76238
|
+
[x: `item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76239
|
+
actions?: false | ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
|
|
76240
|
+
default?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76241
|
+
header?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76242
|
+
'header-item'?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76243
|
+
icon?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76244
|
+
title?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76245
|
+
subtitle?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76246
|
+
item?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76247
|
+
} | undefined;
|
|
76248
|
+
} & {
|
|
76249
|
+
[x: `v-slot:header-item.${string}`]: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76250
|
+
[x: `v-slot:item.${string}`]: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76251
|
+
"v-slot:actions"?: false | ((arg: VStepperSlot) => vue.VNodeChild) | undefined;
|
|
76252
|
+
"v-slot:default"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76253
|
+
"v-slot:header"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76254
|
+
"v-slot:header-item"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76255
|
+
"v-slot:icon"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76256
|
+
"v-slot:title"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76257
|
+
"v-slot:subtitle"?: false | ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
|
|
76258
|
+
"v-slot:item"?: false | ((arg: StepperItem) => vue.VNodeChild) | undefined;
|
|
76259
|
+
} & {
|
|
76260
|
+
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
76261
|
+
}, {
|
|
76262
|
+
prev: () => void;
|
|
76263
|
+
next: () => void;
|
|
76264
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
76265
|
+
'update:modelValue': (v: unknown) => boolean;
|
|
76266
|
+
}, string, {
|
|
76267
|
+
flat: boolean;
|
|
76268
|
+
style: vue.StyleValue;
|
|
76269
|
+
disabled: boolean | "next" | "prev";
|
|
76270
|
+
multiple: boolean;
|
|
76271
|
+
tag: string;
|
|
76272
|
+
mandatory: NonNullable<boolean | "force">;
|
|
76273
|
+
items: readonly StepperItem[];
|
|
76274
|
+
rounded: string | number | boolean;
|
|
76275
|
+
modelValue: any;
|
|
76276
|
+
selectedClass: string;
|
|
76277
|
+
itemTitle: string;
|
|
76278
|
+
itemValue: string;
|
|
76279
|
+
mobile: boolean;
|
|
76280
|
+
hideActions: boolean;
|
|
76281
|
+
prevText: string;
|
|
76282
|
+
nextText: string;
|
|
76283
|
+
editable: boolean;
|
|
76284
|
+
altLabels: boolean;
|
|
76285
|
+
nonLinear: boolean;
|
|
76286
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
76287
|
+
[x: `header-item.${string}`]: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76288
|
+
[key: string]: any;
|
|
76289
|
+
}>[];
|
|
76290
|
+
[x: `item.${string}`]: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76291
|
+
[key: string]: any;
|
|
76292
|
+
}>[];
|
|
76293
|
+
actions: (arg: VStepperSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76294
|
+
[key: string]: any;
|
|
76295
|
+
}>[];
|
|
76296
|
+
default: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76297
|
+
[key: string]: any;
|
|
76298
|
+
}>[];
|
|
76299
|
+
header: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76300
|
+
[key: string]: any;
|
|
76301
|
+
}>[];
|
|
76302
|
+
'header-item': (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76303
|
+
[key: string]: any;
|
|
76304
|
+
}>[];
|
|
76305
|
+
icon: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76306
|
+
[key: string]: any;
|
|
76307
|
+
}>[];
|
|
76308
|
+
title: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76309
|
+
[key: string]: any;
|
|
76310
|
+
}>[];
|
|
76311
|
+
subtitle: (arg: StepperItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76312
|
+
[key: string]: any;
|
|
76313
|
+
}>[];
|
|
76314
|
+
item: (arg: StepperItem) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76315
|
+
[key: string]: any;
|
|
76316
|
+
}>[];
|
|
76317
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
76318
|
+
color: StringConstructor;
|
|
76319
|
+
disabled: {
|
|
76320
|
+
type: PropType<boolean | "next" | "prev">;
|
|
76321
|
+
default: boolean;
|
|
76322
|
+
};
|
|
76323
|
+
prevText: {
|
|
76324
|
+
type: StringConstructor;
|
|
76325
|
+
default: string;
|
|
76326
|
+
};
|
|
76327
|
+
nextText: {
|
|
76328
|
+
type: StringConstructor;
|
|
76329
|
+
default: string;
|
|
76330
|
+
};
|
|
76331
|
+
location: PropType<Anchor>;
|
|
76332
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
76333
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
76334
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
76335
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
76336
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
76337
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
76338
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
76339
|
+
position: {
|
|
76340
|
+
type: PropType<"fixed" | "absolute" | "static" | "relative" | "sticky">;
|
|
76341
|
+
validator: (v: any) => boolean;
|
|
76342
|
+
};
|
|
76343
|
+
style: {
|
|
76344
|
+
type: PropType<vue.StyleValue>;
|
|
76345
|
+
default: null;
|
|
76346
|
+
};
|
|
76347
|
+
class: PropType<any>;
|
|
76348
|
+
tag: {
|
|
76349
|
+
type: StringConstructor;
|
|
76350
|
+
default: string;
|
|
76351
|
+
};
|
|
76352
|
+
elevation: {
|
|
76353
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
76354
|
+
validator(v: any): boolean;
|
|
76355
|
+
};
|
|
76356
|
+
theme: StringConstructor;
|
|
76357
|
+
rounded: {
|
|
76358
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
76359
|
+
default: undefined;
|
|
76360
|
+
};
|
|
76361
|
+
modelValue: {
|
|
76362
|
+
type: null;
|
|
76363
|
+
default: undefined;
|
|
76364
|
+
};
|
|
76365
|
+
multiple: BooleanConstructor;
|
|
76366
|
+
mandatory: {
|
|
76367
|
+
type: PropType<NonNullable<boolean | "force">>;
|
|
76368
|
+
default: NonNullable<boolean | "force">;
|
|
76369
|
+
};
|
|
76370
|
+
max: NumberConstructor;
|
|
76371
|
+
selectedClass: {
|
|
76372
|
+
type: PropType<string>;
|
|
76373
|
+
default: string;
|
|
76374
|
+
};
|
|
76375
|
+
altLabels: BooleanConstructor;
|
|
76376
|
+
bgColor: StringConstructor;
|
|
76377
|
+
editable: BooleanConstructor;
|
|
76378
|
+
hideActions: BooleanConstructor;
|
|
76379
|
+
items: {
|
|
76380
|
+
type: PropType<readonly StepperItem[]>;
|
|
76381
|
+
default: () => never[];
|
|
76382
|
+
};
|
|
76383
|
+
itemTitle: {
|
|
76384
|
+
type: StringConstructor;
|
|
76385
|
+
default: string;
|
|
76386
|
+
};
|
|
76387
|
+
itemValue: {
|
|
76388
|
+
type: StringConstructor;
|
|
76389
|
+
default: string;
|
|
76390
|
+
};
|
|
76391
|
+
mobile: BooleanConstructor;
|
|
76392
|
+
nonLinear: BooleanConstructor;
|
|
76393
|
+
flat: BooleanConstructor;
|
|
76394
|
+
}, vue.ExtractPropTypes<{
|
|
76395
|
+
color: StringConstructor;
|
|
76396
|
+
disabled: {
|
|
76397
|
+
type: PropType<boolean | "next" | "prev">;
|
|
76398
|
+
default: boolean;
|
|
76399
|
+
};
|
|
76400
|
+
prevText: {
|
|
76401
|
+
type: StringConstructor;
|
|
76402
|
+
default: string;
|
|
76403
|
+
};
|
|
76404
|
+
nextText: {
|
|
76405
|
+
type: StringConstructor;
|
|
76406
|
+
default: string;
|
|
76407
|
+
};
|
|
76408
|
+
location: PropType<Anchor>;
|
|
76409
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
76410
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
76411
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
76412
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
76413
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
76414
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
76415
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
76416
|
+
position: {
|
|
76417
|
+
type: PropType<"fixed" | "absolute" | "static" | "relative" | "sticky">;
|
|
76418
|
+
validator: (v: any) => boolean;
|
|
76419
|
+
};
|
|
76420
|
+
style: {
|
|
76421
|
+
type: PropType<vue.StyleValue>;
|
|
76422
|
+
default: null;
|
|
76423
|
+
};
|
|
76424
|
+
class: PropType<any>;
|
|
76425
|
+
tag: {
|
|
76426
|
+
type: StringConstructor;
|
|
76427
|
+
default: string;
|
|
76428
|
+
};
|
|
76429
|
+
elevation: {
|
|
76430
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
76431
|
+
validator(v: any): boolean;
|
|
76432
|
+
};
|
|
76433
|
+
theme: StringConstructor;
|
|
76434
|
+
rounded: {
|
|
76435
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
76436
|
+
default: undefined;
|
|
76437
|
+
};
|
|
76438
|
+
modelValue: {
|
|
76439
|
+
type: null;
|
|
76440
|
+
default: undefined;
|
|
76441
|
+
};
|
|
76442
|
+
multiple: BooleanConstructor;
|
|
76443
|
+
mandatory: {
|
|
76444
|
+
type: PropType<NonNullable<boolean | "force">>;
|
|
76445
|
+
default: NonNullable<boolean | "force">;
|
|
76446
|
+
};
|
|
76447
|
+
max: NumberConstructor;
|
|
76448
|
+
selectedClass: {
|
|
76449
|
+
type: PropType<string>;
|
|
76450
|
+
default: string;
|
|
76451
|
+
};
|
|
76452
|
+
altLabels: BooleanConstructor;
|
|
76453
|
+
bgColor: StringConstructor;
|
|
76454
|
+
editable: BooleanConstructor;
|
|
76455
|
+
hideActions: BooleanConstructor;
|
|
76456
|
+
items: {
|
|
76457
|
+
type: PropType<readonly StepperItem[]>;
|
|
76458
|
+
default: () => never[];
|
|
76459
|
+
};
|
|
76460
|
+
itemTitle: {
|
|
76461
|
+
type: StringConstructor;
|
|
76462
|
+
default: string;
|
|
76463
|
+
};
|
|
76464
|
+
itemValue: {
|
|
76465
|
+
type: StringConstructor;
|
|
76466
|
+
default: string;
|
|
76467
|
+
};
|
|
76468
|
+
mobile: BooleanConstructor;
|
|
76469
|
+
nonLinear: BooleanConstructor;
|
|
76470
|
+
flat: BooleanConstructor;
|
|
76471
|
+
}>>;
|
|
76472
|
+
|
|
76473
|
+
declare const VStepperActions: {
|
|
76474
|
+
new (...args: any[]): {
|
|
76475
|
+
$: vue.ComponentInternalInstance;
|
|
76476
|
+
$data: {};
|
|
76477
|
+
$props: {
|
|
76478
|
+
disabled?: boolean | "next" | "prev" | undefined;
|
|
76479
|
+
prevText?: string | undefined;
|
|
76480
|
+
nextText?: string | undefined;
|
|
76481
|
+
key?: string | number | symbol | undefined;
|
|
76482
|
+
color?: string | undefined;
|
|
76483
|
+
style?: unknown;
|
|
76484
|
+
class?: unknown;
|
|
76485
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
76486
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
76487
|
+
};
|
|
76488
|
+
ref?: vue.VNodeRef | undefined;
|
|
76489
|
+
ref_for?: boolean | undefined;
|
|
76490
|
+
ref_key?: string | undefined;
|
|
76491
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
76492
|
+
'v-slots'?: {
|
|
76493
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
76494
|
+
} | undefined;
|
|
76495
|
+
onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76496
|
+
[key: string]: any;
|
|
76497
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76498
|
+
[key: string]: any;
|
|
76499
|
+
}>) => void)[] | undefined;
|
|
76500
|
+
onVnodeMounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76501
|
+
[key: string]: any;
|
|
76502
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76503
|
+
[key: string]: any;
|
|
76504
|
+
}>) => void)[] | undefined;
|
|
76505
|
+
onVnodeBeforeUpdate?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76506
|
+
[key: string]: any;
|
|
76507
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76508
|
+
[key: string]: any;
|
|
76509
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76510
|
+
[key: string]: any;
|
|
76511
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76512
|
+
[key: string]: any;
|
|
76513
|
+
}>) => void)[] | undefined;
|
|
76514
|
+
onVnodeUpdated?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76515
|
+
[key: string]: any;
|
|
76516
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76517
|
+
[key: string]: any;
|
|
76518
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76519
|
+
[key: string]: any;
|
|
76520
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76521
|
+
[key: string]: any;
|
|
76522
|
+
}>) => void)[] | undefined;
|
|
76523
|
+
onVnodeBeforeUnmount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76524
|
+
[key: string]: any;
|
|
76525
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76526
|
+
[key: string]: any;
|
|
76527
|
+
}>) => void)[] | undefined;
|
|
76528
|
+
onVnodeUnmounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76529
|
+
[key: string]: any;
|
|
76530
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76531
|
+
[key: string]: any;
|
|
76532
|
+
}>) => void)[] | undefined;
|
|
76533
|
+
"onClick:prev"?: (() => any) | undefined;
|
|
76534
|
+
"onClick:next"?: (() => any) | undefined;
|
|
76535
|
+
};
|
|
76536
|
+
$attrs: {
|
|
76537
|
+
[x: string]: unknown;
|
|
76538
|
+
};
|
|
76539
|
+
$refs: {
|
|
76540
|
+
[x: string]: unknown;
|
|
76541
|
+
};
|
|
76542
|
+
$slots: Readonly<{
|
|
76543
|
+
default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76544
|
+
[key: string]: any;
|
|
76545
|
+
}>[]) | undefined;
|
|
76546
|
+
}>;
|
|
76547
|
+
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
76548
|
+
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
76549
|
+
$emit: ((event: "click:prev") => void) & ((event: "click:next") => void);
|
|
76550
|
+
$el: any;
|
|
76551
|
+
$options: vue.ComponentOptionsBase<{
|
|
76552
|
+
disabled: boolean | "next" | "prev";
|
|
76553
|
+
prevText: string;
|
|
76554
|
+
nextText: string;
|
|
76555
|
+
} & {
|
|
76556
|
+
color?: string | undefined;
|
|
76557
|
+
} & {
|
|
76558
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
76559
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
76560
|
+
};
|
|
76561
|
+
'v-slots'?: {
|
|
76562
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
76563
|
+
} | undefined;
|
|
76564
|
+
} & {
|
|
76565
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
76566
|
+
} & {
|
|
76567
|
+
"onClick:prev"?: (() => any) | undefined;
|
|
76568
|
+
"onClick:next"?: (() => any) | undefined;
|
|
76569
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
76570
|
+
'click:prev': () => true;
|
|
76571
|
+
'click:next': () => true;
|
|
76572
|
+
}, string, {
|
|
76573
|
+
disabled: boolean | "next" | "prev";
|
|
76574
|
+
prevText: string;
|
|
76575
|
+
nextText: string;
|
|
76576
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
76577
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76578
|
+
[key: string]: any;
|
|
76579
|
+
}>[];
|
|
76580
|
+
}>>> & {
|
|
76581
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
76582
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
76583
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
76584
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
76585
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
76586
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
76587
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
76588
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
76589
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
76590
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
76591
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
76592
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
76593
|
+
renderTracked?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
76594
|
+
renderTriggered?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
76595
|
+
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
76596
|
+
};
|
|
76597
|
+
$forceUpdate: () => void;
|
|
76598
|
+
$nextTick: typeof vue.nextTick;
|
|
76599
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
76600
|
+
} & {
|
|
76601
|
+
disabled: boolean | "next" | "prev";
|
|
76602
|
+
prevText: string;
|
|
76603
|
+
nextText: string;
|
|
76604
|
+
} & {
|
|
76605
|
+
color?: string | undefined;
|
|
76606
|
+
} & {
|
|
76607
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
76608
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
76609
|
+
};
|
|
76610
|
+
'v-slots'?: {
|
|
76611
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
76612
|
+
} | undefined;
|
|
76613
|
+
} & {
|
|
76614
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
76615
|
+
} & {
|
|
76616
|
+
"onClick:prev"?: (() => any) | undefined;
|
|
76617
|
+
"onClick:next"?: (() => any) | undefined;
|
|
76618
|
+
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
|
|
76619
|
+
__isFragment?: undefined;
|
|
76620
|
+
__isTeleport?: undefined;
|
|
76621
|
+
__isSuspense?: undefined;
|
|
76622
|
+
} & vue.ComponentOptionsBase<{
|
|
76623
|
+
disabled: boolean | "next" | "prev";
|
|
76624
|
+
prevText: string;
|
|
76625
|
+
nextText: string;
|
|
76626
|
+
} & {
|
|
76627
|
+
color?: string | undefined;
|
|
76628
|
+
} & {
|
|
76629
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
76630
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
76631
|
+
};
|
|
76632
|
+
'v-slots'?: {
|
|
76633
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
76634
|
+
} | undefined;
|
|
76635
|
+
} & {
|
|
76636
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
76637
|
+
} & {
|
|
76638
|
+
"onClick:prev"?: (() => any) | undefined;
|
|
76639
|
+
"onClick:next"?: (() => any) | undefined;
|
|
76640
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
76641
|
+
'click:prev': () => true;
|
|
76642
|
+
'click:next': () => true;
|
|
76643
|
+
}, string, {
|
|
76644
|
+
disabled: boolean | "next" | "prev";
|
|
76645
|
+
prevText: string;
|
|
76646
|
+
nextText: string;
|
|
76647
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
76648
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76649
|
+
[key: string]: any;
|
|
76650
|
+
}>[];
|
|
76651
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
76652
|
+
color: StringConstructor;
|
|
76653
|
+
disabled: {
|
|
76654
|
+
type: PropType<boolean | "next" | "prev">;
|
|
76655
|
+
default: boolean;
|
|
76656
|
+
};
|
|
76657
|
+
prevText: {
|
|
76658
|
+
type: StringConstructor;
|
|
76659
|
+
default: string;
|
|
76660
|
+
};
|
|
76661
|
+
nextText: {
|
|
76662
|
+
type: StringConstructor;
|
|
76663
|
+
default: string;
|
|
76664
|
+
};
|
|
76665
|
+
}, vue.ExtractPropTypes<{
|
|
76666
|
+
color: StringConstructor;
|
|
76667
|
+
disabled: {
|
|
76668
|
+
type: PropType<boolean | "next" | "prev">;
|
|
76669
|
+
default: boolean;
|
|
76670
|
+
};
|
|
76671
|
+
prevText: {
|
|
76672
|
+
type: StringConstructor;
|
|
76673
|
+
default: string;
|
|
76674
|
+
};
|
|
76675
|
+
nextText: {
|
|
76676
|
+
type: StringConstructor;
|
|
76677
|
+
default: string;
|
|
76678
|
+
};
|
|
76679
|
+
}>>;
|
|
76680
|
+
|
|
76681
|
+
declare const VStepperHeader: {
|
|
76682
|
+
new (...args: any[]): {
|
|
76683
|
+
$: vue.ComponentInternalInstance;
|
|
76684
|
+
$data: {};
|
|
76685
|
+
$props: {
|
|
76686
|
+
style?: vue.StyleValue | undefined;
|
|
76687
|
+
tag?: string | undefined;
|
|
76688
|
+
key?: string | number | symbol | undefined;
|
|
76689
|
+
class?: any;
|
|
76690
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
76691
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
76692
|
+
};
|
|
76693
|
+
ref?: vue.VNodeRef | undefined;
|
|
76694
|
+
ref_for?: boolean | undefined;
|
|
76695
|
+
ref_key?: string | undefined;
|
|
76696
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
76697
|
+
'v-slots'?: {
|
|
76698
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
76699
|
+
} | undefined;
|
|
76700
|
+
onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76701
|
+
[key: string]: any;
|
|
76702
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76703
|
+
[key: string]: any;
|
|
76704
|
+
}>) => void)[] | undefined;
|
|
76705
|
+
onVnodeMounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76706
|
+
[key: string]: any;
|
|
76707
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76708
|
+
[key: string]: any;
|
|
76709
|
+
}>) => void)[] | undefined;
|
|
76710
|
+
onVnodeBeforeUpdate?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76711
|
+
[key: string]: any;
|
|
76712
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76713
|
+
[key: string]: any;
|
|
76714
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76715
|
+
[key: string]: any;
|
|
76716
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76717
|
+
[key: string]: any;
|
|
76718
|
+
}>) => void)[] | undefined;
|
|
76719
|
+
onVnodeUpdated?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76720
|
+
[key: string]: any;
|
|
76721
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76722
|
+
[key: string]: any;
|
|
76723
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76724
|
+
[key: string]: any;
|
|
76725
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76726
|
+
[key: string]: any;
|
|
76727
|
+
}>) => void)[] | undefined;
|
|
76728
|
+
onVnodeBeforeUnmount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76729
|
+
[key: string]: any;
|
|
76730
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76731
|
+
[key: string]: any;
|
|
76732
|
+
}>) => void)[] | undefined;
|
|
76733
|
+
onVnodeUnmounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76734
|
+
[key: string]: any;
|
|
76735
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76736
|
+
[key: string]: any;
|
|
76737
|
+
}>) => void)[] | undefined;
|
|
76738
|
+
};
|
|
76739
|
+
$attrs: {
|
|
76740
|
+
[x: string]: unknown;
|
|
76741
|
+
};
|
|
76742
|
+
$refs: {
|
|
76743
|
+
[x: string]: unknown;
|
|
76744
|
+
};
|
|
76745
|
+
$slots: Readonly<{
|
|
76746
|
+
default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76747
|
+
[key: string]: any;
|
|
76748
|
+
}>[]) | undefined;
|
|
76749
|
+
}>;
|
|
76750
|
+
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
76751
|
+
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
76752
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
76753
|
+
$el: any;
|
|
76754
|
+
$options: vue.ComponentOptionsBase<{
|
|
76755
|
+
style: vue.StyleValue;
|
|
76756
|
+
tag: string;
|
|
76757
|
+
} & {
|
|
76758
|
+
class?: any;
|
|
76759
|
+
} & {
|
|
76760
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
76761
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
76762
|
+
};
|
|
76763
|
+
'v-slots'?: {
|
|
76764
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
76765
|
+
} | undefined;
|
|
76766
|
+
} & {
|
|
76767
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
76768
|
+
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76769
|
+
[key: string]: any;
|
|
76770
|
+
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
76771
|
+
style: vue.StyleValue;
|
|
76772
|
+
tag: string;
|
|
76773
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
76774
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76775
|
+
[key: string]: any;
|
|
76776
|
+
}>[];
|
|
76777
|
+
}>>> & {
|
|
76778
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
76779
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
76780
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
76781
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
76782
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
76783
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
76784
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
76785
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
76786
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
76787
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
76788
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
76789
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
76790
|
+
renderTracked?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
76791
|
+
renderTriggered?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
76792
|
+
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
76793
|
+
};
|
|
76794
|
+
$forceUpdate: () => void;
|
|
76795
|
+
$nextTick: typeof vue.nextTick;
|
|
76796
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
76797
|
+
} & {
|
|
76798
|
+
style: vue.StyleValue;
|
|
76799
|
+
tag: string;
|
|
76800
|
+
} & {
|
|
76801
|
+
class?: any;
|
|
76802
|
+
} & {
|
|
76803
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
76804
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
76805
|
+
};
|
|
76806
|
+
'v-slots'?: {
|
|
76807
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
76808
|
+
} | undefined;
|
|
76809
|
+
} & {
|
|
76810
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
76811
|
+
} & vue.ShallowUnwrapRef<() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76812
|
+
[key: string]: any;
|
|
76813
|
+
}>> & {} & vue.ComponentCustomProperties & {};
|
|
76814
|
+
__isFragment?: undefined;
|
|
76815
|
+
__isTeleport?: undefined;
|
|
76816
|
+
__isSuspense?: undefined;
|
|
76817
|
+
} & vue.ComponentOptionsBase<{
|
|
76818
|
+
style: vue.StyleValue;
|
|
76819
|
+
tag: string;
|
|
76820
|
+
} & {
|
|
76821
|
+
class?: any;
|
|
76822
|
+
} & {
|
|
76823
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
76824
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
76825
|
+
};
|
|
76826
|
+
'v-slots'?: {
|
|
76827
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
76828
|
+
} | undefined;
|
|
76829
|
+
} & {
|
|
76830
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
76831
|
+
}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76832
|
+
[key: string]: any;
|
|
76833
|
+
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
76834
|
+
style: vue.StyleValue;
|
|
76835
|
+
tag: string;
|
|
76836
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
76837
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76838
|
+
[key: string]: any;
|
|
76839
|
+
}>[];
|
|
76840
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
76841
|
+
class: vue.PropType<any>;
|
|
76842
|
+
style: {
|
|
76843
|
+
type: vue.PropType<vue.StyleValue>;
|
|
76844
|
+
default: null;
|
|
76845
|
+
};
|
|
76846
|
+
tag: {
|
|
76847
|
+
type: StringConstructor;
|
|
76848
|
+
default: string;
|
|
76849
|
+
};
|
|
76850
|
+
}, vue.ExtractPropTypes<{
|
|
76851
|
+
class: vue.PropType<any>;
|
|
76852
|
+
style: {
|
|
76853
|
+
type: vue.PropType<vue.StyleValue>;
|
|
76854
|
+
default: null;
|
|
76855
|
+
};
|
|
76856
|
+
tag: {
|
|
76857
|
+
type: StringConstructor;
|
|
76858
|
+
default: string;
|
|
76859
|
+
};
|
|
76860
|
+
}>>;
|
|
76861
|
+
type VStepperHeader = InstanceType<typeof VStepperHeader>;
|
|
76862
|
+
|
|
76863
|
+
declare const VStepperWindow: {
|
|
76864
|
+
new (...args: any[]): {
|
|
76865
|
+
$: vue.ComponentInternalInstance;
|
|
76866
|
+
$data: {};
|
|
76867
|
+
$props: {
|
|
76868
|
+
reverse?: boolean | undefined;
|
|
76869
|
+
direction?: "horizontal" | "vertical" | undefined;
|
|
76870
|
+
style?: vue.StyleValue | undefined;
|
|
76871
|
+
disabled?: boolean | undefined;
|
|
76872
|
+
tag?: string | undefined;
|
|
76873
|
+
mandatory?: NonNullable<boolean | "force"> | undefined;
|
|
76874
|
+
touch?: boolean | TouchHandlers | undefined;
|
|
76875
|
+
selectedClass?: string | undefined;
|
|
76876
|
+
continuous?: boolean | undefined;
|
|
76877
|
+
nextIcon?: IconValue | undefined;
|
|
76878
|
+
prevIcon?: IconValue | undefined;
|
|
76879
|
+
key?: string | number | symbol | undefined;
|
|
76880
|
+
class?: any;
|
|
76881
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
76882
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
76883
|
+
};
|
|
76884
|
+
ref?: vue.VNodeRef | undefined;
|
|
76885
|
+
ref_for?: boolean | undefined;
|
|
76886
|
+
ref_key?: string | undefined;
|
|
76887
|
+
theme?: string | undefined;
|
|
76888
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
76889
|
+
'v-slots'?: {
|
|
76890
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
76891
|
+
} | undefined;
|
|
76892
|
+
onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76893
|
+
[key: string]: any;
|
|
76894
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76895
|
+
[key: string]: any;
|
|
76896
|
+
}>) => void)[] | undefined;
|
|
76897
|
+
onVnodeMounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76898
|
+
[key: string]: any;
|
|
76899
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76900
|
+
[key: string]: any;
|
|
76901
|
+
}>) => void)[] | undefined;
|
|
76902
|
+
onVnodeBeforeUpdate?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76903
|
+
[key: string]: any;
|
|
76904
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76905
|
+
[key: string]: any;
|
|
76906
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76907
|
+
[key: string]: any;
|
|
76908
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76909
|
+
[key: string]: any;
|
|
76910
|
+
}>) => void)[] | undefined;
|
|
76911
|
+
onVnodeUpdated?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76912
|
+
[key: string]: any;
|
|
76913
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76914
|
+
[key: string]: any;
|
|
76915
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76916
|
+
[key: string]: any;
|
|
76917
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76918
|
+
[key: string]: any;
|
|
76919
|
+
}>) => void)[] | undefined;
|
|
76920
|
+
onVnodeBeforeUnmount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76921
|
+
[key: string]: any;
|
|
76922
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76923
|
+
[key: string]: any;
|
|
76924
|
+
}>) => void)[] | undefined;
|
|
76925
|
+
onVnodeUnmounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76926
|
+
[key: string]: any;
|
|
76927
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76928
|
+
[key: string]: any;
|
|
76929
|
+
}>) => void)[] | undefined;
|
|
76930
|
+
modelValue?: any;
|
|
76931
|
+
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
76932
|
+
showArrows?: string | boolean | undefined;
|
|
76933
|
+
};
|
|
76934
|
+
$attrs: {
|
|
76935
|
+
[x: string]: unknown;
|
|
76936
|
+
};
|
|
76937
|
+
$refs: {
|
|
76938
|
+
[x: string]: unknown;
|
|
76939
|
+
};
|
|
76940
|
+
$slots: Readonly<{
|
|
76941
|
+
default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76942
|
+
[key: string]: any;
|
|
76943
|
+
}>[]) | undefined;
|
|
76944
|
+
}>;
|
|
76945
|
+
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
76946
|
+
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
76947
|
+
$emit: (event: "update:modelValue", v: unknown) => void;
|
|
76948
|
+
$el: any;
|
|
76949
|
+
$options: vue.ComponentOptionsBase<{
|
|
76950
|
+
reverse: boolean;
|
|
76951
|
+
direction: "horizontal" | "vertical";
|
|
76952
|
+
style: vue.StyleValue;
|
|
76953
|
+
disabled: boolean;
|
|
76954
|
+
tag: string;
|
|
76955
|
+
mandatory: NonNullable<boolean | "force">;
|
|
76956
|
+
selectedClass: string;
|
|
76957
|
+
continuous: boolean;
|
|
76958
|
+
nextIcon: IconValue;
|
|
76959
|
+
prevIcon: IconValue;
|
|
76960
|
+
} & {
|
|
76961
|
+
class?: any;
|
|
76962
|
+
touch?: boolean | TouchHandlers | undefined;
|
|
76963
|
+
theme?: string | undefined;
|
|
76964
|
+
modelValue?: any;
|
|
76965
|
+
showArrows?: string | boolean | undefined;
|
|
76966
|
+
} & {
|
|
76967
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
76968
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
76969
|
+
};
|
|
76970
|
+
'v-slots'?: {
|
|
76971
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
76972
|
+
} | undefined;
|
|
76973
|
+
} & {
|
|
76974
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
76975
|
+
} & {
|
|
76976
|
+
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
76977
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
76978
|
+
'update:modelValue': (v: unknown) => boolean;
|
|
76979
|
+
}, string, {
|
|
76980
|
+
reverse: boolean;
|
|
76981
|
+
direction: "horizontal" | "vertical";
|
|
76982
|
+
style: vue.StyleValue;
|
|
76983
|
+
disabled: boolean;
|
|
76984
|
+
tag: string;
|
|
76985
|
+
mandatory: NonNullable<boolean | "force">;
|
|
76986
|
+
touch: boolean | TouchHandlers;
|
|
76987
|
+
selectedClass: string;
|
|
76988
|
+
continuous: boolean;
|
|
76989
|
+
nextIcon: IconValue;
|
|
76990
|
+
prevIcon: IconValue;
|
|
76991
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
76992
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
76993
|
+
[key: string]: any;
|
|
76994
|
+
}>[];
|
|
76995
|
+
}>>> & {
|
|
76996
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
76997
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
76998
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
76999
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
77000
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
77001
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
77002
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
77003
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
77004
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
77005
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
77006
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
77007
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
77008
|
+
renderTracked?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
77009
|
+
renderTriggered?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
77010
|
+
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
77011
|
+
};
|
|
77012
|
+
$forceUpdate: () => void;
|
|
77013
|
+
$nextTick: typeof vue.nextTick;
|
|
77014
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
77015
|
+
} & {
|
|
77016
|
+
reverse: boolean;
|
|
77017
|
+
direction: "horizontal" | "vertical";
|
|
77018
|
+
style: vue.StyleValue;
|
|
77019
|
+
disabled: boolean;
|
|
77020
|
+
tag: string;
|
|
77021
|
+
mandatory: NonNullable<boolean | "force">;
|
|
77022
|
+
selectedClass: string;
|
|
77023
|
+
continuous: boolean;
|
|
77024
|
+
nextIcon: IconValue;
|
|
77025
|
+
prevIcon: IconValue;
|
|
77026
|
+
} & {
|
|
77027
|
+
class?: any;
|
|
77028
|
+
touch?: boolean | TouchHandlers | undefined;
|
|
77029
|
+
theme?: string | undefined;
|
|
77030
|
+
modelValue?: any;
|
|
77031
|
+
showArrows?: string | boolean | undefined;
|
|
77032
|
+
} & {
|
|
77033
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
77034
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
77035
|
+
};
|
|
77036
|
+
'v-slots'?: {
|
|
77037
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
77038
|
+
} | undefined;
|
|
77039
|
+
} & {
|
|
77040
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
77041
|
+
} & {
|
|
77042
|
+
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
77043
|
+
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
|
|
77044
|
+
__isFragment?: undefined;
|
|
77045
|
+
__isTeleport?: undefined;
|
|
77046
|
+
__isSuspense?: undefined;
|
|
77047
|
+
} & vue.ComponentOptionsBase<{
|
|
77048
|
+
reverse: boolean;
|
|
77049
|
+
direction: "horizontal" | "vertical";
|
|
77050
|
+
style: vue.StyleValue;
|
|
77051
|
+
disabled: boolean;
|
|
77052
|
+
tag: string;
|
|
77053
|
+
mandatory: NonNullable<boolean | "force">;
|
|
77054
|
+
selectedClass: string;
|
|
77055
|
+
continuous: boolean;
|
|
77056
|
+
nextIcon: IconValue;
|
|
77057
|
+
prevIcon: IconValue;
|
|
77058
|
+
} & {
|
|
77059
|
+
class?: any;
|
|
77060
|
+
touch?: boolean | TouchHandlers | undefined;
|
|
77061
|
+
theme?: string | undefined;
|
|
77062
|
+
modelValue?: any;
|
|
77063
|
+
showArrows?: string | boolean | undefined;
|
|
77064
|
+
} & {
|
|
77065
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
77066
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
77067
|
+
};
|
|
77068
|
+
'v-slots'?: {
|
|
77069
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
77070
|
+
} | undefined;
|
|
77071
|
+
} & {
|
|
77072
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
77073
|
+
} & {
|
|
77074
|
+
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
77075
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
77076
|
+
'update:modelValue': (v: unknown) => boolean;
|
|
77077
|
+
}, string, {
|
|
77078
|
+
reverse: boolean;
|
|
77079
|
+
direction: "horizontal" | "vertical";
|
|
77080
|
+
style: vue.StyleValue;
|
|
77081
|
+
disabled: boolean;
|
|
77082
|
+
tag: string;
|
|
77083
|
+
mandatory: NonNullable<boolean | "force">;
|
|
77084
|
+
touch: boolean | TouchHandlers;
|
|
77085
|
+
selectedClass: string;
|
|
77086
|
+
continuous: boolean;
|
|
77087
|
+
nextIcon: IconValue;
|
|
77088
|
+
prevIcon: IconValue;
|
|
77089
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
77090
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77091
|
+
[key: string]: any;
|
|
77092
|
+
}>[];
|
|
77093
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
77094
|
+
theme: StringConstructor;
|
|
77095
|
+
tag: {
|
|
77096
|
+
type: StringConstructor;
|
|
77097
|
+
default: string;
|
|
77098
|
+
};
|
|
77099
|
+
class: vue.PropType<any>;
|
|
77100
|
+
style: {
|
|
77101
|
+
type: vue.PropType<vue.StyleValue>;
|
|
77102
|
+
default: null;
|
|
77103
|
+
};
|
|
77104
|
+
continuous: BooleanConstructor;
|
|
77105
|
+
nextIcon: {
|
|
77106
|
+
type: vue.PropType<IconValue>;
|
|
77107
|
+
default: string;
|
|
77108
|
+
};
|
|
77109
|
+
prevIcon: {
|
|
77110
|
+
type: vue.PropType<IconValue>;
|
|
77111
|
+
default: string;
|
|
77112
|
+
};
|
|
77113
|
+
reverse: BooleanConstructor;
|
|
77114
|
+
showArrows: {
|
|
77115
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
77116
|
+
validator: (v: any) => boolean;
|
|
77117
|
+
};
|
|
77118
|
+
touch: {
|
|
77119
|
+
type: vue.PropType<boolean | TouchHandlers>;
|
|
77120
|
+
default: undefined;
|
|
77121
|
+
};
|
|
77122
|
+
direction: {
|
|
77123
|
+
type: vue.PropType<"horizontal" | "vertical">;
|
|
77124
|
+
default: string;
|
|
77125
|
+
};
|
|
77126
|
+
modelValue: null;
|
|
77127
|
+
disabled: BooleanConstructor;
|
|
77128
|
+
selectedClass: {
|
|
77129
|
+
type: StringConstructor;
|
|
77130
|
+
default: string;
|
|
77131
|
+
};
|
|
77132
|
+
mandatory: Omit<{
|
|
77133
|
+
type: vue.PropType<boolean | "force">;
|
|
77134
|
+
default: "force";
|
|
77135
|
+
}, "type" | "default"> & {
|
|
77136
|
+
type: vue.PropType<NonNullable<boolean | "force">>;
|
|
77137
|
+
default: NonNullable<boolean | "force">;
|
|
77138
|
+
};
|
|
77139
|
+
}, vue.ExtractPropTypes<{
|
|
77140
|
+
theme: StringConstructor;
|
|
77141
|
+
tag: {
|
|
77142
|
+
type: StringConstructor;
|
|
77143
|
+
default: string;
|
|
77144
|
+
};
|
|
77145
|
+
class: vue.PropType<any>;
|
|
77146
|
+
style: {
|
|
77147
|
+
type: vue.PropType<vue.StyleValue>;
|
|
77148
|
+
default: null;
|
|
77149
|
+
};
|
|
77150
|
+
continuous: BooleanConstructor;
|
|
77151
|
+
nextIcon: {
|
|
77152
|
+
type: vue.PropType<IconValue>;
|
|
77153
|
+
default: string;
|
|
77154
|
+
};
|
|
77155
|
+
prevIcon: {
|
|
77156
|
+
type: vue.PropType<IconValue>;
|
|
77157
|
+
default: string;
|
|
77158
|
+
};
|
|
77159
|
+
reverse: BooleanConstructor;
|
|
77160
|
+
showArrows: {
|
|
77161
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
77162
|
+
validator: (v: any) => boolean;
|
|
77163
|
+
};
|
|
77164
|
+
touch: {
|
|
77165
|
+
type: vue.PropType<boolean | TouchHandlers>;
|
|
77166
|
+
default: undefined;
|
|
77167
|
+
};
|
|
77168
|
+
direction: {
|
|
77169
|
+
type: vue.PropType<"horizontal" | "vertical">;
|
|
77170
|
+
default: string;
|
|
77171
|
+
};
|
|
77172
|
+
modelValue: null;
|
|
77173
|
+
disabled: BooleanConstructor;
|
|
77174
|
+
selectedClass: {
|
|
77175
|
+
type: StringConstructor;
|
|
77176
|
+
default: string;
|
|
77177
|
+
};
|
|
77178
|
+
mandatory: Omit<{
|
|
77179
|
+
type: vue.PropType<boolean | "force">;
|
|
77180
|
+
default: "force";
|
|
77181
|
+
}, "type" | "default"> & {
|
|
77182
|
+
type: vue.PropType<NonNullable<boolean | "force">>;
|
|
77183
|
+
default: NonNullable<boolean | "force">;
|
|
77184
|
+
};
|
|
77185
|
+
}>>;
|
|
77186
|
+
type VStepperWindow = InstanceType<typeof VStepperWindow>;
|
|
77187
|
+
|
|
77188
|
+
declare const VStepperWindowItem: {
|
|
77189
|
+
new (...args: any[]): {
|
|
77190
|
+
$: vue.ComponentInternalInstance;
|
|
77191
|
+
$data: {};
|
|
77192
|
+
$props: {
|
|
77193
|
+
transition?: string | boolean | undefined;
|
|
77194
|
+
style?: vue.StyleValue | undefined;
|
|
77195
|
+
eager?: boolean | undefined;
|
|
77196
|
+
disabled?: boolean | undefined;
|
|
77197
|
+
reverseTransition?: string | boolean | undefined;
|
|
77198
|
+
key?: string | number | symbol | undefined;
|
|
77199
|
+
value?: any;
|
|
77200
|
+
class?: any;
|
|
77201
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
77202
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
77203
|
+
};
|
|
77204
|
+
ref?: vue.VNodeRef | undefined;
|
|
77205
|
+
ref_for?: boolean | undefined;
|
|
77206
|
+
ref_key?: string | undefined;
|
|
77207
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
77208
|
+
'v-slots'?: {
|
|
77209
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
77210
|
+
} | undefined;
|
|
77211
|
+
onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77212
|
+
[key: string]: any;
|
|
77213
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77214
|
+
[key: string]: any;
|
|
77215
|
+
}>) => void)[] | undefined;
|
|
77216
|
+
onVnodeMounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77217
|
+
[key: string]: any;
|
|
77218
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77219
|
+
[key: string]: any;
|
|
77220
|
+
}>) => void)[] | undefined;
|
|
77221
|
+
onVnodeBeforeUpdate?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77222
|
+
[key: string]: any;
|
|
77223
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77224
|
+
[key: string]: any;
|
|
77225
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77226
|
+
[key: string]: any;
|
|
77227
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77228
|
+
[key: string]: any;
|
|
77229
|
+
}>) => void)[] | undefined;
|
|
77230
|
+
onVnodeUpdated?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77231
|
+
[key: string]: any;
|
|
77232
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77233
|
+
[key: string]: any;
|
|
77234
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77235
|
+
[key: string]: any;
|
|
77236
|
+
}>, oldVNode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77237
|
+
[key: string]: any;
|
|
77238
|
+
}>) => void)[] | undefined;
|
|
77239
|
+
onVnodeBeforeUnmount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77240
|
+
[key: string]: any;
|
|
77241
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77242
|
+
[key: string]: any;
|
|
77243
|
+
}>) => void)[] | undefined;
|
|
77244
|
+
onVnodeUnmounted?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77245
|
+
[key: string]: any;
|
|
77246
|
+
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77247
|
+
[key: string]: any;
|
|
77248
|
+
}>) => void)[] | undefined;
|
|
77249
|
+
selectedClass?: string | undefined;
|
|
77250
|
+
};
|
|
77251
|
+
$attrs: {
|
|
77252
|
+
[x: string]: unknown;
|
|
77253
|
+
};
|
|
77254
|
+
$refs: {
|
|
77255
|
+
[x: string]: unknown;
|
|
77256
|
+
};
|
|
77257
|
+
$slots: Readonly<{
|
|
77258
|
+
default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77259
|
+
[key: string]: any;
|
|
77260
|
+
}>[]) | undefined;
|
|
77261
|
+
}>;
|
|
77262
|
+
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
77263
|
+
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
77264
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
77265
|
+
$el: any;
|
|
77266
|
+
$options: vue.ComponentOptionsBase<{
|
|
77267
|
+
style: vue.StyleValue;
|
|
77268
|
+
eager: boolean;
|
|
77269
|
+
disabled: boolean;
|
|
77270
|
+
} & {
|
|
77271
|
+
transition?: string | boolean | undefined;
|
|
77272
|
+
value?: any;
|
|
77273
|
+
class?: any;
|
|
77274
|
+
selectedClass?: string | undefined;
|
|
77275
|
+
reverseTransition?: string | boolean | undefined;
|
|
77276
|
+
} & {
|
|
77277
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
77278
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
77279
|
+
};
|
|
77280
|
+
'v-slots'?: {
|
|
77281
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
77282
|
+
} | undefined;
|
|
77283
|
+
} & {
|
|
77284
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
77285
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
77286
|
+
transition: string | boolean;
|
|
77287
|
+
style: vue.StyleValue;
|
|
77288
|
+
eager: boolean;
|
|
77289
|
+
disabled: boolean;
|
|
77290
|
+
reverseTransition: string | boolean;
|
|
77291
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
77292
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77293
|
+
[key: string]: any;
|
|
77294
|
+
}>[];
|
|
77295
|
+
}>>> & {
|
|
77296
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
77297
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
77298
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
77299
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
77300
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
77301
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
77302
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
77303
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
77304
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
77305
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
77306
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
77307
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
77308
|
+
renderTracked?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
77309
|
+
renderTriggered?: (((e: vue.DebuggerEvent) => void) | ((e: vue.DebuggerEvent) => void)[]) | undefined;
|
|
77310
|
+
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
77311
|
+
};
|
|
77312
|
+
$forceUpdate: () => void;
|
|
77313
|
+
$nextTick: typeof vue.nextTick;
|
|
77314
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
77315
|
+
} & {
|
|
77316
|
+
style: vue.StyleValue;
|
|
77317
|
+
eager: boolean;
|
|
77318
|
+
disabled: boolean;
|
|
77319
|
+
} & {
|
|
77320
|
+
transition?: string | boolean | undefined;
|
|
77321
|
+
value?: any;
|
|
77322
|
+
class?: any;
|
|
77323
|
+
selectedClass?: string | undefined;
|
|
77324
|
+
reverseTransition?: string | boolean | undefined;
|
|
77325
|
+
} & {
|
|
77326
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
77327
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
77328
|
+
};
|
|
77329
|
+
'v-slots'?: {
|
|
77330
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
77331
|
+
} | undefined;
|
|
77332
|
+
} & {
|
|
77333
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
77334
|
+
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
|
|
77335
|
+
__isFragment?: undefined;
|
|
77336
|
+
__isTeleport?: undefined;
|
|
77337
|
+
__isSuspense?: undefined;
|
|
77338
|
+
} & vue.ComponentOptionsBase<{
|
|
77339
|
+
style: vue.StyleValue;
|
|
77340
|
+
eager: boolean;
|
|
77341
|
+
disabled: boolean;
|
|
77342
|
+
} & {
|
|
77343
|
+
transition?: string | boolean | undefined;
|
|
77344
|
+
value?: any;
|
|
77345
|
+
class?: any;
|
|
77346
|
+
selectedClass?: string | undefined;
|
|
77347
|
+
reverseTransition?: string | boolean | undefined;
|
|
77348
|
+
} & {
|
|
77349
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
77350
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
77351
|
+
};
|
|
77352
|
+
'v-slots'?: {
|
|
77353
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
77354
|
+
} | undefined;
|
|
77355
|
+
} & {
|
|
77356
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
77357
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
77358
|
+
transition: string | boolean;
|
|
77359
|
+
style: vue.StyleValue;
|
|
77360
|
+
eager: boolean;
|
|
77361
|
+
disabled: boolean;
|
|
77362
|
+
reverseTransition: string | boolean;
|
|
77363
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
77364
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
77365
|
+
[key: string]: any;
|
|
77366
|
+
}>[];
|
|
77367
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
77368
|
+
eager: BooleanConstructor;
|
|
77369
|
+
value: null;
|
|
77370
|
+
disabled: BooleanConstructor;
|
|
77371
|
+
selectedClass: StringConstructor;
|
|
77372
|
+
class: vue.PropType<any>;
|
|
77373
|
+
style: {
|
|
77374
|
+
type: vue.PropType<vue.StyleValue>;
|
|
77375
|
+
default: null;
|
|
77376
|
+
};
|
|
77377
|
+
reverseTransition: {
|
|
77378
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
77379
|
+
default: undefined;
|
|
77380
|
+
};
|
|
77381
|
+
transition: {
|
|
77382
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
77383
|
+
default: undefined;
|
|
77384
|
+
};
|
|
77385
|
+
}, vue.ExtractPropTypes<{
|
|
77386
|
+
eager: BooleanConstructor;
|
|
77387
|
+
value: null;
|
|
77388
|
+
disabled: BooleanConstructor;
|
|
77389
|
+
selectedClass: StringConstructor;
|
|
77390
|
+
class: vue.PropType<any>;
|
|
77391
|
+
style: {
|
|
77392
|
+
type: vue.PropType<vue.StyleValue>;
|
|
77393
|
+
default: null;
|
|
77394
|
+
};
|
|
77395
|
+
reverseTransition: {
|
|
77396
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
77397
|
+
default: undefined;
|
|
77398
|
+
};
|
|
77399
|
+
transition: {
|
|
77400
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
77401
|
+
default: undefined;
|
|
77402
|
+
};
|
|
77403
|
+
}>>;
|
|
77404
|
+
type VStepperWindowItem = InstanceType<typeof VStepperWindowItem>;
|
|
77405
|
+
|
|
74922
77406
|
//# sourceMappingURL=allComponents.d.ts.map
|
|
74923
77407
|
|
|
74924
77408
|
declare const allComponents_d_VAlert: typeof VAlert;
|
|
@@ -75021,6 +77505,7 @@ declare const allComponents_d_VMenu: typeof VMenu;
|
|
|
75021
77505
|
declare const allComponents_d_VMessages: typeof VMessages;
|
|
75022
77506
|
declare const allComponents_d_VNavigationDrawer: typeof VNavigationDrawer;
|
|
75023
77507
|
declare const allComponents_d_VNoSsr: typeof VNoSsr;
|
|
77508
|
+
declare const allComponents_d_VOtpInput: typeof VOtpInput;
|
|
75024
77509
|
declare const allComponents_d_VOverlay: typeof VOverlay;
|
|
75025
77510
|
declare const allComponents_d_VPagination: typeof VPagination;
|
|
75026
77511
|
declare const allComponents_d_VParallax: typeof VParallax;
|
|
@@ -75053,6 +77538,12 @@ declare const allComponents_d_VSlideYTransition: typeof VSlideYTransition;
|
|
|
75053
77538
|
declare const allComponents_d_VSlider: typeof VSlider;
|
|
75054
77539
|
declare const allComponents_d_VSnackbar: typeof VSnackbar;
|
|
75055
77540
|
declare const allComponents_d_VSpacer: typeof VSpacer;
|
|
77541
|
+
declare const allComponents_d_VStepper: typeof VStepper;
|
|
77542
|
+
declare const allComponents_d_VStepperActions: typeof VStepperActions;
|
|
77543
|
+
declare const allComponents_d_VStepperHeader: typeof VStepperHeader;
|
|
77544
|
+
declare const allComponents_d_VStepperItem: typeof VStepperItem;
|
|
77545
|
+
declare const allComponents_d_VStepperWindow: typeof VStepperWindow;
|
|
77546
|
+
declare const allComponents_d_VStepperWindowItem: typeof VStepperWindowItem;
|
|
75056
77547
|
declare const allComponents_d_VSvgIcon: typeof VSvgIcon;
|
|
75057
77548
|
declare const allComponents_d_VSwitch: typeof VSwitch;
|
|
75058
77549
|
declare const allComponents_d_VSystemBar: typeof VSystemBar;
|
|
@@ -75174,6 +77665,7 @@ declare namespace allComponents_d {
|
|
|
75174
77665
|
allComponents_d_VMessages as VMessages,
|
|
75175
77666
|
allComponents_d_VNavigationDrawer as VNavigationDrawer,
|
|
75176
77667
|
allComponents_d_VNoSsr as VNoSsr,
|
|
77668
|
+
allComponents_d_VOtpInput as VOtpInput,
|
|
75177
77669
|
allComponents_d_VOverlay as VOverlay,
|
|
75178
77670
|
allComponents_d_VPagination as VPagination,
|
|
75179
77671
|
allComponents_d_VParallax as VParallax,
|
|
@@ -75206,6 +77698,12 @@ declare namespace allComponents_d {
|
|
|
75206
77698
|
allComponents_d_VSlider as VSlider,
|
|
75207
77699
|
allComponents_d_VSnackbar as VSnackbar,
|
|
75208
77700
|
allComponents_d_VSpacer as VSpacer,
|
|
77701
|
+
allComponents_d_VStepper as VStepper,
|
|
77702
|
+
allComponents_d_VStepperActions as VStepperActions,
|
|
77703
|
+
allComponents_d_VStepperHeader as VStepperHeader,
|
|
77704
|
+
allComponents_d_VStepperItem as VStepperItem,
|
|
77705
|
+
allComponents_d_VStepperWindow as VStepperWindow,
|
|
77706
|
+
allComponents_d_VStepperWindowItem as VStepperWindowItem,
|
|
75209
77707
|
allComponents_d_VSvgIcon as VSvgIcon,
|
|
75210
77708
|
allComponents_d_VSwitch as VSwitch,
|
|
75211
77709
|
allComponents_d_VSystemBar as VSystemBar,
|