@vuetify/nightly 3.6.10-master.2024-06-21 → 3.6.11-dev.2024-07-03

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/CHANGELOG.md +13 -2
  2. package/dist/json/attributes.json +291 -119
  3. package/dist/json/importMap-labs.json +28 -28
  4. package/dist/json/importMap.json +106 -106
  5. package/dist/json/tags.json +49 -6
  6. package/dist/json/web-types.json +601 -211
  7. package/dist/vuetify-labs.css +2575 -2559
  8. package/dist/vuetify-labs.d.ts +802 -519
  9. package/dist/vuetify-labs.esm.js +86 -71
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +86 -71
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +627 -611
  14. package/dist/vuetify.d.ts +716 -505
  15. package/dist/vuetify.esm.js +36 -16
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +36 -16
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +24 -24
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAppBar/index.d.mts +6 -0
  23. package/lib/components/VAutocomplete/index.d.mts +49 -49
  24. package/lib/components/VAvatar/VAvatar.css +7 -0
  25. package/lib/components/VAvatar/VAvatar.mjs +6 -1
  26. package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
  27. package/lib/components/VAvatar/VAvatar.sass +1 -0
  28. package/lib/components/VAvatar/_variables.scss +13 -0
  29. package/lib/components/VAvatar/index.d.mts +6 -0
  30. package/lib/components/VBottomSheet/index.d.mts +7 -7
  31. package/lib/components/VBreadcrumbs/index.d.mts +8 -8
  32. package/lib/components/VBtn/VBtn.mjs +3 -1
  33. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  34. package/lib/components/VBtn/index.d.mts +6 -0
  35. package/lib/components/VCarousel/index.d.mts +16 -7
  36. package/lib/components/VCheckbox/index.d.mts +6 -6
  37. package/lib/components/VCombobox/index.d.mts +49 -49
  38. package/lib/components/VDialog/index.d.mts +31 -31
  39. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +7 -2
  40. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  41. package/lib/components/VExpansionPanel/index.d.mts +122 -14
  42. package/lib/components/VFab/index.d.mts +6 -0
  43. package/lib/components/VFileInput/index.d.mts +18 -18
  44. package/lib/components/VForm/index.d.mts +9 -9
  45. package/lib/components/VGrid/VContainer.mjs +6 -1
  46. package/lib/components/VGrid/VContainer.mjs.map +1 -1
  47. package/lib/components/VGrid/index.d.mts +36 -0
  48. package/lib/components/VImg/VImg.css +9 -0
  49. package/lib/components/VImg/VImg.mjs +2 -0
  50. package/lib/components/VImg/VImg.mjs.map +1 -1
  51. package/lib/components/VImg/VImg.sass +9 -0
  52. package/lib/components/VImg/index.d.mts +16 -7
  53. package/lib/components/VInput/index.d.mts +6 -6
  54. package/lib/components/VList/index.d.mts +12 -12
  55. package/lib/components/VMenu/index.d.mts +33 -33
  56. package/lib/components/VOverlay/VOverlay.mjs +1 -1
  57. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  58. package/lib/components/VOverlay/index.d.mts +7 -7
  59. package/lib/components/VRadioGroup/index.d.mts +6 -6
  60. package/lib/components/VRangeSlider/index.d.mts +6 -6
  61. package/lib/components/VSelect/index.d.mts +49 -49
  62. package/lib/components/VSlideGroup/VSlideGroup.mjs +3 -1
  63. package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
  64. package/lib/components/VSlideGroup/index.d.mts +6 -0
  65. package/lib/components/VSlider/index.d.mts +6 -6
  66. package/lib/components/VSnackbar/index.d.mts +33 -33
  67. package/lib/components/VSpeedDial/index.d.mts +9 -9
  68. package/lib/components/VSwitch/index.d.mts +6 -6
  69. package/lib/components/VTabs/index.d.mts +21 -3
  70. package/lib/components/VTextField/index.d.mts +18 -18
  71. package/lib/components/VTextarea/index.d.mts +18 -18
  72. package/lib/components/VTooltip/index.d.mts +39 -39
  73. package/lib/components/VValidation/index.d.mts +9 -8
  74. package/lib/components/index.d.mts +675 -464
  75. package/lib/composables/validation.mjs +8 -6
  76. package/lib/composables/validation.mjs.map +1 -1
  77. package/lib/entry-bundler.mjs +1 -1
  78. package/lib/entry-bundler.mjs.map +1 -1
  79. package/lib/framework.mjs +1 -1
  80. package/lib/framework.mjs.map +1 -1
  81. package/lib/index.d.mts +41 -41
  82. package/lib/labs/VDateInput/index.d.mts +6 -6
  83. package/lib/labs/VNumberInput/VNumberInput.mjs +48 -55
  84. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  85. package/lib/labs/VNumberInput/index.d.mts +6 -6
  86. package/lib/labs/VSnackbarQueue/index.d.mts +42 -42
  87. package/lib/labs/VStepperVertical/VStepperVertical.mjs +2 -0
  88. package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -1
  89. package/lib/labs/VStepperVertical/index.d.mts +90 -18
  90. package/lib/labs/VTreeview/index.d.mts +16 -16
  91. package/lib/labs/components.d.mts +160 -88
  92. package/package.json +1 -1
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.10-master.2024-06-21
2
+ * Vuetify v3.6.11-dev.2024-07-03
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -3692,6 +3692,7 @@
3692
3692
  // not intended for public use, this is passed in by vuetify-loader
