@vuetify/nightly 3.7.4-master.2024-11-15 → 3.7.4-master.2024-11-20

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 (37) hide show
  1. package/dist/json/attributes.json +2164 -2164
  2. package/dist/json/importMap-labs.json +16 -16
  3. package/dist/json/importMap.json +178 -178
  4. package/dist/json/web-types.json +4432 -4432
  5. package/dist/vuetify-labs.css +2753 -2749
  6. package/dist/vuetify-labs.d.ts +3 -7
  7. package/dist/vuetify-labs.esm.js +15 -12
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +15 -12
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +982 -978
  12. package/dist/vuetify.d.ts +64 -68
  13. package/dist/vuetify.esm.js +14 -11
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +14 -11
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +9 -10
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VBadge/VBadge.css +4 -0
  21. package/lib/components/VBadge/VBadge.sass +4 -0
  22. package/lib/components/VConfirmEdit/VConfirmEdit.mjs +9 -7
  23. package/lib/components/VConfirmEdit/VConfirmEdit.mjs.map +1 -1
  24. package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.browser.mjs +1 -1
  25. package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.browser.mjs.map +1 -1
  26. package/lib/components/VConfirmEdit/index.d.mts +3 -7
  27. package/lib/components/VList/VListItem.mjs +3 -2
  28. package/lib/components/VList/VListItem.mjs.map +1 -1
  29. package/lib/components/index.d.mts +3 -7
  30. package/lib/entry-bundler.mjs +1 -1
  31. package/lib/framework.mjs +1 -1
  32. package/lib/index.d.mts +61 -61
  33. package/lib/labs/VDateInput/VDateInput.mjs +1 -1
  34. package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
  35. package/lib/locale/fr.mjs +1 -1
  36. package/lib/locale/fr.mjs.map +1 -1
  37. package/package.json +1 -1
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.4-master.2024-11-15
2
+ * Vuetify v3.7.4-master.2024-11-20
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -9167,7 +9167,8 @@
9167
9167
  const list = useList();
9168
9168
  const isActive = vue.computed(() => props.active !== false && (props.active || link.isActive?.value || (root.activatable.value ? isActivated.value : isSelected.value)));
9169
9169
  const isLink = vue.computed(() => props.link !== false && link.isLink.value);
9170
- const isClickable = vue.computed(() => !props.disabled && props.link !== false && (props.link || link.isClickable.value || !!list && (root.selectable.value || root.activatable.value || props.value != null)));
9170
+ const isSelectable = vue.computed(() => !!list && (root.selectable.value || root.activatable.value || props.value != null));
9171
+ const isClickable = vue.computed(() => !props.disabled && props.link !== false && (props.link || link.isClickable.value || isSelectable.value));
9171
9172
  const roundedProps = vue.computed(() => props.rounded || props.nav);
9172
9173
  const color = vue.computed(() => props.color ?? props.activeColor);
9173
9174
  const variantProps = vue.computed(() => ({
@@ -9258,7 +9259,7 @@
9258
9259
  }, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, elevationClasses.value, lineClasses.value, roundedClasses.value, variantClasses.value, props.class],
9259
9260
  "style": [colorStyles.value, dimensionStyles.value, props.style],
9260
9261
  "tabindex": isClickable.value ? list ? -2 : 0 : undefined,
9261
- "aria-selected": root.activatable.value ? isActivated.value : isSelected.value,
9262
+ "aria-selected": isSelectable.value ? root.activatable.value ? isActivated.value : root.selectable.value ? isSelected.value : isActive.value : undefined,
9262
9263
  "onClick": onClick,
9263
9264
  "onKeydown": isClickable.value && !isLink.value && onKeyDown
9264
9265
  }, link.linkProps), {
@@ -18338,21 +18339,23 @@
18338
18339
  internalModel.value = structuredClone(vue.toRaw(model.value));
18339
18340
  emit('cancel');
18340
18341
  }
18341
- let actionsUsed = false;
18342
- useRender(() => {
18343
- const actions = vue.createVNode(vue.Fragment, null, [vue.createVNode(VBtn, {
18342
+ function actions(actionsProps) {
18343
+ return vue.createVNode(vue.Fragment, null, [vue.createVNode(VBtn, vue.mergeProps({
18344
18344
  "disabled": isPristine.value,
18345
18345
  "variant": "text",
18346
18346
  "color": props.color,
18347
18347
  "onClick": cancel,
18348
18348
  "text": t(props.cancelText)
18349
- }, null), vue.createVNode(VBtn, {
18349
+ }, actionsProps), null), vue.createVNode(VBtn, vue.mergeProps({
18350
18350
  "disabled": isPristine.value,
18351
18351
  "variant": "text",
18352
18352
  "color": props.color,
18353
18353
  "onClick": save,
18354
18354
  "text": t(props.okText)
18355
- }, null)]);
18355
+ }, actionsProps), null)]);
18356
+ }
18357
+ let actionsUsed = false;
18358
+ useRender(() => {
18356
18359
  return vue.createVNode(vue.Fragment, null, [slots.default?.({
18357
18360
  model: internalModel,
18358
18361
  save,
@@ -18362,7 +18365,7 @@
18362
18365
  actionsUsed = true;
18363
18366
  return actions;
18364
18367
  }
18365
- }), !actionsUsed && actions]);
18368
+ }), !actionsUsed && actions()]);
18366
18369
  });
18367
18370
  return {
18368
18371
  save,
@@ -28258,7 +28261,7 @@
28258
28261
  goTo
28259
28262
  };
28260
28263
  }
28261
- const version$1 = "3.7.4-master.2024-11-15";
28264
+ const version$1 = "3.7.4-master.2024-11-20";
28262
28265
  createVuetify$1.version = version$1;
28263
28266
 
28264
28267
  // Vue's inject() can only be used in setup
@@ -28283,7 +28286,7 @@
28283
28286
  ...options
28284
28287
  });
28285
28288
  };
28286
- const version = "3.7.4-master.2024-11-15";
28289
+ const version = "3.7.4-master.2024-11-20";
28287
28290
  createVuetify.version = version;
28288
28291
 
28289
28292
  exports.blueprints = index;