vuetify 3.0.4 → 3.0.6
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.sass +1 -0
- package/dist/json/attributes.json +34 -14
- package/dist/json/importMap.json +62 -62
- package/dist/json/tags.json +5 -0
- package/dist/json/web-types.json +76 -38
- package/dist/vuetify.css +20 -8
- package/dist/vuetify.d.ts +283 -173
- package/dist/vuetify.esm.js +235 -185
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +235 -185
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +132 -129
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/index.d.ts +1 -1
- package/lib/components/VApp/{variables.scss → _variables.scss} +0 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.ts +41 -24
- package/lib/components/VAvatar/VAvatar.mjs +7 -2
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/index.d.ts +2 -0
- package/lib/components/VBottomNavigation/VBottomNavigation.mjs +6 -3
- package/lib/components/VBottomNavigation/VBottomNavigation.mjs.map +1 -1
- package/lib/components/VBottomNavigation/index.d.ts +9 -0
- package/lib/components/VBtn/index.d.ts +2 -3
- package/lib/components/VCard/index.d.ts +2 -3
- package/lib/components/VChip/VChip.mjs +1 -1
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VChip/index.d.ts +1 -1
- package/lib/components/VChipGroup/index.d.ts +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +1 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.ts +41 -24
- package/lib/components/VDialog/index.d.ts +21 -6
- package/lib/components/VExpansionPanel/index.d.ts +1 -1
- package/lib/components/VField/VField.mjs +1 -1
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VField/index.d.ts +5 -8
- package/lib/components/VFileInput/VFileInput.mjs +4 -3
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.ts +3 -4
- package/lib/components/VImg/VImg.mjs +10 -2
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VList/VList.mjs +4 -2
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListGroup.mjs +2 -1
- package/lib/components/VList/VListGroup.mjs.map +1 -1
- package/lib/components/VList/VListItem.css +1 -0
- package/lib/components/VList/VListItem.sass +1 -0
- package/lib/components/VMenu/index.d.ts +21 -6
- package/lib/components/VOverlay/VOverlay.mjs +10 -3
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.ts +8 -1
- package/lib/components/VPagination/index.d.ts +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.css +4 -4
- package/lib/components/VRadioGroup/VRadioGroup.sass +4 -4
- package/lib/components/VRadioGroup/_variables.scss +2 -2
- package/lib/components/VSelect/VSelect.mjs +6 -2
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.ts +41 -24
- package/lib/components/VSlider/VSliderThumb.css +9 -0
- package/lib/components/VSlider/VSliderThumb.mjs +4 -6
- package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.sass +8 -0
- package/lib/components/VSlider/VSliderTrack.css +4 -1
- package/lib/components/VSlider/VSliderTrack.sass +3 -1
- package/lib/components/VSlider/slider.mjs +2 -2
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.mjs +6 -1
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/index.d.ts +25 -10
- package/lib/components/VTabs/VTab.css +1 -2
- package/lib/components/VTabs/VTab.sass +4 -3
- package/lib/components/VTextField/index.d.ts +20 -29
- package/lib/components/VTextarea/index.d.ts +2 -3
- package/lib/components/VToolbar/VToolbar.mjs +6 -0
- package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
- package/lib/components/VTooltip/VTooltip.mjs +2 -1
- package/lib/components/VTooltip/VTooltip.mjs.map +1 -1
- package/lib/components/VTooltip/index.d.ts +21 -6
- package/lib/components/index.d.ts +266 -156
- package/lib/composables/display.mjs +5 -4
- package/lib/composables/display.mjs.map +1 -1
- package/lib/composables/hydration.mjs +13 -8
- package/lib/composables/hydration.mjs.map +1 -1
- package/lib/composables/loader.mjs +1 -1
- package/lib/composables/loader.mjs.map +1 -1
- package/lib/composables/stack.mjs +16 -9
- package/lib/composables/stack.mjs.map +1 -1
- package/lib/composables/validation.mjs +2 -2
- package/lib/composables/validation.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.ts +17 -17
- package/lib/services/goto/util.mjs +1 -1
- package/lib/services/goto/util.mjs.map +1 -1
- package/lib/util/console.mjs +3 -3
- package/lib/util/console.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -1141,8 +1141,8 @@ declare const VAlert: vue.DefineComponent<{
|
|
|
1141
1141
|
rounded: string | number | boolean;
|
|
1142
1142
|
prominent: boolean;
|
|
1143
1143
|
density: Density;
|
|
1144
|
-
modelValue: boolean;
|
|
1145
1144
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
1145
|
+
modelValue: boolean;
|
|
1146
1146
|
closable: boolean;
|
|
1147
1147
|
closeIcon: IconValue;
|
|
1148
1148
|
closeLabel: string;
|
|
@@ -1486,7 +1486,6 @@ declare const VField: {
|
|
|
1486
1486
|
reverse: boolean;
|
|
1487
1487
|
error: boolean;
|
|
1488
1488
|
active: boolean;
|
|
1489
|
-
loading: boolean;
|
|
1490
1489
|
disabled: boolean;
|
|
1491
1490
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
1492
1491
|
clearIcon: IconValue;
|
|
@@ -1496,7 +1495,7 @@ declare const VField: {
|
|
|
1496
1495
|
persistentClear: boolean;
|
|
1497
1496
|
singleLine: boolean;
|
|
1498
1497
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
1499
|
-
loading: BooleanConstructor;
|
|
1498
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
1500
1499
|
theme: StringConstructor;
|
|
1501
1500
|
appendInnerIcon: PropType<IconValue>;
|
|
1502
1501
|
bgColor: StringConstructor;
|
|
@@ -1528,7 +1527,7 @@ declare const VField: {
|
|
|
1528
1527
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1529
1528
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1530
1529
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1531
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "
|
|
1530
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
1532
1531
|
$attrs: {
|
|
1533
1532
|
[x: string]: unknown;
|
|
1534
1533
|
};
|
|
@@ -1543,7 +1542,7 @@ declare const VField: {
|
|
|
1543
1542
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
|
|
1544
1543
|
$el: any;
|
|
1545
1544
|
$options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
1546
|
-
loading: BooleanConstructor;
|
|
1545
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
1547
1546
|
theme: StringConstructor;
|
|
1548
1547
|
appendInnerIcon: PropType<IconValue>;
|
|
1549
1548
|
bgColor: StringConstructor;
|
|
@@ -1585,7 +1584,6 @@ declare const VField: {
|
|
|
1585
1584
|
reverse: boolean;
|
|
1586
1585
|
error: boolean;
|
|
1587
1586
|
active: boolean;
|
|
1588
|
-
loading: boolean;
|
|
1589
1587
|
disabled: boolean;
|
|
1590
1588
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
1591
1589
|
clearIcon: IconValue;
|
|
@@ -1615,7 +1613,7 @@ declare const VField: {
|
|
|
1615
1613
|
$nextTick: typeof vue.nextTick;
|
|
1616
1614
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
1617
1615
|
} & Readonly<vue.ExtractPropTypes<Omit<{
|
|
1618
|
-
loading: BooleanConstructor;
|
|
1616
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
1619
1617
|
theme: StringConstructor;
|
|
1620
1618
|
appendInnerIcon: PropType<IconValue>;
|
|
1621
1619
|
bgColor: StringConstructor;
|
|
@@ -1654,7 +1652,7 @@ declare const VField: {
|
|
|
1654
1652
|
__isTeleport?: undefined;
|
|
1655
1653
|
__isSuspense?: undefined;
|
|
1656
1654
|
} & vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
1657
|
-
loading: BooleanConstructor;
|
|
1655
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
1658
1656
|
theme: StringConstructor;
|
|
1659
1657
|
appendInnerIcon: PropType<IconValue>;
|
|
1660
1658
|
bgColor: StringConstructor;
|
|
@@ -1696,7 +1694,6 @@ declare const VField: {
|
|
|
1696
1694
|
reverse: boolean;
|
|
1697
1695
|
error: boolean;
|
|
1698
1696
|
active: boolean;
|
|
1699
|
-
loading: boolean;
|
|
1700
1697
|
disabled: boolean;
|
|
1701
1698
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
1702
1699
|
clearIcon: IconValue;
|
|
@@ -1827,7 +1824,6 @@ declare const VAutocomplete: {
|
|
|
1827
1824
|
transition: string | boolean | (vue.TransitionProps & {
|
|
1828
1825
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
1829
1826
|
});
|
|
1830
|
-
loading: boolean;
|
|
1831
1827
|
menu: boolean;
|
|
1832
1828
|
autofocus: boolean;
|
|
1833
1829
|
eager: boolean;
|
|
@@ -1848,6 +1844,7 @@ declare const VAutocomplete: {
|
|
|
1848
1844
|
persistentHint: boolean;
|
|
1849
1845
|
persistentPlaceholder: boolean;
|
|
1850
1846
|
persistentCounter: boolean;
|
|
1847
|
+
valueComparator: typeof deepEqual;
|
|
1851
1848
|
itemTitle: SelectItemKey;
|
|
1852
1849
|
itemValue: SelectItemKey;
|
|
1853
1850
|
itemChildren: SelectItemKey;
|
|
@@ -1891,7 +1888,7 @@ declare const VAutocomplete: {
|
|
|
1891
1888
|
default: string;
|
|
1892
1889
|
validator: (v: any) => boolean;
|
|
1893
1890
|
};
|
|
1894
|
-
loading: BooleanConstructor;
|
|
1891
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
1895
1892
|
label: StringConstructor;
|
|
1896
1893
|
prefix: StringConstructor;
|
|
1897
1894
|
autofocus: BooleanConstructor;
|
|
@@ -1909,15 +1906,15 @@ declare const VAutocomplete: {
|
|
|
1909
1906
|
default: string;
|
|
1910
1907
|
validator: (v: any) => boolean;
|
|
1911
1908
|
};
|
|
1912
|
-
modelValue: {
|
|
1913
|
-
type: vue.PropType<any>;
|
|
1914
|
-
default: any;
|
|
1915
|
-
};
|
|
1916
1909
|
variant: {
|
|
1917
1910
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
1918
1911
|
default: string;
|
|
1919
1912
|
validator: (v: any) => boolean;
|
|
1920
1913
|
};
|
|
1914
|
+
modelValue: {
|
|
1915
|
+
type: vue.PropType<any>;
|
|
1916
|
+
default: any;
|
|
1917
|
+
};
|
|
1921
1918
|
bgColor: StringConstructor;
|
|
1922
1919
|
prependIcon: vue.PropType<IconValue>;
|
|
1923
1920
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -2175,6 +2172,10 @@ declare const VAutocomplete: {
|
|
|
2175
2172
|
default: string;
|
|
2176
2173
|
};
|
|
2177
2174
|
openOnClear: BooleanConstructor;
|
|
2175
|
+
valueComparator: {
|
|
2176
|
+
type: vue.PropType<typeof deepEqual>;
|
|
2177
|
+
default: typeof deepEqual;
|
|
2178
|
+
};
|
|
2178
2179
|
customFilter: vue.PropType<FilterFunction>;
|
|
2179
2180
|
customKeyFilter: vue.PropType<FilterKeyFunctions>;
|
|
2180
2181
|
filterKeys: {
|
|
@@ -2190,7 +2191,7 @@ declare const VAutocomplete: {
|
|
|
2190
2191
|
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
2191
2192
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
2192
2193
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
2193
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "
|
|
2194
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
|
|
2194
2195
|
$attrs: {
|
|
2195
2196
|
[x: string]: unknown;
|
|
2196
2197
|
};
|
|
@@ -2234,7 +2235,7 @@ declare const VAutocomplete: {
|
|
|
2234
2235
|
default: string;
|
|
2235
2236
|
validator: (v: any) => boolean;
|
|
2236
2237
|
};
|
|
2237
|
-
loading: BooleanConstructor;
|
|
2238
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
2238
2239
|
label: StringConstructor;
|
|
2239
2240
|
prefix: StringConstructor;
|
|
2240
2241
|
autofocus: BooleanConstructor;
|
|
@@ -2252,15 +2253,15 @@ declare const VAutocomplete: {
|
|
|
2252
2253
|
default: string;
|
|
2253
2254
|
validator: (v: any) => boolean;
|
|
2254
2255
|
};
|
|
2255
|
-
modelValue: {
|
|
2256
|
-
type: vue.PropType<any>;
|
|
2257
|
-
default: any;
|
|
2258
|
-
};
|
|
2259
2256
|
variant: {
|
|
2260
2257
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2261
2258
|
default: string;
|
|
2262
2259
|
validator: (v: any) => boolean;
|
|
2263
2260
|
};
|
|
2261
|
+
modelValue: {
|
|
2262
|
+
type: vue.PropType<any>;
|
|
2263
|
+
default: any;
|
|
2264
|
+
};
|
|
2264
2265
|
bgColor: StringConstructor;
|
|
2265
2266
|
prependIcon: vue.PropType<IconValue>;
|
|
2266
2267
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -2518,6 +2519,10 @@ declare const VAutocomplete: {
|
|
|
2518
2519
|
default: string;
|
|
2519
2520
|
};
|
|
2520
2521
|
openOnClear: BooleanConstructor;
|
|
2522
|
+
valueComparator: {
|
|
2523
|
+
type: vue.PropType<typeof deepEqual>;
|
|
2524
|
+
default: typeof deepEqual;
|
|
2525
|
+
};
|
|
2521
2526
|
customFilter: vue.PropType<FilterFunction>;
|
|
2522
2527
|
customKeyFilter: vue.PropType<FilterKeyFunctions>;
|
|
2523
2528
|
filterKeys: {
|
|
@@ -2560,7 +2565,6 @@ declare const VAutocomplete: {
|
|
|
2560
2565
|
transition: string | boolean | (vue.TransitionProps & {
|
|
2561
2566
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
2562
2567
|
});
|
|
2563
|
-
loading: boolean;
|
|
2564
2568
|
menu: boolean;
|
|
2565
2569
|
autofocus: boolean;
|
|
2566
2570
|
eager: boolean;
|
|
@@ -2581,6 +2585,7 @@ declare const VAutocomplete: {
|
|
|
2581
2585
|
persistentHint: boolean;
|
|
2582
2586
|
persistentPlaceholder: boolean;
|
|
2583
2587
|
persistentCounter: boolean;
|
|
2588
|
+
valueComparator: typeof deepEqual;
|
|
2584
2589
|
itemTitle: SelectItemKey;
|
|
2585
2590
|
itemValue: SelectItemKey;
|
|
2586
2591
|
itemChildren: SelectItemKey;
|
|
@@ -2644,7 +2649,7 @@ declare const VAutocomplete: {
|
|
|
2644
2649
|
default: string;
|
|
2645
2650
|
validator: (v: any) => boolean;
|
|
2646
2651
|
};
|
|
2647
|
-
loading: BooleanConstructor;
|
|
2652
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
2648
2653
|
label: StringConstructor;
|
|
2649
2654
|
prefix: StringConstructor;
|
|
2650
2655
|
autofocus: BooleanConstructor;
|
|
@@ -2662,15 +2667,15 @@ declare const VAutocomplete: {
|
|
|
2662
2667
|
default: string;
|
|
2663
2668
|
validator: (v: any) => boolean;
|
|
2664
2669
|
};
|
|
2665
|
-
modelValue: {
|
|
2666
|
-
type: vue.PropType<any>;
|
|
2667
|
-
default: any;
|
|
2668
|
-
};
|
|
2669
2670
|
variant: {
|
|
2670
2671
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2671
2672
|
default: string;
|
|
2672
2673
|
validator: (v: any) => boolean;
|
|
2673
2674
|
};
|
|
2675
|
+
modelValue: {
|
|
2676
|
+
type: vue.PropType<any>;
|
|
2677
|
+
default: any;
|
|
2678
|
+
};
|
|
2674
2679
|
bgColor: StringConstructor;
|
|
2675
2680
|
prependIcon: vue.PropType<IconValue>;
|
|
2676
2681
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -2928,6 +2933,10 @@ declare const VAutocomplete: {
|
|
|
2928
2933
|
default: string;
|
|
2929
2934
|
};
|
|
2930
2935
|
openOnClear: BooleanConstructor;
|
|
2936
|
+
valueComparator: {
|
|
2937
|
+
type: vue.PropType<typeof deepEqual>;
|
|
2938
|
+
default: typeof deepEqual;
|
|
2939
|
+
};
|
|
2931
2940
|
customFilter: vue.PropType<FilterFunction>;
|
|
2932
2941
|
customKeyFilter: vue.PropType<FilterKeyFunctions>;
|
|
2933
2942
|
filterKeys: {
|
|
@@ -2991,7 +3000,7 @@ declare const VAutocomplete: {
|
|
|
2991
3000
|
default: string;
|
|
2992
3001
|
validator: (v: any) => boolean;
|
|
2993
3002
|
};
|
|
2994
|
-
loading: BooleanConstructor;
|
|
3003
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
2995
3004
|
label: StringConstructor;
|
|
2996
3005
|
prefix: StringConstructor;
|
|
2997
3006
|
autofocus: BooleanConstructor;
|
|
@@ -3009,15 +3018,15 @@ declare const VAutocomplete: {
|
|
|
3009
3018
|
default: string;
|
|
3010
3019
|
validator: (v: any) => boolean;
|
|
3011
3020
|
};
|
|
3012
|
-
modelValue: {
|
|
3013
|
-
type: vue.PropType<any>;
|
|
3014
|
-
default: any;
|
|
3015
|
-
};
|
|
3016
3021
|
variant: {
|
|
3017
3022
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
3018
3023
|
default: string;
|
|
3019
3024
|
validator: (v: any) => boolean;
|
|
3020
3025
|
};
|
|
3026
|
+
modelValue: {
|
|
3027
|
+
type: vue.PropType<any>;
|
|
3028
|
+
default: any;
|
|
3029
|
+
};
|
|
3021
3030
|
bgColor: StringConstructor;
|
|
3022
3031
|
prependIcon: vue.PropType<IconValue>;
|
|
3023
3032
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -3275,6 +3284,10 @@ declare const VAutocomplete: {
|
|
|
3275
3284
|
default: string;
|
|
3276
3285
|
};
|
|
3277
3286
|
openOnClear: BooleanConstructor;
|
|
3287
|
+
valueComparator: {
|
|
3288
|
+
type: vue.PropType<typeof deepEqual>;
|
|
3289
|
+
default: typeof deepEqual;
|
|
3290
|
+
};
|
|
3278
3291
|
customFilter: vue.PropType<FilterFunction>;
|
|
3279
3292
|
customKeyFilter: vue.PropType<FilterKeyFunctions>;
|
|
3280
3293
|
filterKeys: {
|
|
@@ -3317,7 +3330,6 @@ declare const VAutocomplete: {
|
|
|
3317
3330
|
transition: string | boolean | (vue.TransitionProps & {
|
|
3318
3331
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
3319
3332
|
});
|
|
3320
|
-
loading: boolean;
|
|
3321
3333
|
menu: boolean;
|
|
3322
3334
|
autofocus: boolean;
|
|
3323
3335
|
eager: boolean;
|
|
@@ -3338,6 +3350,7 @@ declare const VAutocomplete: {
|
|
|
3338
3350
|
persistentHint: boolean;
|
|
3339
3351
|
persistentPlaceholder: boolean;
|
|
3340
3352
|
persistentCounter: boolean;
|
|
3353
|
+
valueComparator: typeof deepEqual;
|
|
3341
3354
|
itemTitle: SelectItemKey;
|
|
3342
3355
|
itemValue: SelectItemKey;
|
|
3343
3356
|
itemChildren: SelectItemKey;
|
|
@@ -3453,6 +3466,7 @@ declare const VAvatar: vue.DefineComponent<{
|
|
|
3453
3466
|
type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
3454
3467
|
default: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
3455
3468
|
};
|
|
3469
|
+
theme: StringConstructor;
|
|
3456
3470
|
tag: {
|
|
3457
3471
|
type: StringConstructor;
|
|
3458
3472
|
default: string;
|
|
@@ -3484,6 +3498,7 @@ declare const VAvatar: vue.DefineComponent<{
|
|
|
3484
3498
|
type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
3485
3499
|
default: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
3486
3500
|
};
|
|
3501
|
+
theme: StringConstructor;
|
|
3487
3502
|
tag: {
|
|
3488
3503
|
type: StringConstructor;
|
|
3489
3504
|
default: string;
|
|
@@ -3797,6 +3812,10 @@ declare const VBottomNavigation: vue.DefineComponent<{
|
|
|
3797
3812
|
type: (StringConstructor | NumberConstructor)[];
|
|
3798
3813
|
default: number;
|
|
3799
3814
|
};
|
|
3815
|
+
active: {
|
|
3816
|
+
type: BooleanConstructor;
|
|
3817
|
+
default: boolean;
|
|
3818
|
+
};
|
|
3800
3819
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3801
3820
|
'update:modelValue': (value: any) => true;
|
|
3802
3821
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
@@ -3859,11 +3878,16 @@ declare const VBottomNavigation: vue.DefineComponent<{
|
|
|
3859
3878
|
type: (StringConstructor | NumberConstructor)[];
|
|
3860
3879
|
default: number;
|
|
3861
3880
|
};
|
|
3881
|
+
active: {
|
|
3882
|
+
type: BooleanConstructor;
|
|
3883
|
+
default: boolean;
|
|
3884
|
+
};
|
|
3862
3885
|
}>> & {
|
|
3863
3886
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
3864
3887
|
}, {
|
|
3865
3888
|
absolute: boolean;
|
|
3866
3889
|
height: string | number;
|
|
3890
|
+
active: boolean;
|
|
3867
3891
|
name: string;
|
|
3868
3892
|
order: string | number;
|
|
3869
3893
|
disabled: boolean;
|
|
@@ -4241,7 +4265,7 @@ declare const VBtn: vue.DefineComponent<{
|
|
|
4241
4265
|
validator: (v: any) => boolean;
|
|
4242
4266
|
};
|
|
4243
4267
|
location: PropType<Anchor>;
|
|
4244
|
-
loading: BooleanConstructor;
|
|
4268
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4245
4269
|
value: null;
|
|
4246
4270
|
disabled: BooleanConstructor;
|
|
4247
4271
|
selectedClass: StringConstructor;
|
|
@@ -4318,7 +4342,7 @@ declare const VBtn: vue.DefineComponent<{
|
|
|
4318
4342
|
validator: (v: any) => boolean;
|
|
4319
4343
|
};
|
|
4320
4344
|
location: PropType<Anchor>;
|
|
4321
|
-
loading: BooleanConstructor;
|
|
4345
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4322
4346
|
value: null;
|
|
4323
4347
|
disabled: BooleanConstructor;
|
|
4324
4348
|
selectedClass: StringConstructor;
|
|
@@ -4371,7 +4395,6 @@ declare const VBtn: vue.DefineComponent<{
|
|
|
4371
4395
|
exact: boolean;
|
|
4372
4396
|
active: boolean;
|
|
4373
4397
|
block: boolean;
|
|
4374
|
-
loading: boolean;
|
|
4375
4398
|
disabled: boolean;
|
|
4376
4399
|
size: string | number;
|
|
4377
4400
|
tag: string;
|
|
@@ -4601,7 +4624,7 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4601
4624
|
validator: (v: any) => boolean;
|
|
4602
4625
|
};
|
|
4603
4626
|
location: vue.PropType<Anchor>;
|
|
4604
|
-
loading: BooleanConstructor;
|
|
4627
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4605
4628
|
elevation: {
|
|
4606
4629
|
type: (StringConstructor | NumberConstructor)[];
|
|
4607
4630
|
validator(v: any): boolean;
|
|
@@ -4662,7 +4685,7 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4662
4685
|
validator: (v: any) => boolean;
|
|
4663
4686
|
};
|
|
4664
4687
|
location: vue.PropType<Anchor>;
|
|
4665
|
-
loading: BooleanConstructor;
|
|
4688
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4666
4689
|
elevation: {
|
|
4667
4690
|
type: (StringConstructor | NumberConstructor)[];
|
|
4668
4691
|
validator(v: any): boolean;
|
|
@@ -4701,7 +4724,6 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4701
4724
|
link: boolean;
|
|
4702
4725
|
flat: boolean;
|
|
4703
4726
|
exact: boolean;
|
|
4704
|
-
loading: boolean;
|
|
4705
4727
|
disabled: boolean;
|
|
4706
4728
|
tag: string;
|
|
4707
4729
|
rounded: string | number | boolean;
|
|
@@ -5331,8 +5353,8 @@ declare const VChip: vue.DefineComponent<{
|
|
|
5331
5353
|
tag: string;
|
|
5332
5354
|
rounded: string | number | boolean;
|
|
5333
5355
|
density: Density;
|
|
5334
|
-
modelValue: boolean;
|
|
5335
5356
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
5357
|
+
modelValue: boolean;
|
|
5336
5358
|
ripple: boolean;
|
|
5337
5359
|
closable: boolean;
|
|
5338
5360
|
closeIcon: IconValue;
|
|
@@ -5418,8 +5440,8 @@ declare const VChipGroup: vue.DefineComponent<{
|
|
|
5418
5440
|
multiple: boolean;
|
|
5419
5441
|
tag: string;
|
|
5420
5442
|
column: boolean;
|
|
5421
|
-
modelValue: any;
|
|
5422
5443
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
5444
|
+
modelValue: any;
|
|
5423
5445
|
selectedClass: string;
|
|
5424
5446
|
valueComparator: typeof deepEqual;
|
|
5425
5447
|
}>;
|
|
@@ -5570,7 +5592,6 @@ declare const VCombobox: {
|
|
|
5570
5592
|
transition: string | boolean | (vue.TransitionProps & {
|
|
5571
5593
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
5572
5594
|
});
|
|
5573
|
-
loading: boolean;
|
|
5574
5595
|
menu: boolean;
|
|
5575
5596
|
autofocus: boolean;
|
|
5576
5597
|
eager: boolean;
|
|
@@ -5591,6 +5612,7 @@ declare const VCombobox: {
|
|
|
5591
5612
|
persistentHint: boolean;
|
|
5592
5613
|
persistentPlaceholder: boolean;
|
|
5593
5614
|
persistentCounter: boolean;
|
|
5615
|
+
valueComparator: typeof deepEqual;
|
|
5594
5616
|
itemTitle: SelectItemKey;
|
|
5595
5617
|
itemValue: SelectItemKey;
|
|
5596
5618
|
itemChildren: SelectItemKey;
|
|
@@ -5634,7 +5656,7 @@ declare const VCombobox: {
|
|
|
5634
5656
|
default: string;
|
|
5635
5657
|
validator: (v: any) => boolean;
|
|
5636
5658
|
};
|
|
5637
|
-
loading: BooleanConstructor;
|
|
5659
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
5638
5660
|
label: StringConstructor;
|
|
5639
5661
|
prefix: StringConstructor;
|
|
5640
5662
|
autofocus: BooleanConstructor;
|
|
@@ -5652,15 +5674,15 @@ declare const VCombobox: {
|
|
|
5652
5674
|
default: string;
|
|
5653
5675
|
validator: (v: any) => boolean;
|
|
5654
5676
|
};
|
|
5655
|
-
modelValue: {
|
|
5656
|
-
type: PropType<any>;
|
|
5657
|
-
default: any;
|
|
5658
|
-
};
|
|
5659
5677
|
variant: {
|
|
5660
5678
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
5661
5679
|
default: string;
|
|
5662
5680
|
validator: (v: any) => boolean;
|
|
5663
5681
|
};
|
|
5682
|
+
modelValue: {
|
|
5683
|
+
type: PropType<any>;
|
|
5684
|
+
default: any;
|
|
5685
|
+
};
|
|
5664
5686
|
bgColor: StringConstructor;
|
|
5665
5687
|
prependIcon: PropType<IconValue>;
|
|
5666
5688
|
appendIcon: PropType<IconValue>;
|
|
@@ -5924,6 +5946,10 @@ declare const VCombobox: {
|
|
|
5924
5946
|
default: string;
|
|
5925
5947
|
};
|
|
5926
5948
|
openOnClear: BooleanConstructor;
|
|
5949
|
+
valueComparator: {
|
|
5950
|
+
type: PropType<typeof deepEqual>;
|
|
5951
|
+
default: typeof deepEqual;
|
|
5952
|
+
};
|
|
5927
5953
|
customFilter: PropType<FilterFunction>;
|
|
5928
5954
|
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
5929
5955
|
filterKeys: {
|
|
@@ -5939,7 +5965,7 @@ declare const VCombobox: {
|
|
|
5939
5965
|
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
5940
5966
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
5941
5967
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
5942
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "
|
|
5968
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
|
|
5943
5969
|
$attrs: {
|
|
5944
5970
|
[x: string]: unknown;
|
|
5945
5971
|
};
|
|
@@ -5983,7 +6009,7 @@ declare const VCombobox: {
|
|
|
5983
6009
|
default: string;
|
|
5984
6010
|
validator: (v: any) => boolean;
|
|
5985
6011
|
};
|
|
5986
|
-
loading: BooleanConstructor;
|
|
6012
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
5987
6013
|
label: StringConstructor;
|
|
5988
6014
|
prefix: StringConstructor;
|
|
5989
6015
|
autofocus: BooleanConstructor;
|
|
@@ -6001,15 +6027,15 @@ declare const VCombobox: {
|
|
|
6001
6027
|
default: string;
|
|
6002
6028
|
validator: (v: any) => boolean;
|
|
6003
6029
|
};
|
|
6004
|
-
modelValue: {
|
|
6005
|
-
type: PropType<any>;
|
|
6006
|
-
default: any;
|
|
6007
|
-
};
|
|
6008
6030
|
variant: {
|
|
6009
6031
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
6010
6032
|
default: string;
|
|
6011
6033
|
validator: (v: any) => boolean;
|
|
6012
6034
|
};
|
|
6035
|
+
modelValue: {
|
|
6036
|
+
type: PropType<any>;
|
|
6037
|
+
default: any;
|
|
6038
|
+
};
|
|
6013
6039
|
bgColor: StringConstructor;
|
|
6014
6040
|
prependIcon: PropType<IconValue>;
|
|
6015
6041
|
appendIcon: PropType<IconValue>;
|
|
@@ -6273,6 +6299,10 @@ declare const VCombobox: {
|
|
|
6273
6299
|
default: string;
|
|
6274
6300
|
};
|
|
6275
6301
|
openOnClear: BooleanConstructor;
|
|
6302
|
+
valueComparator: {
|
|
6303
|
+
type: PropType<typeof deepEqual>;
|
|
6304
|
+
default: typeof deepEqual;
|
|
6305
|
+
};
|
|
6276
6306
|
customFilter: PropType<FilterFunction>;
|
|
6277
6307
|
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
6278
6308
|
filterKeys: {
|
|
@@ -6314,7 +6344,6 @@ declare const VCombobox: {
|
|
|
6314
6344
|
transition: string | boolean | (vue.TransitionProps & {
|
|
6315
6345
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
6316
6346
|
});
|
|
6317
|
-
loading: boolean;
|
|
6318
6347
|
menu: boolean;
|
|
6319
6348
|
autofocus: boolean;
|
|
6320
6349
|
eager: boolean;
|
|
@@ -6335,6 +6364,7 @@ declare const VCombobox: {
|
|
|
6335
6364
|
persistentHint: boolean;
|
|
6336
6365
|
persistentPlaceholder: boolean;
|
|
6337
6366
|
persistentCounter: boolean;
|
|
6367
|
+
valueComparator: typeof deepEqual;
|
|
6338
6368
|
itemTitle: SelectItemKey;
|
|
6339
6369
|
itemValue: SelectItemKey;
|
|
6340
6370
|
itemChildren: SelectItemKey;
|
|
@@ -6398,7 +6428,7 @@ declare const VCombobox: {
|
|
|
6398
6428
|
default: string;
|
|
6399
6429
|
validator: (v: any) => boolean;
|
|
6400
6430
|
};
|
|
6401
|
-
loading: BooleanConstructor;
|
|
6431
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
6402
6432
|
label: StringConstructor;
|
|
6403
6433
|
prefix: StringConstructor;
|
|
6404
6434
|
autofocus: BooleanConstructor;
|
|
@@ -6416,15 +6446,15 @@ declare const VCombobox: {
|
|
|
6416
6446
|
default: string;
|
|
6417
6447
|
validator: (v: any) => boolean;
|
|
6418
6448
|
};
|
|
6419
|
-
modelValue: {
|
|
6420
|
-
type: PropType<any>;
|
|
6421
|
-
default: any;
|
|
6422
|
-
};
|
|
6423
6449
|
variant: {
|
|
6424
6450
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
6425
6451
|
default: string;
|
|
6426
6452
|
validator: (v: any) => boolean;
|
|
6427
6453
|
};
|
|
6454
|
+
modelValue: {
|
|
6455
|
+
type: PropType<any>;
|
|
6456
|
+
default: any;
|
|
6457
|
+
};
|
|
6428
6458
|
bgColor: StringConstructor;
|
|
6429
6459
|
prependIcon: PropType<IconValue>;
|
|
6430
6460
|
appendIcon: PropType<IconValue>;
|
|
@@ -6688,6 +6718,10 @@ declare const VCombobox: {
|
|
|
6688
6718
|
default: string;
|
|
6689
6719
|
};
|
|
6690
6720
|
openOnClear: BooleanConstructor;
|
|
6721
|
+
valueComparator: {
|
|
6722
|
+
type: PropType<typeof deepEqual>;
|
|
6723
|
+
default: typeof deepEqual;
|
|
6724
|
+
};
|
|
6691
6725
|
customFilter: PropType<FilterFunction>;
|
|
6692
6726
|
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
6693
6727
|
filterKeys: {
|
|
@@ -6750,7 +6784,7 @@ declare const VCombobox: {
|
|
|
6750
6784
|
default: string;
|
|
6751
6785
|
validator: (v: any) => boolean;
|
|
6752
6786
|
};
|
|
6753
|
-
loading: BooleanConstructor;
|
|
6787
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
6754
6788
|
label: StringConstructor;
|
|
6755
6789
|
prefix: StringConstructor;
|
|
6756
6790
|
autofocus: BooleanConstructor;
|
|
@@ -6768,15 +6802,15 @@ declare const VCombobox: {
|
|
|
6768
6802
|
default: string;
|
|
6769
6803
|
validator: (v: any) => boolean;
|
|
6770
6804
|
};
|
|
6771
|
-
modelValue: {
|
|
6772
|
-
type: PropType<any>;
|
|
6773
|
-
default: any;
|
|
6774
|
-
};
|
|
6775
6805
|
variant: {
|
|
6776
6806
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
6777
6807
|
default: string;
|
|
6778
6808
|
validator: (v: any) => boolean;
|
|
6779
6809
|
};
|
|
6810
|
+
modelValue: {
|
|
6811
|
+
type: PropType<any>;
|
|
6812
|
+
default: any;
|
|
6813
|
+
};
|
|
6780
6814
|
bgColor: StringConstructor;
|
|
6781
6815
|
prependIcon: PropType<IconValue>;
|
|
6782
6816
|
appendIcon: PropType<IconValue>;
|
|
@@ -7040,6 +7074,10 @@ declare const VCombobox: {
|
|
|
7040
7074
|
default: string;
|
|
7041
7075
|
};
|
|
7042
7076
|
openOnClear: BooleanConstructor;
|
|
7077
|
+
valueComparator: {
|
|
7078
|
+
type: PropType<typeof deepEqual>;
|
|
7079
|
+
default: typeof deepEqual;
|
|
7080
|
+
};
|
|
7043
7081
|
customFilter: PropType<FilterFunction>;
|
|
7044
7082
|
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
7045
7083
|
filterKeys: {
|
|
@@ -7081,7 +7119,6 @@ declare const VCombobox: {
|
|
|
7081
7119
|
transition: string | boolean | (vue.TransitionProps & {
|
|
7082
7120
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
7083
7121
|
});
|
|
7084
|
-
loading: boolean;
|
|
7085
7122
|
menu: boolean;
|
|
7086
7123
|
autofocus: boolean;
|
|
7087
7124
|
eager: boolean;
|
|
@@ -7102,6 +7139,7 @@ declare const VCombobox: {
|
|
|
7102
7139
|
persistentHint: boolean;
|
|
7103
7140
|
persistentPlaceholder: boolean;
|
|
7104
7141
|
persistentCounter: boolean;
|
|
7142
|
+
valueComparator: typeof deepEqual;
|
|
7105
7143
|
itemTitle: SelectItemKey;
|
|
7106
7144
|
itemValue: SelectItemKey;
|
|
7107
7145
|
itemChildren: SelectItemKey;
|
|
@@ -7484,6 +7522,7 @@ declare const VOverlay: {
|
|
|
7484
7522
|
noClickAnimation: boolean;
|
|
7485
7523
|
persistent: boolean;
|
|
7486
7524
|
scrim: string | boolean;
|
|
7525
|
+
_disableGlobalStack: boolean;
|
|
7487
7526
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
7488
7527
|
transition: {
|
|
7489
7528
|
type: PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -7559,11 +7598,12 @@ declare const VOverlay: {
|
|
|
7559
7598
|
type: (StringConstructor | NumberConstructor)[];
|
|
7560
7599
|
default: number;
|
|
7561
7600
|
};
|
|
7601
|
+
_disableGlobalStack: BooleanConstructor;
|
|
7562
7602
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
7563
7603
|
onAfterLeave?: (() => any) | undefined;
|
|
7564
7604
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
7565
7605
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
7566
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
7606
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
7567
7607
|
$attrs: {
|
|
7568
7608
|
[x: string]: unknown;
|
|
7569
7609
|
};
|
|
@@ -7652,6 +7692,7 @@ declare const VOverlay: {
|
|
|
7652
7692
|
type: (StringConstructor | NumberConstructor)[];
|
|
7653
7693
|
default: number;
|
|
7654
7694
|
};
|
|
7695
|
+
_disableGlobalStack: BooleanConstructor;
|
|
7655
7696
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
7656
7697
|
onAfterLeave?: (() => any) | undefined;
|
|
7657
7698
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -7692,6 +7733,7 @@ declare const VOverlay: {
|
|
|
7692
7733
|
noClickAnimation: boolean;
|
|
7693
7734
|
persistent: boolean;
|
|
7694
7735
|
scrim: string | boolean;
|
|
7736
|
+
_disableGlobalStack: boolean;
|
|
7695
7737
|
}> & {
|
|
7696
7738
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
7697
7739
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -7787,6 +7829,7 @@ declare const VOverlay: {
|
|
|
7787
7829
|
type: (StringConstructor | NumberConstructor)[];
|
|
7788
7830
|
default: number;
|
|
7789
7831
|
};
|
|
7832
|
+
_disableGlobalStack: BooleanConstructor;
|
|
7790
7833
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
7791
7834
|
onAfterLeave?: (() => any) | undefined;
|
|
7792
7835
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -7877,6 +7920,7 @@ declare const VOverlay: {
|
|
|
7877
7920
|
type: (StringConstructor | NumberConstructor)[];
|
|
7878
7921
|
default: number;
|
|
7879
7922
|
};
|
|
7923
|
+
_disableGlobalStack: BooleanConstructor;
|
|
7880
7924
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
7881
7925
|
onAfterLeave?: (() => any) | undefined;
|
|
7882
7926
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -7917,6 +7961,7 @@ declare const VOverlay: {
|
|
|
7917
7961
|
noClickAnimation: boolean;
|
|
7918
7962
|
persistent: boolean;
|
|
7919
7963
|
scrim: string | boolean;
|
|
7964
|
+
_disableGlobalStack: boolean;
|
|
7920
7965
|
}> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
7921
7966
|
$props: SlotsToProps<OverlaySlots>;
|
|
7922
7967
|
});
|
|
@@ -8224,6 +8269,7 @@ declare const VDialog: {
|
|
|
8224
8269
|
noClickAnimation: boolean;
|
|
8225
8270
|
persistent: boolean;
|
|
8226
8271
|
scrim: string | boolean;
|
|
8272
|
+
_disableGlobalStack: boolean;
|
|
8227
8273
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
8228
8274
|
transition: {
|
|
8229
8275
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -8299,11 +8345,12 @@ declare const VDialog: {
|
|
|
8299
8345
|
type: (StringConstructor | NumberConstructor)[];
|
|
8300
8346
|
default: number;
|
|
8301
8347
|
};
|
|
8348
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8302
8349
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8303
8350
|
onAfterLeave?: (() => any) | undefined;
|
|
8304
8351
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
8305
8352
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
8306
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
8353
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
8307
8354
|
$attrs: {
|
|
8308
8355
|
[x: string]: unknown;
|
|
8309
8356
|
};
|
|
@@ -8392,6 +8439,7 @@ declare const VDialog: {
|
|
|
8392
8439
|
type: (StringConstructor | NumberConstructor)[];
|
|
8393
8440
|
default: number;
|
|
8394
8441
|
};
|
|
8442
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8395
8443
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8396
8444
|
onAfterLeave?: (() => any) | undefined;
|
|
8397
8445
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -8432,6 +8480,7 @@ declare const VDialog: {
|
|
|
8432
8480
|
noClickAnimation: boolean;
|
|
8433
8481
|
persistent: boolean;
|
|
8434
8482
|
scrim: string | boolean;
|
|
8483
|
+
_disableGlobalStack: boolean;
|
|
8435
8484
|
}> & {
|
|
8436
8485
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
8437
8486
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -8527,6 +8576,7 @@ declare const VDialog: {
|
|
|
8527
8576
|
type: (StringConstructor | NumberConstructor)[];
|
|
8528
8577
|
default: number;
|
|
8529
8578
|
};
|
|
8579
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8530
8580
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8531
8581
|
onAfterLeave?: (() => any) | undefined;
|
|
8532
8582
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -8567,7 +8617,7 @@ declare const VDialog: {
|
|
|
8567
8617
|
props: Record<string, any>;
|
|
8568
8618
|
}) => vue.VNodeChild) | undefined;
|
|
8569
8619
|
};
|
|
8570
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
8620
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
8571
8621
|
'update:modelValue': (value: boolean) => boolean;
|
|
8572
8622
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
8573
8623
|
absolute: boolean;
|
|
@@ -8762,6 +8812,7 @@ declare const VDialog: {
|
|
|
8762
8812
|
noClickAnimation: boolean;
|
|
8763
8813
|
persistent: boolean;
|
|
8764
8814
|
scrim: string | boolean;
|
|
8815
|
+
_disableGlobalStack: boolean;
|
|
8765
8816
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
8766
8817
|
transition: {
|
|
8767
8818
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -8837,11 +8888,12 @@ declare const VDialog: {
|
|
|
8837
8888
|
type: (StringConstructor | NumberConstructor)[];
|
|
8838
8889
|
default: number;
|
|
8839
8890
|
};
|
|
8891
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8840
8892
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8841
8893
|
onAfterLeave?: (() => any) | undefined;
|
|
8842
8894
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
8843
8895
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
8844
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
8896
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
8845
8897
|
$attrs: {
|
|
8846
8898
|
[x: string]: unknown;
|
|
8847
8899
|
};
|
|
@@ -8930,6 +8982,7 @@ declare const VDialog: {
|
|
|
8930
8982
|
type: (StringConstructor | NumberConstructor)[];
|
|
8931
8983
|
default: number;
|
|
8932
8984
|
};
|
|
8985
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8933
8986
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8934
8987
|
onAfterLeave?: (() => any) | undefined;
|
|
8935
8988
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -8970,6 +9023,7 @@ declare const VDialog: {
|
|
|
8970
9023
|
noClickAnimation: boolean;
|
|
8971
9024
|
persistent: boolean;
|
|
8972
9025
|
scrim: string | boolean;
|
|
9026
|
+
_disableGlobalStack: boolean;
|
|
8973
9027
|
}> & {
|
|
8974
9028
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
8975
9029
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -9065,6 +9119,7 @@ declare const VDialog: {
|
|
|
9065
9119
|
type: (StringConstructor | NumberConstructor)[];
|
|
9066
9120
|
default: number;
|
|
9067
9121
|
};
|
|
9122
|
+
_disableGlobalStack: BooleanConstructor;
|
|
9068
9123
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
9069
9124
|
onAfterLeave?: (() => any) | undefined;
|
|
9070
9125
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -9105,7 +9160,7 @@ declare const VDialog: {
|
|
|
9105
9160
|
props: Record<string, any>;
|
|
9106
9161
|
}) => vue.VNodeChild) | undefined;
|
|
9107
9162
|
};
|
|
9108
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
9163
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
9109
9164
|
__isFragment?: undefined;
|
|
9110
9165
|
__isTeleport?: undefined;
|
|
9111
9166
|
__isSuspense?: undefined;
|
|
@@ -9248,6 +9303,7 @@ declare const VDialog: {
|
|
|
9248
9303
|
noClickAnimation: boolean;
|
|
9249
9304
|
persistent: boolean;
|
|
9250
9305
|
scrim: string | boolean;
|
|
9306
|
+
_disableGlobalStack: boolean;
|
|
9251
9307
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
9252
9308
|
transition: {
|
|
9253
9309
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -9323,11 +9379,12 @@ declare const VDialog: {
|
|
|
9323
9379
|
type: (StringConstructor | NumberConstructor)[];
|
|
9324
9380
|
default: number;
|
|
9325
9381
|
};
|
|
9382
|
+
_disableGlobalStack: BooleanConstructor;
|
|
9326
9383
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
9327
9384
|
onAfterLeave?: (() => any) | undefined;
|
|
9328
9385
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
9329
9386
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
9330
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
9387
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
9331
9388
|
$attrs: {
|
|
9332
9389
|
[x: string]: unknown;
|
|
9333
9390
|
};
|
|
@@ -9416,6 +9473,7 @@ declare const VDialog: {
|
|
|
9416
9473
|
type: (StringConstructor | NumberConstructor)[];
|
|
9417
9474
|
default: number;
|
|
9418
9475
|
};
|
|
9476
|
+
_disableGlobalStack: BooleanConstructor;
|
|
9419
9477
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
9420
9478
|
onAfterLeave?: (() => any) | undefined;
|
|
9421
9479
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -9456,6 +9514,7 @@ declare const VDialog: {
|
|
|
9456
9514
|
noClickAnimation: boolean;
|
|
9457
9515
|
persistent: boolean;
|
|
9458
9516
|
scrim: string | boolean;
|
|
9517
|
+
_disableGlobalStack: boolean;
|
|
9459
9518
|
}> & {
|
|
9460
9519
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
9461
9520
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -9551,6 +9610,7 @@ declare const VDialog: {
|
|
|
9551
9610
|
type: (StringConstructor | NumberConstructor)[];
|
|
9552
9611
|
default: number;
|
|
9553
9612
|
};
|
|
9613
|
+
_disableGlobalStack: BooleanConstructor;
|
|
9554
9614
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
9555
9615
|
onAfterLeave?: (() => any) | undefined;
|
|
9556
9616
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -9591,7 +9651,7 @@ declare const VDialog: {
|
|
|
9591
9651
|
props: Record<string, any>;
|
|
9592
9652
|
}) => vue.VNodeChild) | undefined;
|
|
9593
9653
|
};
|
|
9594
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
9654
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
9595
9655
|
'update:modelValue': (value: boolean) => boolean;
|
|
9596
9656
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
9597
9657
|
absolute: boolean;
|
|
@@ -9705,8 +9765,8 @@ declare const VExpansionPanels: vue.DefineComponent<{
|
|
|
9705
9765
|
multiple: boolean;
|
|
9706
9766
|
readonly: boolean;
|
|
9707
9767
|
tag: string;
|
|
9708
|
-
modelValue: any;
|
|
9709
9768
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
9769
|
+
modelValue: any;
|
|
9710
9770
|
}>;
|
|
9711
9771
|
declare type VExpansionPanels = InstanceType<typeof VExpansionPanels>;
|
|
9712
9772
|
|
|
@@ -9861,7 +9921,7 @@ declare const VFieldLabel: vue.DefineComponent<{
|
|
|
9861
9921
|
declare type VFieldLabel = InstanceType<typeof VFieldLabel>;
|
|
9862
9922
|
|
|
9863
9923
|
declare const VFileInput: vue.DefineComponent<{
|
|
9864
|
-
loading: BooleanConstructor;
|
|
9924
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
9865
9925
|
theme: StringConstructor;
|
|
9866
9926
|
appendInnerIcon: PropType<IconValue>;
|
|
9867
9927
|
bgColor: StringConstructor;
|
|
@@ -10180,7 +10240,7 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
10180
10240
|
'click:control': (e: MouseEvent) => true;
|
|
10181
10241
|
'update:modelValue': (files: File[]) => true;
|
|
10182
10242
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
10183
|
-
loading: BooleanConstructor;
|
|
10243
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
10184
10244
|
theme: StringConstructor;
|
|
10185
10245
|
appendInnerIcon: PropType<IconValue>;
|
|
10186
10246
|
bgColor: StringConstructor;
|
|
@@ -10282,15 +10342,14 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
10282
10342
|
error: boolean;
|
|
10283
10343
|
active: boolean;
|
|
10284
10344
|
direction: "horizontal" | "vertical";
|
|
10285
|
-
loading: boolean;
|
|
10286
10345
|
disabled: boolean;
|
|
10287
10346
|
multiple: boolean;
|
|
10288
10347
|
readonly: boolean;
|
|
10289
10348
|
messages: string | string[];
|
|
10290
10349
|
counter: boolean;
|
|
10291
10350
|
density: Density;
|
|
10292
|
-
modelValue: File[];
|
|
10293
10351
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
10352
|
+
modelValue: File[];
|
|
10294
10353
|
prependIcon: (string & {}) | IconValue;
|
|
10295
10354
|
clearIcon: IconValue;
|
|
10296
10355
|
focused: boolean;
|
|
@@ -12671,6 +12730,7 @@ declare const VMenu: {
|
|
|
12671
12730
|
noClickAnimation: boolean;
|
|
12672
12731
|
persistent: boolean;
|
|
12673
12732
|
scrim: string | boolean;
|
|
12733
|
+
_disableGlobalStack: boolean;
|
|
12674
12734
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
12675
12735
|
transition: {
|
|
12676
12736
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -12746,11 +12806,12 @@ declare const VMenu: {
|
|
|
12746
12806
|
type: (StringConstructor | NumberConstructor)[];
|
|
12747
12807
|
default: number;
|
|
12748
12808
|
};
|
|
12809
|
+
_disableGlobalStack: BooleanConstructor;
|
|
12749
12810
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
12750
12811
|
onAfterLeave?: (() => any) | undefined;
|
|
12751
12812
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
12752
12813
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
12753
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
12814
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
12754
12815
|
$attrs: {
|
|
12755
12816
|
[x: string]: unknown;
|
|
12756
12817
|
};
|
|
@@ -12839,6 +12900,7 @@ declare const VMenu: {
|
|
|
12839
12900
|
type: (StringConstructor | NumberConstructor)[];
|
|
12840
12901
|
default: number;
|
|
12841
12902
|
};
|
|
12903
|
+
_disableGlobalStack: BooleanConstructor;
|
|
12842
12904
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
12843
12905
|
onAfterLeave?: (() => any) | undefined;
|
|
12844
12906
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -12879,6 +12941,7 @@ declare const VMenu: {
|
|
|
12879
12941
|
noClickAnimation: boolean;
|
|
12880
12942
|
persistent: boolean;
|
|
12881
12943
|
scrim: string | boolean;
|
|
12944
|
+
_disableGlobalStack: boolean;
|
|
12882
12945
|
}> & {
|
|
12883
12946
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
12884
12947
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -12974,6 +13037,7 @@ declare const VMenu: {
|
|
|
12974
13037
|
type: (StringConstructor | NumberConstructor)[];
|
|
12975
13038
|
default: number;
|
|
12976
13039
|
};
|
|
13040
|
+
_disableGlobalStack: BooleanConstructor;
|
|
12977
13041
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
12978
13042
|
onAfterLeave?: (() => any) | undefined;
|
|
12979
13043
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -13014,7 +13078,7 @@ declare const VMenu: {
|
|
|
13014
13078
|
props: Record<string, any>;
|
|
13015
13079
|
}) => vue.VNodeChild) | undefined;
|
|
13016
13080
|
};
|
|
13017
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
13081
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
13018
13082
|
'update:modelValue': (value: boolean) => boolean;
|
|
13019
13083
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
13020
13084
|
location: Anchor;
|
|
@@ -13216,6 +13280,7 @@ declare const VMenu: {
|
|
|
13216
13280
|
noClickAnimation: boolean;
|
|
13217
13281
|
persistent: boolean;
|
|
13218
13282
|
scrim: string | boolean;
|
|
13283
|
+
_disableGlobalStack: boolean;
|
|
13219
13284
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
13220
13285
|
transition: {
|
|
13221
13286
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -13291,11 +13356,12 @@ declare const VMenu: {
|
|
|
13291
13356
|
type: (StringConstructor | NumberConstructor)[];
|
|
13292
13357
|
default: number;
|
|
13293
13358
|
};
|
|
13359
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13294
13360
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13295
13361
|
onAfterLeave?: (() => any) | undefined;
|
|
13296
13362
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
13297
13363
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
13298
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
13364
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
13299
13365
|
$attrs: {
|
|
13300
13366
|
[x: string]: unknown;
|
|
13301
13367
|
};
|
|
@@ -13384,6 +13450,7 @@ declare const VMenu: {
|
|
|
13384
13450
|
type: (StringConstructor | NumberConstructor)[];
|
|
13385
13451
|
default: number;
|
|
13386
13452
|
};
|
|
13453
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13387
13454
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13388
13455
|
onAfterLeave?: (() => any) | undefined;
|
|
13389
13456
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -13424,6 +13491,7 @@ declare const VMenu: {
|
|
|
13424
13491
|
noClickAnimation: boolean;
|
|
13425
13492
|
persistent: boolean;
|
|
13426
13493
|
scrim: string | boolean;
|
|
13494
|
+
_disableGlobalStack: boolean;
|
|
13427
13495
|
}> & {
|
|
13428
13496
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
13429
13497
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -13519,6 +13587,7 @@ declare const VMenu: {
|
|
|
13519
13587
|
type: (StringConstructor | NumberConstructor)[];
|
|
13520
13588
|
default: number;
|
|
13521
13589
|
};
|
|
13590
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13522
13591
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13523
13592
|
onAfterLeave?: (() => any) | undefined;
|
|
13524
13593
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -13559,7 +13628,7 @@ declare const VMenu: {
|
|
|
13559
13628
|
props: Record<string, any>;
|
|
13560
13629
|
}) => vue.VNodeChild) | undefined;
|
|
13561
13630
|
};
|
|
13562
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
13631
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
13563
13632
|
__isFragment?: undefined;
|
|
13564
13633
|
__isTeleport?: undefined;
|
|
13565
13634
|
__isSuspense?: undefined;
|
|
@@ -13711,6 +13780,7 @@ declare const VMenu: {
|
|
|
13711
13780
|
noClickAnimation: boolean;
|
|
13712
13781
|
persistent: boolean;
|
|
13713
13782
|
scrim: string | boolean;
|
|
13783
|
+
_disableGlobalStack: boolean;
|
|
13714
13784
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
13715
13785
|
transition: {
|
|
13716
13786
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -13786,11 +13856,12 @@ declare const VMenu: {
|
|
|
13786
13856
|
type: (StringConstructor | NumberConstructor)[];
|
|
13787
13857
|
default: number;
|
|
13788
13858
|
};
|
|
13859
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13789
13860
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13790
13861
|
onAfterLeave?: (() => any) | undefined;
|
|
13791
13862
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
13792
13863
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
13793
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
13864
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
13794
13865
|
$attrs: {
|
|
13795
13866
|
[x: string]: unknown;
|
|
13796
13867
|
};
|
|
@@ -13879,6 +13950,7 @@ declare const VMenu: {
|
|
|
13879
13950
|
type: (StringConstructor | NumberConstructor)[];
|
|
13880
13951
|
default: number;
|
|
13881
13952
|
};
|
|
13953
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13882
13954
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13883
13955
|
onAfterLeave?: (() => any) | undefined;
|
|
13884
13956
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -13919,6 +13991,7 @@ declare const VMenu: {
|
|
|
13919
13991
|
noClickAnimation: boolean;
|
|
13920
13992
|
persistent: boolean;
|
|
13921
13993
|
scrim: string | boolean;
|
|
13994
|
+
_disableGlobalStack: boolean;
|
|
13922
13995
|
}> & {
|
|
13923
13996
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
13924
13997
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -14014,6 +14087,7 @@ declare const VMenu: {
|
|
|
14014
14087
|
type: (StringConstructor | NumberConstructor)[];
|
|
14015
14088
|
default: number;
|
|
14016
14089
|
};
|
|
14090
|
+
_disableGlobalStack: BooleanConstructor;
|
|
14017
14091
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
14018
14092
|
onAfterLeave?: (() => any) | undefined;
|
|
14019
14093
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -14054,7 +14128,7 @@ declare const VMenu: {
|
|
|
14054
14128
|
props: Record<string, any>;
|
|
14055
14129
|
}) => vue.VNodeChild) | undefined;
|
|
14056
14130
|
};
|
|
14057
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
14131
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
14058
14132
|
'update:modelValue': (value: boolean) => boolean;
|
|
14059
14133
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
14060
14134
|
location: Anchor;
|
|
@@ -14697,8 +14771,8 @@ declare const VPagination: vue.DefineComponent<{
|
|
|
14697
14771
|
ellipsis: string;
|
|
14698
14772
|
rounded: string | number | boolean;
|
|
14699
14773
|
density: Density;
|
|
14700
|
-
modelValue: number;
|
|
14701
14774
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
14775
|
+
modelValue: number;
|
|
14702
14776
|
nextIcon: IconValue;
|
|
14703
14777
|
prevIcon: IconValue;
|
|
14704
14778
|
firstIcon: IconValue;
|
|
@@ -15747,7 +15821,6 @@ declare const VSelect: {
|
|
|
15747
15821
|
target: PropType<HTMLElement>;
|
|
15748
15822
|
}>>, {}>;
|
|
15749
15823
|
};
|
|
15750
|
-
loading: boolean;
|
|
15751
15824
|
menu: boolean;
|
|
15752
15825
|
autofocus: boolean;
|
|
15753
15826
|
eager: boolean;
|
|
@@ -15768,6 +15841,7 @@ declare const VSelect: {
|
|
|
15768
15841
|
persistentHint: boolean;
|
|
15769
15842
|
persistentPlaceholder: boolean;
|
|
15770
15843
|
persistentCounter: boolean;
|
|
15844
|
+
valueComparator: typeof deepEqual;
|
|
15771
15845
|
itemTitle: SelectItemKey;
|
|
15772
15846
|
itemValue: SelectItemKey;
|
|
15773
15847
|
itemChildren: SelectItemKey;
|
|
@@ -15820,7 +15894,7 @@ declare const VSelect: {
|
|
|
15820
15894
|
default: string;
|
|
15821
15895
|
validator: (v: any) => boolean;
|
|
15822
15896
|
};
|
|
15823
|
-
loading: BooleanConstructor;
|
|
15897
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
15824
15898
|
label: StringConstructor;
|
|
15825
15899
|
prefix: StringConstructor;
|
|
15826
15900
|
autofocus: BooleanConstructor;
|
|
@@ -15838,15 +15912,15 @@ declare const VSelect: {
|
|
|
15838
15912
|
default: string;
|
|
15839
15913
|
validator: (v: any) => boolean;
|
|
15840
15914
|
};
|
|
15841
|
-
modelValue: {
|
|
15842
|
-
type: PropType<any>;
|
|
15843
|
-
default: any;
|
|
15844
|
-
};
|
|
15845
15915
|
variant: {
|
|
15846
15916
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
15847
15917
|
default: string;
|
|
15848
15918
|
validator: (v: any) => boolean;
|
|
15849
15919
|
};
|
|
15920
|
+
modelValue: {
|
|
15921
|
+
type: PropType<any>;
|
|
15922
|
+
default: any;
|
|
15923
|
+
};
|
|
15850
15924
|
bgColor: StringConstructor;
|
|
15851
15925
|
prependIcon: PropType<IconValue>;
|
|
15852
15926
|
appendIcon: PropType<IconValue>;
|
|
@@ -16104,9 +16178,13 @@ declare const VSelect: {
|
|
|
16104
16178
|
default: string;
|
|
16105
16179
|
};
|
|
16106
16180
|
openOnClear: BooleanConstructor;
|
|
16181
|
+
valueComparator: {
|
|
16182
|
+
type: PropType<typeof deepEqual>;
|
|
16183
|
+
default: typeof deepEqual;
|
|
16184
|
+
};
|
|
16107
16185
|
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
16108
16186
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16109
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "
|
|
16187
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear">;
|
|
16110
16188
|
$attrs: {
|
|
16111
16189
|
[x: string]: unknown;
|
|
16112
16190
|
};
|
|
@@ -16162,7 +16240,7 @@ declare const VSelect: {
|
|
|
16162
16240
|
default: string;
|
|
16163
16241
|
validator: (v: any) => boolean;
|
|
16164
16242
|
};
|
|
16165
|
-
loading: BooleanConstructor;
|
|
16243
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
16166
16244
|
label: StringConstructor;
|
|
16167
16245
|
prefix: StringConstructor;
|
|
16168
16246
|
autofocus: BooleanConstructor;
|
|
@@ -16180,15 +16258,15 @@ declare const VSelect: {
|
|
|
16180
16258
|
default: string;
|
|
16181
16259
|
validator: (v: any) => boolean;
|
|
16182
16260
|
};
|
|
16183
|
-
modelValue: {
|
|
16184
|
-
type: PropType<any>;
|
|
16185
|
-
default: any;
|
|
16186
|
-
};
|
|
16187
16261
|
variant: {
|
|
16188
16262
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16189
16263
|
default: string;
|
|
16190
16264
|
validator: (v: any) => boolean;
|
|
16191
16265
|
};
|
|
16266
|
+
modelValue: {
|
|
16267
|
+
type: PropType<any>;
|
|
16268
|
+
default: any;
|
|
16269
|
+
};
|
|
16192
16270
|
bgColor: StringConstructor;
|
|
16193
16271
|
prependIcon: PropType<IconValue>;
|
|
16194
16272
|
appendIcon: PropType<IconValue>;
|
|
@@ -16446,6 +16524,10 @@ declare const VSelect: {
|
|
|
16446
16524
|
default: string;
|
|
16447
16525
|
};
|
|
16448
16526
|
openOnClear: BooleanConstructor;
|
|
16527
|
+
valueComparator: {
|
|
16528
|
+
type: PropType<typeof deepEqual>;
|
|
16529
|
+
default: typeof deepEqual;
|
|
16530
|
+
};
|
|
16449
16531
|
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
16450
16532
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16451
16533
|
}, {
|
|
@@ -16471,7 +16553,6 @@ declare const VSelect: {
|
|
|
16471
16553
|
target: PropType<HTMLElement>;
|
|
16472
16554
|
}>>, {}>;
|
|
16473
16555
|
};
|
|
16474
|
-
loading: boolean;
|
|
16475
16556
|
menu: boolean;
|
|
16476
16557
|
autofocus: boolean;
|
|
16477
16558
|
eager: boolean;
|
|
@@ -16492,6 +16573,7 @@ declare const VSelect: {
|
|
|
16492
16573
|
persistentHint: boolean;
|
|
16493
16574
|
persistentPlaceholder: boolean;
|
|
16494
16575
|
persistentCounter: boolean;
|
|
16576
|
+
valueComparator: typeof deepEqual;
|
|
16495
16577
|
itemTitle: SelectItemKey;
|
|
16496
16578
|
itemValue: SelectItemKey;
|
|
16497
16579
|
itemChildren: SelectItemKey;
|
|
@@ -16564,7 +16646,7 @@ declare const VSelect: {
|
|
|
16564
16646
|
default: string;
|
|
16565
16647
|
validator: (v: any) => boolean;
|
|
16566
16648
|
};
|
|
16567
|
-
loading: BooleanConstructor;
|
|
16649
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
16568
16650
|
label: StringConstructor;
|
|
16569
16651
|
prefix: StringConstructor;
|
|
16570
16652
|
autofocus: BooleanConstructor;
|
|
@@ -16582,15 +16664,15 @@ declare const VSelect: {
|
|
|
16582
16664
|
default: string;
|
|
16583
16665
|
validator: (v: any) => boolean;
|
|
16584
16666
|
};
|
|
16585
|
-
modelValue: {
|
|
16586
|
-
type: PropType<any>;
|
|
16587
|
-
default: any;
|
|
16588
|
-
};
|
|
16589
16667
|
variant: {
|
|
16590
16668
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16591
16669
|
default: string;
|
|
16592
16670
|
validator: (v: any) => boolean;
|
|
16593
16671
|
};
|
|
16672
|
+
modelValue: {
|
|
16673
|
+
type: PropType<any>;
|
|
16674
|
+
default: any;
|
|
16675
|
+
};
|
|
16594
16676
|
bgColor: StringConstructor;
|
|
16595
16677
|
prependIcon: PropType<IconValue>;
|
|
16596
16678
|
appendIcon: PropType<IconValue>;
|
|
@@ -16848,6 +16930,10 @@ declare const VSelect: {
|
|
|
16848
16930
|
default: string;
|
|
16849
16931
|
};
|
|
16850
16932
|
openOnClear: BooleanConstructor;
|
|
16933
|
+
valueComparator: {
|
|
16934
|
+
type: PropType<typeof deepEqual>;
|
|
16935
|
+
default: typeof deepEqual;
|
|
16936
|
+
};
|
|
16851
16937
|
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
16852
16938
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16853
16939
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -16901,7 +16987,7 @@ declare const VSelect: {
|
|
|
16901
16987
|
default: string;
|
|
16902
16988
|
validator: (v: any) => boolean;
|
|
16903
16989
|
};
|
|
16904
|
-
loading: BooleanConstructor;
|
|
16990
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
16905
16991
|
label: StringConstructor;
|
|
16906
16992
|
prefix: StringConstructor;
|
|
16907
16993
|
autofocus: BooleanConstructor;
|
|
@@ -16919,15 +17005,15 @@ declare const VSelect: {
|
|
|
16919
17005
|
default: string;
|
|
16920
17006
|
validator: (v: any) => boolean;
|
|
16921
17007
|
};
|
|
16922
|
-
modelValue: {
|
|
16923
|
-
type: PropType<any>;
|
|
16924
|
-
default: any;
|
|
16925
|
-
};
|
|
16926
17008
|
variant: {
|
|
16927
17009
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16928
17010
|
default: string;
|
|
16929
17011
|
validator: (v: any) => boolean;
|
|
16930
17012
|
};
|
|
17013
|
+
modelValue: {
|
|
17014
|
+
type: PropType<any>;
|
|
17015
|
+
default: any;
|
|
17016
|
+
};
|
|
16931
17017
|
bgColor: StringConstructor;
|
|
16932
17018
|
prependIcon: PropType<IconValue>;
|
|
16933
17019
|
appendIcon: PropType<IconValue>;
|
|
@@ -17185,6 +17271,10 @@ declare const VSelect: {
|
|
|
17185
17271
|
default: string;
|
|
17186
17272
|
};
|
|
17187
17273
|
openOnClear: BooleanConstructor;
|
|
17274
|
+
valueComparator: {
|
|
17275
|
+
type: PropType<typeof deepEqual>;
|
|
17276
|
+
default: typeof deepEqual;
|
|
17277
|
+
};
|
|
17188
17278
|
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
17189
17279
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
17190
17280
|
}, {
|
|
@@ -17210,7 +17300,6 @@ declare const VSelect: {
|
|
|
17210
17300
|
target: PropType<HTMLElement>;
|
|
17211
17301
|
}>>, {}>;
|
|
17212
17302
|
};
|
|
17213
|
-
loading: boolean;
|
|
17214
17303
|
menu: boolean;
|
|
17215
17304
|
autofocus: boolean;
|
|
17216
17305
|
eager: boolean;
|
|
@@ -17231,6 +17320,7 @@ declare const VSelect: {
|
|
|
17231
17320
|
persistentHint: boolean;
|
|
17232
17321
|
persistentPlaceholder: boolean;
|
|
17233
17322
|
persistentCounter: boolean;
|
|
17323
|
+
valueComparator: typeof deepEqual;
|
|
17234
17324
|
itemTitle: SelectItemKey;
|
|
17235
17325
|
itemValue: SelectItemKey;
|
|
17236
17326
|
itemChildren: SelectItemKey;
|
|
@@ -18350,8 +18440,8 @@ declare const VSnackbar: {
|
|
|
18350
18440
|
timeout: string | number;
|
|
18351
18441
|
vertical: boolean;
|
|
18352
18442
|
rounded: string | number | boolean;
|
|
18353
|
-
modelValue: boolean;
|
|
18354
18443
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
18444
|
+
modelValue: boolean;
|
|
18355
18445
|
activatorProps: Record<string, any>;
|
|
18356
18446
|
openOnClick: boolean;
|
|
18357
18447
|
openOnHover: boolean;
|
|
@@ -18456,7 +18546,7 @@ declare const VSnackbar: {
|
|
|
18456
18546
|
vertical: BooleanConstructor;
|
|
18457
18547
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">>> & {
|
|
18458
18548
|
"onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
|
|
18459
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "
|
|
18549
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "variant" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "closeOnBack" | "contained" | "multiLine">;
|
|
18460
18550
|
$attrs: {
|
|
18461
18551
|
[x: string]: unknown;
|
|
18462
18552
|
};
|
|
@@ -18591,6 +18681,7 @@ declare const VSnackbar: {
|
|
|
18591
18681
|
noClickAnimation: boolean;
|
|
18592
18682
|
persistent: boolean;
|
|
18593
18683
|
scrim: string | boolean;
|
|
18684
|
+
_disableGlobalStack: boolean;
|
|
18594
18685
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
18595
18686
|
transition: {
|
|
18596
18687
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -18666,11 +18757,12 @@ declare const VSnackbar: {
|
|
|
18666
18757
|
type: (StringConstructor | NumberConstructor)[];
|
|
18667
18758
|
default: number;
|
|
18668
18759
|
};
|
|
18760
|
+
_disableGlobalStack: BooleanConstructor;
|
|
18669
18761
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
18670
18762
|
onAfterLeave?: (() => any) | undefined;
|
|
18671
18763
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18672
18764
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
18673
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
18765
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
18674
18766
|
$attrs: {
|
|
18675
18767
|
[x: string]: unknown;
|
|
18676
18768
|
};
|
|
@@ -18759,6 +18851,7 @@ declare const VSnackbar: {
|
|
|
18759
18851
|
type: (StringConstructor | NumberConstructor)[];
|
|
18760
18852
|
default: number;
|
|
18761
18853
|
};
|
|
18854
|
+
_disableGlobalStack: BooleanConstructor;
|
|
18762
18855
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
18763
18856
|
onAfterLeave?: (() => any) | undefined;
|
|
18764
18857
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -18799,6 +18892,7 @@ declare const VSnackbar: {
|
|
|
18799
18892
|
noClickAnimation: boolean;
|
|
18800
18893
|
persistent: boolean;
|
|
18801
18894
|
scrim: string | boolean;
|
|
18895
|
+
_disableGlobalStack: boolean;
|
|
18802
18896
|
}> & {
|
|
18803
18897
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
18804
18898
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -18894,6 +18988,7 @@ declare const VSnackbar: {
|
|
|
18894
18988
|
type: (StringConstructor | NumberConstructor)[];
|
|
18895
18989
|
default: number;
|
|
18896
18990
|
};
|
|
18991
|
+
_disableGlobalStack: BooleanConstructor;
|
|
18897
18992
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
18898
18993
|
onAfterLeave?: (() => any) | undefined;
|
|
18899
18994
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -18934,7 +19029,7 @@ declare const VSnackbar: {
|
|
|
18934
19029
|
props: Record<string, any>;
|
|
18935
19030
|
}) => vue.VNodeChild) | undefined;
|
|
18936
19031
|
};
|
|
18937
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
19032
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
18938
19033
|
'update:modelValue': (v: boolean) => boolean;
|
|
18939
19034
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">, string, {
|
|
18940
19035
|
absolute: boolean;
|
|
@@ -18949,8 +19044,8 @@ declare const VSnackbar: {
|
|
|
18949
19044
|
timeout: string | number;
|
|
18950
19045
|
vertical: boolean;
|
|
18951
19046
|
rounded: string | number | boolean;
|
|
18952
|
-
modelValue: boolean;
|
|
18953
19047
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
19048
|
+
modelValue: boolean;
|
|
18954
19049
|
activatorProps: Record<string, any>;
|
|
18955
19050
|
openOnClick: boolean;
|
|
18956
19051
|
openOnHover: boolean;
|
|
@@ -19103,6 +19198,7 @@ declare const VSnackbar: {
|
|
|
19103
19198
|
noClickAnimation: boolean;
|
|
19104
19199
|
persistent: boolean;
|
|
19105
19200
|
scrim: string | boolean;
|
|
19201
|
+
_disableGlobalStack: boolean;
|
|
19106
19202
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
19107
19203
|
transition: {
|
|
19108
19204
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -19178,11 +19274,12 @@ declare const VSnackbar: {
|
|
|
19178
19274
|
type: (StringConstructor | NumberConstructor)[];
|
|
19179
19275
|
default: number;
|
|
19180
19276
|
};
|
|
19277
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19181
19278
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19182
19279
|
onAfterLeave?: (() => any) | undefined;
|
|
19183
19280
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
19184
19281
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
19185
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
19282
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
19186
19283
|
$attrs: {
|
|
19187
19284
|
[x: string]: unknown;
|
|
19188
19285
|
};
|
|
@@ -19271,6 +19368,7 @@ declare const VSnackbar: {
|
|
|
19271
19368
|
type: (StringConstructor | NumberConstructor)[];
|
|
19272
19369
|
default: number;
|
|
19273
19370
|
};
|
|
19371
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19274
19372
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19275
19373
|
onAfterLeave?: (() => any) | undefined;
|
|
19276
19374
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19311,6 +19409,7 @@ declare const VSnackbar: {
|
|
|
19311
19409
|
noClickAnimation: boolean;
|
|
19312
19410
|
persistent: boolean;
|
|
19313
19411
|
scrim: string | boolean;
|
|
19412
|
+
_disableGlobalStack: boolean;
|
|
19314
19413
|
}> & {
|
|
19315
19414
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
19316
19415
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -19406,6 +19505,7 @@ declare const VSnackbar: {
|
|
|
19406
19505
|
type: (StringConstructor | NumberConstructor)[];
|
|
19407
19506
|
default: number;
|
|
19408
19507
|
};
|
|
19508
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19409
19509
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19410
19510
|
onAfterLeave?: (() => any) | undefined;
|
|
19411
19511
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19446,7 +19546,7 @@ declare const VSnackbar: {
|
|
|
19446
19546
|
props: Record<string, any>;
|
|
19447
19547
|
}) => vue.VNodeChild) | undefined;
|
|
19448
19548
|
};
|
|
19449
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
19549
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
19450
19550
|
__isFragment?: undefined;
|
|
19451
19551
|
__isTeleport?: undefined;
|
|
19452
19552
|
__isSuspense?: undefined;
|
|
@@ -19571,6 +19671,7 @@ declare const VSnackbar: {
|
|
|
19571
19671
|
noClickAnimation: boolean;
|
|
19572
19672
|
persistent: boolean;
|
|
19573
19673
|
scrim: string | boolean;
|
|
19674
|
+
_disableGlobalStack: boolean;
|
|
19574
19675
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
19575
19676
|
transition: {
|
|
19576
19677
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -19646,11 +19747,12 @@ declare const VSnackbar: {
|
|
|
19646
19747
|
type: (StringConstructor | NumberConstructor)[];
|
|
19647
19748
|
default: number;
|
|
19648
19749
|
};
|
|
19750
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19649
19751
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19650
19752
|
onAfterLeave?: (() => any) | undefined;
|
|
19651
19753
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
19652
19754
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
19653
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
19755
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
19654
19756
|
$attrs: {
|
|
19655
19757
|
[x: string]: unknown;
|
|
19656
19758
|
};
|
|
@@ -19739,6 +19841,7 @@ declare const VSnackbar: {
|
|
|
19739
19841
|
type: (StringConstructor | NumberConstructor)[];
|
|
19740
19842
|
default: number;
|
|
19741
19843
|
};
|
|
19844
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19742
19845
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19743
19846
|
onAfterLeave?: (() => any) | undefined;
|
|
19744
19847
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19779,6 +19882,7 @@ declare const VSnackbar: {
|
|
|
19779
19882
|
noClickAnimation: boolean;
|
|
19780
19883
|
persistent: boolean;
|
|
19781
19884
|
scrim: string | boolean;
|
|
19885
|
+
_disableGlobalStack: boolean;
|
|
19782
19886
|
}> & {
|
|
19783
19887
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
19784
19888
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -19874,6 +19978,7 @@ declare const VSnackbar: {
|
|
|
19874
19978
|
type: (StringConstructor | NumberConstructor)[];
|
|
19875
19979
|
default: number;
|
|
19876
19980
|
};
|
|
19981
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19877
19982
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19878
19983
|
onAfterLeave?: (() => any) | undefined;
|
|
19879
19984
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19914,7 +20019,7 @@ declare const VSnackbar: {
|
|
|
19914
20019
|
props: Record<string, any>;
|
|
19915
20020
|
}) => vue.VNodeChild) | undefined;
|
|
19916
20021
|
};
|
|
19917
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
20022
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
19918
20023
|
'update:modelValue': (v: boolean) => boolean;
|
|
19919
20024
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">, string, {
|
|
19920
20025
|
absolute: boolean;
|
|
@@ -19929,8 +20034,8 @@ declare const VSnackbar: {
|
|
|
19929
20034
|
timeout: string | number;
|
|
19930
20035
|
vertical: boolean;
|
|
19931
20036
|
rounded: string | number | boolean;
|
|
19932
|
-
modelValue: boolean;
|
|
19933
20037
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
20038
|
+
modelValue: boolean;
|
|
19934
20039
|
activatorProps: Record<string, any>;
|
|
19935
20040
|
openOnClick: boolean;
|
|
19936
20041
|
openOnHover: boolean;
|
|
@@ -20399,7 +20504,7 @@ declare const VTable: vue.DefineComponent<{
|
|
|
20399
20504
|
declare type VTable = InstanceType<typeof VTable>;
|
|
20400
20505
|
|
|
20401
20506
|
declare const VTextarea: vue.DefineComponent<{
|
|
20402
|
-
loading: BooleanConstructor;
|
|
20507
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
20403
20508
|
theme: StringConstructor;
|
|
20404
20509
|
appendInnerIcon: PropType<IconValue>;
|
|
20405
20510
|
bgColor: StringConstructor;
|
|
@@ -20711,7 +20816,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
20711
20816
|
'update:focused': (focused: boolean) => true;
|
|
20712
20817
|
'update:modelValue': (val: string) => true;
|
|
20713
20818
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
20714
|
-
loading: BooleanConstructor;
|
|
20819
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
20715
20820
|
theme: StringConstructor;
|
|
20716
20821
|
appendInnerIcon: PropType<IconValue>;
|
|
20717
20822
|
bgColor: StringConstructor;
|
|
@@ -20806,7 +20911,6 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
20806
20911
|
error: boolean;
|
|
20807
20912
|
active: boolean;
|
|
20808
20913
|
direction: "horizontal" | "vertical";
|
|
20809
|
-
loading: boolean;
|
|
20810
20914
|
autofocus: boolean;
|
|
20811
20915
|
disabled: boolean;
|
|
20812
20916
|
readonly: boolean;
|
|
@@ -20841,7 +20945,6 @@ declare const VTextField: {
|
|
|
20841
20945
|
error: boolean;
|
|
20842
20946
|
active: boolean;
|
|
20843
20947
|
direction: "horizontal" | "vertical";
|
|
20844
|
-
loading: boolean;
|
|
20845
20948
|
autofocus: boolean;
|
|
20846
20949
|
disabled: boolean;
|
|
20847
20950
|
readonly: boolean;
|
|
@@ -20861,7 +20964,7 @@ declare const VTextField: {
|
|
|
20861
20964
|
persistentPlaceholder: boolean;
|
|
20862
20965
|
persistentCounter: boolean;
|
|
20863
20966
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
20864
|
-
loading: BooleanConstructor;
|
|
20967
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
20865
20968
|
theme: StringConstructor;
|
|
20866
20969
|
appendInnerIcon: PropType<IconValue>;
|
|
20867
20970
|
bgColor: StringConstructor;
|
|
@@ -20945,7 +21048,7 @@ declare const VTextField: {
|
|
|
20945
21048
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
20946
21049
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
20947
21050
|
"onClick:input"?: ((e: MouseEvent) => any) | undefined;
|
|
20948
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "
|
|
21051
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "autofocus" | "disabled" | "readonly" | "messages" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter">;
|
|
20949
21052
|
$attrs: {
|
|
20950
21053
|
[x: string]: unknown;
|
|
20951
21054
|
};
|
|
@@ -20960,7 +21063,7 @@ declare const VTextField: {
|
|
|
20960
21063
|
$emit: ((event: "update:modelValue", val: string) => void) & ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "click:input", e: MouseEvent) => void);
|
|
20961
21064
|
$el: any;
|
|
20962
21065
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
20963
|
-
loading: BooleanConstructor;
|
|
21066
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
20964
21067
|
theme: StringConstructor;
|
|
20965
21068
|
appendInnerIcon: PropType<IconValue>;
|
|
20966
21069
|
bgColor: StringConstructor;
|
|
@@ -21272,7 +21375,6 @@ declare const VTextField: {
|
|
|
21272
21375
|
reverse: boolean;
|
|
21273
21376
|
error: boolean;
|
|
21274
21377
|
active: boolean;
|
|
21275
|
-
loading: boolean;
|
|
21276
21378
|
disabled: boolean;
|
|
21277
21379
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
21278
21380
|
clearIcon: IconValue;
|
|
@@ -21282,7 +21384,7 @@ declare const VTextField: {
|
|
|
21282
21384
|
persistentClear: boolean;
|
|
21283
21385
|
singleLine: boolean;
|
|
21284
21386
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
21285
|
-
loading: BooleanConstructor;
|
|
21387
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21286
21388
|
theme: StringConstructor;
|
|
21287
21389
|
appendInnerIcon: PropType<IconValue>;
|
|
21288
21390
|
bgColor: StringConstructor;
|
|
@@ -21314,7 +21416,7 @@ declare const VTextField: {
|
|
|
21314
21416
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21315
21417
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21316
21418
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21317
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "
|
|
21419
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
21318
21420
|
$attrs: {
|
|
21319
21421
|
[x: string]: unknown;
|
|
21320
21422
|
};
|
|
@@ -21329,7 +21431,7 @@ declare const VTextField: {
|
|
|
21329
21431
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
|
|
21330
21432
|
$el: any;
|
|
21331
21433
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
21332
|
-
loading: BooleanConstructor;
|
|
21434
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21333
21435
|
theme: StringConstructor;
|
|
21334
21436
|
appendInnerIcon: PropType<IconValue>;
|
|
21335
21437
|
bgColor: StringConstructor;
|
|
@@ -21371,7 +21473,6 @@ declare const VTextField: {
|
|
|
21371
21473
|
reverse: boolean;
|
|
21372
21474
|
error: boolean;
|
|
21373
21475
|
active: boolean;
|
|
21374
|
-
loading: boolean;
|
|
21375
21476
|
disabled: boolean;
|
|
21376
21477
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
21377
21478
|
clearIcon: IconValue;
|
|
@@ -21401,7 +21502,7 @@ declare const VTextField: {
|
|
|
21401
21502
|
$nextTick: typeof nextTick;
|
|
21402
21503
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
21403
21504
|
} & Readonly<ExtractPropTypes<Omit<{
|
|
21404
|
-
loading: BooleanConstructor;
|
|
21505
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21405
21506
|
theme: StringConstructor;
|
|
21406
21507
|
appendInnerIcon: PropType<IconValue>;
|
|
21407
21508
|
bgColor: StringConstructor;
|
|
@@ -21464,7 +21565,7 @@ declare const VTextField: {
|
|
|
21464
21565
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
21465
21566
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
21466
21567
|
};
|
|
21467
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "
|
|
21568
|
+
}, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
21468
21569
|
'click:control': (e: MouseEvent) => boolean;
|
|
21469
21570
|
'click:input': (e: MouseEvent) => boolean;
|
|
21470
21571
|
'update:focused': (focused: boolean) => boolean;
|
|
@@ -21475,7 +21576,6 @@ declare const VTextField: {
|
|
|
21475
21576
|
error: boolean;
|
|
21476
21577
|
active: boolean;
|
|
21477
21578
|
direction: "horizontal" | "vertical";
|
|
21478
|
-
loading: boolean;
|
|
21479
21579
|
autofocus: boolean;
|
|
21480
21580
|
disabled: boolean;
|
|
21481
21581
|
readonly: boolean;
|
|
@@ -21515,7 +21615,7 @@ declare const VTextField: {
|
|
|
21515
21615
|
$nextTick: typeof nextTick;
|
|
21516
21616
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
21517
21617
|
} & Readonly<ExtractPropTypes<Omit<{
|
|
21518
|
-
loading: BooleanConstructor;
|
|
21618
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21519
21619
|
theme: StringConstructor;
|
|
21520
21620
|
appendInnerIcon: PropType<IconValue>;
|
|
21521
21621
|
bgColor: StringConstructor;
|
|
@@ -21827,7 +21927,6 @@ declare const VTextField: {
|
|
|
21827
21927
|
reverse: boolean;
|
|
21828
21928
|
error: boolean;
|
|
21829
21929
|
active: boolean;
|
|
21830
|
-
loading: boolean;
|
|
21831
21930
|
disabled: boolean;
|
|
21832
21931
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
21833
21932
|
clearIcon: IconValue;
|
|
@@ -21837,7 +21936,7 @@ declare const VTextField: {
|
|
|
21837
21936
|
persistentClear: boolean;
|
|
21838
21937
|
singleLine: boolean;
|
|
21839
21938
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
21840
|
-
loading: BooleanConstructor;
|
|
21939
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21841
21940
|
theme: StringConstructor;
|
|
21842
21941
|
appendInnerIcon: PropType<IconValue>;
|
|
21843
21942
|
bgColor: StringConstructor;
|
|
@@ -21869,7 +21968,7 @@ declare const VTextField: {
|
|
|
21869
21968
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21870
21969
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21871
21970
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21872
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "
|
|
21971
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
21873
21972
|
$attrs: {
|
|
21874
21973
|
[x: string]: unknown;
|
|
21875
21974
|
};
|
|
@@ -21884,7 +21983,7 @@ declare const VTextField: {
|
|
|
21884
21983
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
|
|
21885
21984
|
$el: any;
|
|
21886
21985
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
21887
|
-
loading: BooleanConstructor;
|
|
21986
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21888
21987
|
theme: StringConstructor;
|
|
21889
21988
|
appendInnerIcon: PropType<IconValue>;
|
|
21890
21989
|
bgColor: StringConstructor;
|
|
@@ -21926,7 +22025,6 @@ declare const VTextField: {
|
|
|
21926
22025
|
reverse: boolean;
|
|
21927
22026
|
error: boolean;
|
|
21928
22027
|
active: boolean;
|
|
21929
|
-
loading: boolean;
|
|
21930
22028
|
disabled: boolean;
|
|
21931
22029
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
21932
22030
|
clearIcon: IconValue;
|
|
@@ -21956,7 +22054,7 @@ declare const VTextField: {
|
|
|
21956
22054
|
$nextTick: typeof nextTick;
|
|
21957
22055
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
21958
22056
|
} & Readonly<ExtractPropTypes<Omit<{
|
|
21959
|
-
loading: BooleanConstructor;
|
|
22057
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21960
22058
|
theme: StringConstructor;
|
|
21961
22059
|
appendInnerIcon: PropType<IconValue>;
|
|
21962
22060
|
bgColor: StringConstructor;
|
|
@@ -22019,12 +22117,12 @@ declare const VTextField: {
|
|
|
22019
22117
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22020
22118
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
22021
22119
|
};
|
|
22022
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "
|
|
22120
|
+
}, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
22023
22121
|
__isFragment?: undefined;
|
|
22024
22122
|
__isTeleport?: undefined;
|
|
22025
22123
|
__isSuspense?: undefined;
|
|
22026
22124
|
} & vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
22027
|
-
loading: BooleanConstructor;
|
|
22125
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
22028
22126
|
theme: StringConstructor;
|
|
22029
22127
|
appendInnerIcon: PropType<IconValue>;
|
|
22030
22128
|
bgColor: StringConstructor;
|
|
@@ -22336,7 +22434,6 @@ declare const VTextField: {
|
|
|
22336
22434
|
reverse: boolean;
|
|
22337
22435
|
error: boolean;
|
|
22338
22436
|
active: boolean;
|
|
22339
|
-
loading: boolean;
|
|
22340
22437
|
disabled: boolean;
|
|
22341
22438
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
22342
22439
|
clearIcon: IconValue;
|
|
@@ -22346,7 +22443,7 @@ declare const VTextField: {
|
|
|
22346
22443
|
persistentClear: boolean;
|
|
22347
22444
|
singleLine: boolean;
|
|
22348
22445
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
22349
|
-
loading: BooleanConstructor;
|
|
22446
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
22350
22447
|
theme: StringConstructor;
|
|
22351
22448
|
appendInnerIcon: PropType<IconValue>;
|
|
22352
22449
|
bgColor: StringConstructor;
|
|
@@ -22378,7 +22475,7 @@ declare const VTextField: {
|
|
|
22378
22475
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22379
22476
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22380
22477
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22381
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "
|
|
22478
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
22382
22479
|
$attrs: {
|
|
22383
22480
|
[x: string]: unknown;
|
|
22384
22481
|
};
|
|
@@ -22393,7 +22490,7 @@ declare const VTextField: {
|
|
|
22393
22490
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
|
|
22394
22491
|
$el: any;
|
|
22395
22492
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
22396
|
-
loading: BooleanConstructor;
|
|
22493
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
22397
22494
|
theme: StringConstructor;
|
|
22398
22495
|
appendInnerIcon: PropType<IconValue>;
|
|
22399
22496
|
bgColor: StringConstructor;
|
|
@@ -22435,7 +22532,6 @@ declare const VTextField: {
|
|
|
22435
22532
|
reverse: boolean;
|
|
22436
22533
|
error: boolean;
|
|
22437
22534
|
active: boolean;
|
|
22438
|
-
loading: boolean;
|
|
22439
22535
|
disabled: boolean;
|
|
22440
22536
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
22441
22537
|
clearIcon: IconValue;
|
|
@@ -22465,7 +22561,7 @@ declare const VTextField: {
|
|
|
22465
22561
|
$nextTick: typeof nextTick;
|
|
22466
22562
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
22467
22563
|
} & Readonly<ExtractPropTypes<Omit<{
|
|
22468
|
-
loading: BooleanConstructor;
|
|
22564
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
22469
22565
|
theme: StringConstructor;
|
|
22470
22566
|
appendInnerIcon: PropType<IconValue>;
|
|
22471
22567
|
bgColor: StringConstructor;
|
|
@@ -22528,7 +22624,7 @@ declare const VTextField: {
|
|
|
22528
22624
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22529
22625
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
22530
22626
|
};
|
|
22531
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "
|
|
22627
|
+
}, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22532
22628
|
'click:control': (e: MouseEvent) => boolean;
|
|
22533
22629
|
'click:input': (e: MouseEvent) => boolean;
|
|
22534
22630
|
'update:focused': (focused: boolean) => boolean;
|
|
@@ -22539,7 +22635,6 @@ declare const VTextField: {
|
|
|
22539
22635
|
error: boolean;
|
|
22540
22636
|
active: boolean;
|
|
22541
22637
|
direction: "horizontal" | "vertical";
|
|
22542
|
-
loading: boolean;
|
|
22543
22638
|
autofocus: boolean;
|
|
22544
22639
|
disabled: boolean;
|
|
22545
22640
|
readonly: boolean;
|
|
@@ -23145,6 +23240,7 @@ declare const VTooltip: {
|
|
|
23145
23240
|
noClickAnimation: boolean;
|
|
23146
23241
|
persistent: boolean;
|
|
23147
23242
|
scrim: string | boolean;
|
|
23243
|
+
_disableGlobalStack: boolean;
|
|
23148
23244
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
23149
23245
|
transition: {
|
|
23150
23246
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -23220,11 +23316,12 @@ declare const VTooltip: {
|
|
|
23220
23316
|
type: (StringConstructor | NumberConstructor)[];
|
|
23221
23317
|
default: number;
|
|
23222
23318
|
};
|
|
23319
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23223
23320
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23224
23321
|
onAfterLeave?: (() => any) | undefined;
|
|
23225
23322
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
23226
23323
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
23227
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
23324
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
23228
23325
|
$attrs: {
|
|
23229
23326
|
[x: string]: unknown;
|
|
23230
23327
|
};
|
|
@@ -23313,6 +23410,7 @@ declare const VTooltip: {
|
|
|
23313
23410
|
type: (StringConstructor | NumberConstructor)[];
|
|
23314
23411
|
default: number;
|
|
23315
23412
|
};
|
|
23413
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23316
23414
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23317
23415
|
onAfterLeave?: (() => any) | undefined;
|
|
23318
23416
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -23353,6 +23451,7 @@ declare const VTooltip: {
|
|
|
23353
23451
|
noClickAnimation: boolean;
|
|
23354
23452
|
persistent: boolean;
|
|
23355
23453
|
scrim: string | boolean;
|
|
23454
|
+
_disableGlobalStack: boolean;
|
|
23356
23455
|
}> & {
|
|
23357
23456
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
23358
23457
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -23448,6 +23547,7 @@ declare const VTooltip: {
|
|
|
23448
23547
|
type: (StringConstructor | NumberConstructor)[];
|
|
23449
23548
|
default: number;
|
|
23450
23549
|
};
|
|
23550
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23451
23551
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23452
23552
|
onAfterLeave?: (() => any) | undefined;
|
|
23453
23553
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -23488,7 +23588,7 @@ declare const VTooltip: {
|
|
|
23488
23588
|
props: Record<string, any>;
|
|
23489
23589
|
}) => vue.VNodeChild) | undefined;
|
|
23490
23590
|
};
|
|
23491
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
23591
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
23492
23592
|
'update:modelValue': (value: boolean) => boolean;
|
|
23493
23593
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
23494
23594
|
offset: string | number | ((string | number | number[] | undefined) & {});
|
|
@@ -23679,6 +23779,7 @@ declare const VTooltip: {
|
|
|
23679
23779
|
noClickAnimation: boolean;
|
|
23680
23780
|
persistent: boolean;
|
|
23681
23781
|
scrim: string | boolean;
|
|
23782
|
+
_disableGlobalStack: boolean;
|
|
23682
23783
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
23683
23784
|
transition: {
|
|
23684
23785
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -23754,11 +23855,12 @@ declare const VTooltip: {
|
|
|
23754
23855
|
type: (StringConstructor | NumberConstructor)[];
|
|
23755
23856
|
default: number;
|
|
23756
23857
|
};
|
|
23858
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23757
23859
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23758
23860
|
onAfterLeave?: (() => any) | undefined;
|
|
23759
23861
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
23760
23862
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
23761
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
23863
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
23762
23864
|
$attrs: {
|
|
23763
23865
|
[x: string]: unknown;
|
|
23764
23866
|
};
|
|
@@ -23847,6 +23949,7 @@ declare const VTooltip: {
|
|
|
23847
23949
|
type: (StringConstructor | NumberConstructor)[];
|
|
23848
23950
|
default: number;
|
|
23849
23951
|
};
|
|
23952
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23850
23953
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23851
23954
|
onAfterLeave?: (() => any) | undefined;
|
|
23852
23955
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -23887,6 +23990,7 @@ declare const VTooltip: {
|
|
|
23887
23990
|
noClickAnimation: boolean;
|
|
23888
23991
|
persistent: boolean;
|
|
23889
23992
|
scrim: string | boolean;
|
|
23993
|
+
_disableGlobalStack: boolean;
|
|
23890
23994
|
}> & {
|
|
23891
23995
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
23892
23996
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -23982,6 +24086,7 @@ declare const VTooltip: {
|
|
|
23982
24086
|
type: (StringConstructor | NumberConstructor)[];
|
|
23983
24087
|
default: number;
|
|
23984
24088
|
};
|
|
24089
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23985
24090
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23986
24091
|
onAfterLeave?: (() => any) | undefined;
|
|
23987
24092
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -24022,7 +24127,7 @@ declare const VTooltip: {
|
|
|
24022
24127
|
props: Record<string, any>;
|
|
24023
24128
|
}) => vue.VNodeChild) | undefined;
|
|
24024
24129
|
};
|
|
24025
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
24130
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
24026
24131
|
__isFragment?: undefined;
|
|
24027
24132
|
__isTeleport?: undefined;
|
|
24028
24133
|
__isSuspense?: undefined;
|
|
@@ -24171,6 +24276,7 @@ declare const VTooltip: {
|
|
|
24171
24276
|
noClickAnimation: boolean;
|
|
24172
24277
|
persistent: boolean;
|
|
24173
24278
|
scrim: string | boolean;
|
|
24279
|
+
_disableGlobalStack: boolean;
|
|
24174
24280
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
24175
24281
|
transition: {
|
|
24176
24282
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -24246,11 +24352,12 @@ declare const VTooltip: {
|
|
|
24246
24352
|
type: (StringConstructor | NumberConstructor)[];
|
|
24247
24353
|
default: number;
|
|
24248
24354
|
};
|
|
24355
|
+
_disableGlobalStack: BooleanConstructor;
|
|
24249
24356
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
24250
24357
|
onAfterLeave?: (() => any) | undefined;
|
|
24251
24358
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
24252
24359
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
24253
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
24360
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
24254
24361
|
$attrs: {
|
|
24255
24362
|
[x: string]: unknown;
|
|
24256
24363
|
};
|
|
@@ -24339,6 +24446,7 @@ declare const VTooltip: {
|
|
|
24339
24446
|
type: (StringConstructor | NumberConstructor)[];
|
|
24340
24447
|
default: number;
|
|
24341
24448
|
};
|
|
24449
|
+
_disableGlobalStack: BooleanConstructor;
|
|
24342
24450
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
24343
24451
|
onAfterLeave?: (() => any) | undefined;
|
|
24344
24452
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -24379,6 +24487,7 @@ declare const VTooltip: {
|
|
|
24379
24487
|
noClickAnimation: boolean;
|
|
24380
24488
|
persistent: boolean;
|
|
24381
24489
|
scrim: string | boolean;
|
|
24490
|
+
_disableGlobalStack: boolean;
|
|
24382
24491
|
}> & {
|
|
24383
24492
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
24384
24493
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -24474,6 +24583,7 @@ declare const VTooltip: {
|
|
|
24474
24583
|
type: (StringConstructor | NumberConstructor)[];
|
|
24475
24584
|
default: number;
|
|
24476
24585
|
};
|
|
24586
|
+
_disableGlobalStack: BooleanConstructor;
|
|
24477
24587
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
24478
24588
|
onAfterLeave?: (() => any) | undefined;
|
|
24479
24589
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -24514,7 +24624,7 @@ declare const VTooltip: {
|
|
|
24514
24624
|
props: Record<string, any>;
|
|
24515
24625
|
}) => vue.VNodeChild) | undefined;
|
|
24516
24626
|
};
|
|
24517
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
24627
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
24518
24628
|
'update:modelValue': (value: boolean) => boolean;
|
|
24519
24629
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
24520
24630
|
offset: string | number | ((string | number | number[] | undefined) & {});
|
|
@@ -25883,7 +25993,6 @@ declare module '@vue/runtime-core' {
|
|
|
25883
25993
|
}
|
|
25884
25994
|
|
|
25885
25995
|
export interface GlobalComponents {
|
|
25886
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
25887
25996
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
25888
25997
|
VForm: typeof import('vuetify/components')['VForm']
|
|
25889
25998
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
@@ -25893,15 +26002,14 @@ declare module '@vue/runtime-core' {
|
|
|
25893
26002
|
VHover: typeof import('vuetify/components')['VHover']
|
|
25894
26003
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
25895
26004
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
25896
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
25897
26005
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
26006
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
25898
26007
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
25899
26008
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
25900
26009
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
25901
26010
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
25902
26011
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
25903
|
-
|
|
25904
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
26012
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
25905
26013
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
25906
26014
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
25907
26015
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -25921,11 +26029,13 @@ declare module '@vue/runtime-core' {
|
|
|
25921
26029
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
25922
26030
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
25923
26031
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
26032
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
25924
26033
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
25925
26034
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
25926
26035
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
25927
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
25928
26036
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
26037
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
26038
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
25929
26039
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
25930
26040
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
25931
26041
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
@@ -25934,8 +26044,8 @@ declare module '@vue/runtime-core' {
|
|
|
25934
26044
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
25935
26045
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
25936
26046
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
25937
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
25938
26047
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
26048
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
25939
26049
|
VCard: typeof import('vuetify/components')['VCard']
|
|
25940
26050
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
25941
26051
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
@@ -25947,28 +26057,27 @@ declare module '@vue/runtime-core' {
|
|
|
25947
26057
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
25948
26058
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
25949
26059
|
VChip: typeof import('vuetify/components')['VChip']
|
|
25950
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
25951
26060
|
VCode: typeof import('vuetify/components')['VCode']
|
|
26061
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
25952
26062
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
25953
26063
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
25954
26064
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
25955
26065
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
25956
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
25957
26066
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
25958
26067
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
25959
26068
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
25960
26069
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
26070
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
25961
26071
|
VField: typeof import('vuetify/components')['VField']
|
|
25962
26072
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
25963
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
25964
26073
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
26074
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
26075
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
25965
26076
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
25966
26077
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
25967
26078
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
25968
26079
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
25969
26080
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
25970
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
25971
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
25972
26081
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
25973
26082
|
VItem: typeof import('vuetify/components')['VItem']
|
|
25974
26083
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
@@ -25985,14 +26094,15 @@ declare module '@vue/runtime-core' {
|
|
|
25985
26094
|
VMain: typeof import('vuetify/components')['VMain']
|
|
25986
26095
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
25987
26096
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
25988
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
25989
26097
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
25990
26098
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
26099
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
25991
26100
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
25992
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
25993
26101
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
26102
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
25994
26103
|
VRating: typeof import('vuetify/components')['VRating']
|
|
25995
26104
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
26105
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
25996
26106
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
25997
26107
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
25998
26108
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
@@ -26000,20 +26110,20 @@ declare module '@vue/runtime-core' {
|
|
|
26000
26110
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
26001
26111
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
26002
26112
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
26003
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
26004
26113
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
26005
26114
|
VTab: typeof import('vuetify/components')['VTab']
|
|
26115
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
26116
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
26006
26117
|
VTable: typeof import('vuetify/components')['VTable']
|
|
26007
26118
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
26008
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
|
26009
26119
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
26010
26120
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
26121
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
26011
26122
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
26012
26123
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
26013
26124
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
26014
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
26015
26125
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
26016
26126
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
26017
|
-
|
|
26127
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
26018
26128
|
}
|
|
26019
26129
|
}
|