@vuetify/nightly 3.7.4-master.2024-11-14 → 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.
- package/dist/json/attributes.json +3484 -3484
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +146 -146
- package/dist/json/web-types.json +6328 -6328
- package/dist/vuetify-labs.css +2980 -2976
- package/dist/vuetify-labs.d.ts +3 -7
- package/dist/vuetify-labs.esm.js +19 -14
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +19 -14
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1127 -1123
- package/dist/vuetify.d.ts +53 -57
- package/dist/vuetify.esm.js +14 -11
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +14 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBadge/VBadge.css +4 -0
- package/lib/components/VBadge/VBadge.sass +4 -0
- package/lib/components/VConfirmEdit/VConfirmEdit.mjs +9 -7
- package/lib/components/VConfirmEdit/VConfirmEdit.mjs.map +1 -1
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.browser.mjs +1 -1
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.browser.mjs.map +1 -1
- package/lib/components/VConfirmEdit/index.d.mts +3 -7
- package/lib/components/VList/VListItem.mjs +3 -2
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/index.d.mts +3 -7
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +50 -50
- package/lib/labs/VDateInput/VDateInput.mjs +1 -1
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/VNumberInput.mjs +4 -2
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/locale/fr.mjs +1 -1
- package/lib/locale/fr.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.4-master.2024-11-
|
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
|
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
|
-
|
18342
|
-
|
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-
|
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-
|
28289
|
+
const version = "3.7.4-master.2024-11-20";
|
28287
28290
|
createVuetify.version = version;
|
28288
28291
|
|
28289
28292
|
exports.blueprints = index;
|