@vuetify/nightly 3.9.3-master.2025-08-01 → 3.9.3-master.2025-08-03
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 +11 -4
- package/dist/json/attributes.json +2189 -2173
- package/dist/json/importMap-labs.json +44 -44
- package/dist/json/importMap.json +200 -200
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +3795 -3759
- package/dist/vuetify-labs.cjs +48 -18
- package/dist/vuetify-labs.css +6177 -6162
- package/dist/vuetify-labs.d.ts +133 -77
- package/dist/vuetify-labs.esm.js +48 -18
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +48 -18
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +48 -18
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3590 -3575
- package/dist/vuetify.d.ts +105 -77
- package/dist/vuetify.esm.js +48 -18
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +48 -18
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +289 -283
- 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 +77 -77
- 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/lib/labs/rules/rules.d.ts +10 -3
- package/lib/labs/rules/rules.js +13 -5
- package/lib/labs/rules/rules.js.map +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,40 @@ declare module 'vue' {
|
|
95387
95415
|
}
|
95388
95416
|
export interface GlobalComponents {
|
95389
95417
|
VApp: VApp
|
95390
|
-
|
95391
|
-
|
95392
|
-
VBannerText: VBannerText
|
95418
|
+
VAlert: VAlert
|
95419
|
+
VAlertTitle: VAlertTitle
|
95393
95420
|
VAppBar: VAppBar
|
95394
95421
|
VAppBarNavIcon: VAppBarNavIcon
|
95395
95422
|
VAppBarTitle: VAppBarTitle
|
95396
|
-
VAutocomplete: VAutocomplete
|
95397
|
-
VBottomNavigation: VBottomNavigation
|
95398
95423
|
VAvatar: VAvatar
|
95399
|
-
VBtn: VBtn
|
95400
|
-
VAlert: VAlert
|
95401
|
-
VAlertTitle: VAlertTitle
|
95402
|
-
VBtnGroup: VBtnGroup
|
95403
|
-
VBtnToggle: VBtnToggle
|
95404
95424
|
VBadge: VBadge
|
95425
|
+
VAutocomplete: VAutocomplete
|
95426
|
+
VBanner: VBanner
|
95427
|
+
VBannerActions: VBannerActions
|
95428
|
+
VBannerText: VBannerText
|
95429
|
+
VBottomNavigation: VBottomNavigation
|
95430
|
+
VBottomSheet: VBottomSheet
|
95405
95431
|
VBreadcrumbs: VBreadcrumbs
|
95406
95432
|
VBreadcrumbsItem: VBreadcrumbsItem
|
95407
95433
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
95434
|
+
VBtnToggle: VBtnToggle
|
95435
|
+
VBtn: VBtn
|
95436
|
+
VCard: VCard
|
95437
|
+
VCardActions: VCardActions
|
95438
|
+
VCardItem: VCardItem
|
95439
|
+
VCardSubtitle: VCardSubtitle
|
95440
|
+
VCardText: VCardText
|
95441
|
+
VCardTitle: VCardTitle
|
95408
95442
|
VCheckbox: VCheckbox
|
95409
95443
|
VCheckboxBtn: VCheckboxBtn
|
95410
95444
|
VChip: VChip
|
95445
|
+
VCode: VCode
|
95411
95446
|
VChipGroup: VChipGroup
|
95412
95447
|
VCombobox: VCombobox
|
95413
95448
|
VColorPicker: VColorPicker
|
95449
|
+
VCarousel: VCarousel
|
95450
|
+
VCarouselItem: VCarouselItem
|
95451
|
+
VCounter: VCounter
|
95414
95452
|
VDataTable: VDataTable
|
95415
95453
|
VDataTableHeaders: VDataTableHeaders
|
95416
95454
|
VDataTableFooter: VDataTableFooter
|
@@ -95418,46 +95456,37 @@ declare module 'vue' {
|
|
95418
95456
|
VDataTableRow: VDataTableRow
|
95419
95457
|
VDataTableVirtual: VDataTableVirtual
|
95420
95458
|
VDataTableServer: VDataTableServer
|
95421
|
-
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
|
+
VEmptyState: VEmptyState
|
95467
|
+
VBtnGroup: VBtnGroup
|
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
|
-
VCard: VCard
|
95439
|
-
VCardActions: VCardActions
|
95440
|
-
VCardItem: VCardItem
|
95441
|
-
VCardSubtitle: VCardSubtitle
|
95442
|
-
VCardText: VCardText
|
95443
|
-
VCardTitle: VCardTitle
|
95444
|
-
VField: VField
|
95445
|
-
VFieldLabel: VFieldLabel
|
95446
|
-
VFileInput: VFileInput
|
95447
|
-
VCode: VCode
|
95473
|
+
VFab: VFab
|
95448
95474
|
VFooter: VFooter
|
95475
|
+
VFileInput: VFileInput
|
95449
95476
|
VIcon: VIcon
|
95450
95477
|
VComponentIcon: VComponentIcon
|
95451
95478
|
VSvgIcon: VSvgIcon
|
95452
95479
|
VLigatureIcon: VLigatureIcon
|
95453
95480
|
VClassIcon: VClassIcon
|
95454
95481
|
VImg: VImg
|
95455
|
-
|
95482
|
+
VField: VField
|
95483
|
+
VFieldLabel: VFieldLabel
|
95484
|
+
VKbd: VKbd
|
95456
95485
|
VInfiniteScroll: VInfiniteScroll
|
95457
95486
|
VItemGroup: VItemGroup
|
95458
95487
|
VItem: VItem
|
95488
|
+
VInput: VInput
|
95459
95489
|
VLabel: VLabel
|
95460
|
-
VKbd: VKbd
|
95461
95490
|
VList: VList
|
95462
95491
|
VListGroup: VListGroup
|
95463
95492
|
VListImg: VListImg
|
@@ -95467,78 +95496,78 @@ declare module 'vue' {
|
|
95467
95496
|
VListItemSubtitle: VListItemSubtitle
|
95468
95497
|
VListItemTitle: VListItemTitle
|
95469
95498
|
VListSubheader: VListSubheader
|
95470
|
-
VNavigationDrawer: VNavigationDrawer
|
95471
95499
|
VMain: VMain
|
95472
|
-
VOtpInput: VOtpInput
|
95473
|
-
VNumberInput: VNumberInput
|
95474
|
-
VOverlay: VOverlay
|
95475
95500
|
VMessages: VMessages
|
95476
95501
|
VMenu: VMenu
|
95477
|
-
|
95502
|
+
VNavigationDrawer: VNavigationDrawer
|
95503
|
+
VOtpInput: VOtpInput
|
95504
|
+
VOverlay: VOverlay
|
95505
|
+
VNumberInput: VNumberInput
|
95478
95506
|
VPagination: VPagination
|
95507
|
+
VProgressLinear: VProgressLinear
|
95479
95508
|
VRadioGroup: VRadioGroup
|
95480
|
-
VRating: VRating
|
95481
95509
|
VProgressCircular: VProgressCircular
|
95510
|
+
VRating: VRating
|
95482
95511
|
VSelect: VSelect
|
95483
|
-
VSelectionControl: VSelectionControl
|
95484
|
-
VSheet: VSheet
|
95485
|
-
VSkeletonLoader: VSkeletonLoader
|
95486
|
-
VSelectionControlGroup: VSelectionControlGroup
|
95487
95512
|
VSlideGroup: VSlideGroup
|
95488
95513
|
VSlideGroupItem: VSlideGroupItem
|
95514
|
+
VSelectionControlGroup: VSelectionControlGroup
|
95489
95515
|
VSlider: VSlider
|
95490
95516
|
VSnackbar: VSnackbar
|
95517
|
+
VSheet: VSheet
|
95518
|
+
VSkeletonLoader: VSkeletonLoader
|
95519
|
+
VSelectionControl: VSelectionControl
|
95491
95520
|
VSwitch: VSwitch
|
95492
|
-
VStepper: VStepper
|
95493
|
-
VStepperActions: VStepperActions
|
95494
|
-
VStepperHeader: VStepperHeader
|
95495
|
-
VStepperItem: VStepperItem
|
95496
|
-
VStepperWindow: VStepperWindow
|
95497
|
-
VStepperWindowItem: VStepperWindowItem
|
95498
|
-
VTable: VTable
|
95499
95521
|
VSystemBar: VSystemBar
|
95522
|
+
VTable: VTable
|
95523
|
+
VTextarea: VTextarea
|
95500
95524
|
VTab: VTab
|
95501
95525
|
VTabs: VTabs
|
95502
95526
|
VTabsWindow: VTabsWindow
|
95503
95527
|
VTabsWindowItem: VTabsWindowItem
|
95528
|
+
VTimeline: VTimeline
|
95529
|
+
VTimelineItem: VTimelineItem
|
95530
|
+
VTooltip: VTooltip
|
95531
|
+
VTimePicker: VTimePicker
|
95532
|
+
VTimePickerClock: VTimePickerClock
|
95533
|
+
VTimePickerControls: VTimePickerControls
|
95504
95534
|
VTextField: VTextField
|
95505
95535
|
VToolbar: VToolbar
|
95506
95536
|
VToolbarTitle: VToolbarTitle
|
95507
95537
|
VToolbarItems: VToolbarItems
|
95508
|
-
VTimePicker: VTimePicker
|
95509
|
-
VTimePickerClock: VTimePickerClock
|
95510
|
-
VTimePickerControls: VTimePickerControls
|
95511
|
-
VTextarea: VTextarea
|
95512
|
-
VTimeline: VTimeline
|
95513
|
-
VTimelineItem: VTimelineItem
|
95514
|
-
VWindow: VWindow
|
95515
|
-
VWindowItem: VWindowItem
|
95516
95538
|
VTreeview: VTreeview
|
95517
95539
|
VTreeviewItem: VTreeviewItem
|
95518
95540
|
VTreeviewGroup: VTreeviewGroup
|
95519
|
-
|
95541
|
+
VWindow: VWindow
|
95542
|
+
VWindowItem: VWindowItem
|
95520
95543
|
VDataIterator: VDataIterator
|
95521
|
-
VConfirmEdit: VConfirmEdit
|
95522
|
-
VForm: VForm
|
95523
|
-
VEmptyState: VEmptyState
|
95524
95544
|
VDefaultsProvider: VDefaultsProvider
|
95545
|
+
VHover: VHover
|
95546
|
+
VForm: VForm
|
95525
95547
|
VContainer: VContainer
|
95526
95548
|
VCol: VCol
|
95527
95549
|
VRow: VRow
|
95528
95550
|
VSpacer: VSpacer
|
95529
|
-
VLocaleProvider: VLocaleProvider
|
95530
95551
|
VLayout: VLayout
|
95531
95552
|
VLayoutItem: VLayoutItem
|
95553
|
+
VStepper: VStepper
|
95554
|
+
VStepperActions: VStepperActions
|
95555
|
+
VStepperHeader: VStepperHeader
|
95556
|
+
VStepperItem: VStepperItem
|
95557
|
+
VStepperWindow: VStepperWindow
|
95558
|
+
VStepperWindowItem: VStepperWindowItem
|
95532
95559
|
VLazy: VLazy
|
95560
|
+
VLocaleProvider: VLocaleProvider
|
95533
95561
|
VNoSsr: VNoSsr
|
95534
95562
|
VParallax: VParallax
|
95535
95563
|
VRadio: VRadio
|
95536
|
-
VResponsive: VResponsive
|
95537
95564
|
VRangeSlider: VRangeSlider
|
95538
|
-
|
95565
|
+
VResponsive: VResponsive
|
95539
95566
|
VSnackbarQueue: VSnackbarQueue
|
95567
|
+
VSparkline: VSparkline
|
95540
95568
|
VSpeedDial: VSpeedDial
|
95541
95569
|
VThemeProvider: VThemeProvider
|
95570
|
+
VValidation: VValidation
|
95542
95571
|
VVirtualScroll: VVirtualScroll
|
95543
95572
|
VFabTransition: VFabTransition
|
95544
95573
|
VDialogBottomTransition: VDialogBottomTransition
|
@@ -95556,33 +95585,32 @@ declare module 'vue' {
|
|
95556
95585
|
VExpandTransition: VExpandTransition
|
95557
95586
|
VExpandXTransition: VExpandXTransition
|
95558
95587
|
VDialogTransition: VDialogTransition
|
95559
|
-
|
95560
|
-
|
95561
|
-
VCalendar: VCalendar
|
95562
|
-
VCalendarDay: VCalendarDay
|
95563
|
-
VCalendarHeader: VCalendarHeader
|
95564
|
-
VCalendarInterval: VCalendarInterval
|
95565
|
-
VCalendarIntervalEvent: VCalendarIntervalEvent
|
95566
|
-
VCalendarMonthDay: VCalendarMonthDay
|
95567
|
-
VPicker: VPicker
|
95568
|
-
VPickerTitle: VPickerTitle
|
95588
|
+
VConfirmEdit: VConfirmEdit
|
95589
|
+
VIconBtn: VIconBtn
|
95569
95590
|
VFileUpload: VFileUpload
|
95570
95591
|
VFileUploadItem: VFileUploadItem
|
95571
|
-
VIconBtn: VIconBtn
|
95572
|
-
VHotkey: VHotkey
|
95573
|
-
VPie: VPie
|
95574
|
-
VPieSegment: VPieSegment
|
95575
|
-
VPieTooltip: VPieTooltip
|
95576
95592
|
VStepperVertical: VStepperVertical
|
95577
95593
|
VStepperVerticalItem: VStepperVerticalItem
|
95578
95594
|
VStepperVerticalActions: VStepperVerticalActions
|
95595
|
+
VPicker: VPicker
|
95596
|
+
VPickerTitle: VPickerTitle
|
95579
95597
|
VVideo: VVideo
|
95580
95598
|
VVideoControls: VVideoControls
|
95581
95599
|
VVideoVolume: VVideoVolume
|
95600
|
+
VHotkey: VHotkey
|
95582
95601
|
VDateInput: VDateInput
|
95583
95602
|
VMaskInput: VMaskInput
|
95584
95603
|
VPullToRefresh: VPullToRefresh
|
95585
95604
|
VColorInput: VColorInput
|
95605
|
+
VPie: VPie
|
95606
|
+
VPieSegment: VPieSegment
|
95607
|
+
VPieTooltip: VPieTooltip
|
95608
|
+
VCalendar: VCalendar
|
95609
|
+
VCalendarDay: VCalendarDay
|
95610
|
+
VCalendarHeader: VCalendarHeader
|
95611
|
+
VCalendarInterval: VCalendarInterval
|
95612
|
+
VCalendarIntervalEvent: VCalendarIntervalEvent
|
95613
|
+
VCalendarMonthDay: VCalendarMonthDay
|
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-03
|
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 && {
|
@@ -7335,9 +7336,14 @@ function useForm(props) {
|
|
7335
7336
|
// Utilities
|
7336
7337
|
const RulesSymbol = Symbol.for('vuetify:rules');
|
7337
7338
|
function useRules(fn) {
|
7338
|
-
const
|
7339
|
-
if (!
|
7340
|
-
|
7339
|
+
const rules = inject$1(RulesSymbol, null);
|
7340
|
+
if (!fn) {
|
7341
|
+
if (!rules) {
|
7342
|
+
throw new Error('Could not find Vuetify rules injection');
|
7343
|
+
}
|
7344
|
+
return rules.aliases;
|
7345
|
+
}
|
7346
|
+
return rules?.resolve(fn) ?? toRef(fn);
|
7341
7347
|
}
|
7342
7348
|
|
7343
7349
|
// Composables
|
@@ -18195,16 +18201,35 @@ function getYear(date) {
|
|
18195
18201
|
function getMonth(date) {
|
18196
18202
|
return date.getMonth();
|
18197
18203
|
}
|
18198
|
-
function getWeek(date, locale, firstDayOfWeek,
|
18204
|
+
function getWeek(date, locale, firstDayOfWeek, firstDayOfYear) {
|
18199
18205
|
const weekInfoFromLocale = weekInfo(locale);
|
18200
18206
|
const weekStart = firstDayOfWeek ?? weekInfoFromLocale?.firstDay ?? 0;
|
18201
|
-
const minWeekSize =
|
18207
|
+
const minWeekSize = weekInfoFromLocale?.firstWeekSize ?? 1;
|
18208
|
+
return firstDayOfYear !== undefined ? calculateWeekWithFirstDayOfYear(date, locale, weekStart, firstDayOfYear) : calculateWeekWithMinWeekSize(date, locale, weekStart, minWeekSize);
|
18209
|
+
}
|
18210
|
+
function calculateWeekWithFirstDayOfYear(date, locale, weekStart, firstDayOfYear) {
|
18211
|
+
const firstDayOfYearOffset = (7 + firstDayOfYear - weekStart) % 7;
|
18212
|
+
const currentWeekStart = startOfWeek(date, locale, weekStart);
|
18213
|
+
const currentWeekEnd = addDays(currentWeekStart, 6);
|
18214
|
+
function yearStartWeekdayOffset(year) {
|
18215
|
+
return (7 + new Date(year, 0, 1).getDay() - weekStart) % 7;
|
18216
|
+
}
|
18217
|
+
let year = getYear(date);
|
18218
|
+
if (year < getYear(currentWeekEnd) && yearStartWeekdayOffset(year + 1) <= firstDayOfYearOffset) {
|
18219
|
+
year++;
|
18220
|
+
}
|
18221
|
+
const yearStart = new Date(year, 0, 1);
|
18222
|
+
const offset = yearStartWeekdayOffset(year);
|
18223
|
+
const d1w1 = offset <= firstDayOfYearOffset ? addDays(yearStart, -offset) : addDays(yearStart, 7 - offset);
|
18224
|
+
return 1 + getDiff(endOfDay(date), startOfDay(d1w1), 'weeks');
|
18225
|
+
}
|
18226
|
+
function calculateWeekWithMinWeekSize(date, locale, weekStart, minWeekSize) {
|
18227
|
+
const currentWeekEnd = addDays(startOfWeek(date, locale, weekStart), 6);
|
18202
18228
|
function firstWeekSize(year) {
|
18203
18229
|
const yearStart = new Date(year, 0, 1);
|
18204
18230
|
return 7 - getDiff(yearStart, startOfWeek(yearStart, locale, weekStart), 'days');
|
18205
18231
|
}
|
18206
18232
|
let year = getYear(date);
|
18207
|
-
const currentWeekEnd = addDays(startOfWeek(date, locale, weekStart), 6);
|
18208
18233
|
if (year < getYear(currentWeekEnd) && firstWeekSize(year + 1) >= minWeekSize) {
|
18209
18234
|
year++;
|
18210
18235
|
}
|
@@ -18426,9 +18451,10 @@ class VuetifyDateAdapter {
|
|
18426
18451
|
getMonth(date) {
|
18427
18452
|
return getMonth(date);
|
18428
18453
|
}
|
18429
|
-
getWeek(date, firstDayOfWeek,
|
18454
|
+
getWeek(date, firstDayOfWeek, firstDayOfYear) {
|
18430
18455
|
const firstDay = firstDayOfWeek !== undefined ? Number(firstDayOfWeek) : undefined;
|
18431
|
-
|
18456
|
+
const firstWeekStart = firstDayOfYear !== undefined ? Number(firstDayOfYear) : undefined;
|
18457
|
+
return getWeek(date, this.locale, firstDay, firstWeekStart);
|
18432
18458
|
}
|
18433
18459
|
getDate(date) {
|
18434
18460
|
return getDate(date);
|
@@ -23168,6 +23194,10 @@ const makeCalendarProps = propsFactory({
|
|
23168
23194
|
type: [Number, String],
|
23169
23195
|
default: undefined
|
23170
23196
|
},
|
23197
|
+
firstDayOfYear: {
|
23198
|
+
type: [Number, String],
|
23199
|
+
default: undefined
|
23200
|
+
},
|
23171
23201
|
weekdayFormat: String
|
23172
23202
|
}, 'calendar');
|
23173
23203
|
function useCalendar(props) {
|
@@ -23259,7 +23289,7 @@ function useCalendar(props) {
|
|
23259
23289
|
});
|
23260
23290
|
const weekNumbers = computed(() => {
|
23261
23291
|
return weeksInMonth.value.map(week => {
|
23262
|
-
return week.length ? adapter.getWeek(week[0], props.firstDayOfWeek) : null;
|
23292
|
+
return week.length ? adapter.getWeek(week[0], props.firstDayOfWeek, props.firstDayOfYear) : null;
|
23263
23293
|
});
|
23264
23294
|
});
|
23265
23295
|
function isDisabled(value) {
|
@@ -31553,7 +31583,7 @@ function createVuetify$1() {
|
|
31553
31583
|
};
|
31554
31584
|
});
|
31555
31585
|
}
|
31556
|
-
const version$1 = "3.9.3-master.2025-08-
|
31586
|
+
const version$1 = "3.9.3-master.2025-08-03";
|
31557
31587
|
createVuetify$1.version = version$1;
|
31558
31588
|
|
31559
31589
|
// Vue's inject() can only be used in setup
|
@@ -31578,7 +31608,7 @@ const createVuetify = function () {
|
|
31578
31608
|
...options
|
31579
31609
|
});
|
31580
31610
|
};
|
31581
|
-
const version = "3.9.3-master.2025-08-
|
31611
|
+
const version = "3.9.3-master.2025-08-03";
|
31582
31612
|
createVuetify.version = version;
|
31583
31613
|
|
31584
31614
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useRtl, useTheme, version };
|