@vuetify/nightly 3.8.5-dev.2025-05-14 → 3.8.5-master.2025-05-15
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 -19
- package/dist/json/attributes.json +3205 -3221
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +136 -136
- package/dist/json/tags.json +0 -4
- package/dist/json/web-types.json +6164 -6203
- package/dist/vuetify-labs.cjs +61 -183
- package/dist/vuetify-labs.css +3924 -3952
- package/dist/vuetify-labs.d.ts +1479 -1528
- package/dist/vuetify-labs.esm.js +62 -184
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +61 -183
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +50 -177
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4149 -4177
- package/dist/vuetify.d.ts +947 -998
- package/dist/vuetify.esm.js +51 -178
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +50 -177
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1178 -1184
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +1 -6
- package/lib/components/VAlert/VAlert.d.ts +0 -35
- package/lib/components/VAlert/VAlert.js +9 -14
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +1 -7
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +178 -178
- package/lib/components/VBtnGroup/VBtnGroup.css +7 -30
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +32 -58
- package/lib/components/VBtnGroup/VBtnGroup.js +3 -7
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +17 -44
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +0 -25
- package/lib/components/VCheckbox/VCheckbox.d.ts +15 -15
- package/lib/components/VCombobox/VCombobox.d.ts +178 -178
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +45 -45
- package/lib/components/VInput/VInput.d.ts +16 -16
- package/lib/components/VNumberInput/VNumberInput.d.ts +169 -169
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +15 -15
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +15 -15
- package/lib/components/VSelect/VSelect.d.ts +178 -178
- package/lib/components/VSlider/VSlider.d.ts +15 -15
- package/lib/components/VSwitch/VSwitch.d.ts +15 -15
- package/lib/components/VTextField/VTextField.d.ts +57 -57
- package/lib/components/VTextarea/VTextarea.d.ts +45 -45
- package/lib/components/VValidation/VValidation.d.ts +8 -8
- package/lib/composables/calendar.d.ts +0 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/theme.d.ts +1 -6
- package/lib/composables/theme.js +26 -94
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/validation.d.ts +6 -5
- package/lib/composables/validation.js +4 -29
- package/lib/composables/validation.js.map +1 -1
- package/lib/composables/virtual.js +1 -6
- 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 +45 -50
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +15 -15
- package/lib/labs/VDateInput/VDateInput.d.ts +171 -171
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +11 -7
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/rules/rules.d.ts +9 -5
- package/lib/labs/rules/rules.js +73 -51
- package/lib/labs/rules/rules.js.map +1 -1
- package/lib/util/globals.d.ts +0 -1
- package/lib/util/globals.js +0 -1
- package/lib/util/globals.js.map +1 -1
- package/package.json +1 -2
- package/lib/composables/iconSizes.d.ts +0 -28
- package/lib/composables/iconSizes.js +0 -23
- package/lib/composables/iconSizes.js.map +0 -1
@@ -251,14 +251,14 @@ export declare const makeVCheckboxProps: <Defaults extends {
|
|
251
251
|
default: unknown extends Defaults["maxErrors"] ? string | number : NonNullable<string | number> | Defaults["maxErrors"];
|
252
252
|
};
|
253
253
|
rules: unknown extends Defaults["rules"] ? {
|
254
|
-
type: import("vue").PropType<readonly import("../../types.js").ValidationRule[]>;
|
254
|
+
type: import("vue").PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
255
255
|
default: () => never[];
|
256
256
|
} : Omit<{
|
257
|
-
type: import("vue").PropType<readonly import("../../types.js").ValidationRule[]>;
|
257
|
+
type: import("vue").PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
258
258
|
default: () => never[];
|
259
259
|
}, "type" | "default"> & {
|
260
|
-
type: import("vue").PropType<unknown extends Defaults["rules"] ? readonly import("../../
|
261
|
-
default: unknown extends Defaults["rules"] ? readonly import("../../
|
260
|
+
type: import("vue").PropType<unknown extends Defaults["rules"] ? readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] : readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] | Defaults["rules"]>;
|
261
|
+
default: unknown extends Defaults["rules"] ? readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] : readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] | Defaults["rules"];
|
262
262
|
};
|
263
263
|
validateOn: unknown extends Defaults["validateOn"] ? import("vue").PropType<("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined> : {
|
264
264
|
type: import("vue").PropType<unknown extends Defaults["validateOn"] ? ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined : ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | Defaults["validateOn"] | undefined>;
|
@@ -363,7 +363,7 @@ export declare const VCheckbox: {
|
|
363
363
|
readonly: boolean | null;
|
364
364
|
indeterminate: boolean;
|
365
365
|
messages: string | readonly string[];
|
366
|
-
rules: readonly import("../../
|
366
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
367
367
|
focused: boolean;
|
368
368
|
errorMessages: string | readonly string[] | null;
|
369
369
|
maxErrors: string | number;
|
@@ -397,12 +397,12 @@ export declare const VCheckbox: {
|
|
397
397
|
baseColor?: string | undefined;
|
398
398
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
399
399
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
400
|
-
iconColor?: string | boolean | undefined;
|
401
400
|
defaultsTarget?: string | undefined;
|
402
401
|
trueValue?: any;
|
403
402
|
falseValue?: any;
|
404
403
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
405
404
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
405
|
+
iconColor?: string | boolean | undefined;
|
406
406
|
hint?: string | undefined;
|
407
407
|
hideDetails?: boolean | "auto" | undefined;
|
408
408
|
} & {
|
@@ -419,7 +419,7 @@ export declare const VCheckbox: {
|
|
419
419
|
readonly: boolean | null;
|
420
420
|
indeterminate: boolean;
|
421
421
|
messages: string | readonly string[];
|
422
|
-
rules: readonly import("../../
|
422
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
423
423
|
focused: boolean;
|
424
424
|
errorMessages: string | readonly string[] | null;
|
425
425
|
maxErrors: string | number;
|
@@ -465,7 +465,7 @@ export declare const VCheckbox: {
|
|
465
465
|
readonly: boolean | null;
|
466
466
|
indeterminate: boolean;
|
467
467
|
messages: string | readonly string[];
|
468
|
-
rules: readonly import("../../
|
468
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
469
469
|
focused: boolean;
|
470
470
|
errorMessages: string | readonly string[] | null;
|
471
471
|
maxErrors: string | number;
|
@@ -499,12 +499,12 @@ export declare const VCheckbox: {
|
|
499
499
|
baseColor?: string | undefined;
|
500
500
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
501
501
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
502
|
-
iconColor?: string | boolean | undefined;
|
503
502
|
defaultsTarget?: string | undefined;
|
504
503
|
trueValue?: any;
|
505
504
|
falseValue?: any;
|
506
505
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
507
506
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
507
|
+
iconColor?: string | boolean | undefined;
|
508
508
|
hint?: string | undefined;
|
509
509
|
hideDetails?: boolean | "auto" | undefined;
|
510
510
|
} & {
|
@@ -518,7 +518,7 @@ export declare const VCheckbox: {
|
|
518
518
|
readonly: boolean | null;
|
519
519
|
indeterminate: boolean;
|
520
520
|
messages: string | readonly string[];
|
521
|
-
rules: readonly import("../../
|
521
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
522
522
|
focused: boolean;
|
523
523
|
errorMessages: string | readonly string[] | null;
|
524
524
|
maxErrors: string | number;
|
@@ -547,7 +547,7 @@ export declare const VCheckbox: {
|
|
547
547
|
readonly: boolean | null;
|
548
548
|
indeterminate: boolean;
|
549
549
|
messages: string | readonly string[];
|
550
|
-
rules: readonly import("../../
|
550
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
551
551
|
focused: boolean;
|
552
552
|
errorMessages: string | readonly string[] | null;
|
553
553
|
maxErrors: string | number;
|
@@ -581,12 +581,12 @@ export declare const VCheckbox: {
|
|
581
581
|
baseColor?: string | undefined;
|
582
582
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
583
583
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
584
|
-
iconColor?: string | boolean | undefined;
|
585
584
|
defaultsTarget?: string | undefined;
|
586
585
|
trueValue?: any;
|
587
586
|
falseValue?: any;
|
588
587
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
589
588
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
589
|
+
iconColor?: string | boolean | undefined;
|
590
590
|
hint?: string | undefined;
|
591
591
|
hideDetails?: boolean | "auto" | undefined;
|
592
592
|
} & {
|
@@ -603,7 +603,7 @@ export declare const VCheckbox: {
|
|
603
603
|
readonly: boolean | null;
|
604
604
|
indeterminate: boolean;
|
605
605
|
messages: string | readonly string[];
|
606
|
-
rules: readonly import("../../
|
606
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
607
607
|
focused: boolean;
|
608
608
|
errorMessages: string | readonly string[] | null;
|
609
609
|
maxErrors: string | number;
|
@@ -704,7 +704,7 @@ export declare const VCheckbox: {
|
|
704
704
|
default: number;
|
705
705
|
};
|
706
706
|
rules: {
|
707
|
-
type: import("vue").PropType<readonly import("../../types.js").ValidationRule[]>;
|
707
|
+
type: import("vue").PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
708
708
|
default: () => never[];
|
709
709
|
};
|
710
710
|
validateOn: import("vue").PropType<import("../../composables/validation.js").ValidationProps["validateOn"]>;
|
@@ -803,7 +803,7 @@ export declare const VCheckbox: {
|
|
803
803
|
default: number;
|
804
804
|
};
|
805
805
|
rules: {
|
806
|
-
type: import("vue").PropType<readonly import("../../types.js").ValidationRule[]>;
|
806
|
+
type: import("vue").PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
807
807
|
default: () => never[];
|
808
808
|
};
|
809
809
|
validateOn: import("vue").PropType<import("../../composables/validation.js").ValidationProps["validateOn"]>;
|