vuetify 3.5.14 → 3.5.15

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 (47) hide show
  1. package/dist/json/importMap-labs.json +12 -12
  2. package/dist/json/importMap.json +114 -114
  3. package/dist/json/web-types.json +24 -2
  4. package/dist/vuetify-labs.css +1967 -1933
  5. package/dist/vuetify-labs.d.ts +12 -0
  6. package/dist/vuetify-labs.esm.js +20 -15
  7. package/dist/vuetify-labs.esm.js.map +1 -1
  8. package/dist/vuetify-labs.js +20 -15
  9. package/dist/vuetify-labs.min.css +2 -2
  10. package/dist/vuetify.css +1081 -1047
  11. package/dist/vuetify.d.ts +51 -39
  12. package/dist/vuetify.esm.js +10 -8
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +10 -8
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +9 -8
  18. package/dist/vuetify.min.js.map +1 -1
  19. package/lib/components/VBtn/VBtn.css +4 -0
  20. package/lib/components/VBtn/VBtn.mjs +0 -1
  21. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  22. package/lib/components/VBtn/VBtn.sass +4 -0
  23. package/lib/components/VBtn/_variables.scss +1 -0
  24. package/lib/components/VDataTable/composables/options.mjs +1 -1
  25. package/lib/components/VDataTable/composables/options.mjs.map +1 -1
  26. package/lib/components/VDialog/VDialog.mjs +3 -1
  27. package/lib/components/VDialog/VDialog.mjs.map +1 -1
  28. package/lib/components/VDialog/index.d.mts +12 -0
  29. package/lib/components/VMenu/VMenu.mjs +2 -1
  30. package/lib/components/VMenu/VMenu.mjs.map +1 -1
  31. package/lib/components/VSelectionControl/VSelectionControl.mjs +1 -1
  32. package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
  33. package/lib/components/index.d.mts +12 -0
  34. package/lib/entry-bundler.mjs +1 -1
  35. package/lib/framework.mjs +1 -1
  36. package/lib/index.d.mts +39 -39
  37. package/lib/labs/VTimePicker/VTimePicker.mjs +2 -2
  38. package/lib/labs/VTimePicker/VTimePicker.mjs.map +1 -1
  39. package/lib/labs/VTimePicker/VTimePickerClock.mjs +8 -5
  40. package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -1
  41. package/lib/locale/lt.mjs +25 -25
  42. package/lib/locale/lt.mjs.map +1 -1
  43. package/lib/locale/sl.mjs +30 -30
  44. package/lib/locale/sl.mjs.map +1 -1
  45. package/lib/styles/main.css +30 -0
  46. package/lib/styles/settings/_variables.scss +1 -0
  47. package/package.json +2 -2
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.5.14
2
+ * Vuetify v3.5.15
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -5883,7 +5883,6 @@
5883
5883
  }, [slots.loader?.() ?? vue.createVNode(VProgressCircular, {
5884
5884
  "color": typeof props.loading === 'boolean' ? undefined : props.loading,
5885
5885
  "indeterminate": true,
5886
- "size": "23",
5887
5886
  "width": "2"
5888
5887
  }, null)])]
5889
5888
  }), [[vue.resolveDirective("ripple"), !isDisabled.value && props.ripple, null]]);
@@ -6365,7 +6364,7 @@
6365
6364
  backgroundColorClasses,
6366
6365
  backgroundColorStyles
6367
6366
  } = useBackgroundColor(vue.computed(() => {
6368
- return model.value && !props.error && !props.disabled ? props.color : undefined;
6367
+ return model.value && !props.error && !props.disabled ? props.color : props.baseColor;
6369
6368
  }));
6370
6369
  const icon = vue.computed(() => model.value ? props.trueIcon : props.falseIcon);
6371
6370
  return {
@@ -11090,7 +11089,8 @@
11090
11089
  }
11091
11090
  function onKeydown(e) {
11092
11091
  if (props.disabled) return;
11093
- if (e.key === 'Tab') {
11092
+ if (e.key === 'Tab' || e.key === 'Enter' && !props.closeOnContentClick) {
11093
+ if (e.key === 'Enter') e.preventDefault();
11094
11094
  const nextElement = getNextElement(focusableChildren(overlay.value?.contentEl, false), e.shiftKey ? 'prev' : 'next', el => el.tabIndex >= 0);
11095
11095
  if (!nextElement) {
11096
11096
  isActive.value = false;
@@ -13527,7 +13527,9 @@
13527
13527
  name: 'VDialog',
13528
13528
  props: makeVDialogProps(),
13529
13529
  emits: {
13530
- 'update:modelValue': value => true
13530
+ 'click:outside': e => true,
13531
+ 'update:modelValue': value => true,
13532
+ afterLeave: () => true
13531
13533
  },
13532
13534
  setup(props, _ref) {
13533
13535
  let {
@@ -17183,7 +17185,7 @@
17183
17185
  if (deepEqual(oldOptions, options.value)) return;
17184
17186
 
17185
17187
  // Reset page when searching
17186
- if (oldOptions?.search !== options.value.search) {
17188
+ if (oldOptions && oldOptions.search !== options.value.search) {
17187
17189
  page.value = 1;
17188
17190
  }
17189
17191
  vm.emit('update:options', options.value);
@@ -26334,7 +26336,7 @@
26334
26336
  goTo
26335
26337
  };
26336
26338
  }
26337
- const version$1 = "3.5.14";
26339
+ const version$1 = "3.5.15";
26338
26340
  createVuetify$1.version = version$1;
26339
26341
 
26340
26342
  // Vue's inject() can only be used in setup
@@ -26359,7 +26361,7 @@
26359
26361
  ...options
26360
26362
  });
26361
26363
  };
26362
- const version = "3.5.14";
26364
+ const version = "3.5.15";
26363
26365
  createVuetify.version = version;
26364
26366
 
26365
26367
  exports.blueprints = index;