@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.esm.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
|
*/
|
@@ -13017,7 +13017,8 @@ const VSelect = genericComponent()({
|
|
13017
13017
|
onClick: () => select(item, null)
|
13018
13018
|
});
|
13019
13019
|
return slots.item?.({
|
13020
|
-
item,
|
13020
|
+
item: item.raw,
|
13021
|
+
internalItem: item,
|
13021
13022
|
index,
|
13022
13023
|
props: itemProps
|
13023
13024
|
}) ?? createVNode(VListItem, mergeProps(itemProps, {
|
@@ -13065,11 +13066,13 @@ const VSelect = genericComponent()({
|
|
13065
13066
|
};
|
13066
13067
|
const hasSlot = hasChips ? !!slots.chip : !!slots.selection;
|
13067
13068
|
const slotContent = hasSlot ? ensureValidVNode(hasChips ? slots.chip({
|
13068
|
-
item,
|
13069
|
+
item: item.raw,
|
13070
|
+
internalItem: item,
|
13069
13071
|
index,
|
13070
13072
|
props: slotProps
|
13071
13073
|
}) : slots.selection({
|
13072
|
-
item,
|
13074
|
+
item: item.raw,
|
13075
|
+
internalItem: item,
|
13073
13076
|
index
|
13074
13077
|
})) : undefined;
|
13075
13078
|
if (hasSlot && !slotContent) return undefined;
|
@@ -13605,7 +13608,8 @@ const VAutocomplete = genericComponent()({
|
|
13605
13608
|
onClick: () => select(item, null)
|
13606
13609
|
});
|
13607
13610
|
return slots.item?.({
|
13608
|
-
item,
|
13611
|
+
item: item.raw,
|
13612
|
+
internalItem: item,
|
13609
13613
|
index,
|
13610
13614
|
props: itemProps
|
13611
13615
|
}) ?? createVNode(VListItem, mergeProps(itemProps, {
|
@@ -13656,11 +13660,13 @@ const VAutocomplete = genericComponent()({
|
|
13656
13660
|
};
|
13657
13661
|
const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
|
13658
13662
|
const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
|
13659
|
-
item,
|
13663
|
+
item: item.raw,
|
13664
|
+
internalItem: item,
|
13660
13665
|
index,
|
13661
13666
|
props: slotProps
|
13662
13667
|
}) : slots.selection({
|
13663
|
-
item,
|
13668
|
+
item: item.raw,
|
13669
|
+
internalItem: item,
|
13664
13670
|
index
|
13665
13671
|
})) : undefined;
|
13666
13672
|
if (hasSlot && !slotContent) return undefined;
|
@@ -17517,7 +17523,8 @@ const VCombobox = genericComponent()({
|
|
17517
17523
|
onClick: () => select(item, null)
|
17518
17524
|
});
|
17519
17525
|
return slots.item?.({
|
17520
|
-
item,
|
17526
|
+
item: item.raw,
|
17527
|
+
internalItem: item,
|
17521
17528
|
index,
|
17522
17529
|
props: itemProps
|
17523
17530
|
}) ?? createVNode(VListItem, mergeProps(itemProps, {
|
@@ -17568,11 +17575,13 @@ const VCombobox = genericComponent()({
|
|
17568
17575
|
};
|
17569
17576
|
const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
|
17570
17577
|
const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
|
17571
|
-
item,
|
17578
|
+
item: item.raw,
|
17579
|
+
internalItem: item,
|
17572
17580
|
index,
|
17573
17581
|
props: slotProps
|
17574
17582
|
}) : slots.selection({
|
17575
|
-
item,
|
17583
|
+
item: item.raw,
|
17584
|
+
internalItem: item,
|
17576
17585
|
index
|
17577
17586
|
})) : undefined;
|
17578
17587
|
if (hasSlot && !slotContent) return undefined;
|
@@ -23555,7 +23564,17 @@ const VForm = genericComponent()({
|
|
23555
23564
|
"novalidate": true,
|
23556
23565
|
"onReset": onReset,
|
23557
23566
|
"onSubmit": onSubmit
|
23558
|
-
}, [slots.default?.(
|
23567
|
+
}, [slots.default?.({
|
23568
|
+
errors: form.errors.value,
|
23569
|
+
isDisabled: form.isDisabled.value,
|
23570
|
+
isReadonly: form.isReadonly.value,
|
23571
|
+
isValidating: form.isValidating.value,
|
23572
|
+
isValid: form.isValid.value,
|
23573
|
+
items: form.items.value,
|
23574
|
+
validate: form.validate,
|
23575
|
+
reset: form.reset,
|
23576
|
+
resetValidation: form.resetValidation
|
23577
|
+
})]));
|
23559
23578
|
return forwardRefs(form, formRef);
|
23560
23579
|
}
|
23561
23580
|
});
|
@@ -28466,7 +28485,7 @@ function createVuetify$1() {
|
|
28466
28485
|
};
|
28467
28486
|
});
|
28468
28487
|
}
|
28469
|
-
const version$1 = "3.7.10-next.2025-02-
|
28488
|
+
const version$1 = "3.7.10-next.2025-02-06";
|
28470
28489
|
createVuetify$1.version = version$1;
|
28471
28490
|
|
28472
28491
|
// Vue's inject() can only be used in setup
|
@@ -28491,7 +28510,7 @@ const createVuetify = function () {
|
|
28491
28510
|
...options
|
28492
28511
|
});
|
28493
28512
|
};
|
28494
|
-
const version = "3.7.10-next.2025-02-
|
28513
|
+
const version = "3.7.10-next.2025-02-06";
|
28495
28514
|
createVuetify.version = version;
|
28496
28515
|
|
28497
28516
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|