@vuetify/nightly 3.8.4-master.2025-05-13 → 3.8.5-dev.2025-05-14
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 +17 -21
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +3625 -3273
- package/dist/json/importMap-labs.json +32 -28
- package/dist/json/importMap.json +180 -180
- package/dist/json/tags.json +93 -0
- package/dist/json/web-types.json +7373 -6147
- package/dist/vuetify-labs.cjs +424 -130
- package/dist/vuetify-labs.css +4754 -4698
- package/dist/vuetify-labs.d.ts +2285 -1171
- package/dist/vuetify-labs.esm.js +425 -131
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +424 -130
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +151 -41
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2697 -2644
- package/dist/vuetify.d.ts +568 -511
- package/dist/vuetify.esm.js +152 -42
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +151 -41
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1181 -1173
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +6 -1
- package/lib/components/VAlert/VAlert.d.ts +35 -0
- package/lib/components/VAlert/VAlert.js +14 -9
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +94 -94
- package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
- package/lib/components/VBtn/VBtn.css +25 -0
- package/lib/components/VBtn/VBtn.sass +9 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VCheckbox/VCheckbox.d.ts +3 -3
- package/lib/components/VCombobox/VCombobox.d.ts +94 -94
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VNumberInput/VNumberInput.d.ts +89 -89
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +94 -94
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
- package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
- package/lib/components/VSwitch/VSwitch.d.ts +3 -3
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/dateFormat.d.ts +24 -0
- package/lib/composables/dateFormat.js +112 -0
- package/lib/composables/dateFormat.js.map +1 -0
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +75 -67
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/iconsets/mdi.js +2 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.css +4 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
- package/lib/labs/VColorInput/VColorInput.js +129 -0
- package/lib/labs/VColorInput/VColorInput.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.sass +7 -0
- package/lib/labs/VColorInput/_variables.scss +2 -0
- package/lib/labs/VColorInput/index.d.ts +1 -0
- package/lib/labs/VColorInput/index.js +2 -0
- package/lib/labs/VColorInput/index.js.map +1 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +115 -118
- package/lib/labs/VDateInput/VDateInput.js +38 -79
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +7 -11
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/package.json +2 -1
@@ -381,10 +381,10 @@ export declare const VRadioGroup: {
|
|
381
381
|
baseColor?: string | undefined;
|
382
382
|
prependIcon?: IconValue | undefined;
|
383
383
|
appendIcon?: IconValue | undefined;
|
384
|
+
iconColor?: string | boolean | undefined;
|
384
385
|
defaultsTarget?: string | undefined;
|
385
386
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
386
387
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
387
|
-
iconColor?: string | boolean | undefined;
|
388
388
|
hint?: string | undefined;
|
389
389
|
hideDetails?: boolean | "auto" | undefined;
|
390
390
|
} & {}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
@@ -472,10 +472,10 @@ export declare const VRadioGroup: {
|
|
472
472
|
baseColor?: string | undefined;
|
473
473
|
prependIcon?: IconValue | undefined;
|
474
474
|
appendIcon?: IconValue | undefined;
|
475
|
+
iconColor?: string | boolean | undefined;
|
475
476
|
defaultsTarget?: string | undefined;
|
476
477
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
477
478
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
478
|
-
iconColor?: string | boolean | undefined;
|
479
479
|
hint?: string | undefined;
|
480
480
|
hideDetails?: boolean | "auto" | undefined;
|
481
481
|
} & {}, {}, {}, {}, {}, {
|
@@ -548,10 +548,10 @@ export declare const VRadioGroup: {
|
|
548
548
|
baseColor?: string | undefined;
|
549
549
|
prependIcon?: IconValue | undefined;
|
550
550
|
appendIcon?: IconValue | undefined;
|
551
|
+
iconColor?: string | boolean | undefined;
|
551
552
|
defaultsTarget?: string | undefined;
|
552
553
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
553
554
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
554
|
-
iconColor?: string | boolean | undefined;
|
555
555
|
hint?: string | undefined;
|
556
556
|
hideDetails?: boolean | "auto" | undefined;
|
557
557
|
} & {}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit<{
|
@@ -469,9 +469,9 @@ export declare const VRangeSlider: {
|
|
469
469
|
baseColor?: string | undefined;
|
470
470
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
471
471
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
472
|
+
iconColor?: string | boolean | undefined;
|
472
473
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
473
474
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
474
|
-
iconColor?: string | boolean | undefined;
|
475
475
|
hint?: string | undefined;
|
476
476
|
hideDetails?: boolean | "auto" | undefined;
|
477
477
|
trackColor?: string | undefined;
|
@@ -632,9 +632,9 @@ export declare const VRangeSlider: {
|
|
632
632
|
baseColor?: string | undefined;
|
633
633
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
634
634
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
635
|
+
iconColor?: string | boolean | undefined;
|
635
636
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
636
637
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
637
|
-
iconColor?: string | boolean | undefined;
|
638
638
|
hint?: string | undefined;
|
639
639
|
hideDetails?: boolean | "auto" | undefined;
|
640
640
|
trackColor?: string | undefined;
|
@@ -773,9 +773,9 @@ export declare const VRangeSlider: {
|
|
773
773
|
baseColor?: string | undefined;
|
774
774
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
775
775
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
776
|
+
iconColor?: string | boolean | undefined;
|
776
777
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
777
778
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
778
|
-
iconColor?: string | boolean | undefined;
|
779
779
|
hint?: string | undefined;
|
780
780
|
hideDetails?: boolean | "auto" | undefined;
|
781
781
|
trackColor?: string | undefined;
|