@vuetify/nightly 3.6.3-master.2024-05-05 → 3.6.3-master.2024-05-07

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 (67) hide show
  1. package/CHANGELOG.md +11 -2
  2. package/dist/json/attributes.json +148 -8
  3. package/dist/json/importMap-labs.json +16 -16
  4. package/dist/json/importMap.json +118 -118
  5. package/dist/json/tags.json +36 -1
  6. package/dist/json/web-types.json +436 -26
  7. package/dist/vuetify-labs.css +2038 -1778
  8. package/dist/vuetify-labs.d.ts +631 -317
  9. package/dist/vuetify-labs.esm.js +72 -92
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +72 -92
  12. package/dist/vuetify-labs.min.css +3 -3
  13. package/dist/vuetify.css +2396 -2136
  14. package/dist/vuetify.d.ts +276 -318
  15. package/dist/vuetify.esm.js +19 -17
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +19 -17
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +3 -3
  20. package/dist/vuetify.min.js +15 -15
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
  23. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  24. package/lib/components/VAutocomplete/index.d.mts +18 -18
  25. package/lib/components/VBottomSheet/index.d.mts +9 -15
  26. package/lib/components/VCarousel/index.d.mts +6 -6
  27. package/lib/components/VCombobox/index.d.mts +18 -18
  28. package/lib/components/VDialog/index.d.mts +27 -33
  29. package/lib/components/VFileInput/VFileInput.mjs +1 -1
  30. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  31. package/lib/components/VFileInput/index.d.mts +9 -9
  32. package/lib/components/VImg/index.d.mts +6 -6
  33. package/lib/components/VList/VListItem.mjs +3 -2
  34. package/lib/components/VList/VListItem.mjs.map +1 -1
  35. package/lib/components/VList/index.d.mts +6 -6
  36. package/lib/components/VMenu/index.d.mts +27 -33
  37. package/lib/components/VOverlay/VOverlay.mjs +2 -5
  38. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  39. package/lib/components/VOverlay/index.d.mts +9 -15
  40. package/lib/components/VResponsive/VResponsive.mjs +1 -1
  41. package/lib/components/VResponsive/VResponsive.mjs.map +1 -1
  42. package/lib/components/VResponsive/index.d.mts +6 -6
  43. package/lib/components/VSelect/index.d.mts +18 -18
  44. package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
  45. package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
  46. package/lib/components/VSnackbar/index.d.mts +41 -47
  47. package/lib/components/VSpeedDial/index.d.mts +9 -15
  48. package/lib/components/VTabs/VTabs.mjs +8 -3
  49. package/lib/components/VTabs/VTabs.mjs.map +1 -1
  50. package/lib/components/VToolbar/VToolbar.css +5 -5
  51. package/lib/components/VToolbar/_variables.scss +3 -3
  52. package/lib/components/VTooltip/index.d.mts +27 -33
  53. package/lib/components/index.d.mts +236 -278
  54. package/lib/composables/component.mjs +1 -1
  55. package/lib/composables/component.mjs.map +1 -1
  56. package/lib/entry-bundler.mjs +1 -1
  57. package/lib/framework.mjs +1 -1
  58. package/lib/index.d.mts +40 -40
  59. package/lib/labs/VNumberInput/VNumberInput.mjs +57 -81
  60. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  61. package/lib/labs/VNumberInput/index.d.mts +402 -34
  62. package/lib/labs/VSnackbarQueue/index.d.mts +41 -47
  63. package/lib/labs/VTreeview/index.d.mts +6 -6
  64. package/lib/labs/components.d.mts +442 -86
  65. package/lib/styles/generic/_colors.scss +1 -0
  66. package/lib/styles/main.css +260 -0
  67. package/package.json +2 -2
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.3-master.2024-05-05
2
+ * Vuetify v3.6.3-master.2024-05-07
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -1226,7 +1226,7 @@
1226
1226
 
1227
1227
  // Composables
