@vuetify/nightly 3.7.10-next.2025-02-04 → 3.7.10-next.2025-02-06
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 +6 -3
- package/dist/json/attributes.json +3632 -3632
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +174 -174
- package/dist/json/web-types.json +6553 -6517
- package/dist/vuetify-labs.css +3094 -3095
- package/dist/vuetify-labs.d.ts +295 -688
- package/dist/vuetify-labs.esm.js +32 -13
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +32 -13
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4486 -4487
- package/dist/vuetify.d.ts +350 -743
- package/dist/vuetify.esm.js +32 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +32 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +18 -9
- package/lib/components/VAutocomplete/VAutocomplete.js +6 -3
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.d.ts +18 -9
- package/lib/components/VCombobox/VCombobox.js +6 -3
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VForm/VForm.d.ts +111 -531
- package/lib/components/VForm/VForm.js +11 -1
- package/lib/components/VForm/VForm.js.map +1 -1
- package/lib/components/VSelect/VSelect.d.ts +18 -9
- package/lib/components/VSelect/VSelect.js +6 -3
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +61 -61
- package/lib/framework.js +1 -1
- package/lib/styles/generic/_reset.scss +0 -1
- package/lib/styles/main.css +0 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.10-next.2025-02-
|
2
|
+
* Vuetify v3.7.10-next.2025-02-06
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -13021,7 +13021,8 @@
|
|
13021
13021
|
onClick: () => select(item, null)
|
13022
13022
|
});
|
13023
13023
|
return slots.item?.({
|
13024
|
-
item,
|
13024
|
+
item: item.raw,
|
13025
|
+
internalItem: item,
|
13025
13026
|
index,
|
13026
13027
|
props: itemProps
|
13027
13028
|
}) ?? vue.createVNode(VListItem, vue.mergeProps(itemProps, {
|
@@ -13069,11 +13070,13 @@
|
|
13069
13070
|
};
|
13070
13071
|
const hasSlot = hasChips ? !!slots.chip : !!slots.selection;
|
13071
13072
|
const slotContent = hasSlot ? ensureValidVNode(hasChips ? slots.chip({
|
13072
|
-
item,
|
13073
|
+
item: item.raw,
|
13074
|
+
internalItem: item,
|
13073
13075
|
index,
|
13074
13076
|
props: slotProps
|
13075
13077
|
}) : slots.selection({
|
13076
|
-
item,
|
13078
|
+
item: item.raw,
|
13079
|
+
internalItem: item,
|
13077
13080
|
index
|
13078
13081
|
})) : undefined;
|
13079
13082
|
if (hasSlot && !slotContent) return undefined;
|
@@ -13609,7 +13612,8 @@
|
|
13609
13612
|
onClick: () => select(item, null)
|
13610
13613
|
});
|
13611
13614
|
return slots.item?.({
|
13612
|
-
item,
|
13615
|
+
item: item.raw,
|
13616
|
+
internalItem: item,
|
13613
13617
|
index,
|
13614
13618
|
props: itemProps
|
13615
13619
|
}) ?? vue.createVNode(VListItem, vue.mergeProps(itemProps, {
|
@@ -13660,11 +13664,13 @@
|
|
13660
13664
|
};
|
13661
13665
|
const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
|
13662
13666
|
const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
|
13663
|
-
item,
|
13667
|
+
item: item.raw,
|
13668
|
+
internalItem: item,
|
13664
13669
|
index,
|
13665
13670
|
props: slotProps
|
13666
13671
|
}) : slots.selection({
|
13667
|
-
item,
|
13672
|
+
item: item.raw,
|
13673
|
+
internalItem: item,
|
13668
13674
|
index
|
13669
13675
|
})) : undefined;
|
13670
13676
|
if (hasSlot && !slotContent) return undefined;
|
@@ -17521,7 +17527,8 @@
|
|
17521
17527
|
onClick: () => select(item, null)
|
17522
17528
|
});
|
17523
17529
|
return slots.item?.({
|
17524
|
-
item,
|
17530
|
+
item: item.raw,
|
17531
|
+
internalItem: item,
|
17525
17532
|
index,
|
17526
17533
|
props: itemProps
|
17527
17534
|
}) ?? vue.createVNode(VListItem, vue.mergeProps(itemProps, {
|
@@ -17572,11 +17579,13 @@
|
|
17572
17579
|
};
|
17573
17580
|
const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
|
17574
17581
|
const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
|
17575
|
-
item,
|
17582
|
+
item: item.raw,
|
17583
|
+
internalItem: item,
|
17576
17584
|
index,
|
17577
17585
|
props: slotProps
|
17578
17586
|
}) : slots.selection({
|
17579
|
-
item,
|
17587
|
+
item: item.raw,
|
17588
|
+
internalItem: item,
|
17580
17589
|
index
|
17581
17590
|
})) : undefined;
|
17582
17591
|
if (hasSlot && !slotContent) return undefined;
|
@@ -23559,7 +23568,17 @@
|
|
23559
23568
|
"novalidate": true,
|
23560
23569
|
"onReset": onReset,
|
23561
23570
|
"onSubmit": onSubmit
|
23562
|
-
}, [slots.default?.(
|
23571
|
+
}, [slots.default?.({
|
23572
|
+
errors: form.errors.value,
|
23573
|
+
isDisabled: form.isDisabled.value,
|
23574
|
+
isReadonly: form.isReadonly.value,
|
23575
|
+
isValidating: form.isValidating.value,
|
23576
|
+
isValid: form.isValid.value,
|
23577
|
+
items: form.items.value,
|
23578
|
+
validate: form.validate,
|
23579
|
+
reset: form.reset,
|
23580
|
+
resetValidation: form.resetValidation
|
23581
|
+
})]));
|
23563
23582
|
return forwardRefs(form, formRef);
|
23564
23583
|
}
|
23565
23584
|
});
|
@@ -28470,7 +28489,7 @@
|
|
28470
28489
|
};
|
28471
28490
|
});
|
28472
28491
|
}
|
28473
|
-
const version$1 = "3.7.10-next.2025-02-
|
28492
|
+
const version$1 = "3.7.10-next.2025-02-06";
|
28474
28493
|
createVuetify$1.version = version$1;
|
28475
28494
|
|
28476
28495
|
// Vue's inject() can only be used in setup
|
@@ -28495,7 +28514,7 @@
|
|
28495
28514
|
...options
|
28496
28515
|
});
|
28497
28516
|
};
|
28498
|
-
const version = "3.7.10-next.2025-02-
|
28517
|
+
const version = "3.7.10-next.2025-02-06";
|
28499
28518
|
createVuetify.version = version;
|
28500
28519
|
|
28501
28520
|
exports.blueprints = index;
|