@vuetify/nightly 3.5.3-dev.2024-02-25 → 3.5.3-dev.2024-03-06
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 +4 -2
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +130 -130
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +1341 -1341
- package/dist/vuetify-labs.d.ts +15 -6
- package/dist/vuetify-labs.esm.js +23 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +23 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +433 -433
- package/dist/vuetify.d.ts +56 -47
- package/dist/vuetify.esm.js +23 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +23 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +279 -279
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +5 -2
- package/lib/blueprints/md1.d.mts +5 -2
- package/lib/blueprints/md2.d.mts +5 -2
- package/lib/blueprints/md3.d.mts +5 -2
- package/lib/composables/date/DateAdapter.mjs.map +1 -1
- package/lib/composables/date/adapters/vuetify.mjs +18 -0
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/composables/icons.mjs +2 -1
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +56 -47
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
|
@@ -19,11 +19,13 @@ interface DateAdapter<T = unknown> {
|
|
|
19
19
|
endOfMonth(date: T): T;
|
|
20
20
|
startOfYear(date: T): T;
|
|
21
21
|
endOfYear(date: T): T;
|
|
22
|
-
isBefore(date: T, comparing: T): boolean;
|
|
23
22
|
isAfter(date: T, comparing: T): boolean;
|
|
24
|
-
|
|
23
|
+
isAfterDay(value: T, comparing: T): boolean;
|
|
25
24
|
isSameDay(date: T, comparing: T): boolean;
|
|
26
25
|
isSameMonth(date: T, comparing: T): boolean;
|
|
26
|
+
isSameYear(value: T, comparing: T): boolean;
|
|
27
|
+
isBefore(date: T, comparing: T): boolean;
|
|
28
|
+
isEqual(date: T, comparing: T): boolean;
|
|
27
29
|
isValid(date: any): boolean;
|
|
28
30
|
isWithinRange(date: T, range: [T, T]): boolean;
|
|
29
31
|
addMinutes(date: T, amount: number): T;
|
|
@@ -39,6 +41,7 @@ interface DateAdapter<T = unknown> {
|
|
|
39
41
|
getMonth(date: T): number;
|
|
40
42
|
setMonth(date: T, month: number): T;
|
|
41
43
|
getNextMonth(date: T): T;
|
|
44
|
+
getPreviousMonth(date: T): T;
|
|
42
45
|
getHours(date: T): number;
|
|
43
46
|
setHours(date: T, hours: number): T;
|
|
44
47
|
getMinutes(date: T): number;
|
|
@@ -108,11 +111,13 @@ declare function useDate(): {
|
|
|
108
111
|
endOfMonth: (date: unknown) => unknown;
|
|
109
112
|
startOfYear: (date: unknown) => unknown;
|
|
110
113
|
endOfYear: (date: unknown) => unknown;
|
|
111
|
-
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
112
114
|
isAfter: (date: unknown, comparing: unknown) => boolean;
|
|
113
|
-
|
|
115
|
+
isAfterDay: (value: unknown, comparing: unknown) => boolean;
|
|
114
116
|
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
|
115
117
|
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
|
118
|
+
isSameYear: (value: unknown, comparing: unknown) => boolean;
|
|
119
|
+
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
120
|
+
isEqual: (date: unknown, comparing: unknown) => boolean;
|
|
116
121
|
isValid: (date: any) => boolean;
|
|
117
122
|
isWithinRange: (date: unknown, range: [unknown, unknown]) => boolean;
|
|
118
123
|
addMinutes: (date: unknown, amount: number) => unknown;
|
|
@@ -128,6 +133,7 @@ declare function useDate(): {
|
|
|
128
133
|
getMonth: (date: unknown) => number;
|
|
129
134
|
setMonth: (date: unknown, month: number) => unknown;
|
|
130
135
|
getNextMonth: (date: unknown) => unknown;
|
|
136
|
+
getPreviousMonth: (date: unknown) => unknown;
|
|
131
137
|
getHours: (date: unknown) => number;
|
|
132
138
|
setHours: (date: unknown, hours: number) => unknown;
|
|
133
139
|
getMinutes: (date: unknown) => number;
|
|
@@ -67262,11 +67268,13 @@ declare const createVuetify: {
|
|
|
67262
67268
|
endOfMonth: (date: unknown) => unknown;
|
|
67263
67269
|
startOfYear: (date: unknown) => unknown;
|
|
67264
67270
|
endOfYear: (date: unknown) => unknown;
|
|
67265
|
-
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
67266
67271
|
isAfter: (date: unknown, comparing: unknown) => boolean;
|
|
67267
|
-
|
|
67272
|
+
isAfterDay: (value: unknown, comparing: unknown) => boolean;
|
|
67268
67273
|
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
|
67269
67274
|
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
|
67275
|
+
isSameYear: (value: unknown, comparing: unknown) => boolean;
|
|
67276
|
+
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
67277
|
+
isEqual: (date: unknown, comparing: unknown) => boolean;
|
|
67270
67278
|
isValid: (date: any) => boolean;
|
|
67271
67279
|
isWithinRange: (date: unknown, range: [unknown, unknown]) => boolean;
|
|
67272
67280
|
addMinutes: (date: unknown, amount: number) => unknown;
|
|
@@ -67282,6 +67290,7 @@ declare const createVuetify: {
|
|
|
67282
67290
|
getMonth: (date: unknown) => number;
|
|
67283
67291
|
setMonth: (date: unknown, month: number) => unknown;
|
|
67284
67292
|
getNextMonth: (date: unknown) => unknown;
|
|
67293
|
+
getPreviousMonth: (date: unknown) => unknown;
|
|
67285
67294
|
getHours: (date: unknown) => number;
|
|
67286
67295
|
setHours: (date: unknown, hours: number) => unknown;
|
|
67287
67296
|
getMinutes: (date: unknown) => number;
|
|
@@ -67340,42 +67349,43 @@ declare module '@vue/runtime-core' {
|
|
|
67340
67349
|
}
|
|
67341
67350
|
|
|
67342
67351
|
export interface GlobalComponents {
|
|
67343
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
67344
67352
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
67345
67353
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
67346
67354
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
67347
|
-
|
|
67355
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
67348
67356
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
67349
67357
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
67350
67358
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
67359
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
67351
67360
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
67352
67361
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
67353
67362
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
67354
67363
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
67355
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
67356
67364
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
67365
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
67366
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
67357
67367
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
67358
67368
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
67359
67369
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
67360
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
67361
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
67362
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
67363
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67364
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
67365
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
67366
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
67367
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
67368
67370
|
VCard: typeof import('vuetify/components')['VCard']
|
|
67369
67371
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
67370
67372
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
67371
67373
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
67372
67374
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
67373
67375
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
67376
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
67377
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
67378
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
67379
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67374
67380
|
VChip: typeof import('vuetify/components')['VChip']
|
|
67381
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
67382
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
67375
67383
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
67376
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
67377
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
67378
67384
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
67385
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
67386
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
67387
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
67388
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
67379
67389
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
67380
67390
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
67381
67391
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
@@ -67388,25 +67398,24 @@ declare module '@vue/runtime-core' {
|
|
|
67388
67398
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
67389
67399
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
67390
67400
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
67391
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
|
67392
67401
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
67402
|
+
VField: typeof import('vuetify/components')['VField']
|
|
67403
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
67393
67404
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
67394
67405
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
67395
67406
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
67396
67407
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
67397
|
-
VField: typeof import('vuetify/components')['VField']
|
|
67398
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
67399
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
67400
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
67401
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
67402
67408
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
67403
67409
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
67404
67410
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
67405
67411
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
67406
67412
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
67413
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
67414
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
67407
67415
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
67408
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
67409
67416
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67417
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
67418
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
67410
67419
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
67411
67420
|
VItem: typeof import('vuetify/components')['VItem']
|
|
67412
67421
|
VList: typeof import('vuetify/components')['VList']
|
|
@@ -67419,45 +67428,45 @@ declare module '@vue/runtime-core' {
|
|
|
67419
67428
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
67420
67429
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
67421
67430
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
67422
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
|
67423
67431
|
VMain: typeof import('vuetify/components')['VMain']
|
|
67424
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
|
67425
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
|
67426
67432
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
67433
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
67434
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
67427
67435
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
67428
67436
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
67437
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
|
67429
67438
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
67430
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
67431
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
67432
67439
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
67440
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
67441
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
67433
67442
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
67443
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
67434
67444
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
67435
67445
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
67436
67446
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
67437
67447
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
67438
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
67439
67448
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
67440
67449
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
67441
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
67442
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
67443
67450
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
67444
67451
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
67445
67452
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
67446
67453
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
67447
67454
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
67448
67455
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
67449
|
-
|
|
67450
|
-
|
|
67451
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
67456
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
67457
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
67452
67458
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
67453
67459
|
VTab: typeof import('vuetify/components')['VTab']
|
|
67454
|
-
|
|
67455
|
-
|
|
67456
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
67460
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
67461
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
67457
67462
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
67463
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
67464
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
67458
67465
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
67459
67466
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
67460
67467
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
67468
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
67469
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
67461
67470
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
67462
67471
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
67463
67472
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
@@ -67468,16 +67477,18 @@ declare module '@vue/runtime-core' {
|
|
|
67468
67477
|
VRow: typeof import('vuetify/components')['VRow']
|
|
67469
67478
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
67470
67479
|
VHover: typeof import('vuetify/components')['VHover']
|
|
67471
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
67472
67480
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
67473
67481
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
67482
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
67474
67483
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
67475
|
-
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
67476
67484
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
67477
|
-
|
|
67485
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
67478
67486
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
67487
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
67479
67488
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
67480
67489
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
67490
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
67491
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
67481
67492
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
67482
67493
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
67483
67494
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -67494,16 +67505,14 @@ declare module '@vue/runtime-core' {
|
|
|
67494
67505
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
67495
67506
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
67496
67507
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
67497
|
-
|
|
67498
|
-
|
|
67508
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
67509
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
67499
67510
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
67500
67511
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
67501
67512
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
67502
67513
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
67503
67514
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
67504
67515
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
67505
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
67506
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
67507
67516
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
67508
67517
|
}
|
|
67509
67518
|
}
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.3-dev.2024-
|
|
2
|
+
* Vuetify v3.5.3-dev.2024-03-06
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -4449,7 +4449,8 @@ function createIcons(options) {
|
|
|
4449
4449
|
...aliases,
|
|
4450
4450
|
/* eslint-disable max-len */
|
|
4451
4451
|
vuetify: ['M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z', ['M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z', 0.6]],
|
|
4452
|
-
'vuetify-outline': 'svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z'
|
|
4452
|
+
'vuetify-outline': 'svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z',
|
|
4453
|
+
'vuetify-play': ['m6.376 13.184-4.11-7.192C1.505 4.66 2.467 3 4.003 3h8.532l-.953 1.576-.006.01-.396.677c-.429.732-.214 1.507.194 2.015.404.503 1.092.878 1.869.806a3.72 3.72 0 0 1 1.005.022c.276.053.434.143.523.237.138.146.38.635-.25 2.09-.893 1.63-1.553 1.722-1.847 1.677-.213-.033-.468-.158-.756-.406a4.95 4.95 0 0 1-.8-.927c-.39-.564-1.04-.84-1.66-.846-.625-.006-1.316.27-1.693.921l-.478.826-.911 1.506Z', ['M9.093 11.552c.046-.079.144-.15.32-.148a.53.53 0 0 1 .43.207c.285.414.636.847 1.046 1.2.405.35.914.662 1.516.754 1.334.205 2.502-.698 3.48-2.495l.014-.028.013-.03c.687-1.574.774-2.852-.005-3.675-.37-.391-.861-.586-1.333-.676a5.243 5.243 0 0 0-1.447-.044c-.173.016-.393-.073-.54-.257-.145-.18-.127-.316-.082-.392l.393-.672L14.287 3h5.71c1.536 0 2.499 1.659 1.737 2.992l-7.997 13.996c-.768 1.344-2.706 1.344-3.473 0l-3.037-5.314 1.377-2.278.004-.006.004-.007.481-.831Z', 0.6]]
|
|
4453
4454
|
/* eslint-enable max-len */
|
|
4454
4455
|
}
|
|
4455
4456
|
}, options);
|
|
@@ -17254,6 +17255,9 @@ function getMonth(date) {
|
|
|
17254
17255
|
function getNextMonth(date) {
|
|
17255
17256
|
return new Date(date.getFullYear(), date.getMonth() + 1, 1);
|
|
17256
17257
|
}
|
|
17258
|
+
function getPreviousMonth(date) {
|
|
17259
|
+
return new Date(date.getFullYear(), date.getMonth() - 1, 1);
|
|
17260
|
+
}
|
|
17257
17261
|
function getHours(date) {
|
|
17258
17262
|
return date.getHours();
|
|
17259
17263
|
}
|
|
@@ -17276,6 +17280,9 @@ function isValid(date) {
|
|
|
17276
17280
|
function isAfter(date, comparing) {
|
|
17277
17281
|
return date.getTime() > comparing.getTime();
|
|
17278
17282
|
}
|
|
17283
|
+
function isAfterDay(date, comparing) {
|
|
17284
|
+
return isAfter(startOfDay(date), startOfDay(comparing));
|
|
17285
|
+
}
|
|
17279
17286
|
function isBefore(date, comparing) {
|
|
17280
17287
|
return date.getTime() < comparing.getTime();
|
|
17281
17288
|
}
|
|
@@ -17288,6 +17295,9 @@ function isSameDay(date, comparing) {
|
|
|
17288
17295
|
function isSameMonth(date, comparing) {
|
|
17289
17296
|
return date.getMonth() === comparing.getMonth() && date.getFullYear() === comparing.getFullYear();
|
|
17290
17297
|
}
|
|
17298
|
+
function isSameYear(date, comparing) {
|
|
17299
|
+
return date.getFullYear() === comparing.getFullYear();
|
|
17300
|
+
}
|
|
17291
17301
|
function getDiff(date, comparing, unit) {
|
|
17292
17302
|
const d = new Date(date);
|
|
17293
17303
|
const c = new Date(comparing);
|
|
@@ -17384,6 +17394,9 @@ class VuetifyDateAdapter {
|
|
|
17384
17394
|
isAfter(date, comparing) {
|
|
17385
17395
|
return isAfter(date, comparing);
|
|
17386
17396
|
}
|
|
17397
|
+
isAfterDay(date, comparing) {
|
|
17398
|
+
return isAfterDay(date, comparing);
|
|
17399
|
+
}
|
|
17387
17400
|
isBefore(date, comparing) {
|
|
17388
17401
|
return !isAfter(date, comparing) && !isEqual(date, comparing);
|
|
17389
17402
|
}
|
|
@@ -17393,6 +17406,9 @@ class VuetifyDateAdapter {
|
|
|
17393
17406
|
isSameMonth(date, comparing) {
|
|
17394
17407
|
return isSameMonth(date, comparing);
|
|
17395
17408
|
}
|
|
17409
|
+
isSameYear(date, comparing) {
|
|
17410
|
+
return isSameYear(date, comparing);
|
|
17411
|
+
}
|
|
17396
17412
|
setMinutes(date, count) {
|
|
17397
17413
|
return setMinutes(date, count);
|
|
17398
17414
|
}
|
|
@@ -17420,6 +17436,9 @@ class VuetifyDateAdapter {
|
|
|
17420
17436
|
getNextMonth(date) {
|
|
17421
17437
|
return getNextMonth(date);
|
|
17422
17438
|
}
|
|
17439
|
+
getPreviousMonth(date) {
|
|
17440
|
+
return getPreviousMonth(date);
|
|
17441
|
+
}
|
|
17423
17442
|
getHours(date) {
|
|
17424
17443
|
return getHours(date);
|
|
17425
17444
|
}
|
|
@@ -25661,7 +25680,7 @@ function createVuetify$1() {
|
|
|
25661
25680
|
goTo
|
|
25662
25681
|
};
|
|
25663
25682
|
}
|
|
25664
|
-
const version$1 = "3.5.3-dev.2024-
|
|
25683
|
+
const version$1 = "3.5.3-dev.2024-03-06";
|
|
25665
25684
|
createVuetify$1.version = version$1;
|
|
25666
25685
|
|
|
25667
25686
|
// Vue's inject() can only be used in setup
|
|
@@ -25686,7 +25705,7 @@ const createVuetify = function () {
|
|
|
25686
25705
|
...options
|
|
25687
25706
|
});
|
|
25688
25707
|
};
|
|
25689
|
-
const version = "3.5.3-dev.2024-
|
|
25708
|
+
const version = "3.5.3-dev.2024-03-06";
|
|
25690
25709
|
createVuetify.version = version;
|
|
25691
25710
|
|
|
25692
25711
|
export { components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|