@vuetify/nightly 3.9.3-master.2025-08-01 → 3.9.3-master.2025-08-02
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 +10 -4
- package/dist/json/attributes.json +3771 -3755
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +184 -184
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +6735 -6699
- package/dist/vuetify-labs.cjs +40 -15
- package/dist/vuetify-labs.css +6553 -6538
- package/dist/vuetify-labs.d.ts +125 -69
- package/dist/vuetify-labs.esm.js +40 -15
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +40 -15
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +40 -15
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2943 -2928
- package/dist/vuetify.d.ts +97 -69
- package/dist/vuetify.esm.js +40 -15
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +40 -15
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +287 -282
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +9 -2
- package/lib/components/VAlert/VAlert.js +2 -2
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +10 -3
- package/lib/components/VAlert/_variables.scss +1 -1
- package/lib/components/VApp/VApp.js +5 -4
- package/lib/components/VApp/VApp.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +25 -0
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +25 -0
- package/lib/components/VStepper/VStepperItem.css +2 -0
- package/lib/components/VStepper/VStepperItem.sass +3 -0
- package/lib/components/VTreeview/VTreeviewItem.css +6 -0
- package/lib/components/VTreeview/VTreeviewItem.sass +7 -0
- package/lib/composables/calendar.d.ts +12 -0
- package/lib/composables/calendar.js +5 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +1 -1
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/string.d.ts +1 -1
- package/lib/composables/date/adapters/string.js +2 -2
- package/lib/composables/date/adapters/string.js.map +1 -1
- package/lib/composables/date/adapters/vuetify.d.ts +1 -1
- package/lib/composables/date/adapters/vuetify.js +25 -5
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +1 -1
- package/lib/entry-bundler.d.ts +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +69 -69
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +25 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +25 -0
- package/lib/labs/entry-bundler.d.ts +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -39,7 +39,7 @@ interface DateAdapter<T = unknown> {
|
|
39
39
|
getDiff(date: T, comparing: T | string, unit?: string): number;
|
40
40
|
getWeekArray(date: T, firstDayOfWeek?: number | string): T[][];
|
41
41
|
getWeekdays(firstDayOfWeek?: number | string, weekdayFormat?: 'long' | 'short' | 'narrow'): string[];
|
42
|
-
getWeek(date: T, firstDayOfWeek?: number | string,
|
42
|
+
getWeek(date: T, firstDayOfWeek?: number | string, firstDayOfYear?: number | string): number;
|
43
43
|
getMonth(date: T): number;
|
44
44
|
setMonth(date: T, month: number): T;
|
45
45
|
getDate(date: T): number;
|
@@ -41524,6 +41524,7 @@ declare const VDatePickerMonth: {
|
|
41524
41524
|
year?: string | number | undefined;
|
41525
41525
|
modelValue?: unknown[] | undefined;
|
41526
41526
|
firstDayOfWeek?: string | number | undefined;
|
41527
|
+
firstDayOfYear?: string | number | undefined;
|
41527
41528
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
41528
41529
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
41529
41530
|
} & {
|
@@ -41571,6 +41572,7 @@ declare const VDatePickerMonth: {
|
|
41571
41572
|
weekdays: CalendarWeekdays[];
|
41572
41573
|
weeksInMonth: "static" | "dynamic";
|
41573
41574
|
firstDayOfWeek: string | number;
|
41575
|
+
firstDayOfYear: string | number;
|
41574
41576
|
hideWeekdays: boolean;
|
41575
41577
|
showWeek: boolean;
|
41576
41578
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -41606,6 +41608,7 @@ declare const VDatePickerMonth: {
|
|
41606
41608
|
year?: string | number | undefined;
|
41607
41609
|
modelValue?: unknown[] | undefined;
|
41608
41610
|
firstDayOfWeek?: string | number | undefined;
|
41611
|
+
firstDayOfYear?: string | number | undefined;
|
41609
41612
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
41610
41613
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
41611
41614
|
} & {
|
@@ -41649,6 +41652,7 @@ declare const VDatePickerMonth: {
|
|
41649
41652
|
weekdays: CalendarWeekdays[];
|
41650
41653
|
weeksInMonth: "static" | "dynamic";
|
41651
41654
|
firstDayOfWeek: string | number;
|
41655
|
+
firstDayOfYear: string | number;
|
41652
41656
|
hideWeekdays: boolean;
|
41653
41657
|
showWeek: boolean;
|
41654
41658
|
}>;
|
@@ -41673,6 +41677,7 @@ declare const VDatePickerMonth: {
|
|
41673
41677
|
year?: string | number | undefined;
|
41674
41678
|
modelValue?: unknown[] | undefined;
|
41675
41679
|
firstDayOfWeek?: string | number | undefined;
|
41680
|
+
firstDayOfYear?: string | number | undefined;
|
41676
41681
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
41677
41682
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
41678
41683
|
} & {
|
@@ -41720,6 +41725,7 @@ declare const VDatePickerMonth: {
|
|
41720
41725
|
weekdays: CalendarWeekdays[];
|
41721
41726
|
weeksInMonth: "static" | "dynamic";
|
41722
41727
|
firstDayOfWeek: string | number;
|
41728
|
+
firstDayOfYear: string | number;
|
41723
41729
|
hideWeekdays: boolean;
|
41724
41730
|
showWeek: boolean;
|
41725
41731
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -41753,6 +41759,10 @@ declare const VDatePickerMonth: {
|
|
41753
41759
|
type: (StringConstructor | NumberConstructor)[];
|
41754
41760
|
default: undefined;
|
41755
41761
|
};
|
41762
|
+
firstDayOfYear: {
|
41763
|
+
type: (StringConstructor | NumberConstructor)[];
|
41764
|
+
default: undefined;
|
41765
|
+
};
|
41756
41766
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
41757
41767
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
41758
41768
|
color: StringConstructor;
|
@@ -41790,6 +41800,10 @@ declare const VDatePickerMonth: {
|
|
41790
41800
|
type: (StringConstructor | NumberConstructor)[];
|
41791
41801
|
default: undefined;
|
41792
41802
|
};
|
41803
|
+
firstDayOfYear: {
|
41804
|
+
type: (StringConstructor | NumberConstructor)[];
|
41805
|
+
default: undefined;
|
41806
|
+
};
|
41793
41807
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
41794
41808
|
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
41795
41809
|
color: StringConstructor;
|
@@ -42348,6 +42362,7 @@ declare const VDatePicker: {
|
|
42348
42362
|
controlHeight?: string | number | undefined;
|
42349
42363
|
headerColor?: string | undefined;
|
42350
42364
|
firstDayOfWeek?: string | number | undefined;
|
42365
|
+
firstDayOfYear?: string | number | undefined;
|
42351
42366
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
42352
42367
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
42353
42368
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -42383,6 +42398,7 @@ declare const VDatePicker: {
|
|
42383
42398
|
weekdays: CalendarWeekdays[];
|
42384
42399
|
weeksInMonth: "static" | "dynamic";
|
42385
42400
|
firstDayOfWeek: string | number;
|
42401
|
+
firstDayOfYear: string | number;
|
42386
42402
|
hideWeekdays: boolean;
|
42387
42403
|
showWeek: boolean;
|
42388
42404
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -42479,6 +42495,7 @@ declare const VDatePicker: {
|
|
42479
42495
|
controlHeight?: string | number | undefined;
|
42480
42496
|
headerColor?: string | undefined;
|
42481
42497
|
firstDayOfWeek?: string | number | undefined;
|
42498
|
+
firstDayOfYear?: string | number | undefined;
|
42482
42499
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
42483
42500
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
42484
42501
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -42509,6 +42526,7 @@ declare const VDatePicker: {
|
|
42509
42526
|
weekdays: CalendarWeekdays[];
|
42510
42527
|
weeksInMonth: "static" | "dynamic";
|
42511
42528
|
firstDayOfWeek: string | number;
|
42529
|
+
firstDayOfYear: string | number;
|
42512
42530
|
hideWeekdays: boolean;
|
42513
42531
|
showWeek: boolean;
|
42514
42532
|
}>;
|
@@ -42561,6 +42579,7 @@ declare const VDatePicker: {
|
|
42561
42579
|
controlHeight?: string | number | undefined;
|
42562
42580
|
headerColor?: string | undefined;
|
42563
42581
|
firstDayOfWeek?: string | number | undefined;
|
42582
|
+
firstDayOfYear?: string | number | undefined;
|
42564
42583
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
42565
42584
|
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
42566
42585
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
@@ -42596,6 +42615,7 @@ declare const VDatePicker: {
|
|
42596
42615
|
weekdays: CalendarWeekdays[];
|
42597
42616
|
weeksInMonth: "static" | "dynamic";
|
42598
42617
|
firstDayOfWeek: string | number;
|
42618
|
+
firstDayOfYear: string | number;
|
42599
42619
|
hideWeekdays: boolean;
|
42600
42620
|
showWeek: boolean;
|
42601
42621
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -42711,6 +42731,10 @@ declare const VDatePicker: {
|
|
42711
42731
|
type: (StringConstructor | NumberConstructor)[];
|
42712
42732
|
default: undefined;
|
42713
42733
|
};
|
42734
|
+
firstDayOfYear: {
|
42735
|
+
type: (StringConstructor | NumberConstructor)[];
|
42736
|
+
default: undefined;
|
42737
|
+
};
|
42714
42738
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
42715
42739
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
42716
42740
|
hideWeekdays: BooleanConstructor;
|
@@ -42819,6 +42843,10 @@ declare const VDatePicker: {
|
|
42819
42843
|
type: (StringConstructor | NumberConstructor)[];
|
42820
42844
|
default: undefined;
|
42821
42845
|
};
|
42846
|
+
firstDayOfYear: {
|
42847
|
+
type: (StringConstructor | NumberConstructor)[];
|
42848
|
+
default: undefined;
|
42849
|
+
};
|
42822
42850
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
42823
42851
|
weekdayFormat: vue.PropType<"long" | "short" | "narrow" | undefined>;
|
42824
42852
|
hideWeekdays: BooleanConstructor;
|
@@ -95330,7 +95358,7 @@ declare const createVuetify: {
|
|
95330
95358
|
getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
|
95331
95359
|
getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
|
95332
95360
|
getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
|
95333
|
-
getWeek: (date: unknown, firstDayOfWeek?: number | string,
|
95361
|
+
getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
|
95334
95362
|
getMonth: (date: unknown) => number;
|
95335
95363
|
setMonth: (date: unknown, month: number) => unknown;
|
95336
95364
|
getDate: (date: unknown) => number;
|
@@ -95387,30 +95415,38 @@ declare module 'vue' {
|
|
95387
95415
|
}
|
95388
95416
|
export interface GlobalComponents {
|
95389
95417
|
VApp: VApp
|
95390
|
-
VBanner: VBanner
|
95391
|
-
VBannerActions: VBannerActions
|
95392
|
-
VBannerText: VBannerText
|
95393
95418
|
VAppBar: VAppBar
|
95394
95419
|
VAppBarNavIcon: VAppBarNavIcon
|
95395
95420
|
VAppBarTitle: VAppBarTitle
|
95421
|
+
VAlert: VAlert
|
95422
|
+
VAlertTitle: VAlertTitle
|
95396
95423
|
VAutocomplete: VAutocomplete
|
95397
|
-
|
95424
|
+
VBadge: VBadge
|
95398
95425
|
VAvatar: VAvatar
|
95426
|
+
VBottomNavigation: VBottomNavigation
|
95427
|
+
VBottomSheet: VBottomSheet
|
95399
95428
|
VBtn: VBtn
|
95400
|
-
|
95401
|
-
|
95429
|
+
VBanner: VBanner
|
95430
|
+
VBannerActions: VBannerActions
|
95431
|
+
VBannerText: VBannerText
|
95402
95432
|
VBtnGroup: VBtnGroup
|
95403
|
-
VBtnToggle: VBtnToggle
|
95404
|
-
VBadge: VBadge
|
95405
95433
|
VBreadcrumbs: VBreadcrumbs
|
95406
95434
|
VBreadcrumbsItem: VBreadcrumbsItem
|
95407
95435
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
95436
|
+
VCarousel: VCarousel
|
95437
|
+
VCarouselItem: VCarouselItem
|
95438
|
+
VBtnToggle: VBtnToggle
|
95408
95439
|
VCheckbox: VCheckbox
|
95409
95440
|
VCheckboxBtn: VCheckboxBtn
|
95441
|
+
VCode: VCode
|
95442
|
+
VCard: VCard
|
95443
|
+
VCardActions: VCardActions
|
95444
|
+
VCardItem: VCardItem
|
95445
|
+
VCardSubtitle: VCardSubtitle
|
95446
|
+
VCardText: VCardText
|
95447
|
+
VCardTitle: VCardTitle
|
95410
95448
|
VChip: VChip
|
95411
95449
|
VChipGroup: VChipGroup
|
95412
|
-
VCombobox: VCombobox
|
95413
|
-
VColorPicker: VColorPicker
|
95414
95450
|
VDataTable: VDataTable
|
95415
95451
|
VDataTableHeaders: VDataTableHeaders
|
95416
95452
|
VDataTableFooter: VDataTableFooter
|
@@ -95418,46 +95454,40 @@ declare module 'vue' {
|
|
95418
95454
|
VDataTableRow: VDataTableRow
|
95419
95455
|
VDataTableVirtual: VDataTableVirtual
|
95420
95456
|
VDataTableServer: VDataTableServer
|
95457
|
+
VColorPicker: VColorPicker
|
95421
95458
|
VCounter: VCounter
|
95422
|
-
VDialog: VDialog
|
95423
|
-
VCarousel: VCarousel
|
95424
|
-
VCarouselItem: VCarouselItem
|
95425
95459
|
VDatePicker: VDatePicker
|
95426
95460
|
VDatePickerControls: VDatePickerControls
|
95427
95461
|
VDatePickerHeader: VDatePickerHeader
|
95428
95462
|
VDatePickerMonth: VDatePickerMonth
|
95429
95463
|
VDatePickerMonths: VDatePickerMonths
|
95430
95464
|
VDatePickerYears: VDatePickerYears
|
95465
|
+
VDialog: VDialog
|
95466
|
+
VCombobox: VCombobox
|
95467
|
+
VEmptyState: VEmptyState
|
95431
95468
|
VDivider: VDivider
|
95432
|
-
VFab: VFab
|
95433
95469
|
VExpansionPanels: VExpansionPanels
|
95434
95470
|
VExpansionPanel: VExpansionPanel
|
95435
95471
|
VExpansionPanelText: VExpansionPanelText
|
95436
95472
|
VExpansionPanelTitle: VExpansionPanelTitle
|
95437
|
-
|
95438
|
-
|
95439
|
-
VCardActions: VCardActions
|
95440
|
-
VCardItem: VCardItem
|
95441
|
-
VCardSubtitle: VCardSubtitle
|
95442
|
-
VCardText: VCardText
|
95443
|
-
VCardTitle: VCardTitle
|
95473
|
+
VFab: VFab
|
95474
|
+
VFileInput: VFileInput
|
95444
95475
|
VField: VField
|
95445
95476
|
VFieldLabel: VFieldLabel
|
95446
|
-
VFileInput: VFileInput
|
95447
|
-
VCode: VCode
|
95448
95477
|
VFooter: VFooter
|
95478
|
+
VInfiniteScroll: VInfiniteScroll
|
95449
95479
|
VIcon: VIcon
|
95450
95480
|
VComponentIcon: VComponentIcon
|
95451
95481
|
VSvgIcon: VSvgIcon
|
95452
95482
|
VLigatureIcon: VLigatureIcon
|
95453
95483
|
VClassIcon: VClassIcon
|
95454
|
-
VImg: VImg
|
95455
95484
|
VInput: VInput
|
95456
|
-
VInfiniteScroll: VInfiniteScroll
|
95457
|
-
VItemGroup: VItemGroup
|
95458
|
-
VItem: VItem
|
95459
|
-
VLabel: VLabel
|
95460
95485
|
VKbd: VKbd
|
95486
|
+
VImg: VImg
|
95487
|
+
VMenu: VMenu
|
95488
|
+
VMain: VMain
|
95489
|
+
VLabel: VLabel
|
95490
|
+
VMessages: VMessages
|
95461
95491
|
VList: VList
|
95462
95492
|
VListGroup: VListGroup
|
95463
95493
|
VListImg: VListImg
|
@@ -95467,78 +95497,75 @@ declare module 'vue' {
|
|
95467
95497
|
VListItemSubtitle: VListItemSubtitle
|
95468
95498
|
VListItemTitle: VListItemTitle
|
95469
95499
|
VListSubheader: VListSubheader
|
95470
|
-
VNavigationDrawer: VNavigationDrawer
|
95471
|
-
VMain: VMain
|
95472
|
-
VOtpInput: VOtpInput
|
95473
95500
|
VNumberInput: VNumberInput
|
95474
95501
|
VOverlay: VOverlay
|
95475
|
-
|
95476
|
-
|
95477
|
-
VProgressLinear: VProgressLinear
|
95502
|
+
VItemGroup: VItemGroup
|
95503
|
+
VItem: VItem
|
95478
95504
|
VPagination: VPagination
|
95479
|
-
VRadioGroup: VRadioGroup
|
95480
|
-
VRating: VRating
|
95481
95505
|
VProgressCircular: VProgressCircular
|
95506
|
+
VProgressLinear: VProgressLinear
|
95507
|
+
VOtpInput: VOtpInput
|
95508
|
+
VRating: VRating
|
95509
|
+
VRadioGroup: VRadioGroup
|
95510
|
+
VNavigationDrawer: VNavigationDrawer
|
95482
95511
|
VSelect: VSelect
|
95483
95512
|
VSelectionControl: VSelectionControl
|
95484
|
-
VSheet: VSheet
|
95485
|
-
VSkeletonLoader: VSkeletonLoader
|
95486
95513
|
VSelectionControlGroup: VSelectionControlGroup
|
95514
|
+
VSkeletonLoader: VSkeletonLoader
|
95515
|
+
VSheet: VSheet
|
95487
95516
|
VSlideGroup: VSlideGroup
|
95488
95517
|
VSlideGroupItem: VSlideGroupItem
|
95489
|
-
VSlider: VSlider
|
95490
|
-
VSnackbar: VSnackbar
|
95491
|
-
VSwitch: VSwitch
|
95492
95518
|
VStepper: VStepper
|
95493
95519
|
VStepperActions: VStepperActions
|
95494
95520
|
VStepperHeader: VStepperHeader
|
95495
95521
|
VStepperItem: VStepperItem
|
95496
95522
|
VStepperWindow: VStepperWindow
|
95497
95523
|
VStepperWindowItem: VStepperWindowItem
|
95498
|
-
|
95524
|
+
VSlider: VSlider
|
95499
95525
|
VSystemBar: VSystemBar
|
95500
95526
|
VTab: VTab
|
95501
95527
|
VTabs: VTabs
|
95502
95528
|
VTabsWindow: VTabsWindow
|
95503
95529
|
VTabsWindowItem: VTabsWindowItem
|
95530
|
+
VSwitch: VSwitch
|
95531
|
+
VTable: VTable
|
95504
95532
|
VTextField: VTextField
|
95505
|
-
VToolbar: VToolbar
|
95506
|
-
VToolbarTitle: VToolbarTitle
|
95507
|
-
VToolbarItems: VToolbarItems
|
95508
|
-
VTimePicker: VTimePicker
|
95509
|
-
VTimePickerClock: VTimePickerClock
|
95510
|
-
VTimePickerControls: VTimePickerControls
|
95511
95533
|
VTextarea: VTextarea
|
95512
95534
|
VTimeline: VTimeline
|
95513
95535
|
VTimelineItem: VTimelineItem
|
95514
|
-
|
95515
|
-
|
95536
|
+
VTooltip: VTooltip
|
95537
|
+
VTimePicker: VTimePicker
|
95538
|
+
VTimePickerClock: VTimePickerClock
|
95539
|
+
VTimePickerControls: VTimePickerControls
|
95516
95540
|
VTreeview: VTreeview
|
95517
95541
|
VTreeviewItem: VTreeviewItem
|
95518
95542
|
VTreeviewGroup: VTreeviewGroup
|
95519
|
-
|
95520
|
-
|
95521
|
-
|
95522
|
-
|
95523
|
-
|
95543
|
+
VToolbar: VToolbar
|
95544
|
+
VToolbarTitle: VToolbarTitle
|
95545
|
+
VToolbarItems: VToolbarItems
|
95546
|
+
VWindow: VWindow
|
95547
|
+
VWindowItem: VWindowItem
|
95548
|
+
VSnackbar: VSnackbar
|
95524
95549
|
VDefaultsProvider: VDefaultsProvider
|
95525
95550
|
VContainer: VContainer
|
95526
95551
|
VCol: VCol
|
95527
95552
|
VRow: VRow
|
95528
95553
|
VSpacer: VSpacer
|
95529
|
-
|
95554
|
+
VForm: VForm
|
95530
95555
|
VLayout: VLayout
|
95531
95556
|
VLayoutItem: VLayoutItem
|
95557
|
+
VHover: VHover
|
95532
95558
|
VLazy: VLazy
|
95559
|
+
VLocaleProvider: VLocaleProvider
|
95533
95560
|
VNoSsr: VNoSsr
|
95534
95561
|
VParallax: VParallax
|
95535
95562
|
VRadio: VRadio
|
95536
95563
|
VResponsive: VResponsive
|
95537
95564
|
VRangeSlider: VRangeSlider
|
95538
|
-
VSparkline: VSparkline
|
95539
95565
|
VSnackbarQueue: VSnackbarQueue
|
95540
|
-
|
95566
|
+
VSparkline: VSparkline
|
95541
95567
|
VThemeProvider: VThemeProvider
|
95568
|
+
VValidation: VValidation
|
95542
95569
|
VVirtualScroll: VVirtualScroll
|
95543
95570
|
VFabTransition: VFabTransition
|
95544
95571
|
VDialogBottomTransition: VDialogBottomTransition
|
@@ -95556,8 +95583,11 @@ declare module 'vue' {
|
|
95556
95583
|
VExpandTransition: VExpandTransition
|
95557
95584
|
VExpandXTransition: VExpandXTransition
|
95558
95585
|
VDialogTransition: VDialogTransition
|
95559
|
-
|
95560
|
-
|
95586
|
+
VSpeedDial: VSpeedDial
|
95587
|
+
VConfirmEdit: VConfirmEdit
|
95588
|
+
VDataIterator: VDataIterator
|
95589
|
+
VFileUpload: VFileUpload
|
95590
|
+
VFileUploadItem: VFileUploadItem
|
95561
95591
|
VCalendar: VCalendar
|
95562
95592
|
VCalendarDay: VCalendarDay
|
95563
95593
|
VCalendarHeader: VCalendarHeader
|
@@ -95566,23 +95596,21 @@ declare module 'vue' {
|
|
95566
95596
|
VCalendarMonthDay: VCalendarMonthDay
|
95567
95597
|
VPicker: VPicker
|
95568
95598
|
VPickerTitle: VPickerTitle
|
95569
|
-
|
95570
|
-
VFileUploadItem: VFileUploadItem
|
95571
|
-
VIconBtn: VIconBtn
|
95599
|
+
VColorInput: VColorInput
|
95572
95600
|
VHotkey: VHotkey
|
95601
|
+
VVideo: VVideo
|
95602
|
+
VVideoControls: VVideoControls
|
95603
|
+
VVideoVolume: VVideoVolume
|
95573
95604
|
VPie: VPie
|
95574
95605
|
VPieSegment: VPieSegment
|
95575
95606
|
VPieTooltip: VPieTooltip
|
95576
95607
|
VStepperVertical: VStepperVertical
|
95577
95608
|
VStepperVerticalItem: VStepperVerticalItem
|
95578
95609
|
VStepperVerticalActions: VStepperVerticalActions
|
95579
|
-
VVideo: VVideo
|
95580
|
-
VVideoControls: VVideoControls
|
95581
|
-
VVideoVolume: VVideoVolume
|
95582
95610
|
VDateInput: VDateInput
|
95611
|
+
VIconBtn: VIconBtn
|
95583
95612
|
VMaskInput: VMaskInput
|
95584
95613
|
VPullToRefresh: VPullToRefresh
|
95585
|
-
VColorInput: VColorInput
|
95586
95614
|
}
|
95587
95615
|
export interface GlobalDirectives {
|
95588
95616
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.3-master.2025-08-
|
2
|
+
* Vuetify v3.9.3-master.2025-08-02
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -3338,9 +3338,7 @@ function useTheme() {
|
|
3338
3338
|
|
3339
3339
|
const makeVAppProps = propsFactory({
|
3340
3340
|
...makeComponentProps(),
|
3341
|
-
...omit(makeLayoutProps(
|
3342
|
-
fullHeight: true
|
3343
|
-
}), ['fullHeight']),
|
3341
|
+
...omit(makeLayoutProps(), ['fullHeight']),
|
3344
3342
|
...makeThemeProps()
|
3345
3343
|
}, 'VApp');
|
3346
3344
|
const VApp = genericComponent()({
|
@@ -3356,7 +3354,10 @@ const VApp = genericComponent()({
|
|
3356
3354
|
getLayoutItem,
|
3357
3355
|
items,
|
3358
3356
|
layoutRef
|
3359
|
-
} = createLayout(
|
3357
|
+
} = createLayout({
|
3358
|
+
...props,
|
3359
|
+
fullHeight: true
|
3360
|
+
});
|
3360
3361
|
const {
|
3361
3362
|
rtlClasses
|
3362
3363
|
} = useRtl();
|
@@ -6501,7 +6502,7 @@ const VAlert = genericComponent()({
|
|
6501
6502
|
});
|
6502
6503
|
const {
|
6503
6504
|
iconSize
|
6504
|
-
} = useIconSizes(props, () => props.prominent ? 44 :
|
6505
|
+
} = useIconSizes(props, () => props.prominent ? 44 : undefined);
|
6505
6506
|
const {
|
6506
6507
|
themeClasses
|
6507
6508
|
} = provideTheme(props);
|
@@ -6552,7 +6553,7 @@ const VAlert = genericComponent()({
|
|
6552
6553
|
const iconProps = {
|
6553
6554
|
density: props.density,
|
6554
6555
|
icon: icon.value,
|
6555
|
-
size: iconSize.value
|
6556
|
+
size: props.iconSize || props.prominent ? iconSize.value : undefined
|
6556
6557
|
};
|
6557
6558
|
return isActive.value && createVNode(props.tag, {
|
6558
6559
|
"class": normalizeClass(['v-alert', props.border && {
|
@@ -18195,16 +18196,35 @@ function getYear(date) {
|
|
18195
18196
|
function getMonth(date) {
|
18196
18197
|
return date.getMonth();
|
18197
18198
|
}
|
18198
|
-
function getWeek(date, locale, firstDayOfWeek,
|
18199
|
+
function getWeek(date, locale, firstDayOfWeek, firstDayOfYear) {
|
18199
18200
|
const weekInfoFromLocale = weekInfo(locale);
|
18200
18201
|
const weekStart = firstDayOfWeek ?? weekInfoFromLocale?.firstDay ?? 0;
|
18201
|
-
const minWeekSize =
|
18202
|
+
const minWeekSize = weekInfoFromLocale?.firstWeekSize ?? 1;
|
18203
|
+
return firstDayOfYear !== undefined ? calculateWeekWithFirstDayOfYear(date, locale, weekStart, firstDayOfYear) : calculateWeekWithMinWeekSize(date, locale, weekStart, minWeekSize);
|
18204
|
+
}
|
18205
|
+
function calculateWeekWithFirstDayOfYear(date, locale, weekStart, firstDayOfYear) {
|
18206
|
+
const firstDayOfYearOffset = (7 + firstDayOfYear - weekStart) % 7;
|
18207
|
+
const currentWeekStart = startOfWeek(date, locale, weekStart);
|
18208
|
+
const currentWeekEnd = addDays(currentWeekStart, 6);
|
18209
|
+
function yearStartWeekdayOffset(year) {
|
18210
|
+
return (7 + new Date(year, 0, 1).getDay() - weekStart) % 7;
|
18211
|
+
}
|
18212
|
+
let year = getYear(date);
|
18213
|
+
if (year < getYear(currentWeekEnd) && yearStartWeekdayOffset(year + 1) <= firstDayOfYearOffset) {
|
18214
|
+
year++;
|
18215
|
+
}
|
18216
|
+
const yearStart = new Date(year, 0, 1);
|
18217
|
+
const offset = yearStartWeekdayOffset(year);
|
18218
|
+
const d1w1 = offset <= firstDayOfYearOffset ? addDays(yearStart, -offset) : addDays(yearStart, 7 - offset);
|
18219
|
+
return 1 + getDiff(endOfDay(date), startOfDay(d1w1), 'weeks');
|
18220
|
+
}
|
18221
|
+
function calculateWeekWithMinWeekSize(date, locale, weekStart, minWeekSize) {
|
18222
|
+
const currentWeekEnd = addDays(startOfWeek(date, locale, weekStart), 6);
|
18202
18223
|
function firstWeekSize(year) {
|
18203
18224
|
const yearStart = new Date(year, 0, 1);
|
18204
18225
|
return 7 - getDiff(yearStart, startOfWeek(yearStart, locale, weekStart), 'days');
|
18205
18226
|
}
|
18206
18227
|
let year = getYear(date);
|
18207
|
-
const currentWeekEnd = addDays(startOfWeek(date, locale, weekStart), 6);
|
18208
18228
|
if (year < getYear(currentWeekEnd) && firstWeekSize(year + 1) >= minWeekSize) {
|
18209
18229
|
year++;
|
18210
18230
|
}
|
@@ -18426,9 +18446,10 @@ class VuetifyDateAdapter {
|
|
18426
18446
|
getMonth(date) {
|
18427
18447
|
return getMonth(date);
|
18428
18448
|
}
|
18429
|
-
getWeek(date, firstDayOfWeek,
|
18449
|
+
getWeek(date, firstDayOfWeek, firstDayOfYear) {
|
18430
18450
|
const firstDay = firstDayOfWeek !== undefined ? Number(firstDayOfWeek) : undefined;
|
18431
|
-
|
18451
|
+
const firstWeekStart = firstDayOfYear !== undefined ? Number(firstDayOfYear) : undefined;
|
18452
|
+
return getWeek(date, this.locale, firstDay, firstWeekStart);
|
18432
18453
|
}
|
18433
18454
|
getDate(date) {
|
18434
18455
|
return getDate(date);
|
@@ -23168,6 +23189,10 @@ const makeCalendarProps = propsFactory({
|
|
23168
23189
|
type: [Number, String],
|
23169
23190
|
default: undefined
|
23170
23191
|
},
|
23192
|
+
firstDayOfYear: {
|
23193
|
+
type: [Number, String],
|
23194
|
+
default: undefined
|
23195
|
+
},
|
23171
23196
|
weekdayFormat: String
|
23172
23197
|
}, 'calendar');
|
23173
23198
|
function useCalendar(props) {
|
@@ -23259,7 +23284,7 @@ function useCalendar(props) {
|
|
23259
23284
|
});
|
23260
23285
|
const weekNumbers = computed(() => {
|
23261
23286
|
return weeksInMonth.value.map(week => {
|
23262
|
-
return week.length ? adapter.getWeek(week[0], props.firstDayOfWeek) : null;
|
23287
|
+
return week.length ? adapter.getWeek(week[0], props.firstDayOfWeek, props.firstDayOfYear) : null;
|
23263
23288
|
});
|
23264
23289
|
});
|
23265
23290
|
function isDisabled(value) {
|
@@ -31553,7 +31578,7 @@ function createVuetify$1() {
|
|
31553
31578
|
};
|
31554
31579
|
});
|
31555
31580
|
}
|
31556
|
-
const version$1 = "3.9.3-master.2025-08-
|
31581
|
+
const version$1 = "3.9.3-master.2025-08-02";
|
31557
31582
|
createVuetify$1.version = version$1;
|
31558
31583
|
|
31559
31584
|
// Vue's inject() can only be used in setup
|
@@ -31578,7 +31603,7 @@ const createVuetify = function () {
|
|
31578
31603
|
...options
|
31579
31604
|
});
|
31580
31605
|
};
|
31581
|
-
const version = "3.9.3-master.2025-08-
|
31606
|
+
const version = "3.9.3-master.2025-08-02";
|
31582
31607
|
createVuetify.version = version;
|
31583
31608
|
|
31584
31609
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useRtl, useTheme, version };
|