@vuetify/nightly 3.6.7-master.2024-05-29 → 3.6.8-master.2024-05-31
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 +4 -11
- package/dist/json/attributes.json +5 -5
- package/dist/json/importMap-labs.json +34 -34
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +36 -36
- package/dist/vuetify-labs.css +2940 -2939
- package/dist/vuetify-labs.d.ts +450 -1374
- package/dist/vuetify-labs.esm.js +128 -39
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +128 -39
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +706 -705
- package/dist/vuetify.d.ts +398 -1132
- package/dist/vuetify.esm.js +24 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +24 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +11 -11
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +102 -336
- package/lib/components/VBanner/VBanner.css +1 -0
- package/lib/components/VBanner/VBanner.sass +1 -0
- package/lib/components/VBanner/_variables.scss +1 -0
- package/lib/components/VCombobox/index.d.mts +102 -336
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +3 -0
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VEmptyState/VEmptyState.css +2 -2
- package/lib/components/VEmptyState/VEmptyState.mjs +1 -1
- package/lib/components/VEmptyState/VEmptyState.mjs.map +1 -1
- package/lib/components/VEmptyState/_variables.scss +2 -2
- package/lib/components/VList/VList.mjs +3 -1
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListGroup.mjs +1 -0
- package/lib/components/VList/VListGroup.mjs.map +1 -1
- package/lib/components/VList/VListItem.css +2 -2
- package/lib/components/VList/VListItem.mjs +2 -0
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/VListItem.sass +1 -1
- package/lib/components/VList/index.d.mts +52 -66
- package/lib/components/VSelect/index.d.mts +102 -336
- package/lib/components/VSelectionControl/VSelectionControl.mjs +9 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VTabs/VTabs.mjs +2 -2
- package/lib/components/VTabs/VTabs.mjs.map +1 -1
- package/lib/components/index.d.mts +340 -1074
- package/lib/composables/filter.mjs +1 -1
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +58 -58
- package/lib/labs/VTreeview/VTreeview.mjs +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +30 -25
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewItem.mjs +81 -10
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +110 -300
- package/lib/labs/components.d.mts +110 -300
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.
|
2
|
+
* Vuetify v3.6.8-master.2024-05-31
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -6486,7 +6486,15 @@
|
|
6486
6486
|
e.stopPropagation();
|
6487
6487
|
}
|
6488
6488
|
function onInput(e) {
|
6489
|
-
if (!isInteractive.value)
|
6489
|
+
if (!isInteractive.value) {
|
6490
|
+
if (input.value) {
|
6491
|
+
// model value is not updated when input is not interactive
|
6492
|
+
// but the internal checked state of the input is still updated,
|
6493
|
+
// so here it's value is restored
|
6494
|
+
input.value.checked = model.value;
|
6495
|
+
}
|
6496
|
+
return;
|
6497
|
+
}
|
6490
6498
|
if (props.readonly && group) {
|
6491
6499
|
vue.nextTick(() => group.forceUpdate());
|
6492
6500
|
}
|
@@ -8939,6 +8947,7 @@
|
|
8939
8947
|
isBooted
|
8940
8948
|
} = useSsrBoot();
|
8941
8949
|
function onClick(e) {
|
8950
|
+
e.stopPropagation();
|
8942
8951
|
open(!isOpen.value, e);
|
8943
8952
|
}
|
8944
8953
|
const activatorProps = vue.computed(() => ({
|
@@ -9272,6 +9281,8 @@
|
|
9272
9281
|
}), [[vue.resolveDirective("ripple"), isClickable.value && props.ripple]]);
|
9273
9282
|
});
|
9274
9283
|
return {
|
9284
|
+
activate,
|
9285
|
+
isActivated,
|
9275
9286
|
isGroupActivator,
|
9276
9287
|
isSelected,
|
9277
9288
|
list,
|
@@ -9608,6 +9619,8 @@
|
|
9608
9619
|
},
|
9609
9620
|
slim: Boolean,
|
9610
9621
|
nav: Boolean,
|
9622
|
+
'onClick:open': EventProp(),
|
9623
|
+
'onClick:select': EventProp(),
|
9611
9624
|
...makeNestedProps({
|
9612
9625
|
selectStrategy: 'single-leaf',
|
9613
9626
|
openStrategy: 'list'
|
@@ -12919,7 +12932,7 @@
|
|
12919
12932
|
const customMatches = {};
|
12920
12933
|
const defaultMatches = {};
|
12921
12934
|
let match = -1;
|
12922
|
-
if (query && !options?.noFilter) {
|
12935
|
+
if ((query || customFiltersLength > 0) && !options?.noFilter) {
|
12923
12936
|
if (typeof item === 'object') {
|
12924
12937
|
const filterKeys = keys || Object.keys(transformed);
|
12925
12938
|
for (const key of filterKeys) {
|
@@ -21760,6 +21773,9 @@
|
|
21760
21773
|
});
|
21761
21774
|
function onRangeClick(value) {
|
21762
21775
|
const _value = adapter.startOfDay(value);
|
21776
|
+
if (model.value.length === 0) {
|
21777
|
+
rangeStart.value = undefined;
|
21778
|
+
}
|
21763
21779
|
if (!rangeStart.value) {
|
21764
21780
|
rangeStart.value = _value;
|
21765
21781
|
model.value = [rangeStart.value];
|
@@ -22467,7 +22483,7 @@
|
|
22467
22483
|
"defaults": {
|
22468
22484
|
VBtn: {
|
22469
22485
|
class: 'v-empty-state__action-btn',
|
22470
|
-
color: props.color,
|
22486
|
+
color: props.color ?? 'surface-variant',
|
22471
22487
|
text: props.actionText
|
22472
22488
|
}
|
22473
22489
|
}
|
@@ -26912,9 +26928,9 @@
|
|
26912
26928
|
"key": item.text,
|
26913
26929
|
"value": item.value
|
26914
26930
|
}), {
|
26915
|
-
default: () => slots[`tab.${item.value}`]?.({
|
26931
|
+
default: slots[`tab.${item.value}`] ? () => slots[`tab.${item.value}`]?.({
|
26916
26932
|
item
|
26917
|
-
})
|
26933
|
+
}) : undefined
|
26918
26934
|
}))]
|
26919
26935
|
}), hasWindow && vue.createVNode(VTabsWindow, vue.mergeProps({
|
26920
26936
|
"modelValue": model.value,
|
@@ -28056,7 +28072,7 @@
|
|
28056
28072
|
goTo
|
28057
28073
|
};
|
28058
28074
|
}
|
28059
|
-
const version$1 = "3.6.
|
28075
|
+
const version$1 = "3.6.8-master.2024-05-31";
|
28060
28076
|
createVuetify$1.version = version$1;
|
28061
28077
|
|
28062
28078
|
// Vue's inject() can only be used in setup
|
@@ -28081,7 +28097,7 @@
|
|
28081
28097
|
...options
|
28082
28098
|
});
|
28083
28099
|
};
|
28084
|
-
const version = "3.6.
|
28100
|
+
const version = "3.6.8-master.2024-05-31";
|
28085
28101
|
createVuetify.version = version;
|
28086
28102
|
|
28087
28103
|
exports.blueprints = index;
|