@vuetify/nightly 3.9.2-master.2025-07-24 → 3.9.2-master.2025-07-25

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.
Files changed (75) hide show
  1. package/CHANGELOG.md +7 -3
  2. package/dist/_component-variables-labs.sass +1 -0
  3. package/dist/json/attributes.json +4100 -3952
  4. package/dist/json/importMap-labs.json +30 -18
  5. package/dist/json/importMap.json +162 -162
  6. package/dist/json/tags.json +52 -0
  7. package/dist/json/web-types.json +7540 -7045
  8. package/dist/vuetify-labs.cjs +781 -118
  9. package/dist/vuetify-labs.css +4416 -4309
  10. package/dist/vuetify-labs.d.ts +1078 -63
  11. package/dist/vuetify-labs.esm.js +782 -119
  12. package/dist/vuetify-labs.esm.js.map +1 -1
  13. package/dist/vuetify-labs.js +781 -118
  14. package/dist/vuetify-labs.min.css +2 -2
  15. package/dist/vuetify.cjs +40 -28
  16. package/dist/vuetify.cjs.map +1 -1
  17. package/dist/vuetify.css +5492 -5492
  18. package/dist/vuetify.d.ts +67 -62
  19. package/dist/vuetify.esm.js +40 -28
  20. package/dist/vuetify.esm.js.map +1 -1
  21. package/dist/vuetify.js +40 -28
  22. package/dist/vuetify.js.map +1 -1
  23. package/dist/vuetify.min.css +2 -2
  24. package/dist/vuetify.min.js +936 -938
  25. package/dist/vuetify.min.js.map +1 -1
  26. package/lib/components/VOverlay/locationStrategies.js +16 -10
  27. package/lib/components/VOverlay/locationStrategies.js.map +1 -1
  28. package/lib/components/index.js +1 -1
  29. package/lib/components/index.js.map +1 -1
  30. package/lib/composables/goto.d.ts +3 -2
  31. package/lib/composables/goto.js +2 -16
  32. package/lib/composables/goto.js.map +1 -1
  33. package/lib/composables/reveal.d.ts +36 -0
  34. package/lib/composables/reveal.js +30 -0
  35. package/lib/composables/reveal.js.map +1 -0
  36. package/lib/entry-bundler.js +1 -1
  37. package/lib/framework.d.ts +151 -146
  38. package/lib/framework.js +1 -1
  39. package/lib/labs/VPie/VPie.css +105 -0
  40. package/lib/labs/VPie/VPie.d.ts +891 -0
  41. package/lib/labs/VPie/VPie.js +291 -0
  42. package/lib/labs/VPie/VPie.js.map +1 -0
  43. package/lib/labs/VPie/VPie.sass +109 -0
  44. package/lib/labs/VPie/VPieSegment.d.ts +310 -0
  45. package/lib/labs/VPie/VPieSegment.js +103 -0
  46. package/lib/labs/VPie/VPieSegment.js.map +1 -0
  47. package/lib/labs/VPie/VPieTooltip.d.ts +279 -0
  48. package/lib/labs/VPie/VPieTooltip.js +84 -0
  49. package/lib/labs/VPie/VPieTooltip.js.map +1 -0
  50. package/lib/labs/VPie/_variables.scss +11 -0
  51. package/lib/labs/VPie/index.d.ts +3 -0
  52. package/lib/labs/VPie/index.js +4 -0
  53. package/lib/labs/VPie/index.js.map +1 -0
  54. package/lib/labs/VPie/types.d.ts +16 -0
  55. package/lib/labs/VPie/types.js +2 -0
  56. package/lib/labs/VPie/types.js.map +1 -0
  57. package/lib/labs/VPie/utils.d.ts +23 -0
  58. package/lib/labs/VPie/utils.js +49 -0
  59. package/lib/labs/VPie/utils.js.map +1 -0
  60. package/lib/labs/VVideo/VVideo.css +3 -0
  61. package/lib/labs/VVideo/VVideo.sass +3 -0
  62. package/lib/labs/VVideo/VVideoControls.js +9 -5
  63. package/lib/labs/VVideo/VVideoControls.js.map +1 -1
  64. package/lib/labs/VVideo/VVideoVolume.js +7 -3
  65. package/lib/labs/VVideo/VVideoVolume.js.map +1 -1
  66. package/lib/labs/components.d.ts +1 -0
  67. package/lib/labs/components.js +1 -0
  68. package/lib/labs/components.js.map +1 -1
  69. package/lib/util/easing.d.ts +22 -0
  70. package/lib/util/easing.js +53 -0
  71. package/lib/util/easing.js.map +1 -1
  72. package/lib/util/svg-arc-corners.d.ts +4 -0
  73. package/lib/util/svg-arc-corners.js +73 -0
  74. package/lib/util/svg-arc-corners.js.map +1 -0
  75. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -251,6 +251,8 @@ type JSXComponent<Props = any> = {
251
251
 
252
252
  type ClassValue = any;
253
253
 
254
+ type EasingFunction = (n: number) => number;
255
+
254
256
  declare function deepEqual(a: any, b: any): boolean;
255
257
  type SelectItemKey<T = Record<string, any>> = boolean | null | undefined | string | readonly (string | number)[] | ((item: T, fallback?: any) => any);
256
258
  type MaybeRef<T> = T | Ref<T>;
@@ -771,8 +773,8 @@ interface InternalGoToOptions {
771
773
  duration: number;
772
774
  layout: boolean;
773
775
  offset: number;
774
- easing: string | ((t: number) => number);
775
- patterns: Record<string, (t: number) => number>;
776
+ easing: string | EasingFunction;
777
+ patterns: Record<string, EasingFunction>;
776
778
  }
777
779
  type GoToOptions = Partial<InternalGoToOptions>;
778
780
  declare function useGoTo(_options?: GoToOptions): {
@@ -95377,43 +95379,37 @@ declare module 'vue' {
95377
95379
  VAppBar: VAppBar
95378
95380
  VAppBarNavIcon: VAppBarNavIcon
95379
95381
  VAppBarTitle: VAppBarTitle
95382
+ VAvatar: VAvatar
95380
95383
  VAutocomplete: VAutocomplete
95381
- VBadge: VBadge
95382
95384
  VAlert: VAlert
95383
95385
  VAlertTitle: VAlertTitle
95386
+ VBadge: VBadge
95384
95387
  VBanner: VBanner
95385
95388
  VBannerActions: VBannerActions
95386
95389
  VBannerText: VBannerText
95387
- VAvatar: VAvatar
95390
+ VBottomSheet: VBottomSheet
95388
95391
  VBottomNavigation: VBottomNavigation
95389
95392
  VBreadcrumbs: VBreadcrumbs
95390
95393
  VBreadcrumbsItem: VBreadcrumbsItem
95391
95394
  VBreadcrumbsDivider: VBreadcrumbsDivider
95395
+ VBtn: VBtn
95396
+ VBtnGroup: VBtnGroup
95397
+ VBtnToggle: VBtnToggle
95392
95398
  VCard: VCard
95393
95399
  VCardActions: VCardActions
95394
95400
  VCardItem: VCardItem
95395
95401
  VCardSubtitle: VCardSubtitle
95396
95402
  VCardText: VCardText
95397
95403
  VCardTitle: VCardTitle
95398
- VBottomSheet: VBottomSheet
95399
- VBtnGroup: VBtnGroup
95404
+ VCheckbox: VCheckbox
95405
+ VCheckboxBtn: VCheckboxBtn
95400
95406
  VCarousel: VCarousel
95401
95407
  VCarouselItem: VCarouselItem
95402
- VBtn: VBtn
95403
- VBtnToggle: VBtnToggle
95404
- VColorPicker: VColorPicker
95405
95408
  VChip: VChip
95409
+ VColorPicker: VColorPicker
95410
+ VCode: VCode
95406
95411
  VChipGroup: VChipGroup
95407
95412
  VCounter: VCounter
95408
- VCombobox: VCombobox
95409
- VDialog: VDialog
95410
- VDatePicker: VDatePicker
95411
- VDatePickerControls: VDatePickerControls
95412
- VDatePickerHeader: VDatePickerHeader
95413
- VDatePickerMonth: VDatePickerMonth
95414
- VDatePickerMonths: VDatePickerMonths
95415
- VDatePickerYears: VDatePickerYears
95416
- VCode: VCode
95417
95413
  VDataTable: VDataTable
95418
95414
  VDataTableHeaders: VDataTableHeaders
95419
95415
  VDataTableFooter: VDataTableFooter
@@ -95421,10 +95417,14 @@ declare module 'vue' {
95421
95417
  VDataTableRow: VDataTableRow
95422
95418
  VDataTableVirtual: VDataTableVirtual
95423
95419
  VDataTableServer: VDataTableServer
95424
- VDivider: VDivider
95425
- VEmptyState: VEmptyState
95426
- VCheckbox: VCheckbox
95427
- VCheckboxBtn: VCheckboxBtn
95420
+ VCombobox: VCombobox
95421
+ VDatePicker: VDatePicker
95422
+ VDatePickerControls: VDatePickerControls
95423
+ VDatePickerHeader: VDatePickerHeader
95424
+ VDatePickerMonth: VDatePickerMonth
95425
+ VDatePickerMonths: VDatePickerMonths
95426
+ VDatePickerYears: VDatePickerYears
95427
+ VDialog: VDialog
95428
95428
  VExpansionPanels: VExpansionPanels
95429
95429
  VExpansionPanel: VExpansionPanel
95430
95430
  VExpansionPanelText: VExpansionPanelText
@@ -95432,20 +95432,22 @@ declare module 'vue' {
95432
95432
  VField: VField
95433
95433
  VFieldLabel: VFieldLabel
95434
95434
  VFab: VFab
95435
+ VDivider: VDivider
95435
95436
  VFileInput: VFileInput
95436
95437
  VFooter: VFooter
95438
+ VInfiniteScroll: VInfiniteScroll
95439
+ VEmptyState: VEmptyState
95440
+ VImg: VImg
95437
95441
  VIcon: VIcon
95438
95442
  VComponentIcon: VComponentIcon
95439
95443
  VSvgIcon: VSvgIcon
95440
95444
  VLigatureIcon: VLigatureIcon
95441
95445
  VClassIcon: VClassIcon
95442
- VImg: VImg
95443
95446
  VInput: VInput
95444
- VInfiniteScroll: VInfiniteScroll
95447
+ VLabel: VLabel
95445
95448
  VKbd: VKbd
95446
95449
  VItemGroup: VItemGroup
95447
95450
  VItem: VItem
95448
- VLabel: VLabel
95449
95451
  VList: VList
95450
95452
  VListGroup: VListGroup
95451
95453
  VListImg: VListImg
@@ -95455,78 +95457,76 @@ declare module 'vue' {
95455
95457
  VListItemSubtitle: VListItemSubtitle
95456
95458
  VListItemTitle: VListItemTitle
95457
95459
  VListSubheader: VListSubheader
95458
- VMenu: VMenu
95459
95460
  VMain: VMain
95461
+ VMenu: VMenu
95460
95462
  VMessages: VMessages
95461
- VNavigationDrawer: VNavigationDrawer
95462
- VOtpInput: VOtpInput
95463
- VNumberInput: VNumberInput
95464
95463
  VOverlay: VOverlay
95464
+ VOtpInput: VOtpInput
95465
+ VPagination: VPagination
95465
95466
  VProgressCircular: VProgressCircular
95466
- VProgressLinear: VProgressLinear
95467
+ VNumberInput: VNumberInput
95468
+ VNavigationDrawer: VNavigationDrawer
95469
+ VRadioGroup: VRadioGroup
95467
95470
  VRating: VRating
95468
95471
  VSelect: VSelect
95469
- VSelectionControlGroup: VSelectionControlGroup
95470
- VSheet: VSheet
95471
95472
  VSelectionControl: VSelectionControl
95473
+ VSheet: VSheet
95474
+ VSelectionControlGroup: VSelectionControlGroup
95472
95475
  VSkeletonLoader: VSkeletonLoader
95473
- VRadioGroup: VRadioGroup
95474
- VPagination: VPagination
95476
+ VSnackbar: VSnackbar
95475
95477
  VSlider: VSlider
95476
- VSlideGroup: VSlideGroup
95477
- VSlideGroupItem: VSlideGroupItem
95478
95478
  VStepper: VStepper
95479
95479
  VStepperActions: VStepperActions
95480
95480
  VStepperHeader: VStepperHeader
95481
95481
  VStepperItem: VStepperItem
95482
95482
  VStepperWindow: VStepperWindow
95483
95483
  VStepperWindowItem: VStepperWindowItem
95484
- VSystemBar: VSystemBar
95485
- VSwitch: VSwitch
95486
- VSnackbar: VSnackbar
95487
- VTable: VTable
95488
- VTimeline: VTimeline
95489
- VTimelineItem: VTimelineItem
95490
- VTextarea: VTextarea
95484
+ VSlideGroup: VSlideGroup
95485
+ VSlideGroupItem: VSlideGroupItem
95491
95486
  VTab: VTab
95492
95487
  VTabs: VTabs
95493
95488
  VTabsWindow: VTabsWindow
95494
95489
  VTabsWindowItem: VTabsWindowItem
95490
+ VSwitch: VSwitch
95491
+ VTextarea: VTextarea
95492
+ VTimeline: VTimeline
95493
+ VTimelineItem: VTimelineItem
95494
+ VTextField: VTextField
95495
+ VSystemBar: VSystemBar
95496
+ VTimePicker: VTimePicker
95497
+ VTimePickerClock: VTimePickerClock
95498
+ VTimePickerControls: VTimePickerControls
95495
95499
  VToolbar: VToolbar
95496
95500
  VToolbarTitle: VToolbarTitle
95497
95501
  VToolbarItems: VToolbarItems
95498
95502
  VTooltip: VTooltip
95499
- VTimePicker: VTimePicker
95500
- VTimePickerClock: VTimePickerClock
95501
- VTimePickerControls: VTimePickerControls
95502
95503
  VTreeview: VTreeview
95503
95504
  VTreeviewItem: VTreeviewItem
95504
95505
  VTreeviewGroup: VTreeviewGroup
95506
+ VTable: VTable
95505
95507
  VWindow: VWindow
95506
95508
  VWindowItem: VWindowItem
95507
- VDataIterator: VDataIterator
95509
+ VConfirmEdit: VConfirmEdit
95508
95510
  VDefaultsProvider: VDefaultsProvider
95509
- VForm: VForm
95510
95511
  VContainer: VContainer
95511
95512
  VCol: VCol
95512
95513
  VRow: VRow
95513
95514
  VSpacer: VSpacer
95514
95515
  VHover: VHover
95515
- VLazy: VLazy
95516
95516
  VLayout: VLayout
95517
95517
  VLayoutItem: VLayoutItem
95518
- VNoSsr: VNoSsr
95518
+ VLazy: VLazy
95519
95519
  VLocaleProvider: VLocaleProvider
95520
+ VNoSsr: VNoSsr
95520
95521
  VParallax: VParallax
95521
- VRadio: VRadio
95522
95522
  VRangeSlider: VRangeSlider
95523
+ VRadio: VRadio
95524
+ VResponsive: VResponsive
95523
95525
  VSnackbarQueue: VSnackbarQueue
95524
95526
  VSparkline: VSparkline
95525
95527
  VSpeedDial: VSpeedDial
95526
- VThemeProvider: VThemeProvider
95527
- VResponsive: VResponsive
95528
95528
  VVirtualScroll: VVirtualScroll
95529
- VValidation: VValidation
95529
+ VThemeProvider: VThemeProvider
95530
95530
  VFabTransition: VFabTransition
95531
95531
  VDialogBottomTransition: VDialogBottomTransition
95532
95532
  VDialogTopTransition: VDialogTopTransition
@@ -95543,30 +95543,35 @@ declare module 'vue' {
95543
95543
  VExpandTransition: VExpandTransition
95544
95544
  VExpandXTransition: VExpandXTransition
95545
95545
  VDialogTransition: VDialogTransition
95546
- VConfirmEdit: VConfirmEdit
95547
- VTextField: VTextField
95548
- VFileUpload: VFileUpload
95549
- VFileUploadItem: VFileUploadItem
95546
+ VValidation: VValidation
95547
+ VProgressLinear: VProgressLinear
95548
+ VDataIterator: VDataIterator
95549
+ VForm: VForm
95550
95550
  VCalendar: VCalendar
95551
95551
  VCalendarDay: VCalendarDay
95552
95552
  VCalendarHeader: VCalendarHeader
95553
95553
  VCalendarInterval: VCalendarInterval
95554
95554
  VCalendarIntervalEvent: VCalendarIntervalEvent
95555
95555
  VCalendarMonthDay: VCalendarMonthDay
95556
- VColorInput: VColorInput
95557
- VIconBtn: VIconBtn
95556
+ VPie: VPie
95557
+ VPieSegment: VPieSegment
95558
+ VPieTooltip: VPieTooltip
95558
95559
  VPicker: VPicker
95559
95560
  VPickerTitle: VPickerTitle
95560
- VHotkey: VHotkey
95561
95561
  VStepperVertical: VStepperVertical
95562
95562
  VStepperVerticalItem: VStepperVerticalItem
95563
95563
  VStepperVerticalActions: VStepperVerticalActions
95564
+ VHotkey: VHotkey
95565
+ VFileUpload: VFileUpload
95566
+ VFileUploadItem: VFileUploadItem
95564
95567
  VVideo: VVideo
95565
95568
  VVideoControls: VVideoControls
95566
95569
  VVideoVolume: VVideoVolume
95567
95570
  VDateInput: VDateInput
95568
- VMaskInput: VMaskInput
95569
95571
  VPullToRefresh: VPullToRefresh
95572
+ VMaskInput: VMaskInput
95573
+ VColorInput: VColorInput
95574
+ VIconBtn: VIconBtn
95570
95575
  }
95571
95576
  export interface GlobalDirectives {
95572
95577
  vClickOutside: typeof import('vuetify/directives')['ClickOutside']
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.2-master.2025-07-24
2
+ * Vuetify v3.9.2-master.2025-07-25
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -1556,10 +1556,30 @@ function attachedRoot(node) {
1556
1556
  return root;
1557
1557
  }
1558
1558
 
1559
+ // Utilities
1560
+
1561
+ // Types
1562
+
1559
1563
  const standardEasing = 'cubic-bezier(0.4, 0, 0.2, 1)';
1560
1564
  const deceleratedEasing = 'cubic-bezier(0.0, 0, 0.2, 1)'; // Entering
1561
1565
  const acceleratedEasing = 'cubic-bezier(0.4, 0, 1, 1)'; // Leaving
1562
1566
 
1567
+ const easingPatterns = {
1568
+ linear: t => t,
1569
+ easeInQuad: t => t ** 2,
1570
+ easeOutQuad: t => t * (2 - t),
1571
+ easeInOutQuad: t => t < 0.5 ? 2 * t ** 2 : -1 + (4 - 2 * t) * t,
1572
+ easeInCubic: t => t ** 3,
1573
+ easeOutCubic: t => --t ** 3 + 1,
1574
+ easeInOutCubic: t => t < 0.5 ? 4 * t ** 3 : (t - 1) * (2 * t - 2) * (2 * t - 2) + 1,
1575
+ easeInQuart: t => t ** 4,
1576
+ easeOutQuart: t => 1 - --t ** 4,
1577
+ easeInOutQuart: t => t < 0.5 ? 8 * t ** 4 : 1 - 8 * --t ** 4,
1578
+ easeInQuint: t => t ** 5,
1579
+ easeOutQuint: t => 1 + --t ** 5,
1580
+ easeInOutQuint: t => t < 0.5 ? 16 * t ** 5 : 1 + 16 * --t ** 5
1581
+ };
1582
+
1563
1583
  // Utilities
1564
1584
  function getPrefixedEventHandlers(attrs, suffix, getData) {
1565
1585
  return Object.keys(attrs).filter(key => isOn(key) && key.endsWith(suffix)).reduce((acc, key) => {
@@ -7963,21 +7983,7 @@ function genDefaults() {
7963
7983
  layout: false,
7964
7984
  offset: 0,
7965
7985
  easing: 'easeInOutCubic',
7966
- patterns: {
7967
- linear: t => t,
7968
- easeInQuad: t => t ** 2,
7969
- easeOutQuad: t => t * (2 - t),
7970
- easeInOutQuad: t => t < 0.5 ? 2 * t ** 2 : -1 + (4 - 2 * t) * t,
7971
- easeInCubic: t => t ** 3,
7972
- easeOutCubic: t => --t ** 3 + 1,
7973
- easeInOutCubic: t => t < 0.5 ? 4 * t ** 3 : (t - 1) * (2 * t - 2) * (2 * t - 2) + 1,
7974
- easeInQuart: t => t ** 4,
7975
- easeOutQuart: t => 1 - --t ** 4,
7976
- easeInOutQuart: t => t < 0.5 ? 8 * t ** 4 : 1 - 8 * --t ** 4,
7977
- easeInQuint: t => t ** 5,
7978
- easeOutQuint: t => 1 + --t ** 5,
7979
- easeInOutQuint: t => t < 0.5 ? 16 * t ** 5 : 1 + 16 * --t ** 5
7980
- }
7986
+ patterns: easingPatterns
7981
7987
  };
7982
7988
  }
7983
7989
  function getContainer(el) {
@@ -10814,11 +10820,23 @@ function connectedLocationStrategy(data, props, contentStyles) {
10814
10820
  const result = updateLocation();
10815
10821
  if (result) flipped.push(result.flipped);
10816
10822
  });
10817
- watch([data.target, data.contentEl], (_ref, _ref2) => {
10818
- let [newTarget, newContentEl] = _ref;
10819
- let [oldTarget, oldContentEl] = _ref2;
10823
+ let targetBox = new Box({
10824
+ x: 0,
10825
+ y: 0,
10826
+ width: 0,
10827
+ height: 0
10828
+ });
10829
+ watch(data.target, (newTarget, oldTarget) => {
10820
10830
  if (oldTarget && !Array.isArray(oldTarget)) observer.unobserve(oldTarget);
10821
- if (newTarget && !Array.isArray(newTarget)) observer.observe(newTarget);
10831
+ if (!Array.isArray(newTarget)) {
10832
+ if (newTarget) observer.observe(newTarget);
10833
+ } else if (!deepEqual(newTarget, oldTarget)) {
10834
+ updateLocation();
10835
+ }
10836
+ }, {
10837
+ immediate: true
10838
+ });
10839
+ watch(data.contentEl, (newContentEl, oldContentEl) => {
10822
10840
  if (oldContentEl) observer.unobserve(oldContentEl);
10823
10841
  if (newContentEl) observer.observe(newContentEl);
10824
10842
  }, {
@@ -10827,12 +10845,6 @@ function connectedLocationStrategy(data, props, contentStyles) {
10827
10845
  onScopeDispose(() => {
10828
10846
  observer.disconnect();
10829
10847
  });
10830
- let targetBox = new Box({
10831
- x: 0,
10832
- y: 0,
10833
- width: 0,
10834
- height: 0
10835
- });
10836
10848
 
10837
10849
  // eslint-disable-next-line max-statements
10838
10850
  function updateLocation() {
@@ -31418,7 +31430,7 @@ function createVuetify$1() {
31418
31430
  };
31419
31431
  });
31420
31432
  }
31421
- const version$1 = "3.9.2-master.2025-07-24";
31433
+ const version$1 = "3.9.2-master.2025-07-25";
31422
31434
  createVuetify$1.version = version$1;
31423
31435
 
31424
31436
  // Vue's inject() can only be used in setup
@@ -31443,7 +31455,7 @@ const createVuetify = function () {
31443
31455
  ...options
31444
31456
  });
31445
31457
  };
31446
- const version = "3.9.2-master.2025-07-24";
31458
+ const version = "3.9.2-master.2025-07-25";
31447
31459
  createVuetify.version = version;
31448
31460
 
31449
31461
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useRtl, useTheme, version };