@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-labs.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
|
*/
|
@@ -12788,7 +12788,8 @@
|
|
12788
12788
|
onClick: () => select(item, null)
|
12789
12789
|
});
|
12790
12790
|
return slots.item?.({
|
12791
|
-
item,
|
12791
|
+
item: item.raw,
|
12792
|
+
internalItem: item,
|
12792
12793
|
index,
|
12793
12794
|
props: itemProps
|
12794
12795
|
}) ?? vue.createVNode(VListItem, vue.mergeProps(itemProps, {
|
@@ -12836,11 +12837,13 @@
|
|
12836
12837
|
};
|
12837
12838
|
const hasSlot = hasChips ? !!slots.chip : !!slots.selection;
|
12838
12839
|
const slotContent = hasSlot ? ensureValidVNode(hasChips ? slots.chip({
|
12839
|
-
item,
|
12840
|
+
item: item.raw,
|
12841
|
+
internalItem: item,
|
12840
12842
|
index,
|
12841
12843
|
props: slotProps
|
12842
12844
|
}) : slots.selection({
|
12843
|
-
item,
|
12845
|
+
item: item.raw,
|
12846
|
+
internalItem: item,
|
12844
12847
|
index
|
12845
12848
|
})) : undefined;
|
12846
12849
|
if (hasSlot && !slotContent) return undefined;
|
@@ -13376,7 +13379,8 @@
|
|
13376
13379
|
onClick: () => select(item, null)
|
13377
13380
|
});
|
13378
13381
|
return slots.item?.({
|
13379
|
-
item,
|
13382
|
+
item: item.raw,
|
13383
|
+
internalItem: item,
|
13380
13384
|
index,
|
13381
13385
|
props: itemProps
|
13382
13386
|
}) ?? vue.createVNode(VListItem, vue.mergeProps(itemProps, {
|
@@ -13427,11 +13431,13 @@
|
|
13427
13431
|
};
|
13428
13432
|
const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
|
13429
13433
|
const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
|
13430
|
-
item,
|
13434
|
+
item: item.raw,
|
13435
|
+
internalItem: item,
|
13431
13436
|
index,
|
13432
13437
|
props: slotProps
|
13433
13438
|
}) : slots.selection({
|
13434
|
-
item,
|
13439
|
+
item: item.raw,
|
13440
|
+
internalItem: item,
|
13435
13441
|
index
|
13436
13442
|
})) : undefined;
|
13437
13443
|
if (hasSlot && !slotContent) return undefined;
|
@@ -17288,7 +17294,8 @@
|
|
17288
17294
|
onClick: () => select(item, null)
|
17289
17295
|
});
|
17290
17296
|
return slots.item?.({
|
17291
|
-
item,
|
17297
|
+
item: item.raw,
|
17298
|
+
internalItem: item,
|
17292
17299
|
index,
|
17293
17300
|
props: itemProps
|
17294
17301
|
}) ?? vue.createVNode(VListItem, vue.mergeProps(itemProps, {
|
@@ -17339,11 +17346,13 @@
|
|
17339
17346
|
};
|
17340
17347
|
const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
|
17341
17348
|
const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
|
17342
|
-
item,
|
17349
|
+
item: item.raw,
|
17350
|
+
internalItem: item,
|
17343
17351
|
index,
|
17344
17352
|
props: slotProps
|
17345
17353
|
}) : slots.selection({
|
17346
|
-
item,
|
17354
|
+
item: item.raw,
|
17355
|
+
internalItem: item,
|
17347
17356
|
index
|
17348
17357
|
})) : undefined;
|
17349
17358
|
if (hasSlot && !slotContent) return undefined;
|
@@ -23326,7 +23335,17 @@
|
|
23326
23335
|
"novalidate": true,
|
23327
23336
|
"onReset": onReset,
|
23328
23337
|
"onSubmit": onSubmit
|
23329
|
-
}, [slots.default?.(
|
23338
|
+
}, [slots.default?.({
|
23339
|
+
errors: form.errors.value,
|
23340
|
+
isDisabled: form.isDisabled.value,
|
23341
|
+
isReadonly: form.isReadonly.value,
|
23342
|
+
isValidating: form.isValidating.value,
|
23343
|
+
isValid: form.isValid.value,
|
23344
|
+
items: form.items.value,
|
23345
|
+
validate: form.validate,
|
23346
|
+
reset: form.reset,
|
23347
|
+
resetValidation: form.resetValidation
|
23348
|
+
})]));
|
23330
23349
|
return forwardRefs(form, formRef);
|
23331
23350
|
}
|
23332
23351
|
});
|
@@ -30958,7 +30977,7 @@
|
|
30958
30977
|
};
|
30959
30978
|
});
|
30960
30979
|
}
|
30961
|
-
const version$1 = "3.7.10-next.2025-02-
|
30980
|
+
const version$1 = "3.7.10-next.2025-02-06";
|
30962
30981
|
createVuetify$1.version = version$1;
|
30963
30982
|
|
30964
30983
|
// Vue's inject() can only be used in setup
|
@@ -31211,7 +31230,7 @@
|
|
31211
31230
|
|
31212
31231
|
/* eslint-disable local-rules/sort-imports */
|
31213
31232
|
|
31214
|
-
const version = "3.7.10-next.2025-02-
|
31233
|
+
const version = "3.7.10-next.2025-02-06";
|
31215
31234
|
|
31216
31235
|
/* eslint-disable local-rules/sort-imports */
|
31217
31236
|
|