1228
1228
  const makeComponentProps = propsFactory({
1229
- class: [String, Array],
1229
+ class: [String, Array, Object],
1230
1230
  style: {
1231
1231
  type: [String, Array, Object],
1232
1232
  default: null
@@ -3445,7 +3445,7 @@
3445
3445
  }
3446
3446
  const makeVResponsiveProps = propsFactory({
3447
3447
  aspectRatio: [String, Number],
3448
- contentClass: String,
3448
+ contentClass: null,
3449
3449
  inline: Boolean,
3450
3450
  ...makeComponentProps(),
3451
3451
  ...makeDimensionProps()
@@ -8992,7 +8992,7 @@
8992
8992
  appendIcon: IconValue,
8993
8993
  baseColor: String,
8994
8994
  disabled: Boolean,
8995
- lines: String,
8995
+ lines: [Boolean, String],
8996
8996
  link: {
8997
8997
  type: Boolean,
8998
8998
  default: undefined
@@ -9103,8 +9103,9 @@
9103
9103
  }));
9104
9104
  function onClick(e) {
9105
9105
  emit('click', e);
9106
- if (isGroupActivator || !isClickable.value) return;
9106
+ if (!isClickable.value) return;
9107
9107
  link.navigate?.(e);
9108
+ if (isGroupActivator) return;
9108
9109
  if (root.activatable.value) {
9109
9110
  activate(!isActivated.value, e);
9110
9111
  } else if (root.selectable.value) {
@@ -10918,10 +10919,7 @@
10918
10919
  disabled: Boolean,
10919
10920
  opacity: [Number, String],
10920
10921
  noClickAnimation: Boolean,
10921
- modelValue: {
10922
- type: Boolean,
10923
- default: null
10924
- },
10922
+ modelValue: Boolean,
10925
10923
  persistent: Boolean,
10926
10924
  scrim: {
10927
10925
  type: [Boolean, String],
@@ -10964,7 +10962,7 @@
10964
10962
  } = _ref;
10965
10963
  const model = useProxiedModel(props, 'modelValue');
10966
10964
  const isActive = vue.computed({
10967
- get: () => Boolean(model.value),
10965
+ get: () => model.value,
10968
10966
  set: v => {
10969
10967
  if (!(v && props.disabled)) model.value = v;
10970
10968
  }
@@ -13201,7 +13199,7 @@
13201
13199
  select(displayItems.value[0]);
13202
13200
  }
13203
13201
  menu.value = false;
13204
- search.value = '';
13202
+ if (props.multiple || hasSelectionSlot.value) search.value = '';
13205
13203
  selectionIndex.value = -1;
13206
13204
  }
13207
13205
  });
@@ -22796,7 +22794,7 @@
22796
22794
  const {
22797
22795
  t
22798
22796
  } = useLocale();
22799
- const model = useProxiedModel(props, 'modelValue', props.modelValue, val => wrapInArray(val), val => props.multiple || Array.isArray(props.modelValue) ? val : val[0]);
22797
+ const model = useProxiedModel(props, 'modelValue', props.modelValue, val => wrapInArray(val), val => props.multiple || Array.isArray(props.modelValue) ? val : val[0] ?? null);
22800
22798
  const {
22801
22799
  isFocused,
22802
22800
  focus,
@@ -26740,6 +26738,7 @@
26740
26738
  },
26741
26739
  setup(props, _ref) {
26742
26740
  let {
26741
+ attrs,
26743
26742
  slots
26744
26743
  } = _ref;
26745
26744
  const model = useProxiedModel(props, 'modelValue');
@@ -26751,6 +26750,9 @@
26751
26750
  backgroundColorClasses,
26752
26751
  backgroundColorStyles
26753
26752
  } = useBackgroundColor(vue.toRef(props, 'bgColor'));
26753
+ const {
26754
+ scopeId
26755
+ } = useScopeId();
26754
26756
  provideDefaults({
26755
26757
  VTab: {
26756
26758
  color: vue.toRef(props, 'color'),
@@ -26777,7 +26779,7 @@
26777
26779
  }, backgroundColorStyles.value, props.style],
26778
26780
  "role": "tablist",
26779
26781
  "symbol": VTabsSymbol
26780
- }), {
26782
+ }, scopeId, attrs), {
26781
26783
  default: () => [slots.default?.() ?? items.value.map(item => slots.tab?.({
26782
26784
  item
26783
26785
  }) ?? vue.createVNode(VTab, vue.mergeProps(item, {
@@ -26788,11 +26790,11 @@
26788
26790
  item
26789
26791
  })
26790
26792
  }))]
26791
- }), hasWindow && vue.createVNode(VTabsWindow, {
26793
+ }), hasWindow && vue.createVNode(VTabsWindow, vue.mergeProps({
26792
26794
  "modelValue": model.value,
26793
26795
  "onUpdate:modelValue": $event => model.value = $event,
26794
26796
  "key": "tabs-window"
26795
- }, {
26797
+ }, scopeId), {
26796
26798
  default: () => [items.value.map(item => slots.item?.({
26797
26799
  item
26798
26800
  }) ?? vue.createVNode(VTabsWindowItem, {
@@ -27928,7 +27930,7 @@
27928
27930
  goTo
27929
27931
  };
27930
27932
  }
27931
- const version$1 = "3.6.3-master.2024-05-05";
27933
+ const version$1 = "3.6.3-master.2024-05-07";
27932
27934
  createVuetify$1.version = version$1;
27933
27935
 
27934
27936
  // Vue's inject() can only be used in setup
@@ -27953,7 +27955,7 @@
27953
27955
  ...options
27954
27956
  });
27955
27957
  };
27956
- const version = "3.6.3-master.2024-05-05";
27958
+ const version = "3.6.3-master.2024-05-07";
27957
27959
  createVuetify.version = version;
27958
27960
 
27959
27961
  exports.blueprints = index;