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

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 +10 -3
  2. package/dist/_component-variables-labs.sass +1 -0
  3. package/dist/json/attributes.json +3153 -3005
  4. package/dist/json/importMap-labs.json +30 -18
  5. package/dist/json/importMap.json +166 -166
  6. package/dist/json/tags.json +52 -0
  7. package/dist/json/web-types.json +6315 -5820
  8. package/dist/vuetify-labs.cjs +781 -118
  9. package/dist/vuetify-labs.css +3870 -3763
  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 +4830 -4830
  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): {
@@ -95373,47 +95375,42 @@ declare module 'vue' {
95373
95375
  $children?: VNodeChild
95374
95376
  }
95375
95377
  export interface GlobalComponents {
95376
- VApp: VApp
95377
95378
  VAppBar: VAppBar
95378
95379
  VAppBarNavIcon: VAppBarNavIcon
95379
95380
  VAppBarTitle: VAppBarTitle
95380
- VAutocomplete: VAutocomplete
95381
- VBadge: VBadge
95381
+ VApp: VApp
95382
95382
  VAlert: VAlert
95383
95383
  VAlertTitle: VAlertTitle
95384
+ VAutocomplete: VAutocomplete
95384
95385
  VBanner: VBanner
95385
95386
  VBannerActions: VBannerActions
95386
95387
  VBannerText: VBannerText
95388
+ VBadge: VBadge
95387
95389
  VAvatar: VAvatar
95388
- VBottomNavigation: VBottomNavigation
95389
95390
  VBreadcrumbs: VBreadcrumbs
95390
95391
  VBreadcrumbsItem: VBreadcrumbsItem
95391
95392
  VBreadcrumbsDivider: VBreadcrumbsDivider
95393
+ VBtn: VBtn
95394
+ VBottomSheet: VBottomSheet
95395
+ VBtnToggle: VBtnToggle
95396
+ VBtnGroup: VBtnGroup
95392
95397
  VCard: VCard
95393
95398
  VCardActions: VCardActions
95394
95399
  VCardItem: VCardItem
95395
95400
  VCardSubtitle: VCardSubtitle
95396
95401
  VCardText: VCardText
95397
95402
  VCardTitle: VCardTitle
95398
- VBottomSheet: VBottomSheet
95399
- VBtnGroup: VBtnGroup
95400
- VCarousel: VCarousel
95401
- VCarouselItem: VCarouselItem
95402
- VBtn: VBtn
95403
- VBtnToggle: VBtnToggle
95404
- VColorPicker: VColorPicker
95405
- VChip: VChip
95403
+ VCheckbox: VCheckbox
95404
+ VCheckboxBtn: VCheckboxBtn
95405
+ VBottomNavigation: VBottomNavigation
95406
+ VCode: VCode
95406
95407
  VChipGroup: VChipGroup
95407
- VCounter: VCounter
95408
+ VChip: VChip
95409
+ VColorPicker: VColorPicker
95408
95410
  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
95411
+ VCounter: VCounter
95412
+ VCarousel: VCarousel
95413
+ VCarouselItem: VCarouselItem
95417
95414
  VDataTable: VDataTable
95418
95415
  VDataTableHeaders: VDataTableHeaders
95419
95416
  VDataTableFooter: VDataTableFooter
@@ -95421,31 +95418,36 @@ declare module 'vue' {
95421
95418
  VDataTableRow: VDataTableRow
95422
95419
  VDataTableVirtual: VDataTableVirtual
95423
95420
  VDataTableServer: VDataTableServer
95421
+ VDialog: VDialog
95424
95422
  VDivider: VDivider
95425
95423
  VEmptyState: VEmptyState
95426
- VCheckbox: VCheckbox
95427
- VCheckboxBtn: VCheckboxBtn
95424
+ VDatePicker: VDatePicker
95425
+ VDatePickerControls: VDatePickerControls
95426
+ VDatePickerHeader: VDatePickerHeader
95427
+ VDatePickerMonth: VDatePickerMonth
95428
+ VDatePickerMonths: VDatePickerMonths
95429
+ VDatePickerYears: VDatePickerYears
95428
95430
  VExpansionPanels: VExpansionPanels
95429
95431
  VExpansionPanel: VExpansionPanel
95430
95432
  VExpansionPanelText: VExpansionPanelText
95431
95433
  VExpansionPanelTitle: VExpansionPanelTitle
95434
+ VFileInput: VFileInput
95432
95435
  VField: VField
95433
95436
  VFieldLabel: VFieldLabel
95434
- VFab: VFab
95435
- VFileInput: VFileInput
95436
95437
  VFooter: VFooter
95438
+ VFab: VFab
95439
+ VInput: VInput
95437
95440
  VIcon: VIcon
95438
95441
  VComponentIcon: VComponentIcon
95439
95442
  VSvgIcon: VSvgIcon
95440
95443
  VLigatureIcon: VLigatureIcon
95441
95444
  VClassIcon: VClassIcon
95442
- VImg: VImg
95443
- VInput: VInput
95444
95445
  VInfiniteScroll: VInfiniteScroll
95445
- VKbd: VKbd
95446
+ VImg: VImg
95446
95447
  VItemGroup: VItemGroup
95447
95448
  VItem: VItem
95448
95449
  VLabel: VLabel
95450
+ VKbd: VKbd
95449
95451
  VList: VList
95450
95452
  VListGroup: VListGroup
95451
95453
  VListImg: VListImg
@@ -95455,26 +95457,28 @@ declare module 'vue' {
95455
95457
  VListItemSubtitle: VListItemSubtitle
95456
95458
  VListItemTitle: VListItemTitle
95457
95459
  VListSubheader: VListSubheader
95458
- VMenu: VMenu
95459
95460
  VMain: VMain
95460
95461
  VMessages: VMessages
95462
+ VMenu: VMenu
95461
95463
  VNavigationDrawer: VNavigationDrawer
95462
- VOtpInput: VOtpInput
95463
- VNumberInput: VNumberInput
95464
95464
  VOverlay: VOverlay
95465
+ VPagination: VPagination
95466
+ VNumberInput: VNumberInput
95467
+ VRadioGroup: VRadioGroup
95465
95468
  VProgressCircular: VProgressCircular
95466
- VProgressLinear: VProgressLinear
95467
- VRating: VRating
95469
+ VSelectionControl: VSelectionControl
95468
95470
  VSelect: VSelect
95471
+ VRating: VRating
95472
+ VSlider: VSlider
95469
95473
  VSelectionControlGroup: VSelectionControlGroup
95470
95474
  VSheet: VSheet
95471
- VSelectionControl: VSelectionControl
95472
95475
  VSkeletonLoader: VSkeletonLoader
95473
- VRadioGroup: VRadioGroup
95474
- VPagination: VPagination
95475
- VSlider: VSlider
95476
95476
  VSlideGroup: VSlideGroup
95477
95477
  VSlideGroupItem: VSlideGroupItem
95478
+ VProgressLinear: VProgressLinear
95479
+ VOtpInput: VOtpInput
95480
+ VSnackbar: VSnackbar
95481
+ VSwitch: VSwitch
95478
95482
  VStepper: VStepper
95479
95483
  VStepperActions: VStepperActions
95480
95484
  VStepperHeader: VStepperHeader
@@ -95482,51 +95486,47 @@ declare module 'vue' {
95482
95486
  VStepperWindow: VStepperWindow
95483
95487
  VStepperWindowItem: VStepperWindowItem
95484
95488
  VSystemBar: VSystemBar
95485
- VSwitch: VSwitch
95486
- VSnackbar: VSnackbar
95487
95489
  VTable: VTable
95488
- VTimeline: VTimeline
95489
- VTimelineItem: VTimelineItem
95490
95490
  VTextarea: VTextarea
95491
+ VTextField: VTextField
95491
95492
  VTab: VTab
95492
95493
  VTabs: VTabs
95493
95494
  VTabsWindow: VTabsWindow
95494
95495
  VTabsWindowItem: VTabsWindowItem
95495
- VToolbar: VToolbar
95496
- VToolbarTitle: VToolbarTitle
95497
- VToolbarItems: VToolbarItems
95498
- VTooltip: VTooltip
95496
+ VTimeline: VTimeline
95497
+ VTimelineItem: VTimelineItem
95499
95498
  VTimePicker: VTimePicker
95500
95499
  VTimePickerClock: VTimePickerClock
95501
95500
  VTimePickerControls: VTimePickerControls
95501
+ VToolbar: VToolbar
95502
+ VToolbarTitle: VToolbarTitle
95503
+ VToolbarItems: VToolbarItems
95502
95504
  VTreeview: VTreeview
95503
95505
  VTreeviewItem: VTreeviewItem
95504
95506
  VTreeviewGroup: VTreeviewGroup
95505
- VWindow: VWindow
95506
- VWindowItem: VWindowItem
95507
+ VTooltip: VTooltip
95508
+ VConfirmEdit: VConfirmEdit
95507
95509
  VDataIterator: VDataIterator
95508
95510
  VDefaultsProvider: VDefaultsProvider
95509
95511
  VForm: VForm
95512
+ VHover: VHover
95510
95513
  VContainer: VContainer
95511
95514
  VCol: VCol
95512
95515
  VRow: VRow
95513
95516
  VSpacer: VSpacer
95514
- VHover: VHover
95515
95517
  VLazy: VLazy
95516
- VLayout: VLayout
95517
- VLayoutItem: VLayoutItem
95518
- VNoSsr: VNoSsr
95519
95518
  VLocaleProvider: VLocaleProvider
95519
+ VNoSsr: VNoSsr
95520
95520
  VParallax: VParallax
95521
95521
  VRadio: VRadio
95522
95522
  VRangeSlider: VRangeSlider
95523
+ VResponsive: VResponsive
95523
95524
  VSnackbarQueue: VSnackbarQueue
95524
95525
  VSparkline: VSparkline
95525
95526
  VSpeedDial: VSpeedDial
95526
95527
  VThemeProvider: VThemeProvider
95527
- VResponsive: VResponsive
95528
- VVirtualScroll: VVirtualScroll
95529
95528
  VValidation: VValidation
95529
+ VVirtualScroll: VVirtualScroll
95530
95530
  VFabTransition: VFabTransition
95531
95531
  VDialogBottomTransition: VDialogBottomTransition
95532
95532
  VDialogTopTransition: VDialogTopTransition
@@ -95543,24 +95543,29 @@ 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
+ VWindow: VWindow
95547
+ VWindowItem: VWindowItem
95548
+ VLayout: VLayout
95549
+ VLayoutItem: VLayoutItem
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
95558
95556
  VPicker: VPicker
95559
95557
  VPickerTitle: VPickerTitle
95560
- VHotkey: VHotkey
95558
+ VFileUpload: VFileUpload
95559
+ VFileUploadItem: VFileUploadItem
95560
+ VIconBtn: VIconBtn
95561
95561
  VStepperVertical: VStepperVertical
95562
95562
  VStepperVerticalItem: VStepperVerticalItem
95563
95563
  VStepperVerticalActions: VStepperVerticalActions
95564
+ VPie: VPie
95565
+ VPieSegment: VPieSegment
95566
+ VPieTooltip: VPieTooltip
95567
+ VHotkey: VHotkey
95568
+ VColorInput: VColorInput
95564
95569
  VVideo: VVideo
95565
95570
  VVideoControls: VVideoControls
95566
95571
  VVideoVolume: VVideoVolume
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.2-master.2025-07-24
2
+ * Vuetify v3.9.2-master.2025-07-26
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-26";
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-26";
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 };