@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-labs.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
|
*/
|
@@ -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
|
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
|
-
|
18109
|
-
|
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 ?
|
28152
|
+
actions: !props.hideActions ? actions : undefined
|
28150
28153
|
});
|
28151
28154
|
}
|
28152
28155
|
})]
|
@@ -28311,7 +28314,8 @@
|
|
28311
28314
|
"flat": true,
|
28312
28315
|
"key": "increment-btn",
|
28313
28316
|
"height": controlNodeDefaultHeight.value,
|
28314
|
-
"
|
28317
|
+
"data-testid": "increment",
|
28318
|
+
"aria-hidden": "true",
|
28315
28319
|
"icon": incrementIcon.value,
|
28316
28320
|
"onClick": onClickUp,
|
28317
28321
|
"onMousedown": onControlMousedown,
|
@@ -28338,7 +28342,8 @@
|
|
28338
28342
|
"flat": true,
|
28339
28343
|
"key": "decrement-btn",
|
28340
28344
|
"height": controlNodeDefaultHeight.value,
|
28341
|
-
"
|
28345
|
+
"data-testid": "decrement",
|
28346
|
+
"aria-hidden": "true",
|
28342
28347
|
"icon": decrementIcon.value,
|
28343
28348
|
"size": controlNodeSize.value,
|
28344
28349
|
"tabindex": "-1",
|
@@ -30401,7 +30406,7 @@
|
|
30401
30406
|
goTo
|
30402
30407
|
};
|
30403
30408
|
}
|
30404
|
-
const version$1 = "3.7.4-master.2024-11-
|
30409
|
+
const version$1 = "3.7.4-master.2024-11-20";
|
30405
30410
|
createVuetify$1.version = version$1;
|
30406
30411
|
|
30407
30412
|
// Vue's inject() can only be used in setup
|
@@ -30654,7 +30659,7 @@
|
|
30654
30659
|
|
30655
30660
|
/* eslint-disable local-rules/sort-imports */
|
30656
30661
|
|
30657
|
-
const version = "3.7.4-master.2024-11-
|
30662
|
+
const version = "3.7.4-master.2024-11-20";
|
30658
30663
|
|
30659
30664
|
/* eslint-disable local-rules/sort-imports */
|
30660
30665
|
|