@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.esm.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
|
*/
|
@@ -6482,7 +6482,15 @@ const VSelectionControl = genericComponent()({
|
|
6482
6482
|
e.stopPropagation();
|
6483
6483
|
}
|
6484
6484
|
function onInput(e) {
|
6485
|
-
if (!isInteractive.value)
|
6485
|
+
if (!isInteractive.value) {
|
6486
|
+
if (input.value) {
|
6487
|
+
// model value is not updated when input is not interactive
|
6488
|
+
// but the internal checked state of the input is still updated,
|
6489
|
+
// so here it's value is restored
|
6490
|
+
input.value.checked = model.value;
|
6491
|
+
}
|
6492
|
+
return;
|
6493
|
+
}
|
6486
6494
|
if (props.readonly && group) {
|
6487
6495
|
nextTick(() => group.forceUpdate());
|
6488
6496
|
}
|
@@ -8935,6 +8943,7 @@ const VListGroup = genericComponent()({
|
|
8935
8943
|
isBooted
|
8936
8944
|
} = useSsrBoot();
|
8937
8945
|
function onClick(e) {
|
8946
|
+
e.stopPropagation();
|
8938
8947
|
open(!isOpen.value, e);
|
8939
8948
|
}
|
8940
8949
|
const activatorProps = computed(() => ({
|
@@ -9268,6 +9277,8 @@ const VListItem = genericComponent()({
|
|
9268
9277
|
}), [[resolveDirective("ripple"), isClickable.value && props.ripple]]);
|
9269
9278
|
});
|
9270
9279
|
return {
|
9280
|
+
activate,
|
9281
|
+
isActivated,
|
9271
9282
|
isGroupActivator,
|
9272
9283
|
isSelected,
|
9273
9284
|
list,
|
@@ -9604,6 +9615,8 @@ const makeVListProps = propsFactory({
|
|
9604
9615
|
},
|
9605
9616
|
slim: Boolean,
|
9606
9617
|
nav: Boolean,
|
9618
|
+
'onClick:open': EventProp(),
|
9619
|
+
'onClick:select': EventProp(),
|
9607
9620
|
...makeNestedProps({
|
9608
9621
|
selectStrategy: 'single-leaf',
|
9609
9622
|
openStrategy: 'list'
|
@@ -12915,7 +12928,7 @@ function filterItems(items, query, options) {
|
|
12915
12928
|
const customMatches = {};
|
12916
12929
|
const defaultMatches = {};
|
12917
12930
|
let match = -1;
|
12918
|
-
if (query && !options?.noFilter) {
|
12931
|
+
if ((query || customFiltersLength > 0) && !options?.noFilter) {
|
12919
12932
|
if (typeof item === 'object') {
|
12920
12933
|
const filterKeys = keys || Object.keys(transformed);
|
12921
12934
|
for (const key of filterKeys) {
|
@@ -21756,6 +21769,9 @@ const VDatePickerMonth = genericComponent()({
|
|
21756
21769
|
});
|
21757
21770
|
function onRangeClick(value) {
|
21758
21771
|
const _value = adapter.startOfDay(value);
|
21772
|
+
if (model.value.length === 0) {
|
21773
|
+
rangeStart.value = undefined;
|
21774
|
+
}
|
21759
21775
|
if (!rangeStart.value) {
|
21760
21776
|
rangeStart.value = _value;
|
21761
21777
|
model.value = [rangeStart.value];
|
@@ -22463,7 +22479,7 @@ const VEmptyState = genericComponent()({
|
|
22463
22479
|
"defaults": {
|
22464
22480
|
VBtn: {
|
22465
22481
|
class: 'v-empty-state__action-btn',
|
22466
|
-
color: props.color,
|
22482
|
+
color: props.color ?? 'surface-variant',
|
22467
22483
|
text: props.actionText
|
22468
22484
|
}
|
22469
22485
|
}
|
@@ -26908,9 +26924,9 @@ const VTabs = genericComponent()({
|
|
26908
26924
|
"key": item.text,
|
26909
26925
|
"value": item.value
|
26910
26926
|
}), {
|
26911
|
-
default: () => slots[`tab.${item.value}`]?.({
|
26927
|
+
default: slots[`tab.${item.value}`] ? () => slots[`tab.${item.value}`]?.({
|
26912
26928
|
item
|
26913
|
-
})
|
26929
|
+
}) : undefined
|
26914
26930
|
}))]
|
26915
26931
|
}), hasWindow && createVNode(VTabsWindow, mergeProps({
|
26916
26932
|
"modelValue": model.value,
|
@@ -28052,7 +28068,7 @@ function createVuetify$1() {
|
|
28052
28068
|
goTo
|
28053
28069
|
};
|
28054
28070
|
}
|
28055
|
-
const version$1 = "3.6.
|
28071
|
+
const version$1 = "3.6.8-master.2024-05-31";
|
28056
28072
|
createVuetify$1.version = version$1;
|
28057
28073
|
|
28058
28074
|
// Vue's inject() can only be used in setup
|
@@ -28077,7 +28093,7 @@ const createVuetify = function () {
|
|
28077
28093
|
...options
|
28078
28094
|
});
|
28079
28095
|
};
|
28080
|
-
const version = "3.6.
|
28096
|
+
const version = "3.6.8-master.2024-05-31";
|
28081
28097
|
createVuetify.version = version;
|
28082
28098
|
|
28083
28099
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|