@vuetify/nightly 3.7.13-master.2025-02-22 → 3.7.13-master.2025-02-25
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/CHANGELOG.md +14 -3
- package/dist/json/attributes.json +3178 -3174
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +192 -192
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +5800 -5790
- package/dist/vuetify-labs.css +4259 -4253
- package/dist/vuetify-labs.d.ts +9 -0
- package/dist/vuetify-labs.esm.js +18 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +18 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3279 -3279
- package/dist/vuetify.d.ts +64 -64
- package/dist/vuetify.esm.js +4 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +4 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/dist/vuetify.min.js.map +1 -1
- package/lib/composables/density.mjs +1 -1
- package/lib/composables/density.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +64 -64
- package/lib/labs/VNumberInput/VNumberInput.mjs +2 -2
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VTimePicker/VTimePickerControls.sass +16 -16
- package/lib/labs/VTimePicker/_variables.scss +12 -12
- package/lib/labs/VTreeview/VTreeview.mjs +5 -1
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +4 -1
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewItem.css +15 -9
- package/lib/labs/VTreeview/VTreeviewItem.mjs +4 -2
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewItem.sass +16 -10
- package/lib/labs/VTreeview/_variables.scss +2 -5
- package/lib/labs/VTreeview/index.d.mts +9 -0
- package/lib/labs/components.d.mts +9 -0
- package/lib/locale/ja.mjs +19 -19
- package/lib/locale/ja.mjs.map +1 -1
- package/lib/styles/tools/_functions.sass +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.13-master.2025-02-
|
2
|
+
* Vuetify v3.7.13-master.2025-02-25
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -4012,7 +4012,7 @@
|
|
4012
4012
|
|
4013
4013
|
const allowedDensities = [null, 'default', 'comfortable', 'compact'];
|
4014
4014
|
|
4015
|
-
// typeof allowedDensities[number]
|
4015
|
+
// typeof allowedDensities[number] evaluates to any
|
4016
4016
|
// when generating api types for whatever reason.
|
4017
4017
|
|
4018
4018
|
// Composables
|
@@ -28716,8 +28716,8 @@
|
|
28716
28716
|
const model = useProxiedModel(props, 'modelValue', null, val => val ?? null, val => val == null ? val ?? null : clamp(+val, props.min, props.max));
|
28717
28717
|
const _inputText = vue.shallowRef(null);
|
28718
28718
|
vue.watchEffect(() => {
|
28719
|
-
if (isFocused.value && !controlsDisabled.value) ; else if (model.value == null
|
28720
|
-
_inputText.value =
|
28719
|
+
if (isFocused.value && !controlsDisabled.value) ; else if (model.value == null) {
|
28720
|
+
_inputText.value = null;
|
28721
28721
|
} else if (!isNaN(model.value)) {
|
28722
28722
|
_inputText.value = correctPrecision(model.value);
|
28723
28723
|
}
|
@@ -30180,7 +30180,7 @@
|
|
30180
30180
|
return vue.createVNode(vue.Fragment, null, [vue.createVNode(VListItemAction, {
|
30181
30181
|
"start": false
|
30182
30182
|
}, {
|
30183
|
-
default: () => [props.toggleIcon
|
30183
|
+
default: () => [props.toggleIcon ? vue.createVNode(VBtn, {
|
30184
30184
|
"density": "compact",
|
30185
30185
|
"icon": props.toggleIcon,
|
30186
30186
|
"loading": props.loading,
|
@@ -30194,7 +30194,9 @@
|
|
30194
30194
|
"width": "2"
|
30195
30195
|
}, null);
|
30196
30196
|
}
|
30197
|
-
})
|
30197
|
+
}) : vue.createVNode("div", {
|
30198
|
+
"class": "v-treeview-item__level"
|
30199
|
+
}, null)]
|
30198
30200
|
}), slots.prepend?.(slotProps)]);
|
30199
30201
|
} : undefined
|
30200
30202
|
});
|
@@ -30226,7 +30228,8 @@
|
|
30226
30228
|
returnObject: Boolean,
|
30227
30229
|
selectable: Boolean,
|
30228
30230
|
selectedColor: String,
|
30229
|
-
selectStrategy: [String, Function, Object]
|
30231
|
+
selectStrategy: [String, Function, Object],
|
30232
|
+
...makeDensityProps()
|
30230
30233
|
}, 'VTreeviewChildren');
|
30231
30234
|
const VTreeviewChildren = genericComponent()({
|
30232
30235
|
name: 'VTreeviewChildren',
|
@@ -30266,6 +30269,7 @@
|
|
30266
30269
|
"disabled": props.disabled,
|
30267
30270
|
"loading": loading,
|
30268
30271
|
"color": props.selectedColor,
|
30272
|
+
"density": props.density,
|
30269
30273
|
"indeterminate": slotProps.isIndeterminate,
|
30270
30274
|
"indeterminateIcon": props.indeterminateIcon,
|
30271
30275
|
"falseIcon": props.falseIcon,
|
@@ -30342,6 +30346,7 @@
|
|
30342
30346
|
return flat;
|
30343
30347
|
}
|
30344
30348
|
const makeVTreeviewProps = propsFactory({
|
30349
|
+
fluid: Boolean,
|
30345
30350
|
openAll: Boolean,
|
30346
30351
|
search: String,
|
30347
30352
|
...makeFilterProps({
|
@@ -30455,7 +30460,9 @@
|
|
30455
30460
|
return vue.createVNode(VList, vue.mergeProps({
|
30456
30461
|
"ref": vListRef
|
30457
30462
|
}, listProps, {
|
30458
|
-
"class": ['v-treeview',
|
30463
|
+
"class": ['v-treeview', {
|
30464
|
+
'v-treeview--fluid': props.fluid
|
30465
|
+
}, props.class],
|
30459
30466
|
"open-strategy": "multiple",
|
30460
30467
|
"style": props.style,
|
30461
30468
|
"opened": opened.value,
|
@@ -30465,6 +30472,7 @@
|
|
30465
30472
|
"onUpdate:selected": $event => selected.value = $event
|
30466
30473
|
}), {
|
30467
30474
|
default: () => [vue.createVNode(VTreeviewChildren, vue.mergeProps(treeviewChildrenProps, {
|
30475
|
+
"density": props.density,
|
30468
30476
|
"returnObject": props.returnObject,
|
30469
30477
|
"items": items.value
|
30470
30478
|
}), slots)]
|
@@ -30972,7 +30980,7 @@
|
|
30972
30980
|
goTo
|
30973
30981
|
};
|
30974
30982
|
}
|
30975
|
-
const version$1 = "3.7.13-master.2025-02-
|
30983
|
+
const version$1 = "3.7.13-master.2025-02-25";
|
30976
30984
|
createVuetify$1.version = version$1;
|
30977
30985
|
|
30978
30986
|
// Vue's inject() can only be used in setup
|
@@ -31225,7 +31233,7 @@
|
|
31225
31233
|
|
31226
31234
|
/* eslint-disable local-rules/sort-imports */
|
31227
31235
|
|
31228
|
-
const version = "3.7.13-master.2025-02-
|
31236
|
+
const version = "3.7.13-master.2025-02-25";
|
31229
31237
|
|
31230
31238
|
/* eslint-disable local-rules/sort-imports */
|
31231
31239
|
|