@vuetify/nightly 3.7.10-next.2025-02-04 → 3.7.10-next.2025-02-05
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 +1607 -1607
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +168 -168
- package/dist/json/web-types.json +3006 -2970
- package/dist/vuetify-labs.css +3416 -3417
- package/dist/vuetify-labs.d.ts +258 -651
- 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 +3986 -3987
- package/dist/vuetify.d.ts +347 -740
- 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 +58 -58
- 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.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-05
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -12784,7 +12784,8 @@ const VSelect = genericComponent()({
|
|
12784
12784
|
onClick: () => select(item, null)
|
12785
12785
|
});
|
12786
12786
|
return slots.item?.({
|
12787
|
-
item,
|
12787
|
+
item: item.raw,
|
12788
|
+
internalItem: item,
|
12788
12789
|
index,
|
12789
12790
|
props: itemProps
|
12790
12791
|
}) ?? createVNode(VListItem, mergeProps(itemProps, {
|
@@ -12832,11 +12833,13 @@ const VSelect = genericComponent()({
|
|
12832
12833
|
};
|
12833
12834
|
const hasSlot = hasChips ? !!slots.chip : !!slots.selection;
|
12834
12835
|
const slotContent = hasSlot ? ensureValidVNode(hasChips ? slots.chip({
|
12835
|
-
item,
|
12836
|
+
item: item.raw,
|
12837
|
+
internalItem: item,
|
12836
12838
|
index,
|
12837
12839
|
props: slotProps
|
12838
12840
|
}) : slots.selection({
|
12839
|
-
item,
|
12841
|
+
item: item.raw,
|
12842
|
+
internalItem: item,
|
12840
12843
|
index
|
12841
12844
|
})) : undefined;
|
12842
12845
|
if (hasSlot && !slotContent) return undefined;
|
@@ -13372,7 +13375,8 @@ const VAutocomplete = genericComponent()({
|
|
13372
13375
|
onClick: () => select(item, null)
|
13373
13376
|
});
|
13374
13377
|
return slots.item?.({
|
13375
|
-
item,
|
13378
|
+
item: item.raw,
|
13379
|
+
internalItem: item,
|
13376
13380
|
index,
|
13377
13381
|
props: itemProps
|
13378
13382
|
}) ?? createVNode(VListItem, mergeProps(itemProps, {
|
@@ -13423,11 +13427,13 @@ const VAutocomplete = genericComponent()({
|
|
13423
13427
|
};
|
13424
13428
|
const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
|
13425
13429
|
const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
|
13426
|
-
item,
|
13430
|
+
item: item.raw,
|
13431
|
+
internalItem: item,
|
13427
13432
|
index,
|
13428
13433
|
props: slotProps
|
13429
13434
|
}) : slots.selection({
|
13430
|
-
item,
|
13435
|
+
item: item.raw,
|
13436
|
+
internalItem: item,
|
13431
13437
|
index
|
13432
13438
|
})) : undefined;
|
13433
13439
|
if (hasSlot && !slotContent) return undefined;
|
@@ -17284,7 +17290,8 @@ const VCombobox = genericComponent()({
|
|
17284
17290
|
onClick: () => select(item, null)
|
17285
17291
|
});
|
17286
17292
|
return slots.item?.({
|
17287
|
-
item,
|
17293
|
+
item: item.raw,
|
17294
|
+
internalItem: item,
|
17288
17295
|
index,
|
17289
17296
|
props: itemProps
|
17290
17297
|
}) ?? createVNode(VListItem, mergeProps(itemProps, {
|
@@ -17335,11 +17342,13 @@ const VCombobox = genericComponent()({
|
|
17335
17342
|
};
|
17336
17343
|
const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
|
17337
17344
|
const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
|
17338
|
-
item,
|
17345
|
+
item: item.raw,
|
17346
|
+
internalItem: item,
|
17339
17347
|
index,
|
17340
17348
|
props: slotProps
|
17341
17349
|
}) : slots.selection({
|
17342
|
-
item,
|
17350
|
+
item: item.raw,
|
17351
|
+
internalItem: item,
|
17343
17352
|
index
|
17344
17353
|
})) : undefined;
|
17345
17354
|
if (hasSlot && !slotContent) return undefined;
|
@@ -23322,7 +23331,17 @@ const VForm = genericComponent()({
|
|
23322
23331
|
"novalidate": true,
|
23323
23332
|
"onReset": onReset,
|
23324
23333
|
"onSubmit": onSubmit
|
23325
|
-
}, [slots.default?.(
|
23334
|
+
}, [slots.default?.({
|
23335
|
+
errors: form.errors.value,
|
23336
|
+
isDisabled: form.isDisabled.value,
|
23337
|
+
isReadonly: form.isReadonly.value,
|
23338
|
+
isValidating: form.isValidating.value,
|
23339
|
+
isValid: form.isValid.value,
|
23340
|
+
items: form.items.value,
|
23341
|
+
validate: form.validate,
|
23342
|
+
reset: form.reset,
|
23343
|
+
resetValidation: form.resetValidation
|
23344
|
+
})]));
|
23326
23345
|
return forwardRefs(form, formRef);
|
23327
23346
|
}
|
23328
23347
|
});
|
@@ -30954,7 +30973,7 @@ function createVuetify$1() {
|
|
30954
30973
|
};
|
30955
30974
|
});
|
30956
30975
|
}
|
30957
|
-
const version$1 = "3.7.10-next.2025-02-
|
30976
|
+
const version$1 = "3.7.10-next.2025-02-05";
|
30958
30977
|
createVuetify$1.version = version$1;
|
30959
30978
|
|
30960
30979
|
// Vue's inject() can only be used in setup
|
@@ -31207,7 +31226,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
31207
31226
|
|
31208
31227
|
/* eslint-disable local-rules/sort-imports */
|
31209
31228
|
|
31210
|
-
const version = "3.7.10-next.2025-02-
|
31229
|
+
const version = "3.7.10-next.2025-02-05";
|
31211
31230
|
|
31212
31231
|
/* eslint-disable local-rules/sort-imports */
|
31213
31232
|
|