@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
@@ -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
  */
@@ -8934,7 +8934,8 @@
8934
8934
  const list = useList();
8935
8935
  const isActive = vue.computed(() => props.active !== false && (props.active || link.isActive?.value || (root.activatable.value ? isActivated.value : isSelected.value)));
8936
8936
  const isLink = vue.computed(() => props.link !== false && link.isLink.value);
8937
- const isClickable = vue.computed(() => !props.disabled && props.link !== false && (props.link || link.isClickable.value || !!list && (root.selectable.value || root.activatable.value || props.value != null)));
8937
+ const isSelectable = vue.computed(() => !!list && (root.selectable.value || root.activatable.value || props.value != null));
8938
+ const isClickable = vue.computed(() => !props.disabled && props.link !== false && (props.link || link.isClickable.value || isSelectable.value));
8938
8939
  const roundedProps = vue.computed(() => props.rounded || props.nav);
8939
8940
  const color = vue.computed(() => props.color ?? props.activeColor);
8940
8941
  const variantProps = vue.computed(() => ({
@@ -9025,7 +9026,7 @@
9025
9026
  }, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, elevationClasses.value, lineClasses.value, roundedClasses.value, variantClasses.value, props.class],
9026
9027
  "style": [colorStyles.value, dimensionStyles.value, props.style],
9027
9028
  "tabindex": isClickable.value ? list ? -2 : 0 : undefined,
9028
- "aria-selected": root.activatable.value ? isActivated.value : isSelected.value,
9029
+ "aria-selected": isSelectable.value ? root.activatable.value ? isActivated.value : root.selectable.value ? isSelected.value : isActive.value : undefined,
9029
9030
  "onClick": onClick,
9030
9031
  "onKeydown": isClickable.value && !isLink.value && onKeyDown
9031
9032
  }, link.linkProps), {
@@ -18105,21 +18106,23 @@
18105
18106
  internalModel.value = structuredClone(vue.toRaw(model.value));
18106
18107
  emit('cancel');
18107
18108
  }
18108
- let actionsUsed = false;
18109
- useRender(() => {
18110
- const actions = vue.createVNode(vue.Fragment, null, [vue.createVNode(VBtn, {
18109
+ function actions(actionsProps) {
18110
+ return vue.createVNode(vue.Fragment, null, [vue.createVNode(VBtn, vue.mergeProps({
18111
18111
  "disabled": isPristine.value,
18112
18112
  "variant": "text",
18113
18113
  "color": props.color,
18114
18114
  "onClick": cancel,
18115
18115
  "text": t(props.cancelText)
18116
- }, null), vue.createVNode(VBtn, {
18116
+ }, actionsProps), null), vue.createVNode(VBtn, vue.mergeProps({
18117
18117
  "disabled": isPristine.value,
18118
18118
  "variant": "text",
18119
18119
  "color": props.color,
18120
18120
  "onClick": save,
18121
18121
  "text": t(props.okText)
18122
- }, null)]);
18122
+ }, actionsProps), null)]);
18123
+ }
18124
+ let actionsUsed = false;
18125
+ useRender(() => {
18123
18126
  return vue.createVNode(vue.Fragment, null, [slots.default?.({
18124
18127
  model: internalModel,
18125
18128
  save,
@@ -18129,7 +18132,7 @@
18129
18132
  actionsUsed = true;
18130
18133
  return actions;
18131
18134
  }
18132
- }), !actionsUsed && actions]);
18135
+ }), !actionsUsed && actions()]);
18133
18136
  });
18134
18137
  return {
18135
18138
  save,
@@ -28146,7 +28149,7 @@
28146
28149
  },
28147
28150
  "onMousedown": e => e.preventDefault()
28148
28151
  }), {
28149
- actions: !props.hideActions ? () => actions : undefined
28152
+ actions: !props.hideActions ? actions : undefined
28150
28153
  });
28151
28154
  }
28152
28155
  })]
@@ -30403,7 +30406,7 @@
30403
30406
  goTo
30404
30407
  };
30405
30408
  }
30406
- const version$1 = "3.7.4-master.2024-11-15";
30409
+ const version$1 = "3.7.4-master.2024-11-20";
30407
30410
  createVuetify$1.version = version$1;
30408
30411
 
30409
30412
  // Vue's inject() can only be used in setup
@@ -30656,7 +30659,7 @@
30656
30659
 
30657
30660
  /* eslint-disable local-rules/sort-imports */
30658
30661
 
30659
- const version = "3.7.4-master.2024-11-15";
30662
+ const version = "3.7.4-master.2024-11-20";
30660
30663
 
30661
30664
  /* eslint-disable local-rules/sort-imports */
30662
30665