vuetify 3.3.17 → 3.3.18
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 +8 -8
- package/dist/json/tags.json +5 -1
- package/dist/json/web-types.json +322 -750
- package/dist/vuetify-labs.css +146 -151
- package/dist/vuetify-labs.d.ts +1175 -2641
- package/dist/vuetify-labs.esm.js +67 -44
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +66 -43
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +155 -160
- package/dist/vuetify.d.ts +51 -51
- package/dist/vuetify.esm.js +32 -17
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +32 -17
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +24 -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 +10 -3
- 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 +2 -2
- 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 +4 -2
- 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;
|
|
@@ -60640,16 +60640,16 @@ declare module '@vue/runtime-core' {
|
|
|
60640
60640
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
60641
60641
|
VChip: typeof import('vuetify/components')['VChip']
|
|
60642
60642
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
60643
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
60644
60643
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
60644
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
60645
60645
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
60646
60646
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
60647
60647
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
60648
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
60649
60648
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
60650
60649
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
60651
60650
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
60652
60651
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
60652
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
60653
60653
|
VField: typeof import('vuetify/components')['VField']
|
|
60654
60654
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
60655
60655
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.3.
|
|
2
|
+
* Vuetify v3.3.18
|
|
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',
|
|
@@ -7933,14 +7935,20 @@ const VListChildren = genericComponent()({
|
|
|
7933
7935
|
...itemProps,
|
|
7934
7936
|
...activatorProps
|
|
7935
7937
|
}
|
|
7936
|
-
}) : createVNode(VListItem, mergeProps(
|
|
7938
|
+
}) : createVNode(VListItem, mergeProps({
|
|
7939
|
+
"title": itemProps.title,
|
|
7940
|
+
"value": props.returnObject ? item : itemProps.value
|
|
7941
|
+
}, activatorProps), slotsWithItem);
|
|
7937
7942
|
},
|
|
7938
7943
|
default: () => createVNode(VListChildren, {
|
|
7939
7944
|
"items": children
|
|
7940
7945
|
}, slots)
|
|
7941
7946
|
}) : slots.item ? slots.item({
|
|
7942
7947
|
props: itemProps
|
|
7943
|
-
}) : createVNode(VListItem,
|
|
7948
|
+
}) : createVNode(VListItem, {
|
|
7949
|
+
"title": itemProps.title,
|
|
7950
|
+
"value": props.returnObject ? item : itemProps.value
|
|
7951
|
+
}, slotsWithItem);
|
|
7944
7952
|
});
|
|
7945
7953
|
}
|
|
7946
7954
|
});
|
|
@@ -8224,7 +8232,8 @@ const VList = genericComponent()({
|
|
|
8224
8232
|
"onKeydown": onKeydown
|
|
8225
8233
|
}, {
|
|
8226
8234
|
default: () => [createVNode(VListChildren, {
|
|
8227
|
-
"items": items.value
|
|
8235
|
+
"items": items.value,
|
|
8236
|
+
"returnObject": props.returnObject
|
|
8228
8237
|
}, slots)]
|
|
8229
8238
|
});
|
|
8230
8239
|
});
|
|
@@ -10341,7 +10350,7 @@ const activeTypes = ['color', 'file', 'time', 'date', 'datetime-local', 'week',
|
|
|
10341
10350
|
const makeVTextFieldProps = propsFactory({
|
|
10342
10351
|
autofocus: Boolean,
|
|
10343
10352
|
counter: [Boolean, Number, String],
|
|
10344
|
-
counterValue: Function,
|
|
10353
|
+
counterValue: [Number, Function],
|
|
10345
10354
|
prefix: String,
|
|
10346
10355
|
placeholder: String,
|
|
10347
10356
|
persistentPlaceholder: Boolean,
|
|
@@ -10382,7 +10391,7 @@ const VTextField = genericComponent()({
|
|
|
10382
10391
|
blur
|
|
10383
10392
|
} = useFocus(props);
|
|
10384
10393
|
const counterValue = computed(() => {
|
|
10385
|
-
return typeof props.counterValue === 'function' ? props.counterValue(model.value) : (model.value ?? '').toString().length;
|
|
10394
|
+
return typeof props.counterValue === 'function' ? props.counterValue(model.value) : typeof props.counterValue === 'number' ? props.counterValue : (model.value ?? '').toString().length;
|
|
10386
10395
|
});
|
|
10387
10396
|
const max = computed(() => {
|
|
10388
10397
|
if (attrs.maxlength) return attrs.maxlength;
|
|
@@ -11036,6 +11045,7 @@ const VSelect = genericComponent()({
|
|
|
11036
11045
|
"focused": isFocused.value,
|
|
11037
11046
|
"onUpdate:focused": $event => isFocused.value = $event,
|
|
11038
11047
|
"validationValue": model.externalValue,
|
|
11048
|
+
"counterValue": model.value.length,
|
|
11039
11049
|
"dirty": isDirty,
|
|
11040
11050
|
"class": ['v-select', {
|
|
11041
11051
|
'v-select--active-menu': menu.value,
|
|
@@ -11142,7 +11152,8 @@ const VSelect = genericComponent()({
|
|
|
11142
11152
|
"key": "chip",
|
|
11143
11153
|
"closable": props.closableChips,
|
|
11144
11154
|
"size": "small",
|
|
11145
|
-
"text": item.title
|
|
11155
|
+
"text": item.title,
|
|
11156
|
+
"disabled": item.props.disabled
|
|
11146
11157
|
}, slotProps), null) : createVNode(VDefaultsProvider, {
|
|
11147
11158
|
"key": "chip-defaults",
|
|
11148
11159
|
"defaults": {
|
|
@@ -11439,7 +11450,7 @@ const VAutocomplete = genericComponent()({
|
|
|
11439
11450
|
}
|
|
11440
11451
|
const originalSelectionIndex = selectionIndex.value;
|
|
11441
11452
|
const selectedItem = model.value[selectionIndex.value];
|
|
11442
|
-
if (selectedItem) select(selectedItem);
|
|
11453
|
+
if (selectedItem && !selectedItem.props.disabled) select(selectedItem);
|
|
11443
11454
|
selectionIndex.value = originalSelectionIndex >= length - 1 ? length - 2 : originalSelectionIndex;
|
|
11444
11455
|
}
|
|
11445
11456
|
if (e.key === 'ArrowLeft') {
|
|
@@ -11559,6 +11570,7 @@ const VAutocomplete = genericComponent()({
|
|
|
11559
11570
|
"focused": isFocused.value,
|
|
11560
11571
|
"onUpdate:focused": $event => isFocused.value = $event,
|
|
11561
11572
|
"validationValue": model.externalValue,
|
|
11573
|
+
"counterValue": model.value.length,
|
|
11562
11574
|
"dirty": isDirty,
|
|
11563
11575
|
"onInput": onInput,
|
|
11564
11576
|
"onChange": onChange,
|
|
@@ -11669,7 +11681,8 @@ const VAutocomplete = genericComponent()({
|
|
|
11669
11681
|
"key": "chip",
|
|
11670
11682
|
"closable": props.closableChips,
|
|
11671
11683
|
"size": "small",
|
|
11672
|
-
"text": item.title
|
|
11684
|
+
"text": item.title,
|
|
11685
|
+
"disabled": item.props.disabled
|
|
11673
11686
|
}, slotProps), null) : createVNode(VDefaultsProvider, {
|
|
11674
11687
|
"key": "chip-defaults",
|
|
11675
11688
|
"defaults": {
|
|
@@ -15008,7 +15021,7 @@ const VCombobox = genericComponent()({
|
|
|
15008
15021
|
}
|
|
15009
15022
|
const originalSelectionIndex = selectionIndex.value;
|
|
15010
15023
|
const selectedItem = model.value[selectionIndex.value];
|
|
15011
|
-
if (selectedItem) select(selectedItem);
|
|
15024
|
+
if (selectedItem && !selectedItem.props.disabled) select(selectedItem);
|
|
15012
15025
|
selectionIndex.value = originalSelectionIndex >= length - 1 ? length - 2 : originalSelectionIndex;
|
|
15013
15026
|
}
|
|
15014
15027
|
if (e.key === 'ArrowLeft') {
|
|
@@ -15116,6 +15129,7 @@ const VCombobox = genericComponent()({
|
|
|
15116
15129
|
"focused": isFocused.value,
|
|
15117
15130
|
"onUpdate:focused": $event => isFocused.value = $event,
|
|
15118
15131
|
"validationValue": model.externalValue,
|
|
15132
|
+
"counterValue": props.multiple ? model.value.length : search.value.length,
|
|
15119
15133
|
"dirty": isDirty,
|
|
15120
15134
|
"class": ['v-combobox', {
|
|
15121
15135
|
'v-combobox--active-menu': menu.value,
|
|
@@ -15225,7 +15239,8 @@ const VCombobox = genericComponent()({
|
|
|
15225
15239
|
"key": "chip",
|
|
15226
15240
|
"closable": props.closableChips,
|
|
15227
15241
|
"size": "small",
|
|
15228
|
-
"text": item.title
|
|
15242
|
+
"text": item.title,
|
|
15243
|
+
"disabled": item.props.disabled
|
|
15229
15244
|
}, slotProps), null) : createVNode(VDefaultsProvider, {
|
|
15230
15245
|
"key": "chip-defaults",
|
|
15231
15246
|
"defaults": {
|
|
@@ -20000,8 +20015,8 @@ function getWeekArray(date, locale) {
|
|
|
20000
20015
|
let currentWeek = [];
|
|
20001
20016
|
const firstDayOfMonth = startOfMonth(date);
|
|
20002
20017
|
const lastDayOfMonth = endOfMonth(date);
|
|
20003
|
-
const firstDayWeekIndex = firstDayOfMonth.getDay() - firstDay[locale.slice(-2).toUpperCase()];
|
|
20004
|
-
const lastDayWeekIndex = lastDayOfMonth.getDay() - firstDay[locale.slice(-2).toUpperCase()];
|
|
20018
|
+
const firstDayWeekIndex = (firstDayOfMonth.getDay() - firstDay[locale.slice(-2).toUpperCase()] + 7) % 7;
|
|
20019
|
+
const lastDayWeekIndex = (lastDayOfMonth.getDay() - firstDay[locale.slice(-2).toUpperCase()] + 7) % 7;
|
|
20005
20020
|
for (let i = 0; i < firstDayWeekIndex; i++) {
|
|
20006
20021
|
const adjacentDay = new Date(firstDayOfMonth);
|
|
20007
20022
|
adjacentDay.setDate(adjacentDay.getDate() - (firstDayWeekIndex - i));
|
|
@@ -20398,7 +20413,7 @@ function createVuetify$1() {
|
|
|
20398
20413
|
date
|
|
20399
20414
|
};
|
|
20400
20415
|
}
|
|
20401
|
-
const version$1 = "3.3.
|
|
20416
|
+
const version$1 = "3.3.18";
|
|
20402
20417
|
createVuetify$1.version = version$1;
|
|
20403
20418
|
|
|
20404
20419
|
// Vue's inject() can only be used in setup
|
|
@@ -20423,7 +20438,7 @@ const createVuetify = function () {
|
|
|
20423
20438
|
...options
|
|
20424
20439
|
});
|
|
20425
20440
|
};
|
|
20426
|
-
const version = "3.3.
|
|
20441
|
+
const version = "3.3.18";
|
|
20427
20442
|
createVuetify.version = version;
|
|
20428
20443
|
|
|
20429
20444
|
export { components, createVuetify, directives, useDefaults, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
|