@vuetify/nightly 3.11.4-dev.2025-12-21 → 3.11.4-dev.2025-12-22
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 +25 -3
- package/dist/json/attributes.json +1109 -1109
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +196 -196
- package/dist/json/web-types.json +2247 -2247
- package/dist/vuetify-labs.cjs +40 -15
- package/dist/vuetify-labs.css +4805 -4809
- package/dist/vuetify-labs.d.ts +83 -70
- 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 +35 -11
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3454 -3458
- package/dist/vuetify.d.ts +83 -70
- package/dist/vuetify.esm.js +35 -11
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +35 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +17 -17
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRows.js +1 -1
- package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.js +5 -2
- package/lib/components/VDataTable/VDataTableVirtual.js.map +1 -1
- package/lib/components/VDataTable/types.d.ts +1 -0
- package/lib/components/VDataTable/types.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerYears.js +7 -3
- package/lib/components/VDatePicker/VDatePickerYears.js.map +1 -1
- package/lib/components/VGrid/VContainer.css +34 -0
- package/lib/components/VGrid/VContainer.js +1 -1
- package/lib/components/VGrid/VContainer.js.map +1 -1
- package/lib/components/VGrid/VContainer.sass +15 -0
- package/lib/components/VGrid/VGrid.css +0 -39
- package/lib/components/VGrid/VGrid.sass +0 -15
- package/lib/components/VGrid/VSpacer.css +3 -0
- package/lib/components/VGrid/VSpacer.js +1 -1
- package/lib/components/VGrid/VSpacer.js.map +1 -1
- package/lib/components/VGrid/VSpacer.sass +5 -0
- package/lib/components/VList/VListItem.d.ts +3 -0
- package/lib/components/VNumberInput/VNumberInput.js +1 -1
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewChildren.js +2 -2
- package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewItem.d.ts +9 -0
- package/lib/composables/nested/nested.d.ts +3 -0
- package/lib/composables/nested/nested.js +17 -0
- package/lib/composables/nested/nested.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +71 -70
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.js +5 -4
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/styles/settings/_variables.scss +11 -0
- package/lib/styles/utilities/_display.sass +2 -1
- package/lib/styles/utilities/_elevation.scss +2 -1
- package/lib/styles/utilities/_pointer-events.sass +2 -1
- package/lib/styles/utilities/_screenreaders.sass +2 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -998,6 +998,7 @@ type InternalDataTableHeader = Omit<DataTableHeader, 'key' | 'value' | 'children
|
|
|
998
998
|
interface DataTableItem<T = any> extends Omit<InternalItem<T>, 'type'>, GroupableItem<T>, SelectableItem {
|
|
999
999
|
key: any;
|
|
1000
1000
|
index: number;
|
|
1001
|
+
virtualIndex?: number;
|
|
1001
1002
|
columns: {
|
|
1002
1003
|
[key: string]: any;
|
|
1003
1004
|
};
|
|
@@ -7379,6 +7380,7 @@ declare const VListItem: {
|
|
|
7379
7380
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
7380
7381
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
7381
7382
|
unregister: (id: unknown) => void;
|
|
7383
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
7382
7384
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
7383
7385
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
7384
7386
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -7533,6 +7535,7 @@ declare const VListItem: {
|
|
|
7533
7535
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
7534
7536
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
7535
7537
|
unregister: (id: unknown) => void;
|
|
7538
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
7536
7539
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
7537
7540
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
7538
7541
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -7666,6 +7669,7 @@ declare const VListItem: {
|
|
|
7666
7669
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
7667
7670
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
7668
7671
|
unregister: (id: unknown) => void;
|
|
7672
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
7669
7673
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
7670
7674
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
7671
7675
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -110479,6 +110483,7 @@ declare const VTreeviewItem: {
|
|
|
110479
110483
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
110480
110484
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
110481
110485
|
unregister: (id: unknown) => void;
|
|
110486
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
110482
110487
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110483
110488
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110484
110489
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -110666,6 +110671,7 @@ declare const VTreeviewItem: {
|
|
|
110666
110671
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
110667
110672
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
110668
110673
|
unregister: (id: unknown) => void;
|
|
110674
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
110669
110675
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110670
110676
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110671
110677
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -110703,6 +110709,7 @@ declare const VTreeviewItem: {
|
|
|
110703
110709
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
110704
110710
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
110705
110711
|
unregister: (id: unknown) => void;
|
|
110712
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
110706
110713
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110707
110714
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
110708
110715
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -111089,6 +111096,7 @@ declare const VTreeviewItem: {
|
|
|
111089
111096
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
111090
111097
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
111091
111098
|
unregister: (id: unknown) => void;
|
|
111099
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
111092
111100
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111093
111101
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111094
111102
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -111276,6 +111284,7 @@ declare const VTreeviewItem: {
|
|
|
111276
111284
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
111277
111285
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
111278
111286
|
unregister: (id: unknown) => void;
|
|
111287
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
111279
111288
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111280
111289
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111281
111290
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -111313,6 +111322,7 @@ declare const VTreeviewItem: {
|
|
|
111313
111322
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
111314
111323
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
111315
111324
|
unregister: (id: unknown) => void;
|
|
111325
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
111316
111326
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111317
111327
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111318
111328
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -111669,6 +111679,7 @@ declare const VTreeviewItem: {
|
|
|
111669
111679
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
111670
111680
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
111671
111681
|
unregister: (id: unknown) => void;
|
|
111682
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
111672
111683
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111673
111684
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111674
111685
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -111856,6 +111867,7 @@ declare const VTreeviewItem: {
|
|
|
111856
111867
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
111857
111868
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
111858
111869
|
unregister: (id: unknown) => void;
|
|
111870
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
111859
111871
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111860
111872
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111861
111873
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -111893,6 +111905,7 @@ declare const VTreeviewItem: {
|
|
|
111893
111905
|
itemsRegistration: vue.Ref<ItemsRegistrationType, ItemsRegistrationType>;
|
|
111894
111906
|
register: (id: unknown, parentId: unknown, isDisabled: boolean, isGroup?: boolean | undefined) => void;
|
|
111895
111907
|
unregister: (id: unknown) => void;
|
|
111908
|
+
updateDisabled: (id: unknown, isDisabled: boolean) => void;
|
|
111896
111909
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111897
111910
|
activate: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
111898
111911
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
@@ -146379,81 +146392,82 @@ declare module 'vue' {
|
|
|
146379
146392
|
$children?: VNodeChild
|
|
146380
146393
|
}
|
|
146381
146394
|
export interface GlobalComponents {
|
|
146395
|
+
VAlert: VAlert
|
|
146396
|
+
VAlertTitle: VAlertTitle
|
|
146397
|
+
VApp: VApp
|
|
146382
146398
|
VAppBar: VAppBar
|
|
146383
146399
|
VAppBarNavIcon: VAppBarNavIcon
|
|
146384
146400
|
VAppBarTitle: VAppBarTitle
|
|
146385
|
-
VApp: VApp
|
|
146386
|
-
VAlert: VAlert
|
|
146387
|
-
VAlertTitle: VAlertTitle
|
|
146388
|
-
VBadge: VBadge
|
|
146389
|
-
VAutocomplete: VAutocomplete
|
|
146390
146401
|
VAvatar: VAvatar
|
|
146402
|
+
VAutocomplete: VAutocomplete
|
|
146391
146403
|
VBottomSheet: VBottomSheet
|
|
146392
146404
|
VBanner: VBanner
|
|
146393
146405
|
VBannerActions: VBannerActions
|
|
146394
146406
|
VBannerText: VBannerText
|
|
146395
|
-
VBreadcrumbs: VBreadcrumbs
|
|
146396
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
|
146397
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
146398
146407
|
VBtn: VBtn
|
|
146399
|
-
|
|
146400
|
-
VBottomNavigation: VBottomNavigation
|
|
146408
|
+
VBadge: VBadge
|
|
146401
146409
|
VCard: VCard
|
|
146402
146410
|
VCardActions: VCardActions
|
|
146403
146411
|
VCardItem: VCardItem
|
|
146404
146412
|
VCardSubtitle: VCardSubtitle
|
|
146405
146413
|
VCardText: VCardText
|
|
146406
146414
|
VCardTitle: VCardTitle
|
|
146407
|
-
|
|
146408
|
-
|
|
146415
|
+
VBtnGroup: VBtnGroup
|
|
146416
|
+
VBottomNavigation: VBottomNavigation
|
|
146417
|
+
VBreadcrumbs: VBreadcrumbs
|
|
146418
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
|
146419
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
146409
146420
|
VBtnToggle: VBtnToggle
|
|
146410
|
-
|
|
146411
|
-
|
|
146412
|
-
VCarousel: VCarousel
|
|
146413
|
-
VCarouselItem: VCarouselItem
|
|
146414
|
-
VColorPicker: VColorPicker
|
|
146421
|
+
VChip: VChip
|
|
146422
|
+
VCalendar: VCalendar
|
|
146415
146423
|
VCode: VCode
|
|
146416
146424
|
VChipGroup: VChipGroup
|
|
146417
|
-
|
|
146425
|
+
VCarousel: VCarousel
|
|
146426
|
+
VCarouselItem: VCarouselItem
|
|
146418
146427
|
VCounter: VCounter
|
|
146419
|
-
|
|
146420
|
-
|
|
146421
|
-
|
|
146422
|
-
|
|
146423
|
-
VDataTableRows: VDataTableRows
|
|
146424
|
-
VDataTableRow: VDataTableRow
|
|
146425
|
-
VDataTableVirtual: VDataTableVirtual
|
|
146426
|
-
VDataTableServer: VDataTableServer
|
|
146427
|
-
VDialog: VDialog
|
|
146428
|
+
VCombobox: VCombobox
|
|
146429
|
+
VColorPicker: VColorPicker
|
|
146430
|
+
VCheckbox: VCheckbox
|
|
146431
|
+
VCheckboxBtn: VCheckboxBtn
|
|
146428
146432
|
VDatePicker: VDatePicker
|
|
146429
146433
|
VDatePickerControls: VDatePickerControls
|
|
146430
146434
|
VDatePickerHeader: VDatePickerHeader
|
|
146431
146435
|
VDatePickerMonth: VDatePickerMonth
|
|
146432
146436
|
VDatePickerMonths: VDatePickerMonths
|
|
146433
146437
|
VDatePickerYears: VDatePickerYears
|
|
146434
|
-
VDivider: VDivider
|
|
146435
|
-
VFab: VFab
|
|
146436
146438
|
VExpansionPanels: VExpansionPanels
|
|
146437
146439
|
VExpansionPanel: VExpansionPanel
|
|
146438
146440
|
VExpansionPanelText: VExpansionPanelText
|
|
146439
146441
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
146442
|
+
VDivider: VDivider
|
|
146443
|
+
VDataTable: VDataTable
|
|
146444
|
+
VDataTableHeaders: VDataTableHeaders
|
|
146445
|
+
VDataTableFooter: VDataTableFooter
|
|
146446
|
+
VDataTableRows: VDataTableRows
|
|
146447
|
+
VDataTableRow: VDataTableRow
|
|
146448
|
+
VDataTableVirtual: VDataTableVirtual
|
|
146449
|
+
VDataTableServer: VDataTableServer
|
|
146450
|
+
VDialog: VDialog
|
|
146451
|
+
VFab: VFab
|
|
146452
|
+
VEmptyState: VEmptyState
|
|
146453
|
+
VFileInput: VFileInput
|
|
146454
|
+
VFooter: VFooter
|
|
146440
146455
|
VField: VField
|
|
146441
146456
|
VFieldLabel: VFieldLabel
|
|
146442
|
-
VFooter: VFooter
|
|
146443
|
-
VFileInput: VFileInput
|
|
146444
|
-
VInfiniteScroll: VInfiniteScroll
|
|
146445
146457
|
VHotkey: VHotkey
|
|
146446
|
-
VImg: VImg
|
|
146447
|
-
VKbd: VKbd
|
|
146448
|
-
VInput: VInput
|
|
146449
|
-
VLabel: VLabel
|
|
146450
146458
|
VIcon: VIcon
|
|
146451
146459
|
VComponentIcon: VComponentIcon
|
|
146452
146460
|
VSvgIcon: VSvgIcon
|
|
146453
146461
|
VLigatureIcon: VLigatureIcon
|
|
146454
146462
|
VClassIcon: VClassIcon
|
|
146463
|
+
VImg: VImg
|
|
146464
|
+
VInfiniteScroll: VInfiniteScroll
|
|
146465
|
+
VLabel: VLabel
|
|
146455
146466
|
VItemGroup: VItemGroup
|
|
146456
146467
|
VItem: VItem
|
|
146468
|
+
VInput: VInput
|
|
146469
|
+
VKbd: VKbd
|
|
146470
|
+
VMain: VMain
|
|
146457
146471
|
VList: VList
|
|
146458
146472
|
VListGroup: VListGroup
|
|
146459
146473
|
VListImg: VListImg
|
|
@@ -146463,80 +146477,79 @@ declare module 'vue' {
|
|
|
146463
146477
|
VListItemSubtitle: VListItemSubtitle
|
|
146464
146478
|
VListItemTitle: VListItemTitle
|
|
146465
146479
|
VListSubheader: VListSubheader
|
|
146466
|
-
VNavigationDrawer: VNavigationDrawer
|
|
146467
|
-
VOtpInput: VOtpInput
|
|
146468
146480
|
VNumberInput: VNumberInput
|
|
146469
|
-
VMain: VMain
|
|
146470
146481
|
VMessages: VMessages
|
|
146471
146482
|
VMenu: VMenu
|
|
146472
|
-
|
|
146473
|
-
VProgressCircular: VProgressCircular
|
|
146483
|
+
VOtpInput: VOtpInput
|
|
146474
146484
|
VPagination: VPagination
|
|
146475
146485
|
VRadioGroup: VRadioGroup
|
|
146486
|
+
VProgressCircular: VProgressCircular
|
|
146487
|
+
VOverlay: VOverlay
|
|
146488
|
+
VNavigationDrawer: VNavigationDrawer
|
|
146489
|
+
VSelectionControlGroup: VSelectionControlGroup
|
|
146490
|
+
VSelect: VSelect
|
|
146476
146491
|
VProgressLinear: VProgressLinear
|
|
146477
146492
|
VSelectionControl: VSelectionControl
|
|
146478
146493
|
VRating: VRating
|
|
146479
|
-
|
|
146480
|
-
VSlider: VSlider
|
|
146481
|
-
VSelectionControlGroup: VSelectionControlGroup
|
|
146482
|
-
VSheet: VSheet
|
|
146494
|
+
VSkeletonLoader: VSkeletonLoader
|
|
146483
146495
|
VSlideGroup: VSlideGroup
|
|
146484
146496
|
VSlideGroupItem: VSlideGroupItem
|
|
146497
|
+
VSheet: VSheet
|
|
146485
146498
|
VSnackbar: VSnackbar
|
|
146499
|
+
VSlider: VSlider
|
|
146486
146500
|
VStepper: VStepper
|
|
146487
146501
|
VStepperActions: VStepperActions
|
|
146488
146502
|
VStepperHeader: VStepperHeader
|
|
146489
146503
|
VStepperItem: VStepperItem
|
|
146490
146504
|
VStepperWindow: VStepperWindow
|
|
146491
146505
|
VStepperWindowItem: VStepperWindowItem
|
|
146492
|
-
VSwitch: VSwitch
|
|
146493
146506
|
VSystemBar: VSystemBar
|
|
146494
|
-
VTable: VTable
|
|
146495
|
-
VTextarea: VTextarea
|
|
146496
|
-
VTimeline: VTimeline
|
|
146497
|
-
VTimelineItem: VTimelineItem
|
|
146498
146507
|
VTab: VTab
|
|
146499
146508
|
VTabs: VTabs
|
|
146500
146509
|
VTabsWindow: VTabsWindow
|
|
146501
146510
|
VTabsWindowItem: VTabsWindowItem
|
|
146502
|
-
|
|
146503
|
-
|
|
146504
|
-
|
|
146505
|
-
VToolbarItems: VToolbarItems
|
|
146511
|
+
VSwitch: VSwitch
|
|
146512
|
+
VTable: VTable
|
|
146513
|
+
VTextarea: VTextarea
|
|
146506
146514
|
VTimePicker: VTimePicker
|
|
146507
146515
|
VTimePickerClock: VTimePickerClock
|
|
146508
146516
|
VTimePickerControls: VTimePickerControls
|
|
146509
|
-
|
|
146517
|
+
VToolbar: VToolbar
|
|
146518
|
+
VToolbarTitle: VToolbarTitle
|
|
146519
|
+
VToolbarItems: VToolbarItems
|
|
146520
|
+
VTextField: VTextField
|
|
146521
|
+
VTimeline: VTimeline
|
|
146522
|
+
VTimelineItem: VTimelineItem
|
|
146523
|
+
VWindow: VWindow
|
|
146524
|
+
VWindowItem: VWindowItem
|
|
146510
146525
|
VTreeview: VTreeview
|
|
146511
146526
|
VTreeviewItem: VTreeviewItem
|
|
146512
146527
|
VTreeviewGroup: VTreeviewGroup
|
|
146513
|
-
|
|
146514
|
-
VWindowItem: VWindowItem
|
|
146515
|
-
VSkeletonLoader: VSkeletonLoader
|
|
146516
|
-
VConfirmEdit: VConfirmEdit
|
|
146528
|
+
VTooltip: VTooltip
|
|
146517
146529
|
VDataIterator: VDataIterator
|
|
146530
|
+
VConfirmEdit: VConfirmEdit
|
|
146518
146531
|
VDefaultsProvider: VDefaultsProvider
|
|
146532
|
+
VHover: VHover
|
|
146519
146533
|
VForm: VForm
|
|
146520
146534
|
VContainer: VContainer
|
|
146521
146535
|
VCol: VCol
|
|
146522
146536
|
VRow: VRow
|
|
146523
146537
|
VSpacer: VSpacer
|
|
146524
|
-
|
|
146538
|
+
VLazy: VLazy
|
|
146525
146539
|
VLayout: VLayout
|
|
146526
146540
|
VLayoutItem: VLayoutItem
|
|
146527
|
-
VLazy: VLazy
|
|
146528
146541
|
VLocaleProvider: VLocaleProvider
|
|
146529
146542
|
VNoSsr: VNoSsr
|
|
146530
146543
|
VParallax: VParallax
|
|
146531
|
-
VRangeSlider: VRangeSlider
|
|
146532
146544
|
VRadio: VRadio
|
|
146545
|
+
VRangeSlider: VRangeSlider
|
|
146533
146546
|
VResponsive: VResponsive
|
|
146534
146547
|
VSnackbarQueue: VSnackbarQueue
|
|
146535
146548
|
VSparkline: VSparkline
|
|
146536
146549
|
VSpeedDial: VSpeedDial
|
|
146537
146550
|
VThemeProvider: VThemeProvider
|
|
146538
|
-
VVirtualScroll: VVirtualScroll
|
|
146539
146551
|
VValidation: VValidation
|
|
146552
|
+
VVirtualScroll: VVirtualScroll
|
|
146540
146553
|
VFabTransition: VFabTransition
|
|
146541
146554
|
VDialogBottomTransition: VDialogBottomTransition
|
|
146542
146555
|
VDialogTopTransition: VDialogTopTransition
|
|
@@ -146553,21 +146566,21 @@ declare module 'vue' {
|
|
|
146553
146566
|
VExpandTransition: VExpandTransition
|
|
146554
146567
|
VExpandXTransition: VExpandXTransition
|
|
146555
146568
|
VDialogTransition: VDialogTransition
|
|
146556
|
-
|
|
146557
|
-
VVideoControls: VVideoControls
|
|
146558
|
-
VVideoVolume: VVideoVolume
|
|
146569
|
+
VColorInput: VColorInput
|
|
146559
146570
|
VStepperVertical: VStepperVertical
|
|
146560
146571
|
VStepperVerticalItem: VStepperVerticalItem
|
|
146561
146572
|
VStepperVerticalActions: VStepperVerticalActions
|
|
146562
|
-
VColorInput: VColorInput
|
|
146563
|
-
VIconBtn: VIconBtn
|
|
146564
|
-
VFileUpload: VFileUpload
|
|
146565
|
-
VFileUploadItem: VFileUploadItem
|
|
146566
146573
|
VPie: VPie
|
|
146567
146574
|
VPieSegment: VPieSegment
|
|
146568
146575
|
VPieTooltip: VPieTooltip
|
|
146576
|
+
VIconBtn: VIconBtn
|
|
146577
|
+
VVideo: VVideo
|
|
146578
|
+
VVideoControls: VVideoControls
|
|
146579
|
+
VVideoVolume: VVideoVolume
|
|
146569
146580
|
VPicker: VPicker
|
|
146570
146581
|
VPickerTitle: VPickerTitle
|
|
146582
|
+
VFileUpload: VFileUpload
|
|
146583
|
+
VFileUploadItem: VFileUploadItem
|
|
146571
146584
|
VDateInput: VDateInput
|
|
146572
146585
|
VMaskInput: VMaskInput
|
|
146573
146586
|
VPullToRefresh: VPullToRefresh
|
package/dist/vuetify-labs.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.11.4-dev.2025-12-
|
|
2
|
+
* Vuetify v3.11.4-dev.2025-12-22
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -9493,6 +9493,7 @@ const emptyNested = {
|
|
|
9493
9493
|
itemsRegistration: ref('render'),
|
|
9494
9494
|
register: () => null,
|
|
9495
9495
|
unregister: () => null,
|
|
9496
|
+
updateDisabled: () => null,
|
|
9496
9497
|
children: ref(new Map()),
|
|
9497
9498
|
parents: ref(new Map()),
|
|
9498
9499
|
disabled: ref(new Set()),
|
|
@@ -9688,6 +9689,19 @@ const useNested = (props, _ref) => {
|
|
|
9688
9689
|
parents.value.delete(id);
|
|
9689
9690
|
itemsUpdatePropagation();
|
|
9690
9691
|
},
|
|
9692
|
+
updateDisabled: (id, isDisabled) => {
|
|
9693
|
+
if (isDisabled) {
|
|
9694
|
+
disabled.value.add(id);
|
|
9695
|
+
} else {
|
|
9696
|
+
disabled.value.delete(id);
|
|
9697
|
+
}
|
|
9698
|
+
// classic selection requires refresh to re-evaluate on/off/indeterminate but
|
|
9699
|
+
// currently it is only run for selection interactions, so it will set new disabled
|
|
9700
|
+
// to "off" and the visual state becomes out of sync
|
|
9701
|
+
// -- selected.value = new Map(selected.value)
|
|
9702
|
+
// it is not clear if the framework should un-select when disabled changed to true
|
|
9703
|
+
// more discussion is needed
|
|
9704
|
+
},
|
|
9691
9705
|
open: (id, value, event) => {
|
|
9692
9706
|
vm.emit('click:open', {
|
|
9693
9707
|
id,
|
|
@@ -9820,6 +9834,9 @@ const useNestedItem = (id, isDisabled, isGroup) => {
|
|
|
9820
9834
|
parent.root.register(val, parent.id.value, toValue(isDisabled), isGroup);
|
|
9821
9835
|
});
|
|
9822
9836
|
});
|
|
9837
|
+
watch(() => toValue(isDisabled), val => {
|
|
9838
|
+
parent.root.updateDisabled(computedId.value, val);
|
|
9839
|
+
});
|
|
9823
9840
|
isGroup && provide(VNestedSymbol, item);
|
|
9824
9841
|
return item;
|
|
9825
9842
|
};
|
|
@@ -25676,7 +25693,7 @@ const VDataTableRows = genericComponent()({
|
|
|
25676
25693
|
return slots['group-summary']?.(slotProps) ?? '';
|
|
25677
25694
|
}
|
|
25678
25695
|
const slotProps = {
|
|
25679
|
-
index,
|
|
25696
|
+
index: item.virtualIndex ?? index,
|
|
25680
25697
|
item: item.raw,
|
|
25681
25698
|
internalItem: item,
|
|
25682
25699
|
columns: columns.value,
|
|
@@ -26151,7 +26168,10 @@ const VDataTableVirtual = genericComponent()({
|
|
|
26151
26168
|
calculateVisibleItems,
|
|
26152
26169
|
scrollToIndex
|
|
26153
26170
|
} = useVirtual(props, flatItems);
|
|
26154
|
-
const displayItems = computed(() => computedItems.value.map(item =>
|
|
26171
|
+
const displayItems = computed(() => computedItems.value.map(item => ({
|
|
26172
|
+
...item.raw,
|
|
26173
|
+
virtualIndex: item.index
|
|
26174
|
+
})));
|
|
26155
26175
|
useOptions({
|
|
26156
26176
|
sortBy,
|
|
26157
26177
|
page: shallowRef(1),
|
|
@@ -26244,7 +26264,7 @@ const VDataTableVirtual = genericComponent()({
|
|
|
26244
26264
|
}) ?? createVNode(VDataTableRow, mergeProps(itemSlotProps.props, {
|
|
26245
26265
|
"ref": itemRef,
|
|
26246
26266
|
"key": itemSlotProps.internalItem.index,
|
|
26247
|
-
"index": itemSlotProps.
|
|
26267
|
+
"index": itemSlotProps.index
|
|
26248
26268
|
}), slots);
|
|
26249
26269
|
}
|
|
26250
26270
|
})
|
|
@@ -27545,6 +27565,7 @@ const VDatePickerYears = genericComponent()({
|
|
|
27545
27565
|
} = _ref;
|
|
27546
27566
|
const adapter = useDate();
|
|
27547
27567
|
const model = useProxiedModel(props, 'modelValue');
|
|
27568
|
+
const hasFocusedItem = shallowRef(false);
|
|
27548
27569
|
const years = computed(() => {
|
|
27549
27570
|
const year = adapter.getYear(adapter.date());
|
|
27550
27571
|
let min = year - 100;
|
|
@@ -27572,7 +27593,6 @@ const VDatePickerYears = genericComponent()({
|
|
|
27572
27593
|
});
|
|
27573
27594
|
const yearRef = templateRef();
|
|
27574
27595
|
function focusSelectedYear() {
|
|
27575
|
-
yearRef.el?.focus();
|
|
27576
27596
|
yearRef.el?.scrollIntoView({
|
|
27577
27597
|
block: 'center'
|
|
27578
27598
|
});
|
|
@@ -27592,7 +27612,11 @@ const VDatePickerYears = genericComponent()({
|
|
|
27592
27612
|
height: convertToUnit(props.height)
|
|
27593
27613
|
}
|
|
27594
27614
|
}, [createElementVNode("div", {
|
|
27595
|
-
"class": "v-date-picker-years__content"
|
|
27615
|
+
"class": "v-date-picker-years__content",
|
|
27616
|
+
"onFocus": () => yearRef.el?.focus(),
|
|
27617
|
+
"onFocusin": () => hasFocusedItem.value = true,
|
|
27618
|
+
"onFocusout": () => hasFocusedItem.value = false,
|
|
27619
|
+
"tabindex": hasFocusedItem.value ? -1 : 0
|
|
27596
27620
|
}, [years.value.map((year, i) => {
|
|
27597
27621
|
const btnProps = {
|
|
27598
27622
|
ref: model.value === year.value ? yearRef : undefined,
|
|
@@ -30967,7 +30991,7 @@ const VNumberInput = genericComponent()({
|
|
|
30967
30991
|
"focused": isFocused.value,
|
|
30968
30992
|
"onUpdate:focused": $event => isFocused.value = $event,
|
|
30969
30993
|
"validationValue": model.value,
|
|
30970
|
-
"error": isOutOfRange.value || undefined,
|
|
30994
|
+
"error": props.error || isOutOfRange.value || undefined,
|
|
30971
30995
|
"onBeforeinput": onBeforeinput,
|
|
30972
30996
|
"onFocus": onFocus,
|
|
30973
30997
|
"onBlur": onBlur,
|
|
@@ -35762,7 +35786,7 @@ const VTreeviewChildren = genericComponent()({
|
|
|
35762
35786
|
default: () => [createVNode(VCheckboxBtn, {
|
|
35763
35787
|
"key": item.value,
|
|
35764
35788
|
"modelValue": slotProps.isSelected,
|
|
35765
|
-
"disabled": props.disabled,
|
|
35789
|
+
"disabled": props.disabled || itemProps.disabled,
|
|
35766
35790
|
"loading": loading,
|
|
35767
35791
|
"color": props.selectedColor,
|
|
35768
35792
|
"density": props.density,
|
|
@@ -35825,7 +35849,7 @@ const VTreeviewChildren = genericComponent()({
|
|
|
35825
35849
|
hideActions: props.hideActions,
|
|
35826
35850
|
indentLines: indentLines.node,
|
|
35827
35851
|
onToggleExpand: [() => checkChildren(item), activatorProps.onClick],
|
|
35828
|
-
onClick: isClickOnOpen.value ? [() => checkChildren(item), activatorProps.onClick] : () => selectItem(activatorItems.value[index]?.select, !activatorItems.value[index]?.isSelected)
|
|
35852
|
+
onClick: props.disabled || itemProps.disabled ? undefined : isClickOnOpen.value ? [() => checkChildren(item), activatorProps.onClick] : () => selectItem(activatorItems.value[index]?.select, !activatorItems.value[index]?.isSelected)
|
|
35829
35853
|
};
|
|
35830
35854
|
return renderSlot(slots.header, {
|
|
35831
35855
|
props: listItemProps,
|
|
@@ -36486,6 +36510,7 @@ const VDateInput = genericComponent()({
|
|
|
36486
36510
|
}
|
|
36487
36511
|
}
|
|
36488
36512
|
useRender(() => {
|
|
36513
|
+
const hasPrepend = !!(props.prependIcon || slots.prepend);
|
|
36489
36514
|
const confirmEditProps = VConfirmEdit.filterProps(props);
|
|
36490
36515
|
const datePickerProps = {
|
|
36491
36516
|
...VDatePicker.filterProps(omit(props, ['active', 'bgColor', 'color', 'location', 'rounded', 'maxWidth', 'minWidth', 'width'])),
|
|
@@ -36563,12 +36588,12 @@ const VDateInput = genericComponent()({
|
|
|
36563
36588
|
}
|
|
36564
36589
|
})]
|
|
36565
36590
|
}), slots.default?.()]),
|
|
36566
|
-
prepend: prependSlotProps => slots.prepend ? slots.prepend(prependSlotProps) : props.prependIcon && createVNode(InputIcon, {
|
|
36591
|
+
prepend: hasPrepend ? prependSlotProps => slots.prepend ? slots.prepend(prependSlotProps) : props.prependIcon && createVNode(InputIcon, {
|
|
36567
36592
|
"key": "prepend-icon",
|
|
36568
36593
|
"name": "prepend",
|
|
36569
|
-
"tabindex": -1,
|
|
36570
|
-
"onClick": onClick
|
|
36571
|
-
}, null)
|
|
36594
|
+
"tabindex": props['onClick:prepend'] ? undefined : -1,
|
|
36595
|
+
"onClick": isInteractive.value ? onClick : undefined
|
|
36596
|
+
}, null) : undefined
|
|
36572
36597
|
});
|
|
36573
36598
|
});
|
|
36574
36599
|
return forwardRefs({}, vTextFieldRef);
|
|
@@ -39418,7 +39443,7 @@ function createVuetify$1() {
|
|
|
39418
39443
|
};
|
|
39419
39444
|
});
|
|
39420
39445
|
}
|
|
39421
|
-
const version$1 = "3.11.4-dev.2025-12-
|
|
39446
|
+
const version$1 = "3.11.4-dev.2025-12-22";
|
|
39422
39447
|
createVuetify$1.version = version$1;
|
|
39423
39448
|
|
|
39424
39449
|
// Vue's inject() can only be used in setup
|
|
@@ -39721,7 +39746,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
39721
39746
|
|
|
39722
39747
|
/* eslint-disable local-rules/sort-imports */
|
|
39723
39748
|
|
|
39724
|
-
const version = "3.11.4-dev.2025-12-
|
|
39749
|
+
const version = "3.11.4-dev.2025-12-22";
|
|
39725
39750
|
|
|
39726
39751
|
/* eslint-disable local-rules/sort-imports */
|
|
39727
39752
|
|