vuetify 3.3.17 → 3.3.19
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/json/attributes.json +25 -9
- package/dist/json/importMap.json +4 -4
- package/dist/json/tags.json +5 -1
- package/dist/json/web-types.json +322 -750
- package/dist/vuetify-labs.css +6260 -6265
- package/dist/vuetify-labs.d.ts +1175 -2641
- package/dist/vuetify-labs.esm.js +71 -50
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +70 -49
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5632 -5637
- package/dist/vuetify.d.ts +50 -50
- package/dist/vuetify.esm.js +34 -21
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +34 -21
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +25 -23
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +4 -2
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +12 -12
- package/lib/components/VCombobox/VCombobox.mjs +4 -2
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.mts +12 -12
- package/lib/components/VList/VList.mjs +2 -1
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListChildren.mjs +12 -7
- package/lib/components/VList/VListChildren.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +10 -10
- package/lib/components/VSelect/VSelect.mjs +3 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +12 -12
- package/lib/components/VTable/VTable.css +4 -2
- package/lib/components/VTable/VTable.sass +3 -1
- package/lib/components/VTable/_variables.scss +1 -1
- package/lib/components/VTextField/VTextField.mjs +2 -2
- package/lib/components/VTextField/VTextField.mjs.map +1 -1
- package/lib/components/VTextField/index.d.mts +6 -6
- package/lib/components/VTimeline/VTimeline.css +15 -22
- package/lib/components/VTimeline/VTimeline.sass +15 -25
- package/lib/components/index.d.mts +49 -49
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +1 -1
- package/lib/labs/VBottomSheet/VBottomSheet.mjs +2 -1
- package/lib/labs/VBottomSheet/VBottomSheet.mjs.map +1 -1
- package/lib/labs/VDataIterator/index.d.mts +66 -48
- package/lib/labs/VDataTable/VDataTableRow.mjs +8 -6
- package/lib/labs/VDataTable/VDataTableRow.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableRows.mjs +6 -4
- package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableServer.mjs +1 -2
- package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableVirtual.mjs +1 -2
- package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/headers.mjs +5 -7
- package/lib/labs/VDataTable/composables/headers.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/items.mjs +1 -1
- package/lib/labs/VDataTable/composables/items.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/select.mjs +14 -8
- package/lib/labs/VDataTable/composables/select.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/sort.mjs +1 -0
- package/lib/labs/VDataTable/composables/sort.mjs.map +1 -1
- package/lib/labs/VDataTable/index.d.mts +1135 -2614
- package/lib/labs/VDataTable/types.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +6 -6
- package/lib/labs/VDatePicker/VDatePicker.mjs +1 -1
- package/lib/labs/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/labs/VOtpInput/VOtpInput.mjs +1 -1
- package/lib/labs/VOtpInput/VOtpInput.mjs.map +1 -1
- package/lib/labs/components.d.mts +1393 -2858
- package/lib/labs/date/adapters/vuetify.mjs +2 -2
- package/lib/labs/date/adapters/vuetify.mjs.map +1 -1
- package/lib/util/helpers.mjs +2 -1
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -210,7 +210,7 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
|
210
210
|
}
|
|
211
211
|
|
|
212
212
|
declare function deepEqual(a: any, b: any): boolean;
|
|
213
|
-
type SelectItemKey = boolean | string | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any);
|
|
213
|
+
type SelectItemKey = boolean | null | undefined | string | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any);
|
|
214
214
|
type EventProp<T extends any[] = any[], F = (...args: T) => any> = F | F[];
|
|
215
215
|
declare const EventProp: <T extends any[] = any[]>() => PropType<EventProp<T, (...args: T) => any>>;
|
|
216
216
|
|
|
@@ -5070,10 +5070,10 @@ declare const VAutocomplete: {
|
|
|
5070
5070
|
filterMode?: FilterMode | undefined;
|
|
5071
5071
|
noFilter?: boolean | undefined;
|
|
5072
5072
|
filterKeys?: NonNullable<FilterKeys> | undefined;
|
|
5073
|
-
itemTitle?: SelectItemKey
|
|
5074
|
-
itemValue?: SelectItemKey
|
|
5073
|
+
itemTitle?: SelectItemKey;
|
|
5074
|
+
itemValue?: SelectItemKey;
|
|
5075
5075
|
itemChildren?: NonNullable<SelectItemKey> | undefined;
|
|
5076
|
-
itemProps?: SelectItemKey
|
|
5076
|
+
itemProps?: SelectItemKey;
|
|
5077
5077
|
clearable?: boolean | undefined;
|
|
5078
5078
|
persistentClear?: boolean | undefined;
|
|
5079
5079
|
singleLine?: boolean | undefined;
|
|
@@ -5158,7 +5158,7 @@ declare const VAutocomplete: {
|
|
|
5158
5158
|
customFilter?: FilterFunction | undefined;
|
|
5159
5159
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
5160
5160
|
suffix?: string | undefined;
|
|
5161
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
5161
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
5162
5162
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
5163
5163
|
menuProps?: {
|
|
5164
5164
|
location?: Anchor | undefined;
|
|
@@ -5429,7 +5429,7 @@ declare const VAutocomplete: {
|
|
|
5429
5429
|
customFilter?: FilterFunction | undefined;
|
|
5430
5430
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
5431
5431
|
suffix?: string | undefined;
|
|
5432
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
5432
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
5433
5433
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
5434
5434
|
menuProps?: {
|
|
5435
5435
|
location?: Anchor | undefined;
|
|
@@ -5557,7 +5557,7 @@ declare const VAutocomplete: {
|
|
|
5557
5557
|
'update:search': (val: any) => true;
|
|
5558
5558
|
'update:modelValue': (val: any) => boolean;
|
|
5559
5559
|
'update:menu': (val: boolean) => true;
|
|
5560
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "
|
|
5560
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "returnObject" | "v-slot:item" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
5561
5561
|
flat: boolean;
|
|
5562
5562
|
reverse: boolean;
|
|
5563
5563
|
type: string;
|
|
@@ -5766,7 +5766,7 @@ declare const VAutocomplete: {
|
|
|
5766
5766
|
customFilter?: FilterFunction | undefined;
|
|
5767
5767
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
5768
5768
|
suffix?: string | undefined;
|
|
5769
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
5769
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
5770
5770
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
5771
5771
|
menuProps?: {
|
|
5772
5772
|
location?: Anchor | undefined;
|
|
@@ -5972,7 +5972,7 @@ declare const VAutocomplete: {
|
|
|
5972
5972
|
customFilter?: FilterFunction | undefined;
|
|
5973
5973
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
5974
5974
|
suffix?: string | undefined;
|
|
5975
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
5975
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
5976
5976
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
5977
5977
|
menuProps?: {
|
|
5978
5978
|
location?: Anchor | undefined;
|
|
@@ -6100,7 +6100,7 @@ declare const VAutocomplete: {
|
|
|
6100
6100
|
'update:search': (val: any) => true;
|
|
6101
6101
|
'update:modelValue': (val: any) => boolean;
|
|
6102
6102
|
'update:menu': (val: boolean) => true;
|
|
6103
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "
|
|
6103
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "returnObject" | "v-slot:item" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
6104
6104
|
flat: boolean;
|
|
6105
6105
|
reverse: boolean;
|
|
6106
6106
|
type: string;
|
|
@@ -6377,7 +6377,7 @@ declare const VAutocomplete: {
|
|
|
6377
6377
|
persistentPlaceholder: BooleanConstructor;
|
|
6378
6378
|
persistentCounter: BooleanConstructor;
|
|
6379
6379
|
suffix: StringConstructor;
|
|
6380
|
-
counterValue: PropType<(value: any) => number>;
|
|
6380
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
|
6381
6381
|
modelModifiers: PropType<Record<string, boolean>>;
|
|
6382
6382
|
items: {
|
|
6383
6383
|
type: PropType<any[]>;
|
|
@@ -6682,7 +6682,7 @@ declare const VAutocomplete: {
|
|
|
6682
6682
|
persistentPlaceholder: BooleanConstructor;
|
|
6683
6683
|
persistentCounter: BooleanConstructor;
|
|
6684
6684
|
suffix: StringConstructor;
|
|
6685
|
-
counterValue: PropType<(value: any) => number>;
|
|
6685
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
|
6686
6686
|
modelModifiers: PropType<Record<string, boolean>>;
|
|
6687
6687
|
items: {
|
|
6688
6688
|
type: PropType<any[]>;
|
|
@@ -18090,10 +18090,10 @@ declare const VCombobox: {
|
|
|
18090
18090
|
filterMode?: FilterMode | undefined;
|
|
18091
18091
|
noFilter?: boolean | undefined;
|
|
18092
18092
|
filterKeys?: NonNullable<FilterKeys> | undefined;
|
|
18093
|
-
itemTitle?: SelectItemKey
|
|
18094
|
-
itemValue?: SelectItemKey
|
|
18093
|
+
itemTitle?: SelectItemKey;
|
|
18094
|
+
itemValue?: SelectItemKey;
|
|
18095
18095
|
itemChildren?: NonNullable<SelectItemKey> | undefined;
|
|
18096
|
-
itemProps?: SelectItemKey
|
|
18096
|
+
itemProps?: SelectItemKey;
|
|
18097
18097
|
clearable?: boolean | undefined;
|
|
18098
18098
|
persistentClear?: boolean | undefined;
|
|
18099
18099
|
singleLine?: boolean | undefined;
|
|
@@ -18178,7 +18178,7 @@ declare const VCombobox: {
|
|
|
18178
18178
|
customFilter?: FilterFunction | undefined;
|
|
18179
18179
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
18180
18180
|
suffix?: string | undefined;
|
|
18181
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
18181
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
18182
18182
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
18183
18183
|
menuProps?: {
|
|
18184
18184
|
location?: Anchor | undefined;
|
|
@@ -18449,7 +18449,7 @@ declare const VCombobox: {
|
|
|
18449
18449
|
customFilter?: FilterFunction | undefined;
|
|
18450
18450
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
18451
18451
|
suffix?: string | undefined;
|
|
18452
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
18452
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
18453
18453
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
18454
18454
|
menuProps?: {
|
|
18455
18455
|
location?: Anchor | undefined;
|
|
@@ -18577,7 +18577,7 @@ declare const VCombobox: {
|
|
|
18577
18577
|
'update:modelValue': (val: any) => true;
|
|
18578
18578
|
'update:search': (val: string) => true;
|
|
18579
18579
|
'update:menu': (val: boolean) => true;
|
|
18580
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "
|
|
18580
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "returnObject" | "v-slot:item" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
18581
18581
|
flat: boolean;
|
|
18582
18582
|
reverse: boolean;
|
|
18583
18583
|
type: string;
|
|
@@ -18786,7 +18786,7 @@ declare const VCombobox: {
|
|
|
18786
18786
|
customFilter?: FilterFunction | undefined;
|
|
18787
18787
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
18788
18788
|
suffix?: string | undefined;
|
|
18789
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
18789
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
18790
18790
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
18791
18791
|
menuProps?: {
|
|
18792
18792
|
location?: Anchor | undefined;
|
|
@@ -18992,7 +18992,7 @@ declare const VCombobox: {
|
|
|
18992
18992
|
customFilter?: FilterFunction | undefined;
|
|
18993
18993
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
18994
18994
|
suffix?: string | undefined;
|
|
18995
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
18995
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
18996
18996
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
18997
18997
|
menuProps?: {
|
|
18998
18998
|
location?: Anchor | undefined;
|
|
@@ -19120,7 +19120,7 @@ declare const VCombobox: {
|
|
|
19120
19120
|
'update:modelValue': (val: any) => true;
|
|
19121
19121
|
'update:search': (val: string) => true;
|
|
19122
19122
|
'update:menu': (val: boolean) => true;
|
|
19123
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "
|
|
19123
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "returnObject" | "v-slot:item" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
19124
19124
|
flat: boolean;
|
|
19125
19125
|
reverse: boolean;
|
|
19126
19126
|
type: string;
|
|
@@ -19397,7 +19397,7 @@ declare const VCombobox: {
|
|
|
19397
19397
|
persistentPlaceholder: BooleanConstructor;
|
|
19398
19398
|
persistentCounter: BooleanConstructor;
|
|
19399
19399
|
suffix: StringConstructor;
|
|
19400
|
-
counterValue: PropType<(value: any) => number>;
|
|
19400
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
|
19401
19401
|
modelModifiers: PropType<Record<string, boolean>>;
|
|
19402
19402
|
items: {
|
|
19403
19403
|
type: PropType<any[]>;
|
|
@@ -19708,7 +19708,7 @@ declare const VCombobox: {
|
|
|
19708
19708
|
persistentPlaceholder: BooleanConstructor;
|
|
19709
19709
|
persistentCounter: BooleanConstructor;
|
|
19710
19710
|
suffix: StringConstructor;
|
|
19711
|
-
counterValue: PropType<(value: any) => number>;
|
|
19711
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
|
19712
19712
|
modelModifiers: PropType<Record<string, boolean>>;
|
|
19713
19713
|
items: {
|
|
19714
19714
|
type: PropType<any[]>;
|
|
@@ -30631,11 +30631,11 @@ declare const VList: {
|
|
|
30631
30631
|
selectStrategy?: NonNullable<SelectStrategy> | undefined;
|
|
30632
30632
|
openStrategy?: NonNullable<OpenStrategyProp> | undefined;
|
|
30633
30633
|
lines?: false | "one" | "two" | "three" | undefined;
|
|
30634
|
-
itemTitle?: SelectItemKey | undefined;
|
|
30635
|
-
itemValue?: SelectItemKey | undefined;
|
|
30636
|
-
itemChildren?: SelectItemKey | undefined;
|
|
30637
|
-
itemProps?: SelectItemKey | undefined;
|
|
30638
30634
|
returnObject?: boolean | undefined;
|
|
30635
|
+
itemTitle?: SelectItemKey;
|
|
30636
|
+
itemValue?: SelectItemKey;
|
|
30637
|
+
itemChildren?: SelectItemKey;
|
|
30638
|
+
itemProps?: SelectItemKey;
|
|
30639
30639
|
itemType?: string | undefined;
|
|
30640
30640
|
key?: string | number | symbol | undefined;
|
|
30641
30641
|
height?: string | number | undefined;
|
|
@@ -30810,11 +30810,11 @@ declare const VList: {
|
|
|
30810
30810
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
30811
30811
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
30812
30812
|
lines: false | "one" | "two" | "three";
|
|
30813
|
+
returnObject: boolean;
|
|
30813
30814
|
itemTitle: SelectItemKey;
|
|
30814
30815
|
itemValue: SelectItemKey;
|
|
30815
30816
|
itemChildren: SelectItemKey;
|
|
30816
30817
|
itemProps: SelectItemKey;
|
|
30817
|
-
returnObject: boolean;
|
|
30818
30818
|
itemType: string;
|
|
30819
30819
|
} & {
|
|
30820
30820
|
height?: string | number | undefined;
|
|
@@ -30878,11 +30878,11 @@ declare const VList: {
|
|
|
30878
30878
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
30879
30879
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
30880
30880
|
lines: false | "one" | "two" | "three";
|
|
30881
|
+
returnObject: boolean;
|
|
30881
30882
|
itemTitle: SelectItemKey;
|
|
30882
30883
|
itemValue: SelectItemKey;
|
|
30883
30884
|
itemChildren: SelectItemKey;
|
|
30884
30885
|
itemProps: SelectItemKey;
|
|
30885
|
-
returnObject: boolean;
|
|
30886
30886
|
itemType: string;
|
|
30887
30887
|
}, {}, string, vue.SlotsType<Partial<{
|
|
30888
30888
|
title: (arg: ListItemTitleSlot & {
|
|
@@ -30986,11 +30986,11 @@ declare const VList: {
|
|
|
30986
30986
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
30987
30987
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
30988
30988
|
lines: false | "one" | "two" | "three";
|
|
30989
|
+
returnObject: boolean;
|
|
30989
30990
|
itemTitle: SelectItemKey;
|
|
30990
30991
|
itemValue: SelectItemKey;
|
|
30991
30992
|
itemChildren: SelectItemKey;
|
|
30992
30993
|
itemProps: SelectItemKey;
|
|
30993
|
-
returnObject: boolean;
|
|
30994
30994
|
itemType: string;
|
|
30995
30995
|
} & {
|
|
30996
30996
|
height?: string | number | undefined;
|
|
@@ -31044,11 +31044,11 @@ declare const VList: {
|
|
|
31044
31044
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
31045
31045
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
31046
31046
|
lines: false | "one" | "two" | "three";
|
|
31047
|
+
returnObject: boolean;
|
|
31047
31048
|
itemTitle: SelectItemKey;
|
|
31048
31049
|
itemValue: SelectItemKey;
|
|
31049
31050
|
itemChildren: SelectItemKey;
|
|
31050
31051
|
itemProps: SelectItemKey;
|
|
31051
|
-
returnObject: boolean;
|
|
31052
31052
|
itemType: string;
|
|
31053
31053
|
} & {
|
|
31054
31054
|
height?: string | number | undefined;
|
|
@@ -31112,11 +31112,11 @@ declare const VList: {
|
|
|
31112
31112
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
31113
31113
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
31114
31114
|
lines: false | "one" | "two" | "three";
|
|
31115
|
+
returnObject: boolean;
|
|
31115
31116
|
itemTitle: SelectItemKey;
|
|
31116
31117
|
itemValue: SelectItemKey;
|
|
31117
31118
|
itemChildren: SelectItemKey;
|
|
31118
31119
|
itemProps: SelectItemKey;
|
|
31119
|
-
returnObject: boolean;
|
|
31120
31120
|
itemType: string;
|
|
31121
31121
|
}, {}, string, vue.SlotsType<Partial<{
|
|
31122
31122
|
title: (arg: ListItemTitleSlot & {
|
|
@@ -40538,10 +40538,10 @@ declare const VSelect: {
|
|
|
40538
40538
|
rules?: readonly ValidationRule[] | undefined;
|
|
40539
40539
|
centerAffix?: boolean | undefined;
|
|
40540
40540
|
persistentHint?: boolean | undefined;
|
|
40541
|
-
itemTitle?: SelectItemKey
|
|
40542
|
-
itemValue?: SelectItemKey
|
|
40541
|
+
itemTitle?: SelectItemKey;
|
|
40542
|
+
itemValue?: SelectItemKey;
|
|
40543
40543
|
itemChildren?: NonNullable<SelectItemKey> | undefined;
|
|
40544
|
-
itemProps?: SelectItemKey
|
|
40544
|
+
itemProps?: SelectItemKey;
|
|
40545
40545
|
clearable?: boolean | undefined;
|
|
40546
40546
|
persistentClear?: boolean | undefined;
|
|
40547
40547
|
singleLine?: boolean | undefined;
|
|
@@ -40623,7 +40623,7 @@ declare const VSelect: {
|
|
|
40623
40623
|
hideDetails?: boolean | "auto" | undefined;
|
|
40624
40624
|
baseColor?: string | undefined;
|
|
40625
40625
|
suffix?: string | undefined;
|
|
40626
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
40626
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
40627
40627
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
40628
40628
|
menuProps?: {
|
|
40629
40629
|
location?: Anchor | undefined;
|
|
@@ -40888,7 +40888,7 @@ declare const VSelect: {
|
|
|
40888
40888
|
hideDetails?: boolean | "auto" | undefined;
|
|
40889
40889
|
baseColor?: string | undefined;
|
|
40890
40890
|
suffix?: string | undefined;
|
|
40891
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
40891
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
40892
40892
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
40893
40893
|
menuProps?: {
|
|
40894
40894
|
location?: Anchor | undefined;
|
|
@@ -41013,7 +41013,7 @@ declare const VSelect: {
|
|
|
41013
41013
|
'update:focused': (focused: boolean) => boolean;
|
|
41014
41014
|
'update:modelValue': (val: any) => boolean;
|
|
41015
41015
|
'update:menu': (val: boolean) => true;
|
|
41016
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "
|
|
41016
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "returnObject" | "v-slot:item" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
41017
41017
|
flat: boolean;
|
|
41018
41018
|
reverse: boolean;
|
|
41019
41019
|
type: string;
|
|
@@ -41217,7 +41217,7 @@ declare const VSelect: {
|
|
|
41217
41217
|
hideDetails?: boolean | "auto" | undefined;
|
|
41218
41218
|
baseColor?: string | undefined;
|
|
41219
41219
|
suffix?: string | undefined;
|
|
41220
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
41220
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
41221
41221
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
41222
41222
|
menuProps?: {
|
|
41223
41223
|
location?: Anchor | undefined;
|
|
@@ -41417,7 +41417,7 @@ declare const VSelect: {
|
|
|
41417
41417
|
hideDetails?: boolean | "auto" | undefined;
|
|
41418
41418
|
baseColor?: string | undefined;
|
|
41419
41419
|
suffix?: string | undefined;
|
|
41420
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
41420
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
41421
41421
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
41422
41422
|
menuProps?: {
|
|
41423
41423
|
location?: Anchor | undefined;
|
|
@@ -41542,7 +41542,7 @@ declare const VSelect: {
|
|
|
41542
41542
|
'update:focused': (focused: boolean) => boolean;
|
|
41543
41543
|
'update:modelValue': (val: any) => boolean;
|
|
41544
41544
|
'update:menu': (val: boolean) => true;
|
|
41545
|
-
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "
|
|
41545
|
+
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "returnObject" | "v-slot:item" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
|
41546
41546
|
flat: boolean;
|
|
41547
41547
|
reverse: boolean;
|
|
41548
41548
|
type: string;
|
|
@@ -41822,7 +41822,7 @@ declare const VSelect: {
|
|
|
41822
41822
|
persistentPlaceholder: BooleanConstructor;
|
|
41823
41823
|
persistentCounter: BooleanConstructor;
|
|
41824
41824
|
suffix: StringConstructor;
|
|
41825
|
-
counterValue: PropType<(value: any) => number>;
|
|
41825
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
|
41826
41826
|
modelModifiers: PropType<Record<string, boolean>>;
|
|
41827
41827
|
items: {
|
|
41828
41828
|
type: PropType<any[]>;
|
|
@@ -42116,7 +42116,7 @@ declare const VSelect: {
|
|
|
42116
42116
|
persistentPlaceholder: BooleanConstructor;
|
|
42117
42117
|
persistentCounter: BooleanConstructor;
|
|
42118
42118
|
suffix: StringConstructor;
|
|
42119
|
-
counterValue: PropType<(value: any) => number>;
|
|
42119
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
|
42120
42120
|
modelModifiers: PropType<Record<string, boolean>>;
|
|
42121
42121
|
items: {
|
|
42122
42122
|
type: PropType<any[]>;
|
|
@@ -50036,7 +50036,7 @@ declare const VTextField: {
|
|
|
50036
50036
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
50037
50037
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
50038
50038
|
suffix?: string | undefined;
|
|
50039
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
50039
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
50040
50040
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
50041
50041
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
50042
50042
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
@@ -50148,7 +50148,7 @@ declare const VTextField: {
|
|
|
50148
50148
|
hideDetails?: boolean | "auto" | undefined;
|
|
50149
50149
|
baseColor?: string | undefined;
|
|
50150
50150
|
suffix?: string | undefined;
|
|
50151
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
50151
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
50152
50152
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
50153
50153
|
} & {
|
|
50154
50154
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -50882,7 +50882,7 @@ declare const VTextField: {
|
|
|
50882
50882
|
hideDetails?: boolean | "auto" | undefined;
|
|
50883
50883
|
baseColor?: string | undefined;
|
|
50884
50884
|
suffix?: string | undefined;
|
|
50885
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
50885
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
50886
50886
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
50887
50887
|
} & {
|
|
50888
50888
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -51530,7 +51530,7 @@ declare const VTextField: {
|
|
|
51530
51530
|
hideDetails?: boolean | "auto" | undefined;
|
|
51531
51531
|
baseColor?: string | undefined;
|
|
51532
51532
|
suffix?: string | undefined;
|
|
51533
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
51533
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
51534
51534
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
51535
51535
|
} & {
|
|
51536
51536
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -52278,7 +52278,7 @@ declare const VTextField: {
|
|
|
52278
52278
|
'onClick:append': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
52279
52279
|
autofocus: BooleanConstructor;
|
|
52280
52280
|
counter: PropType<string | number | true>;
|
|
52281
|
-
counterValue: PropType<(value: any) => number>;
|
|
52281
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
|
52282
52282
|
prefix: StringConstructor;
|
|
52283
52283
|
placeholder: StringConstructor;
|
|
52284
52284
|
persistentPlaceholder: BooleanConstructor;
|
|
@@ -52382,7 +52382,7 @@ declare const VTextField: {
|
|
|
52382
52382
|
'onClick:append': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
52383
52383
|
autofocus: BooleanConstructor;
|
|
52384
52384
|
counter: PropType<string | number | true>;
|
|
52385
|
-
counterValue: PropType<(value: any) => number>;
|
|
52385
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
|
52386
52386
|
prefix: StringConstructor;
|
|
52387
52387
|
placeholder: StringConstructor;
|
|
52388
52388
|
persistentPlaceholder: BooleanConstructor;
|
|
@@ -60678,8 +60678,8 @@ declare module '@vue/runtime-core' {
|
|
|
60678
60678
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
60679
60679
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
60680
60680
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
60681
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
60682
60681
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
60682
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
60683
60683
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
60684
60684
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
60685
60685
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.3.
|
|
2
|
+
* Vuetify v3.3.19
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -123,7 +123,8 @@ function getObjectValueByPath(obj, path, fallback) {
|
|
|
123
123
|
return getNestedValue(obj, path.split('.'), fallback);
|
|
124
124
|
}
|
|
125
125
|
function getPropertyFromItem(item, property, fallback) {
|
|
126
|
-
if (property
|
|
126
|
+
if (property === true) return item === undefined ? fallback : item;
|
|
127
|
+
if (property == null || typeof property === 'boolean') return fallback;
|
|
127
128
|
if (item !== Object(item)) {
|
|
128
129
|
if (typeof property !== 'function') return fallback;
|
|
129
130
|
const value = property(item, fallback);
|
|
@@ -7875,7 +7876,8 @@ const VDivider = genericComponent()({
|
|
|
7875
7876
|
// Types
|
|
7876
7877
|
|
|
7877
7878
|
const makeVListChildrenProps = propsFactory({
|
|
7878
|
-
items: Array
|
|
7879
|
+
items: Array,
|
|
7880
|
+
returnObject: Boolean
|
|
7879
7881
|
}, 'VListChildren');
|
|
7880
7882
|
const VListChildren = genericComponent()({
|
|
7881
7883
|
name: 'VListChildren',
|
|
@@ -7928,19 +7930,23 @@ const VListChildren = genericComponent()({
|
|
|
7928
7930
|
let {
|
|
7929
7931
|
props: activatorProps
|
|
7930
7932
|
} = _ref3;
|
|
7933
|
+
const listItemProps = {
|
|
7934
|
+
...itemProps,
|
|
7935
|
+
...activatorProps,
|
|
7936
|
+
value: props.returnObject ? item : itemProps.value
|
|
7937
|
+
};
|
|
7931
7938
|
return slots.header ? slots.header({
|
|
7932
|
-
props:
|
|
7933
|
-
|
|
7934
|
-
...activatorProps
|
|
7935
|
-
}
|
|
7936
|
-
}) : createVNode(VListItem, mergeProps(itemProps, activatorProps), slotsWithItem);
|
|
7939
|
+
props: listItemProps
|
|
7940
|
+
}) : createVNode(VListItem, listItemProps, slotsWithItem);
|
|
7937
7941
|
},
|
|
7938
7942
|
default: () => createVNode(VListChildren, {
|
|
7939
7943
|
"items": children
|
|
7940
7944
|
}, slots)
|
|
7941
7945
|
}) : slots.item ? slots.item({
|
|
7942
7946
|
props: itemProps
|
|
7943
|
-
}) : createVNode(VListItem, itemProps,
|
|
7947
|
+
}) : createVNode(VListItem, mergeProps(itemProps, {
|
|
7948
|
+
"value": props.returnObject ? item : itemProps.value
|
|
7949
|
+
}), slotsWithItem);
|
|
7944
7950
|
});
|
|
7945
7951
|
}
|
|
7946
7952
|
});
|
|
@@ -8224,7 +8230,8 @@ const VList = genericComponent()({
|
|
|
8224
8230
|
"onKeydown": onKeydown
|
|
8225
8231
|
}, {
|
|
8226
8232
|
default: () => [createVNode(VListChildren, {
|
|
8227
|
-
"items": items.value
|
|
8233
|
+
"items": items.value,
|
|
8234
|
+
"returnObject": props.returnObject
|
|
8228
8235
|
}, slots)]
|
|
8229
8236
|
});
|
|
8230
8237
|
});
|
|
@@ -10341,7 +10348,7 @@ const activeTypes = ['color', 'file', 'time', 'date', 'datetime-local', 'week',
|
|
|
10341
10348
|
const makeVTextFieldProps = propsFactory({
|
|
10342
10349
|
autofocus: Boolean,
|
|
10343
10350
|
counter: [Boolean, Number, String],
|
|
10344
|
-
counterValue: Function,
|
|
10351
|
+
counterValue: [Number, Function],
|
|
10345
10352
|
prefix: String,
|
|
10346
10353
|
placeholder: String,
|
|
10347
10354
|
persistentPlaceholder: Boolean,
|
|
@@ -10382,7 +10389,7 @@ const VTextField = genericComponent()({
|
|
|
10382
10389
|
blur
|
|
10383
10390
|
} = useFocus(props);
|
|
10384
10391
|
const counterValue = computed(() => {
|
|
10385
|
-
return typeof props.counterValue === 'function' ? props.counterValue(model.value) : (model.value ?? '').toString().length;
|
|
10392
|
+
return typeof props.counterValue === 'function' ? props.counterValue(model.value) : typeof props.counterValue === 'number' ? props.counterValue : (model.value ?? '').toString().length;
|
|
10386
10393
|
});
|
|
10387
10394
|
const max = computed(() => {
|
|
10388
10395
|
if (attrs.maxlength) return attrs.maxlength;
|
|
@@ -11036,6 +11043,7 @@ const VSelect = genericComponent()({
|
|
|
11036
11043
|
"focused": isFocused.value,
|
|
11037
11044
|
"onUpdate:focused": $event => isFocused.value = $event,
|
|
11038
11045
|
"validationValue": model.externalValue,
|
|
11046
|
+
"counterValue": model.value.length,
|
|
11039
11047
|
"dirty": isDirty,
|
|
11040
11048
|
"class": ['v-select', {
|
|
11041
11049
|
'v-select--active-menu': menu.value,
|
|
@@ -11142,7 +11150,8 @@ const VSelect = genericComponent()({
|
|
|
11142
11150
|
"key": "chip",
|
|
11143
11151
|
"closable": props.closableChips,
|
|
11144
11152
|
"size": "small",
|
|
11145
|
-
"text": item.title
|
|
11153
|
+
"text": item.title,
|
|
11154
|
+
"disabled": item.props.disabled
|
|
11146
11155
|
}, slotProps), null) : createVNode(VDefaultsProvider, {
|
|
11147
11156
|
"key": "chip-defaults",
|
|
11148
11157
|
"defaults": {
|
|
@@ -11439,7 +11448,7 @@ const VAutocomplete = genericComponent()({
|
|
|
11439
11448
|
}
|
|
11440
11449
|
const originalSelectionIndex = selectionIndex.value;
|
|
11441
11450
|
const selectedItem = model.value[selectionIndex.value];
|
|
11442
|
-
if (selectedItem) select(selectedItem);
|
|
11451
|
+
if (selectedItem && !selectedItem.props.disabled) select(selectedItem);
|
|
11443
11452
|
selectionIndex.value = originalSelectionIndex >= length - 1 ? length - 2 : originalSelectionIndex;
|
|
11444
11453
|
}
|
|
11445
11454
|
if (e.key === 'ArrowLeft') {
|
|
@@ -11559,6 +11568,7 @@ const VAutocomplete = genericComponent()({
|
|
|
11559
11568
|
"focused": isFocused.value,
|
|
11560
11569
|
"onUpdate:focused": $event => isFocused.value = $event,
|
|
11561
11570
|
"validationValue": model.externalValue,
|
|
11571
|
+
"counterValue": model.value.length,
|
|
11562
11572
|
"dirty": isDirty,
|
|
11563
11573
|
"onInput": onInput,
|
|
11564
11574
|
"onChange": onChange,
|
|
@@ -11669,7 +11679,8 @@ const VAutocomplete = genericComponent()({
|
|
|
11669
11679
|
"key": "chip",
|
|
11670
11680
|
"closable": props.closableChips,
|
|
11671
11681
|
"size": "small",
|
|
11672
|
-
"text": item.title
|
|
11682
|
+
"text": item.title,
|
|
11683
|
+
"disabled": item.props.disabled
|
|
11673
11684
|
}, slotProps), null) : createVNode(VDefaultsProvider, {
|
|
11674
11685
|
"key": "chip-defaults",
|
|
11675
11686
|
"defaults": {
|
|
@@ -15008,7 +15019,7 @@ const VCombobox = genericComponent()({
|
|
|
15008
15019
|
}
|
|
15009
15020
|
const originalSelectionIndex = selectionIndex.value;
|
|
15010
15021
|
const selectedItem = model.value[selectionIndex.value];
|
|
15011
|
-
if (selectedItem) select(selectedItem);
|
|
15022
|
+
if (selectedItem && !selectedItem.props.disabled) select(selectedItem);
|
|
15012
15023
|
selectionIndex.value = originalSelectionIndex >= length - 1 ? length - 2 : originalSelectionIndex;
|
|
15013
15024
|
}
|
|
15014
15025
|
if (e.key === 'ArrowLeft') {
|
|
@@ -15116,6 +15127,7 @@ const VCombobox = genericComponent()({
|
|
|
15116
15127
|
"focused": isFocused.value,
|
|
15117
15128
|
"onUpdate:focused": $event => isFocused.value = $event,
|
|
15118
15129
|
"validationValue": model.externalValue,
|
|
15130
|
+
"counterValue": props.multiple ? model.value.length : search.value.length,
|
|
15119
15131
|
"dirty": isDirty,
|
|
15120
15132
|
"class": ['v-combobox', {
|
|
15121
15133
|
'v-combobox--active-menu': menu.value,
|
|
@@ -15225,7 +15237,8 @@ const VCombobox = genericComponent()({
|
|
|
15225
15237
|
"key": "chip",
|
|
15226
15238
|
"closable": props.closableChips,
|
|
15227
15239
|
"size": "small",
|
|
15228
|
-
"text": item.title
|
|
15240
|
+
"text": item.title,
|
|
15241
|
+
"disabled": item.props.disabled
|
|
15229
15242
|
}, slotProps), null) : createVNode(VDefaultsProvider, {
|
|
15230
15243
|
"key": "chip-defaults",
|
|
15231
15244
|
"defaults": {
|
|
@@ -20000,8 +20013,8 @@ function getWeekArray(date, locale) {
|
|
|
20000
20013
|
let currentWeek = [];
|
|
20001
20014
|
const firstDayOfMonth = startOfMonth(date);
|
|
20002
20015
|
const lastDayOfMonth = endOfMonth(date);
|
|
20003
|
-
const firstDayWeekIndex = firstDayOfMonth.getDay() - firstDay[locale.slice(-2).toUpperCase()];
|
|
20004
|
-
const lastDayWeekIndex = lastDayOfMonth.getDay() - firstDay[locale.slice(-2).toUpperCase()];
|
|
20016
|
+
const firstDayWeekIndex = (firstDayOfMonth.getDay() - firstDay[locale.slice(-2).toUpperCase()] + 7) % 7;
|
|
20017
|
+
const lastDayWeekIndex = (lastDayOfMonth.getDay() - firstDay[locale.slice(-2).toUpperCase()] + 7) % 7;
|
|
20005
20018
|
for (let i = 0; i < firstDayWeekIndex; i++) {
|
|
20006
20019
|
const adjacentDay = new Date(firstDayOfMonth);
|
|
20007
20020
|
adjacentDay.setDate(adjacentDay.getDate() - (firstDayWeekIndex - i));
|
|
@@ -20398,7 +20411,7 @@ function createVuetify$1() {
|
|
|
20398
20411
|
date
|
|
20399
20412
|
};
|
|
20400
20413
|
}
|
|
20401
|
-
const version$1 = "3.3.
|
|
20414
|
+
const version$1 = "3.3.19";
|
|
20402
20415
|
createVuetify$1.version = version$1;
|
|
20403
20416
|
|
|
20404
20417
|
// Vue's inject() can only be used in setup
|
|
@@ -20423,7 +20436,7 @@ const createVuetify = function () {
|
|
|
20423
20436
|
...options
|
|
20424
20437
|
});
|
|
20425
20438
|
};
|
|
20426
|
-
const version = "3.3.
|
|
20439
|
+
const version = "3.3.19";
|
|
20427
20440
|
createVuetify.version = version;
|
|
20428
20441
|
|
|
20429
20442
|
export { components, createVuetify, directives, useDefaults, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
|