3693
3693
 
3694
3694
  const makeVImgProps = propsFactory({
3695
+ absolute: Boolean,
3695
3696
  alt: String,
3696
3697
  cover: Boolean,
3697
3698
  color: String,
@@ -3948,6 +3949,7 @@
3948
3949
  const responsiveProps = VResponsive.filterProps(props);
3949
3950
  return vue.withDirectives(vue.createVNode(VResponsive, vue.mergeProps({
3950
3951
  "class": ['v-img', {
3952
+ 'v-img--absolute': props.absolute,
3951
3953
  'v-img--booting': !isBooted.value
3952
3954
  }, backgroundColorClasses.value, roundedClasses.value, props.class],
3953
3955
  "style": [{
@@ -5747,6 +5749,7 @@
5747
5749
  type: Boolean,
5748
5750
  default: undefined
5749
5751
  },
5752
+ activeColor: String,
5750
5753
  baseColor: String,
5751
5754
  symbol: {
5752
5755
  type: null,
@@ -5838,10 +5841,11 @@
5838
5841
  }
5839
5842
  return group?.isSelected.value;
5840
5843
  });
5844
+ const color = vue.computed(() => isActive.value ? props.activeColor ?? props.color : props.color);
5841
5845
  const variantProps = vue.computed(() => {
5842
5846
  const showColor = group?.isSelected.value && (!link.isLink.value || link.isActive?.value) || !group || link.isActive?.value;
5843
5847
  return {
5844
- color: showColor ? props.color ?? props.baseColor : props.baseColor,
5848
+ color: showColor ? color.value ?? props.baseColor : props.baseColor,
5845
5849
  variant: props.variant
5846
5850
  };
5847
5851
  });
@@ -6182,6 +6186,7 @@
6182
6186
  icon: IconValue,
6183
6187
  image: String,
6184
6188
  text: String,
6189
+ ...makeBorderProps(),
6185
6190
  ...makeComponentProps(),
6186
6191
  ...makeDensityProps(),
6187
6192
  ...makeRoundedProps(),
@@ -6202,6 +6207,9 @@
6202
6207
  const {
6203
6208
  themeClasses
6204
6209
  } = provideTheme(props);
6210
+ const {
6211
+ borderClasses
6212
+ } = useBorder(props);
6205
6213
  const {
6206
6214
  colorClasses,
6207
6215
  colorStyles,
@@ -6221,7 +6229,7 @@
6221
6229
  "class": ['v-avatar', {
6222
6230
  'v-avatar--start': props.start,
6223
6231
  'v-avatar--end': props.end
6224
- }, themeClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
6232
+ }, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
6225
6233
  "style": [colorStyles.value, sizeStyles.value, props.style]
6226
6234
  }, {
6227
6235
  default: () => [!slots.default ? props.image ? vue.createVNode(VImg, {
@@ -6921,12 +6929,14 @@
6921
6929
  const validateOn = vue.computed(() => {
6922
6930
  let value = (props.validateOn ?? form?.validateOn.value) || 'input';
6923
6931
  if (value === 'lazy') value = 'input lazy';
6932
+ if (value === 'eager') value = 'input eager';
6924
6933
  const set = new Set(value?.split(' ') ?? []);
6925
6934
  return {
6926
- blur: set.has('blur') || set.has('input'),
6927
6935
  input: set.has('input'),
6928
- submit: set.has('submit'),
6929
- lazy: set.has('lazy')
6936
+ blur: set.has('blur') || set.has('input') || set.has('invalid-input'),
6937
+ invalidInput: set.has('invalid-input'),
6938
+ lazy: set.has('lazy'),
6939
+ eager: set.has('eager')
6930
6940
  };
6931
6941
  });
6932
6942
  const isValid = vue.computed(() => {
@@ -6963,11 +6973,11 @@
6963
6973
  });
6964
6974
  vue.onMounted(async () => {
6965
6975
  if (!validateOn.value.lazy) {
6966
- await validate(true);
6976
+ await validate(!validateOn.value.eager);
6967
6977
  }
6968
6978
  form?.update(uid.value, isValid.value, errorMessages.value);
6969
6979
  });
6970
- useToggleScope(() => validateOn.value.input, () => {
6980
+ useToggleScope(() => validateOn.value.input || validateOn.value.invalidInput && isValid.value === false, () => {
6971
6981
  vue.watch(validationModel, () => {
6972
6982
  if (validationModel.value != null) {
6973
6983
  validate();
@@ -6995,7 +7005,7 @@
6995
7005
  async function resetValidation() {
6996
7006
  isPristine.value = true;
6997
7007
  if (!validateOn.value.lazy) {
6998
- await validate(true);
7008
+ await validate(!validateOn.value.eager);
6999
7009
  } else {
7000
7010
  internalErrorMessages.value = [];
7001
7011
  }
@@ -7935,7 +7945,9 @@
7935
7945
  selected: group.selected,
7936
7946
  scrollTo,
7937
7947
  scrollOffset,
7938
- focus
7948
+ focus,
7949
+ hasPrev,
7950
+ hasNext
7939
7951
  };
7940
7952
  }
7941
7953
  });
@@ -11066,7 +11078,7 @@
11066
11078
  const potentialShadowDomRoot = vue.computed(() => activatorEl?.value?.getRootNode());
11067
11079
  const {
11068
11080
  teleportTarget
11069
- } = useTeleport(vue.computed(() => props.attach || props.contained || potentialShadowDomRoot.value instanceof ShadowRoot ? potentialShadowDomRoot.value : false));
11081
+ } = useTeleport(vue.computed(() => props.attach || props.contained || potentialShadowDomRoot.value instanceof ShadowRoot ? potentialShadowDomRoot.value ?? true : false));
11070
11082
  const {
11071
11083
  dimensionStyles
11072
11084
  } = useDimension(props);
@@ -21137,6 +21149,7 @@
21137
21149
  default: false
21138
21150
  },
21139
21151
  ...makeComponentProps(),
21152
+ ...makeDimensionProps(),
21140
21153
  ...makeTagProps()
21141
21154
  }, 'VContainer');
21142
21155
  const VContainer = genericComponent()({
@@ -21149,11 +21162,14 @@
21149
21162
  const {
21150
21163
  rtlClasses
21151
21164
  } = useRtl();
21165
+ const {
21166
+ dimensionStyles
21167
+ } = useDimension(props);
21152
21168
  useRender(() => vue.createVNode(props.tag, {
21153
21169
  "class": ['v-container', {
21154
21170
  'v-container--fluid': props.fluid
21155
21171
  }, rtlClasses.value, props.class],
21156
- "style": props.style
21172
+ "style": [dimensionStyles.value, props.style]
21157
21173
  }, slots));
21158
21174
  return {};
21159
21175
  }
@@ -22566,7 +22582,8 @@
22566
22582
  default: false
22567
22583
  },
22568
22584
  readonly: Boolean,
22569
- ...makeComponentProps()
22585
+ ...makeComponentProps(),
22586
+ ...makeDimensionProps()
22570
22587
  }, 'VExpansionPanelTitle');
22571
22588
  const VExpansionPanelTitle = genericComponent()({
22572
22589
  name: 'VExpansionPanelTitle',
@@ -22584,6 +22601,9 @@
22584
22601
  backgroundColorClasses,
22585
22602
  backgroundColorStyles
22586
22603
  } = useBackgroundColor(props, 'color');
22604
+ const {
22605
+ dimensionStyles
22606
+ } = useDimension(props);
22587
22607
  const slotProps = vue.computed(() => ({
22588
22608
  collapseIcon: props.collapseIcon,
22589
22609
  disabled: expansionPanel.disabled.value,
@@ -22598,7 +22618,7 @@
22598
22618
  'v-expansion-panel-title--focusable': props.focusable,
22599
22619
  'v-expansion-panel-title--static': props.static
22600
22620
  }, backgroundColorClasses.value, props.class],
22601
- "style": [backgroundColorStyles.value, props.style],
22621
+ "style": [backgroundColorStyles.value, dimensionStyles.value, props.style],
22602
22622
  "type": "button",
22603
22623
  "tabindex": expansionPanel.disabled.value ? -1 : undefined,
22604
22624
  "disabled": expansionPanel.disabled.value,
@@ -28099,7 +28119,7 @@
28099
28119
  goTo
28100
28120
  };
28101
28121
  }
28102
- const version$1 = "3.6.10-master.2024-06-21";
28122
+ const version$1 = "3.6.11-dev.2024-07-03";
28103
28123
  createVuetify$1.version = version$1;
28104
28124
 
28105
28125
  // Vue's inject() can only be used in setup
@@ -28124,7 +28144,7 @@
28124
28144
  ...options
28125
28145
  });
28126
28146
  };
28127
- const version = "3.6.10-master.2024-06-21";
28147
+ const version = "3.6.11-dev.2024-07-03";
28128
28148
  createVuetify.version = version;
28129
28149
 
28130
28150
  exports.blueprints = index;