@vuetify/nightly 3.1.2-next-20230113.0 → 3.1.2
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/CHANGELOG.md +15 -2
- package/dist/json/importMap.json +56 -56
- package/dist/vuetify-labs.css +178 -177
- package/dist/vuetify-labs.d.ts +40 -3
- package/dist/vuetify-labs.esm.js +158 -90
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +158 -90
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +203 -202
- package/dist/vuetify.d.ts +56 -19
- package/dist/vuetify.esm.js +105 -74
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +105 -74
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +52 -52
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBtn/VBtn.mjs +9 -3
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VCard/VCard.mjs +5 -2
- package/lib/components/VCard/VCard.mjs.map +1 -1
- package/lib/components/VCard/index.d.ts +8 -2
- package/lib/components/VCombobox/VCombobox.mjs +2 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VFileInput/VFileInput.css +1 -0
- package/lib/components/VFileInput/VFileInput.sass +1 -0
- package/lib/components/VList/VListItem.css +1 -1
- package/lib/components/VList/VListItem.mjs +5 -1
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/VListItem.sass +1 -1
- package/lib/components/VList/index.d.ts +20 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs +13 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs.map +1 -1
- package/lib/components/VProgressLinear/index.d.ts +18 -0
- package/lib/components/VSelect/VSelect.mjs +1 -0
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.mjs +5 -1
- package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
- package/lib/components/index.d.ts +40 -3
- package/lib/composables/filter.mjs +3 -3
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.ts +16 -16
- package/lib/labs/VDataTable/VDataTable.mjs +4 -1
- package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs +3 -3
- package/lib/labs/VDataTable/VDataTableGroupHeaderRow.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableRows.mjs +36 -8
- package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableVirtual.mjs +4 -1
- package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/group.mjs +9 -4
- package/lib/labs/VDataTable/composables/group.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
|
@@ -4633,7 +4633,10 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4633
4633
|
};
|
|
4634
4634
|
prependAvatar: StringConstructor;
|
|
4635
4635
|
prependIcon: vue.PropType<IconValue>;
|
|
4636
|
-
ripple:
|
|
4636
|
+
ripple: {
|
|
4637
|
+
type: BooleanConstructor;
|
|
4638
|
+
default: boolean;
|
|
4639
|
+
};
|
|
4637
4640
|
subtitle: StringConstructor;
|
|
4638
4641
|
text: StringConstructor;
|
|
4639
4642
|
title: StringConstructor;
|
|
@@ -4694,7 +4697,10 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4694
4697
|
};
|
|
4695
4698
|
prependAvatar: StringConstructor;
|
|
4696
4699
|
prependIcon: vue.PropType<IconValue>;
|
|
4697
|
-
ripple:
|
|
4700
|
+
ripple: {
|
|
4701
|
+
type: BooleanConstructor;
|
|
4702
|
+
default: boolean;
|
|
4703
|
+
};
|
|
4698
4704
|
subtitle: StringConstructor;
|
|
4699
4705
|
text: StringConstructor;
|
|
4700
4706
|
title: StringConstructor;
|
|
@@ -11921,6 +11927,7 @@ declare const VListItem: {
|
|
|
11921
11927
|
rounded: string | number | boolean;
|
|
11922
11928
|
density: Density;
|
|
11923
11929
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
11930
|
+
ripple: boolean;
|
|
11924
11931
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
11925
11932
|
color: StringConstructor;
|
|
11926
11933
|
variant: Omit<{
|
|
@@ -11977,6 +11984,10 @@ declare const VListItem: {
|
|
|
11977
11984
|
nav: BooleanConstructor;
|
|
11978
11985
|
prependAvatar: StringConstructor;
|
|
11979
11986
|
prependIcon: PropType<IconValue>;
|
|
11987
|
+
ripple: {
|
|
11988
|
+
type: BooleanConstructor;
|
|
11989
|
+
default: boolean;
|
|
11990
|
+
};
|
|
11980
11991
|
subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11981
11992
|
title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11982
11993
|
value: null;
|
|
@@ -11984,7 +11995,7 @@ declare const VListItem: {
|
|
|
11984
11995
|
onClickOnce: PropType<EventProp<(...args: any[]) => any>>;
|
|
11985
11996
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:title" | "v-slot:subtitle">>> & {
|
|
11986
11997
|
onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
|
|
11987
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "replace" | "link" | "exact" | "active" | "nav" | "disabled" | "tag" | "rounded" | "density" | "variant">;
|
|
11998
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "replace" | "link" | "exact" | "active" | "nav" | "disabled" | "tag" | "rounded" | "density" | "variant" | "ripple">;
|
|
11988
11999
|
$attrs: {
|
|
11989
12000
|
[x: string]: unknown;
|
|
11990
12001
|
};
|
|
@@ -12054,6 +12065,10 @@ declare const VListItem: {
|
|
|
12054
12065
|
nav: BooleanConstructor;
|
|
12055
12066
|
prependAvatar: StringConstructor;
|
|
12056
12067
|
prependIcon: PropType<IconValue>;
|
|
12068
|
+
ripple: {
|
|
12069
|
+
type: BooleanConstructor;
|
|
12070
|
+
default: boolean;
|
|
12071
|
+
};
|
|
12057
12072
|
subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12058
12073
|
title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12059
12074
|
value: null;
|
|
@@ -12074,6 +12089,7 @@ declare const VListItem: {
|
|
|
12074
12089
|
rounded: string | number | boolean;
|
|
12075
12090
|
density: Density;
|
|
12076
12091
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
12092
|
+
ripple: boolean;
|
|
12077
12093
|
}> & {
|
|
12078
12094
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
12079
12095
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -12150,6 +12166,10 @@ declare const VListItem: {
|
|
|
12150
12166
|
nav: BooleanConstructor;
|
|
12151
12167
|
prependAvatar: StringConstructor;
|
|
12152
12168
|
prependIcon: PropType<IconValue>;
|
|
12169
|
+
ripple: {
|
|
12170
|
+
type: BooleanConstructor;
|
|
12171
|
+
default: boolean;
|
|
12172
|
+
};
|
|
12153
12173
|
subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12154
12174
|
title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12155
12175
|
value: null;
|
|
@@ -12217,6 +12237,10 @@ declare const VListItem: {
|
|
|
12217
12237
|
nav: BooleanConstructor;
|
|
12218
12238
|
prependAvatar: StringConstructor;
|
|
12219
12239
|
prependIcon: PropType<IconValue>;
|
|
12240
|
+
ripple: {
|
|
12241
|
+
type: BooleanConstructor;
|
|
12242
|
+
default: boolean;
|
|
12243
|
+
};
|
|
12220
12244
|
subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12221
12245
|
title: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
12222
12246
|
value: null;
|
|
@@ -12237,6 +12261,7 @@ declare const VListItem: {
|
|
|
12237
12261
|
rounded: string | number | boolean;
|
|
12238
12262
|
density: Density;
|
|
12239
12263
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
12264
|
+
ripple: boolean;
|
|
12240
12265
|
}> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
12241
12266
|
$props: SlotsToProps<{
|
|
12242
12267
|
prepend: [ListItemSlot];
|
|
@@ -14865,6 +14890,11 @@ declare const VProgressLinear: vue.DefineComponent<{
|
|
|
14865
14890
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14866
14891
|
default: undefined;
|
|
14867
14892
|
};
|
|
14893
|
+
location: {
|
|
14894
|
+
type: vue.PropType<Anchor | (Anchor & {})>;
|
|
14895
|
+
default: Anchor | (Anchor & {});
|
|
14896
|
+
};
|
|
14897
|
+
absolute: BooleanConstructor;
|
|
14868
14898
|
active: {
|
|
14869
14899
|
type: BooleanConstructor;
|
|
14870
14900
|
default: boolean;
|
|
@@ -14906,6 +14936,11 @@ declare const VProgressLinear: vue.DefineComponent<{
|
|
|
14906
14936
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14907
14937
|
default: undefined;
|
|
14908
14938
|
};
|
|
14939
|
+
location: {
|
|
14940
|
+
type: vue.PropType<Anchor | (Anchor & {})>;
|
|
14941
|
+
default: Anchor | (Anchor & {});
|
|
14942
|
+
};
|
|
14943
|
+
absolute: BooleanConstructor;
|
|
14909
14944
|
active: {
|
|
14910
14945
|
type: BooleanConstructor;
|
|
14911
14946
|
default: boolean;
|
|
@@ -14940,6 +14975,8 @@ declare const VProgressLinear: vue.DefineComponent<{
|
|
|
14940
14975
|
}, {
|
|
14941
14976
|
reverse: boolean;
|
|
14942
14977
|
max: string | number;
|
|
14978
|
+
absolute: boolean;
|
|
14979
|
+
location: Anchor | (Anchor & {});
|
|
14943
14980
|
height: string | number;
|
|
14944
14981
|
active: boolean;
|
|
14945
14982
|
tag: string;
|
|
@@ -25982,20 +26019,20 @@ declare module '@vue/runtime-core' {
|
|
|
25982
26019
|
|
|
25983
26020
|
export interface GlobalComponents {
|
|
25984
26021
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
25985
|
-
|
|
26022
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
25986
26023
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
25987
26024
|
VCol: typeof import('vuetify/components')['VCol']
|
|
25988
26025
|
VRow: typeof import('vuetify/components')['VRow']
|
|
25989
26026
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
25990
|
-
|
|
26027
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
25991
26028
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
25992
26029
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
25993
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
25994
26030
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
25995
|
-
|
|
26031
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
25996
26032
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
25997
26033
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
25998
26034
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
26035
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
25999
26036
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
26000
26037
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
26001
26038
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
@@ -26016,14 +26053,11 @@ declare module '@vue/runtime-core' {
|
|
|
26016
26053
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
26017
26054
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
26018
26055
|
VApp: typeof import('vuetify/components')['VApp']
|
|
26019
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
26020
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
26021
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
26022
26056
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
26023
26057
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
26024
26058
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
26025
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
26026
26059
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
26060
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
26027
26061
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
26028
26062
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
26029
26063
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
@@ -26044,12 +26078,12 @@ declare module '@vue/runtime-core' {
|
|
|
26044
26078
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
26045
26079
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
26046
26080
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
26047
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
26048
26081
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
26082
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
26049
26083
|
VCode: typeof import('vuetify/components')['VCode']
|
|
26050
26084
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
26051
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
26052
26085
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
26086
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
26053
26087
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
26054
26088
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
26055
26089
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
@@ -26059,6 +26093,9 @@ declare module '@vue/runtime-core' {
|
|
|
26059
26093
|
VField: typeof import('vuetify/components')['VField']
|
|
26060
26094
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
26061
26095
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
26096
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
26097
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
26098
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
26062
26099
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
26063
26100
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
26064
26101
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
@@ -26067,9 +26104,9 @@ declare module '@vue/runtime-core' {
|
|
|
26067
26104
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
26068
26105
|
VImg: typeof import('vuetify/components')['VImg']
|
|
26069
26106
|
VInput: typeof import('vuetify/components')['VInput']
|
|
26107
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
26070
26108
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
26071
26109
|
VItem: typeof import('vuetify/components')['VItem']
|
|
26072
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
26073
26110
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
26074
26111
|
VList: typeof import('vuetify/components')['VList']
|
|
26075
26112
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
@@ -26081,17 +26118,17 @@ declare module '@vue/runtime-core' {
|
|
|
26081
26118
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
26082
26119
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
26083
26120
|
VMain: typeof import('vuetify/components')['VMain']
|
|
26084
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
|
26085
26121
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
26086
26122
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
26087
26123
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
26088
26124
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
26089
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
26090
26125
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
26126
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
26127
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
26091
26128
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
26092
26129
|
VRating: typeof import('vuetify/components')['VRating']
|
|
26093
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
|
26094
26130
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
26131
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
|
26095
26132
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
26096
26133
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
26097
26134
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
@@ -26099,9 +26136,9 @@ declare module '@vue/runtime-core' {
|
|
|
26099
26136
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
26100
26137
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
26101
26138
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
26102
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
26103
26139
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
26104
26140
|
VTab: typeof import('vuetify/components')['VTab']
|
|
26141
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
26105
26142
|
VTable: typeof import('vuetify/components')['VTable']
|
|
26106
26143
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
26107
26144
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
@@ -26110,8 +26147,8 @@ declare module '@vue/runtime-core' {
|
|
|
26110
26147
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
26111
26148
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
26112
26149
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
26113
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
26114
26150
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
26115
26151
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
26152
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
26116
26153
|
}
|
|
26117
26154
|
}
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.1.2
|
|
2
|
+
* Vuetify v3.1.2
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -4380,9 +4380,69 @@ const Ripple = {
|
|
|
4380
4380
|
updated: updated$1
|
|
4381
4381
|
};
|
|
4382
4382
|
|
|
4383
|
+
// Composables
|
|
4384
|
+
|
|
4385
|
+
// Types
|
|
4386
|
+
|
|
4387
|
+
const oppositeMap = {
|
|
4388
|
+
center: 'center',
|
|
4389
|
+
top: 'bottom',
|
|
4390
|
+
bottom: 'top',
|
|
4391
|
+
left: 'right',
|
|
4392
|
+
right: 'left'
|
|
4393
|
+
};
|
|
4394
|
+
const makeLocationProps = propsFactory({
|
|
4395
|
+
location: String
|
|
4396
|
+
}, 'location');
|
|
4397
|
+
function useLocation(props) {
|
|
4398
|
+
let opposite = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
|
4399
|
+
let offset = arguments.length > 2 ? arguments[2] : undefined;
|
|
4400
|
+
const {
|
|
4401
|
+
isRtl
|
|
4402
|
+
} = useRtl();
|
|
4403
|
+
const locationStyles = computed(() => {
|
|
4404
|
+
if (!props.location) return {};
|
|
4405
|
+
const {
|
|
4406
|
+
side,
|
|
4407
|
+
align
|
|
4408
|
+
} = parseAnchor(props.location.split(' ').length > 1 ? props.location : `${props.location} center`, isRtl.value);
|
|
4409
|
+
function getOffset(side) {
|
|
4410
|
+
return offset ? offset(side) : 0;
|
|
4411
|
+
}
|
|
4412
|
+
const styles = {};
|
|
4413
|
+
if (side !== 'center') {
|
|
4414
|
+
if (opposite) styles[oppositeMap[side]] = `calc(100% - ${getOffset(side)}px)`;else styles[side] = 0;
|
|
4415
|
+
}
|
|
4416
|
+
if (align !== 'center') {
|
|
4417
|
+
if (opposite) styles[oppositeMap[align]] = `calc(100% - ${getOffset(align)}px)`;else styles[align] = 0;
|
|
4418
|
+
} else {
|
|
4419
|
+
if (side === 'center') styles.top = styles.left = '50%';else {
|
|
4420
|
+
styles[{
|
|
4421
|
+
top: 'left',
|
|
4422
|
+
bottom: 'left',
|
|
4423
|
+
left: 'top',
|
|
4424
|
+
right: 'top'
|
|
4425
|
+
}[side]] = '50%';
|
|
4426
|
+
}
|
|
4427
|
+
styles.transform = {
|
|
4428
|
+
top: 'translateX(-50%)',
|
|
4429
|
+
bottom: 'translateX(-50%)',
|
|
4430
|
+
left: 'translateY(-50%)',
|
|
4431
|
+
right: 'translateY(-50%)',
|
|
4432
|
+
center: 'translate(-50%, -50%)'
|
|
4433
|
+
}[side];
|
|
4434
|
+
}
|
|
4435
|
+
return styles;
|
|
4436
|
+
});
|
|
4437
|
+
return {
|
|
4438
|
+
locationStyles
|
|
4439
|
+
};
|
|
4440
|
+
}
|
|
4441
|
+
|
|
4383
4442
|
const VProgressLinear = defineComponent({
|
|
4384
4443
|
name: 'VProgressLinear',
|
|
4385
4444
|
props: {
|
|
4445
|
+
absolute: Boolean,
|
|
4386
4446
|
active: {
|
|
4387
4447
|
type: Boolean,
|
|
4388
4448
|
default: true
|
|
@@ -4412,6 +4472,9 @@ const VProgressLinear = defineComponent({
|
|
|
4412
4472
|
stream: Boolean,
|
|
4413
4473
|
striped: Boolean,
|
|
4414
4474
|
roundedBar: Boolean,
|
|
4475
|
+
...makeLocationProps({
|
|
4476
|
+
location: 'top'
|
|
4477
|
+
}),
|
|
4415
4478
|
...makeRoundedProps(),
|
|
4416
4479
|
...makeTagProps(),
|
|
4417
4480
|
...makeThemeProps()
|
|
@@ -4430,6 +4493,9 @@ const VProgressLinear = defineComponent({
|
|
|
4430
4493
|
const {
|
|
4431
4494
|
themeClasses
|
|
4432
4495
|
} = provideTheme(props);
|
|
4496
|
+
const {
|
|
4497
|
+
locationStyles
|
|
4498
|
+
} = useLocation(props);
|
|
4433
4499
|
const {
|
|
4434
4500
|
textColorClasses,
|
|
4435
4501
|
textColorStyles
|
|
@@ -4471,6 +4537,7 @@ const VProgressLinear = defineComponent({
|
|
|
4471
4537
|
useRender(() => createVNode(props.tag, {
|
|
4472
4538
|
"ref": intersectionRef,
|
|
4473
4539
|
"class": ['v-progress-linear', {
|
|
4540
|
+
'v-progress-linear--absolute': props.absolute,
|
|
4474
4541
|
'v-progress-linear--active': props.active && isIntersecting.value,
|
|
4475
4542
|
'v-progress-linear--reverse': isReversed.value,
|
|
4476
4543
|
'v-progress-linear--rounded': props.rounded,
|
|
@@ -4478,8 +4545,11 @@ const VProgressLinear = defineComponent({
|
|
|
4478
4545
|
'v-progress-linear--striped': props.striped
|
|
4479
4546
|
}, roundedClasses.value, themeClasses.value],
|
|
4480
4547
|
"style": {
|
|
4548
|
+
bottom: props.location === 'bottom' ? 0 : undefined,
|
|
4549
|
+
top: props.location === 'top' ? 0 : undefined,
|
|
4481
4550
|
height: props.active ? convertToUnit(height.value) : 0,
|
|
4482
|
-
'--v-progress-linear-height': convertToUnit(height.value)
|
|
4551
|
+
'--v-progress-linear-height': convertToUnit(height.value),
|
|
4552
|
+
...locationStyles.value
|
|
4483
4553
|
},
|
|
4484
4554
|
"role": "progressbar",
|
|
4485
4555
|
"aria-hidden": props.active ? 'false' : 'true',
|
|
@@ -4565,65 +4635,6 @@ function LoaderSlot(props, _ref) {
|
|
|
4565
4635
|
}, null)]);
|
|
4566
4636
|
}
|
|
4567
4637
|
|
|
4568
|
-
// Composables
|
|
4569
|
-
|
|
4570
|
-
// Types
|
|
4571
|
-
|
|
4572
|
-
const oppositeMap = {
|
|
4573
|
-
center: 'center',
|
|
4574
|
-
top: 'bottom',
|
|
4575
|
-
bottom: 'top',
|
|
4576
|
-
left: 'right',
|
|
4577
|
-
right: 'left'
|
|
4578
|
-
};
|
|
4579
|
-
const makeLocationProps = propsFactory({
|
|
4580
|
-
location: String
|
|
4581
|
-
}, 'location');
|
|
4582
|
-
function useLocation(props) {
|
|
4583
|
-
let opposite = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
|
4584
|
-
let offset = arguments.length > 2 ? arguments[2] : undefined;
|
|
4585
|
-
const {
|
|
4586
|
-
isRtl
|
|
4587
|
-
} = useRtl();
|
|
4588
|
-
const locationStyles = computed(() => {
|
|
4589
|
-
if (!props.location) return {};
|
|
4590
|
-
const {
|
|
4591
|
-
side,
|
|
4592
|
-
align
|
|
4593
|
-
} = parseAnchor(props.location.split(' ').length > 1 ? props.location : `${props.location} center`, isRtl.value);
|
|
4594
|
-
function getOffset(side) {
|
|
4595
|
-
return offset ? offset(side) : 0;
|
|
4596
|
-
}
|
|
4597
|
-
const styles = {};
|
|
4598
|
-
if (side !== 'center') {
|
|
4599
|
-
if (opposite) styles[oppositeMap[side]] = `calc(100% - ${getOffset(side)}px)`;else styles[side] = 0;
|
|
4600
|
-
}
|
|
4601
|
-
if (align !== 'center') {
|
|
4602
|
-
if (opposite) styles[oppositeMap[align]] = `calc(100% - ${getOffset(align)}px)`;else styles[align] = 0;
|
|
4603
|
-
} else {
|
|
4604
|
-
if (side === 'center') styles.top = styles.left = '50%';else {
|
|
4605
|
-
styles[{
|
|
4606
|
-
top: 'left',
|
|
4607
|
-
bottom: 'left',
|
|
4608
|
-
left: 'top',
|
|
4609
|
-
right: 'top'
|
|
4610
|
-
}[side]] = '50%';
|
|
4611
|
-
}
|
|
4612
|
-
styles.transform = {
|
|
4613
|
-
top: 'translateX(-50%)',
|
|
4614
|
-
bottom: 'translateX(-50%)',
|
|
4615
|
-
left: 'translateY(-50%)',
|
|
4616
|
-
right: 'translateY(-50%)',
|
|
4617
|
-
center: 'translate(-50%, -50%)'
|
|
4618
|
-
}[side];
|
|
4619
|
-
}
|
|
4620
|
-
return styles;
|
|
4621
|
-
});
|
|
4622
|
-
return {
|
|
4623
|
-
locationStyles
|
|
4624
|
-
};
|
|
4625
|
-
}
|
|
4626
|
-
|
|
4627
4638
|
// Utilities
|
|
4628
4639
|
|
|
4629
4640
|
// Types
|
|
@@ -4829,8 +4840,14 @@ const VBtn = defineComponent({
|
|
|
4829
4840
|
const group = useGroupItem(props, props.symbol, false);
|
|
4830
4841
|
const link = useLink(props, attrs);
|
|
4831
4842
|
const isActive = computed(() => {
|
|
4832
|
-
|
|
4833
|
-
|
|
4843
|
+
if (props.active !== undefined) {
|
|
4844
|
+
return props.active;
|
|
4845
|
+
}
|
|
4846
|
+
if (link.isLink.value) {
|
|
4847
|
+
var _link$isActive;
|
|
4848
|
+
return (_link$isActive = link.isActive) == null ? void 0 : _link$isActive.value;
|
|
4849
|
+
}
|
|
4850
|
+
return group == null ? void 0 : group.isSelected.value;
|
|
4834
4851
|
});
|
|
4835
4852
|
const isDisabled = computed(() => (group == null ? void 0 : group.disabled.value) || props.disabled);
|
|
4836
4853
|
const isElevated = computed(() => {
|
|
@@ -4840,7 +4857,7 @@ const VBtn = defineComponent({
|
|
|
4840
4857
|
useRender(() => {
|
|
4841
4858
|
var _slots$prepend, _slots$default, _slots$append, _slots$loader;
|
|
4842
4859
|
const Tag = link.isLink.value ? 'a' : props.tag;
|
|
4843
|
-
const hasColor = !group ||
|
|
4860
|
+
const hasColor = !group || isActive.value;
|
|
4844
4861
|
const hasPrepend = !!(props.prependIcon || slots.prepend);
|
|
4845
4862
|
const hasAppend = !!(props.appendIcon || slots.append);
|
|
4846
4863
|
const hasIcon = !!(props.icon && props.icon !== true);
|
|
@@ -7575,6 +7592,10 @@ const VListItem = genericComponent()({
|
|
|
7575
7592
|
nav: Boolean,
|
|
7576
7593
|
prependAvatar: String,
|
|
7577
7594
|
prependIcon: IconValue,
|
|
7595
|
+
ripple: {
|
|
7596
|
+
type: Boolean,
|
|
7597
|
+
default: true
|
|
7598
|
+
},
|
|
7578
7599
|
subtitle: [String, Number, Boolean],
|
|
7579
7600
|
title: [String, Number, Boolean],
|
|
7580
7601
|
value: null,
|
|
@@ -7766,7 +7787,7 @@ const VListItem = genericComponent()({
|
|
|
7766
7787
|
"key": "append-avatar"
|
|
7767
7788
|
}, null)])]
|
|
7768
7789
|
})]
|
|
7769
|
-
}), [[resolveDirective("ripple"), isClickable.value]]);
|
|
7790
|
+
}), [[resolveDirective("ripple"), isClickable.value && props.ripple]]);
|
|
7770
7791
|
});
|
|
7771
7792
|
return {};
|
|
7772
7793
|
}
|
|
@@ -9934,6 +9955,7 @@ const VSelect = genericComponent()({
|
|
|
9934
9955
|
"activator": "parent",
|
|
9935
9956
|
"contentClass": "v-select__content",
|
|
9936
9957
|
"eager": props.eager,
|
|
9958
|
+
"maxHeight": 310,
|
|
9937
9959
|
"openOnClick": false,
|
|
9938
9960
|
"closeOnContentClick": false,
|
|
9939
9961
|
"transition": props.transition
|
|
@@ -10049,7 +10071,7 @@ function filterItems(items, query, options) {
|
|
|
10049
10071
|
const customFiltersLength = Object.keys((options == null ? void 0 : options.customKeyFilter) ?? {}).length;
|
|
10050
10072
|
if (!(items != null && items.length)) return array;
|
|
10051
10073
|
loop: for (let i = 0; i < items.length; i++) {
|
|
10052
|
-
const item = items[i]
|
|
10074
|
+
const item = items[i];
|
|
10053
10075
|
const customMatches = {};
|
|
10054
10076
|
const defaultMatches = {};
|
|
10055
10077
|
let match = -1;
|
|
@@ -10089,7 +10111,7 @@ function filterItems(items, query, options) {
|
|
|
10089
10111
|
}
|
|
10090
10112
|
return array;
|
|
10091
10113
|
}
|
|
10092
|
-
function useFilter(props, items, query) {
|
|
10114
|
+
function useFilter(props, items, query, options) {
|
|
10093
10115
|
const strQuery = computed(() => typeof (query == null ? void 0 : query.value) !== 'string' && typeof (query == null ? void 0 : query.value) !== 'number' ? '' : String(query.value));
|
|
10094
10116
|
const filteredItems = ref([]);
|
|
10095
10117
|
const filteredMatches = ref(new Map());
|
|
@@ -10100,7 +10122,7 @@ function useFilter(props, items, query) {
|
|
|
10100
10122
|
const results = filterItems(transformedItems, strQuery.value, {
|
|
10101
10123
|
customKeyFilter: props.customKeyFilter,
|
|
10102
10124
|
default: props.customFilter,
|
|
10103
|
-
filterKeys: props.filterKeys,
|
|
10125
|
+
filterKeys: unref(options == null ? void 0 : options.filterKeys) ?? props.filterKeys,
|
|
10104
10126
|
filterMode: props.filterMode,
|
|
10105
10127
|
noFilter: props.noFilter
|
|
10106
10128
|
});
|
|
@@ -10323,6 +10345,7 @@ const VAutocomplete = genericComponent()({
|
|
|
10323
10345
|
"activator": "parent",
|
|
10324
10346
|
"contentClass": "v-autocomplete__content",
|
|
10325
10347
|
"eager": props.eager,
|
|
10348
|
+
"maxHeight": 310,
|
|
10326
10349
|
"openOnClick": false,
|
|
10327
10350
|
"closeOnContentClick": false,
|
|
10328
10351
|
"transition": props.transition,
|
|
@@ -11031,7 +11054,10 @@ const VCard = defineComponent({
|
|
|
11031
11054
|
},
|
|
11032
11055
|
prependAvatar: String,
|
|
11033
11056
|
prependIcon: IconValue,
|
|
11034
|
-
ripple:
|
|
11057
|
+
ripple: {
|
|
11058
|
+
type: Boolean,
|
|
11059
|
+
default: true
|
|
11060
|
+
},
|
|
11035
11061
|
subtitle: String,
|
|
11036
11062
|
text: String,
|
|
11037
11063
|
title: String,
|
|
@@ -11152,7 +11178,7 @@ const VCard = defineComponent({
|
|
|
11152
11178
|
}), (_slots$default = slots.default) == null ? void 0 : _slots$default.call(slots), slots.actions && createVNode(VCardActions, null, {
|
|
11153
11179
|
default: slots.actions
|
|
11154
11180
|
}), genOverlays(isClickable.value, 'v-card')]
|
|
11155
|
-
}), [[resolveDirective("ripple"), isClickable.value]]);
|
|
11181
|
+
}), [[resolveDirective("ripple"), isClickable.value && props.ripple]]);
|
|
11156
11182
|
});
|
|
11157
11183
|
return {};
|
|
11158
11184
|
}
|
|
@@ -12445,6 +12471,10 @@ const VSliderThumb = defineComponent({
|
|
|
12445
12471
|
position: {
|
|
12446
12472
|
type: Number,
|
|
12447
12473
|
required: true
|
|
12474
|
+
},
|
|
12475
|
+
ripple: {
|
|
12476
|
+
type: Boolean,
|
|
12477
|
+
default: true
|
|
12448
12478
|
}
|
|
12449
12479
|
},
|
|
12450
12480
|
emits: {
|
|
@@ -12545,7 +12575,7 @@ const VSliderThumb = defineComponent({
|
|
|
12545
12575
|
}, null), withDirectives(createVNode("div", {
|
|
12546
12576
|
"class": ['v-slider-thumb__ripple', textColorClasses.value],
|
|
12547
12577
|
"style": textColorStyles.value
|
|
12548
|
-
}, null), [[resolveDirective("ripple"),
|
|
12578
|
+
}, null), [[resolveDirective("ripple"), props.ripple, null, {
|
|
12549
12579
|
circle: true,
|
|
12550
12580
|
center: true
|
|
12551
12581
|
}]]), createVNode(VScaleTransition, {
|
|
@@ -13597,7 +13627,7 @@ const VCombobox = genericComponent()({
|
|
|
13597
13627
|
vTextFieldRef.value.setSelectionRange(0, 0);
|
|
13598
13628
|
}
|
|
13599
13629
|
}
|
|
13600
|
-
if (e.key === 'Enter') {
|
|
13630
|
+
if (e.key === 'Enter' && search.value) {
|
|
13601
13631
|
select(transformItem$1(props, search.value));
|
|
13602
13632
|
search.value = '';
|
|
13603
13633
|
}
|
|
@@ -13686,6 +13716,7 @@ const VCombobox = genericComponent()({
|
|
|
13686
13716
|
"activator": "parent",
|
|
13687
13717
|
"contentClass": "v-combobox__content",
|
|
13688
13718
|
"eager": props.eager,
|
|
13719
|
+
"maxHeight": 310,
|
|
13689
13720
|
"openOnClick": false,
|
|
13690
13721
|
"closeOnContentClick": false,
|
|
13691
13722
|
"transition": props.transition,
|
|
@@ -18359,7 +18390,7 @@ function createVuetify$1() {
|
|
|
18359
18390
|
locale
|
|
18360
18391
|
};
|
|
18361
18392
|
}
|
|
18362
|
-
const version$1 = "3.1.2
|
|
18393
|
+
const version$1 = "3.1.2";
|
|
18363
18394
|
createVuetify$1.version = version$1;
|
|
18364
18395
|
|
|
18365
18396
|
// Vue's inject() can only be used in setup
|
|
@@ -18380,7 +18411,7 @@ const createVuetify = function () {
|
|
|
18380
18411
|
...options
|
|
18381
18412
|
});
|
|
18382
18413
|
};
|
|
18383
|
-
const version = "3.1.2
|
|
18414
|
+
const version = "3.1.2";
|
|
18384
18415
|
createVuetify.version = version;
|
|
18385
18416
|
|
|
18386
18417
|
export { components, createVuetify, directives, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
|