@vuetify/nightly 3.6.3-master.2024-05-06 → 3.6.3-master.2024-05-07

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.
Files changed (61) hide show
  1. package/CHANGELOG.md +8 -2
  2. package/dist/json/attributes.json +148 -8
  3. package/dist/json/importMap-labs.json +4 -4
  4. package/dist/json/importMap.json +112 -112
  5. package/dist/json/tags.json +36 -1
  6. package/dist/json/web-types.json +433 -23
  7. package/dist/vuetify-labs.css +1744 -1744
  8. package/dist/vuetify-labs.d.ts +631 -317
  9. package/dist/vuetify-labs.esm.js +65 -89
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +65 -89
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +4507 -4507
  14. package/dist/vuetify.d.ts +273 -315
  15. package/dist/vuetify.esm.js +12 -14
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +12 -14
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +11 -11
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
  23. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  24. package/lib/components/VAutocomplete/index.d.mts +18 -18
  25. package/lib/components/VBottomSheet/index.d.mts +9 -15
  26. package/lib/components/VCarousel/index.d.mts +6 -6
  27. package/lib/components/VCombobox/index.d.mts +18 -18
  28. package/lib/components/VDialog/index.d.mts +27 -33
  29. package/lib/components/VFileInput/VFileInput.mjs +1 -1
  30. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  31. package/lib/components/VFileInput/index.d.mts +9 -9
  32. package/lib/components/VImg/index.d.mts +6 -6
  33. package/lib/components/VList/VListItem.mjs +3 -2
  34. package/lib/components/VList/VListItem.mjs.map +1 -1
  35. package/lib/components/VList/index.d.mts +6 -6
  36. package/lib/components/VMenu/index.d.mts +27 -33
  37. package/lib/components/VOverlay/VOverlay.mjs +2 -5
  38. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  39. package/lib/components/VOverlay/index.d.mts +9 -15
  40. package/lib/components/VResponsive/VResponsive.mjs +1 -1
  41. package/lib/components/VResponsive/VResponsive.mjs.map +1 -1
  42. package/lib/components/VResponsive/index.d.mts +6 -6
  43. package/lib/components/VSelect/index.d.mts +18 -18
  44. package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
  45. package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
  46. package/lib/components/VSnackbar/index.d.mts +41 -47
  47. package/lib/components/VSpeedDial/index.d.mts +9 -15
  48. package/lib/components/VTooltip/index.d.mts +27 -33
  49. package/lib/components/index.d.mts +236 -278
  50. package/lib/composables/component.mjs +1 -1
  51. package/lib/composables/component.mjs.map +1 -1
  52. package/lib/entry-bundler.mjs +1 -1
  53. package/lib/framework.mjs +1 -1
  54. package/lib/index.d.mts +37 -37
  55. package/lib/labs/VNumberInput/VNumberInput.mjs +57 -81
  56. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  57. package/lib/labs/VNumberInput/index.d.mts +402 -34
  58. package/lib/labs/VSnackbarQueue/index.d.mts +41 -47
  59. package/lib/labs/VTreeview/index.d.mts +6 -6
  60. package/lib/labs/components.d.mts +442 -86
  61. package/package.json +2 -2
@@ -2868,6 +2868,12 @@ type VMessageSlot = {
2868
2868
  message: string;
2869
2869
  };
2870
2870
 
2871
+ type VCounterSlot = {
2872
+ counter: string;
2873
+ max: string | number | undefined;
2874
+ value: string | number | undefined;
2875
+ };
2876
+
2871
2877
  interface VInputSlot {
2872
2878
  id: ComputedRef<string>;
2873
2879
  messagesId: ComputedRef<string>;
@@ -2897,33 +2903,73 @@ type ControlVariant = 'default' | 'stacked' | 'split';
2897
2903
  declare const VNumberInput: {
2898
2904
  new (...args: any[]): vue.CreateComponentPublicInstance<{
2899
2905
  reverse: boolean;
2906
+ flat: boolean;
2900
2907
  style: vue.StyleValue;
2908
+ type: string;
2909
+ active: boolean;
2901
2910
  error: boolean;
2902
2911
  disabled: boolean;
2912
+ messages: string | readonly string[];
2903
2913
  focused: boolean;
2914
+ errorMessages: string | readonly string[] | null;
2915
+ maxErrors: string | number;
2904
2916
  readonly: boolean | null;
2917
+ rules: readonly ValidationRule[];
2905
2918
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
2906
2919
  inset: boolean;
2920
+ tile: boolean;
2907
2921
  density: Density;
2922
+ direction: "horizontal" | "vertical";
2908
2923
  max: number;
2924
+ clearIcon: IconValue;
2925
+ hideSpinButtons: boolean;
2909
2926
  persistentHint: boolean;
2927
+ autofocus: boolean;
2928
+ clearable: boolean;
2929
+ dirty: boolean;
2930
+ persistentClear: boolean;
2931
+ singleLine: boolean;
2932
+ persistentPlaceholder: boolean;
2933
+ persistentCounter: boolean;
2910
2934
  min: number;
2911
2935
  step: number;
2912
2936
  hideInput: boolean;
2913
2937
  controlVariant: ControlVariant;
2914
2938
  } & {
2915
2939
  class?: any;
2940
+ id?: string | undefined;
2916
2941
  label?: string | undefined;
2942
+ width?: string | number | undefined;
2917
2943
  theme?: string | undefined;
2918
2944
  color?: string | undefined;
2945
+ name?: string | undefined;
2946
+ prefix?: string | undefined;
2919
2947
  loading?: string | boolean | undefined;
2948
+ placeholder?: string | undefined;
2949
+ counter?: string | number | boolean | undefined;
2920
2950
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
2921
- modelValue?: number | undefined;
2951
+ modelValue?: any;
2952
+ validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
2953
+ validationValue?: any;
2922
2954
  rounded?: string | number | boolean | undefined;
2955
+ maxWidth?: string | number | undefined;
2956
+ minWidth?: string | number | undefined;
2957
+ role?: string | undefined;
2923
2958
  baseColor?: string | undefined;
2924
2959
  bgColor?: string | undefined;
2960
+ prependIcon?: IconValue | undefined;
2961
+ appendIcon?: IconValue | undefined;
2962
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
2963
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
2964
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
2965
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2966
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2967
+ centerAffix?: boolean | undefined;
2925
2968
  hint?: string | undefined;
2926
2969
  hideDetails?: boolean | "auto" | undefined;
2970
+ suffix?: string | undefined;
2971
+ counterValue?: number | ((value: any) => number) | undefined;
2972
+ modelModifiers?: Record<string, boolean> | undefined;
2927
2973
  } & {
2928
2974
  $children?: {} | vue.VNodeChild | {
2929
2975
  clear?: ((arg: DefaultInputSlot & {
@@ -2934,6 +2980,7 @@ declare const VNumberInput: {
2934
2980
  label: string | undefined;
2935
2981
  props: Record<string, any>;
2936
2982
  }) => vue.VNodeChild) | undefined;
2983
+ counter?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2937
2984
  message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2938
2985
  prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2939
2986
  append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
@@ -2952,6 +2999,7 @@ declare const VNumberInput: {
2952
2999
  label: string | undefined;
2953
3000
  props: Record<string, any>;
2954
3001
  }) => vue.VNodeChild) | undefined;
3002
+ counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2955
3003
  message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2956
3004
  prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2957
3005
  append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
@@ -2970,6 +3018,7 @@ declare const VNumberInput: {
2970
3018
  label: string | undefined;
2971
3019
  props: Record<string, any>;
2972
3020
  }) => vue.VNodeChild) | undefined;
3021
+ "v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
2973
3022
  "v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
2974
3023
  "v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
2975
3024
  "v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
@@ -2984,33 +3033,73 @@ declare const VNumberInput: {
2984
3033
  'update:modelValue': (val: number) => true;
2985
3034
  }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
2986
3035
  reverse: boolean;
3036
+ flat: boolean;
2987
3037
  style: vue.StyleValue;
3038
+ type: string;
3039
+ active: boolean;
2988
3040
  error: boolean;
2989
3041
  disabled: boolean;
3042
+ messages: string | readonly string[];
2990
3043
  focused: boolean;
3044
+ errorMessages: string | readonly string[] | null;
3045
+ maxErrors: string | number;
2991
3046
  readonly: boolean | null;
3047
+ rules: readonly ValidationRule[];
2992
3048
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
2993
3049
  inset: boolean;
3050
+ tile: boolean;
2994
3051
  density: Density;
3052
+ direction: "horizontal" | "vertical";
2995
3053
  max: number;
3054
+ clearIcon: IconValue;
3055
+ hideSpinButtons: boolean;
2996
3056
  persistentHint: boolean;
3057
+ autofocus: boolean;
3058
+ clearable: boolean;
3059
+ dirty: boolean;
3060
+ persistentClear: boolean;
3061
+ singleLine: boolean;
3062
+ persistentPlaceholder: boolean;
3063
+ persistentCounter: boolean;
2997
3064
  min: number;
2998
3065
  step: number;
2999
3066
  hideInput: boolean;
3000
3067
  controlVariant: ControlVariant;
3001
3068
  } & {
3002
3069
  class?: any;
3070
+ id?: string | undefined;
3003
3071
  label?: string | undefined;
3072
+ width?: string | number | undefined;
3004
3073
  theme?: string | undefined;
3005
3074
  color?: string | undefined;
3075
+ name?: string | undefined;
3076
+ prefix?: string | undefined;
3006
3077
  loading?: string | boolean | undefined;
3078
+ placeholder?: string | undefined;
3079
+ counter?: string | number | boolean | undefined;
3007
3080
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
3008
- modelValue?: number | undefined;
3081
+ modelValue?: any;
3082
+ validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
3083
+ validationValue?: any;
3009
3084
  rounded?: string | number | boolean | undefined;
3085
+ maxWidth?: string | number | undefined;
3086
+ minWidth?: string | number | undefined;
3087
+ role?: string | undefined;
3010
3088
  baseColor?: string | undefined;
3011
3089
  bgColor?: string | undefined;
3090
+ prependIcon?: IconValue | undefined;
3091
+ appendIcon?: IconValue | undefined;
3092
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
3093
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
3094
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
3095
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3096
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3097
+ centerAffix?: boolean | undefined;
3012
3098
  hint?: string | undefined;
3013
3099
  hideDetails?: boolean | "auto" | undefined;
3100
+ suffix?: string | undefined;
3101
+ counterValue?: number | ((value: any) => number) | undefined;
3102
+ modelModifiers?: Record<string, boolean> | undefined;
3014
3103
  } & {
3015
3104
  $children?: {} | vue.VNodeChild | {
3016
3105
  clear?: ((arg: DefaultInputSlot & {
@@ -3021,6 +3110,7 @@ declare const VNumberInput: {
3021
3110
  label: string | undefined;
3022
3111
  props: Record<string, any>;
3023
3112
  }) => vue.VNodeChild) | undefined;
3113
+ counter?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
3024
3114
  message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
3025
3115
  prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
3026
3116
  append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
@@ -3039,6 +3129,7 @@ declare const VNumberInput: {
3039
3129
  label: string | undefined;
3040
3130
  props: Record<string, any>;
3041
3131
  }) => vue.VNodeChild) | undefined;
3132
+ counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
3042
3133
  message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
3043
3134
  prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
3044
3135
  append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
@@ -3057,6 +3148,7 @@ declare const VNumberInput: {
3057
3148
  label: string | undefined;
3058
3149
  props: Record<string, any>;
3059
3150
  }) => vue.VNodeChild) | undefined;
3151
+ "v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
3060
3152
  "v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
3061
3153
  "v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
3062
3154
  "v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
@@ -3069,18 +3161,36 @@ declare const VNumberInput: {
3069
3161
  "onUpdate:modelValue"?: ((val: number) => any) | undefined;
3070
3162
  }, {
3071
3163
  reverse: boolean;
3164
+ flat: boolean;
3072
3165
  style: vue.StyleValue;
3166
+ type: string;
3167
+ active: boolean;
3073
3168
  error: boolean;
3074
3169
  disabled: boolean;
3170
+ messages: string | readonly string[];
3075
3171
  focused: boolean;
3172
+ errorMessages: string | readonly string[] | null;
3173
+ maxErrors: string | number;
3076
3174
  readonly: boolean | null;
3077
- modelValue: number;
3175
+ rules: readonly ValidationRule[];
3078
3176
  rounded: string | number | boolean;
3079
3177
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
3080
3178
  inset: boolean;
3179
+ tile: boolean;
3081
3180
  density: Density;
3181
+ direction: "horizontal" | "vertical";
3082
3182
  max: number;
3183
+ clearIcon: IconValue;
3184
+ centerAffix: boolean;
3185
+ hideSpinButtons: boolean;
3083
3186
  persistentHint: boolean;
3187
+ autofocus: boolean;
3188
+ clearable: boolean;
3189
+ dirty: boolean;
3190
+ persistentClear: boolean;
3191
+ singleLine: boolean;
3192
+ persistentPlaceholder: boolean;
3193
+ persistentCounter: boolean;
3084
3194
  min: number;
3085
3195
  step: number;
3086
3196
  hideInput: boolean;
@@ -3100,6 +3210,9 @@ declare const VNumberInput: {
3100
3210
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
3101
3211
  [key: string]: any;
3102
3212
  }>[];
3213
+ counter: (arg: VCounterSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
3214
+ [key: string]: any;
3215
+ }>[];
3103
3216
  message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
3104
3217
  [key: string]: any;
3105
3218
  }>[];
@@ -3133,33 +3246,73 @@ declare const VNumberInput: {
3133
3246
  Defaults: {};
3134
3247
  }, {
3135
3248
  reverse: boolean;
3249
+ flat: boolean;
3136
3250
  style: vue.StyleValue;
3251
+ type: string;
3252
+ active: boolean;
3137
3253
  error: boolean;
3138
3254
  disabled: boolean;
3255
+ messages: string | readonly string[];
3139
3256
  focused: boolean;
3257
+ errorMessages: string | readonly string[] | null;
3258
+ maxErrors: string | number;
3140
3259
  readonly: boolean | null;
3260
+ rules: readonly ValidationRule[];
3141
3261
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
3142
3262
  inset: boolean;
3263
+ tile: boolean;
3143
3264
  density: Density;
3265
+ direction: "horizontal" | "vertical";
3144
3266
  max: number;
3267
+ clearIcon: IconValue;
3268
+ hideSpinButtons: boolean;
3145
3269
  persistentHint: boolean;
3270
+ autofocus: boolean;
3271
+ clearable: boolean;
3272
+ dirty: boolean;
3273
+ persistentClear: boolean;
3274
+ singleLine: boolean;
3275
+ persistentPlaceholder: boolean;
3276
+ persistentCounter: boolean;
3146
3277
  min: number;
3147
3278
  step: number;
3148
3279
  hideInput: boolean;
3149
3280
  controlVariant: ControlVariant;
3150
3281
  } & {
3151
3282
  class?: any;
3283
+ id?: string | undefined;
3152
3284
  label?: string | undefined;
3285
+ width?: string | number | undefined;
3153
3286
  theme?: string | undefined;
3154
3287
  color?: string | undefined;
3288
+ name?: string | undefined;
3289
+ prefix?: string | undefined;
3155
3290
  loading?: string | boolean | undefined;
3291
+ placeholder?: string | undefined;
3292
+ counter?: string | number | boolean | undefined;
3156
3293
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
3157
- modelValue?: number | undefined;
3294
+ modelValue?: any;
3295
+ validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
3296
+ validationValue?: any;
3158
3297
  rounded?: string | number | boolean | undefined;
3298
+ maxWidth?: string | number | undefined;
3299
+ minWidth?: string | number | undefined;
3300
+ role?: string | undefined;
3159
3301
  baseColor?: string | undefined;
3160
3302
  bgColor?: string | undefined;
3303
+ prependIcon?: IconValue | undefined;
3304
+ appendIcon?: IconValue | undefined;
3305
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
3306
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
3307
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
3308
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3309
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3310
+ centerAffix?: boolean | undefined;
3161
3311
  hint?: string | undefined;
3162
3312
  hideDetails?: boolean | "auto" | undefined;
3313
+ suffix?: string | undefined;
3314
+ counterValue?: number | ((value: any) => number) | undefined;
3315
+ modelModifiers?: Record<string, boolean> | undefined;
3163
3316
  } & {
3164
3317
  $children?: {} | vue.VNodeChild | {
3165
3318
  clear?: ((arg: DefaultInputSlot & {
@@ -3170,6 +3323,7 @@ declare const VNumberInput: {
3170
3323
  label: string | undefined;
3171
3324
  props: Record<string, any>;
3172
3325
  }) => vue.VNodeChild) | undefined;
3326
+ counter?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
3173
3327
  message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
3174
3328
  prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
3175
3329
  append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
@@ -3188,6 +3342,7 @@ declare const VNumberInput: {
3188
3342
  label: string | undefined;
3189
3343
  props: Record<string, any>;
3190
3344
  }) => vue.VNodeChild) | undefined;
3345
+ counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
3191
3346
  message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
3192
3347
  prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
3193
3348
  append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
@@ -3206,6 +3361,7 @@ declare const VNumberInput: {
3206
3361
  label: string | undefined;
3207
3362
  props: Record<string, any>;
3208
3363
  }) => vue.VNodeChild) | undefined;
3364
+ "v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
3209
3365
  "v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
3210
3366
  "v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
3211
3367
  "v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
@@ -3218,18 +3374,36 @@ declare const VNumberInput: {
3218
3374
  "onUpdate:modelValue"?: ((val: number) => any) | undefined;
3219
3375
  }, {}, {}, {}, {}, {
3220
3376
  reverse: boolean;
3377
+ flat: boolean;
3221
3378
  style: vue.StyleValue;
3379
+ type: string;
3380
+ active: boolean;
3222
3381
  error: boolean;
3223
3382
  disabled: boolean;
3383
+ messages: string | readonly string[];
3224
3384
  focused: boolean;
3385
+ errorMessages: string | readonly string[] | null;
3386
+ maxErrors: string | number;
3225
3387
  readonly: boolean | null;
3226
- modelValue: number;
3388
+ rules: readonly ValidationRule[];
3227
3389
  rounded: string | number | boolean;
3228
3390
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
3229
3391
  inset: boolean;
3392
+ tile: boolean;
3230
3393
  density: Density;
3394
+ direction: "horizontal" | "vertical";
3231
3395
  max: number;
3396
+ clearIcon: IconValue;
3397
+ centerAffix: boolean;
3398
+ hideSpinButtons: boolean;
3232
3399
  persistentHint: boolean;
3400
+ autofocus: boolean;
3401
+ clearable: boolean;
3402
+ dirty: boolean;
3403
+ persistentClear: boolean;
3404
+ singleLine: boolean;
3405
+ persistentPlaceholder: boolean;
3406
+ persistentCounter: boolean;
3233
3407
  min: number;
3234
3408
  step: number;
3235
3409
  hideInput: boolean;
@@ -3240,33 +3414,73 @@ declare const VNumberInput: {
3240
3414
  __isSuspense?: undefined;
3241
3415
  } & vue.ComponentOptionsBase<{
3242
3416
  reverse: boolean;
3417
+ flat: boolean;
3243
3418
  style: vue.StyleValue;
3419
+ type: string;
3420
+ active: boolean;
3244
3421
  error: boolean;
3245
3422
  disabled: boolean;
3423
+ messages: string | readonly string[];
3246
3424
  focused: boolean;
3425
+ errorMessages: string | readonly string[] | null;
3426
+ maxErrors: string | number;
3247
3427
  readonly: boolean | null;
3428
+ rules: readonly ValidationRule[];
3248
3429
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
3249
3430
  inset: boolean;
3431
+ tile: boolean;
3250
3432
  density: Density;
3433
+ direction: "horizontal" | "vertical";
3251
3434
  max: number;
3435
+ clearIcon: IconValue;
3436
+ hideSpinButtons: boolean;
3252
3437
  persistentHint: boolean;
3438
+ autofocus: boolean;
3439
+ clearable: boolean;
3440
+ dirty: boolean;
3441
+ persistentClear: boolean;
3442
+ singleLine: boolean;
3443
+ persistentPlaceholder: boolean;
3444
+ persistentCounter: boolean;
3253
3445
  min: number;
3254
3446
  step: number;
3255
3447
  hideInput: boolean;
3256
3448
  controlVariant: ControlVariant;
3257
3449
  } & {
3258
3450
  class?: any;
3451
+ id?: string | undefined;
3259
3452
  label?: string | undefined;
3453
+ width?: string | number | undefined;
3260
3454
  theme?: string | undefined;
3261
3455
  color?: string | undefined;
3456
+ name?: string | undefined;
3457
+ prefix?: string | undefined;
3262
3458
  loading?: string | boolean | undefined;
3459
+ placeholder?: string | undefined;
3460
+ counter?: string | number | boolean | undefined;
3263
3461
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
3264
- modelValue?: number | undefined;
3462
+ modelValue?: any;
3463
+ validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
3464
+ validationValue?: any;
3265
3465
  rounded?: string | number | boolean | undefined;
3466
+ maxWidth?: string | number | undefined;
3467
+ minWidth?: string | number | undefined;
3468
+ role?: string | undefined;
3266
3469
  baseColor?: string | undefined;
3267
3470
  bgColor?: string | undefined;
3471
+ prependIcon?: IconValue | undefined;
3472
+ appendIcon?: IconValue | undefined;
3473
+ 'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
3474
+ 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
3475
+ 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
3476
+ 'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3477
+ 'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3478
+ centerAffix?: boolean | undefined;
3268
3479
  hint?: string | undefined;
3269
3480
  hideDetails?: boolean | "auto" | undefined;
3481
+ suffix?: string | undefined;
3482
+ counterValue?: number | ((value: any) => number) | undefined;
3483
+ modelModifiers?: Record<string, boolean> | undefined;
3270
3484
  } & {
3271
3485
  $children?: {} | vue.VNodeChild | {
3272
3486
  clear?: ((arg: DefaultInputSlot & {
@@ -3277,6 +3491,7 @@ declare const VNumberInput: {
3277
3491
  label: string | undefined;
3278
3492
  props: Record<string, any>;
3279
3493
  }) => vue.VNodeChild) | undefined;
3494
+ counter?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
3280
3495
  message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
3281
3496
  prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
3282
3497
  append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
@@ -3295,6 +3510,7 @@ declare const VNumberInput: {
3295
3510
  label: string | undefined;
3296
3511
  props: Record<string, any>;
3297
3512
  }) => vue.VNodeChild) | undefined;
3513
+ counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
3298
3514
  message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
3299
3515
  prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
3300
3516
  append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
@@ -3313,6 +3529,7 @@ declare const VNumberInput: {
3313
3529
  label: string | undefined;
3314
3530
  props: Record<string, any>;
3315
3531
  }) => vue.VNodeChild) | undefined;
3532
+ "v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
3316
3533
  "v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
3317
3534
  "v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
3318
3535
  "v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
@@ -3327,18 +3544,36 @@ declare const VNumberInput: {
3327
3544
  'update:modelValue': (val: number) => true;
3328
3545
  }, string, {
3329
3546
  reverse: boolean;
3547
+ flat: boolean;
3330
3548
  style: vue.StyleValue;
3549
+ type: string;
3550
+ active: boolean;
3331
3551
  error: boolean;
3332
3552
  disabled: boolean;
3553
+ messages: string | readonly string[];
3333
3554
  focused: boolean;
3555
+ errorMessages: string | readonly string[] | null;
3556
+ maxErrors: string | number;
3334
3557
  readonly: boolean | null;
3335
- modelValue: number;
3558
+ rules: readonly ValidationRule[];
3336
3559
  rounded: string | number | boolean;
3337
3560
  variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
3338
3561
  inset: boolean;
3562
+ tile: boolean;
3339
3563
  density: Density;
3564
+ direction: "horizontal" | "vertical";
3340
3565
  max: number;
3566
+ clearIcon: IconValue;
3567
+ centerAffix: boolean;
3568
+ hideSpinButtons: boolean;
3341
3569
  persistentHint: boolean;
3570
+ autofocus: boolean;
3571
+ clearable: boolean;
3572
+ dirty: boolean;
3573
+ persistentClear: boolean;
3574
+ singleLine: boolean;
3575
+ persistentPlaceholder: boolean;
3576
+ persistentCounter: boolean;
3342
3577
  min: number;
3343
3578
  step: number;
3344
3579
  hideInput: boolean;
@@ -3358,6 +3593,9 @@ declare const VNumberInput: {
3358
3593
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
3359
3594
  [key: string]: any;
3360
3595
  }>[];
3596
+ counter: (arg: VCounterSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
3597
+ [key: string]: any;
3598
+ }>[];
3361
3599
  message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
3362
3600
  [key: string]: any;
3363
3601
  }>[];
@@ -3383,26 +3621,58 @@ declare const VNumberInput: {
3383
3621
  [key: string]: any;
3384
3622
  }>[];
3385
3623
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
3386
- modelValue: {
3387
- type: NumberConstructor;
3388
- default: undefined;
3389
- };
3390
- focused: BooleanConstructor;
3391
- 'onUpdate:focused': PropType<(args_0: boolean) => void>;
3392
3624
  reverse: BooleanConstructor;
3625
+ flat: BooleanConstructor;
3393
3626
  class: PropType<any>;
3394
3627
  style: {
3395
3628
  type: PropType<vue.StyleValue>;
3396
3629
  default: null;
3397
3630
  };
3631
+ id: StringConstructor;
3632
+ label: StringConstructor;
3633
+ type: {
3634
+ type: StringConstructor;
3635
+ default: string;
3636
+ };
3637
+ width: (StringConstructor | NumberConstructor)[];
3638
+ active: BooleanConstructor;
3398
3639
  error: BooleanConstructor;
3399
3640
  theme: StringConstructor;
3400
3641
  color: StringConstructor;
3642
+ name: StringConstructor;
3643
+ prefix: StringConstructor;
3401
3644
  disabled: {
3402
3645
  type: BooleanConstructor;
3403
3646
  default: null;
3404
3647
  };
3405
3648
  loading: (StringConstructor | BooleanConstructor)[];
3649
+ messages: {
3650
+ type: PropType<string | readonly string[]>;
3651
+ default: () => never[];
3652
+ };
3653
+ placeholder: StringConstructor;
3654
+ counter: (StringConstructor | NumberConstructor | BooleanConstructor)[];
3655
+ focused: BooleanConstructor;
3656
+ 'onUpdate:focused': PropType<(args_0: boolean) => void>;
3657
+ errorMessages: {
3658
+ type: PropType<string | readonly string[] | null>;
3659
+ default: () => never[];
3660
+ };
3661
+ maxErrors: {
3662
+ type: (StringConstructor | NumberConstructor)[];
3663
+ default: number;
3664
+ };
3665
+ readonly: {
3666
+ type: PropType<boolean | null>;
3667
+ default: null;
3668
+ };
3669
+ rules: {
3670
+ type: PropType<readonly ValidationRule[]>;
3671
+ default: () => never[];
3672
+ };
3673
+ modelValue: null;
3674
+ validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
3675
+ validationValue: null;
3406
3676
  rounded: {
3407
3677
  type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
3408
3678
  default: undefined;
@@ -3412,21 +3682,51 @@ declare const VNumberInput: {
3412
3682
  default: string;
3413
3683
  validator: (v: any) => boolean;
3414
3684
  };
3415
- baseColor: StringConstructor;
3416
- bgColor: StringConstructor;
3417
- label: StringConstructor;
3418
- readonly: {
3419
- type: PropType<boolean | null>;
3420
- default: null;
3421
- };
3685
+ maxWidth: (StringConstructor | NumberConstructor)[];
3686
+ minWidth: (StringConstructor | NumberConstructor)[];
3687
+ tile: BooleanConstructor;
3688
+ role: StringConstructor;
3422
3689
  density: {
3423
3690
  type: PropType<Density>;
3424
3691
  default: string;
3425
3692
  validator: (v: any) => boolean;
3426
3693
  };
3694
+ direction: {
3695
+ type: PropType<"horizontal" | "vertical">;
3696
+ default: string;
3697
+ validator: (v: any) => boolean;
3698
+ };
3699
+ baseColor: StringConstructor;
3700
+ bgColor: StringConstructor;
3701
+ prependIcon: PropType<IconValue>;
3702
+ appendIcon: PropType<IconValue>;
3703
+ clearIcon: {
3704
+ type: PropType<IconValue>;
3705
+ default: string;
3706
+ };
3707
+ 'onClick:clear': PropType<(args_0: MouseEvent) => void>;
3708
+ 'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
3709
+ 'onClick:append': PropType<(args_0: MouseEvent) => void>;
3710
+ 'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
3711
+ 'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
3712
+ centerAffix: {
3713
+ type: BooleanConstructor;
3714
+ default: undefined;
3715
+ };
3716
+ hideSpinButtons: BooleanConstructor;
3427
3717
  hint: StringConstructor;
3428
3718
  persistentHint: BooleanConstructor;
3429
3719
  hideDetails: PropType<boolean | "auto">;
3720
+ autofocus: BooleanConstructor;
3721
+ clearable: BooleanConstructor;
3722
+ dirty: BooleanConstructor;
3723
+ persistentClear: BooleanConstructor;
3724
+ singleLine: BooleanConstructor;
3725
+ persistentPlaceholder: BooleanConstructor;
3726
+ persistentCounter: BooleanConstructor;
3727
+ suffix: StringConstructor;
3728
+ counterValue: PropType<number | ((value: any) => number)>;
3729
+ modelModifiers: PropType<Record<string, boolean>>;
3430
3730
  controlVariant: {
3431
3731
  type: PropType<ControlVariant>;
3432
3732
  default: string;
@@ -3446,26 +3746,58 @@ declare const VNumberInput: {
3446
3746
  default: number;
3447
3747
  };
3448
3748
  }, vue.ExtractPropTypes<{
3449
- modelValue: {
3450
- type: NumberConstructor;
3451
- default: undefined;
3452
- };
3453
- focused: BooleanConstructor;
3454
- 'onUpdate:focused': PropType<(args_0: boolean) => void>;
3455
3749
  reverse: BooleanConstructor;
3750
+ flat: BooleanConstructor;
3456
3751
  class: PropType<any>;
3457
3752
  style: {
3458
3753
  type: PropType<vue.StyleValue>;
3459
3754
  default: null;
3460
3755
  };
3756
+ id: StringConstructor;
3757
+ label: StringConstructor;
3758
+ type: {
3759
+ type: StringConstructor;
3760
+ default: string;
3761
+ };
3762
+ width: (StringConstructor | NumberConstructor)[];
3763
+ active: BooleanConstructor;
3461
3764
  error: BooleanConstructor;
3462
3765
  theme: StringConstructor;
3463
3766
  color: StringConstructor;
3767
+ name: StringConstructor;
3768
+ prefix: StringConstructor;
3464
3769
  disabled: {
3465
3770
  type: BooleanConstructor;
3466
3771
  default: null;
3467
3772
  };
3468
3773
  loading: (StringConstructor | BooleanConstructor)[];
3774
+ messages: {
3775
+ type: PropType<string | readonly string[]>;
3776
+ default: () => never[];
3777
+ };
3778
+ placeholder: StringConstructor;
3779
+ counter: (StringConstructor | NumberConstructor | BooleanConstructor)[];
3780
+ focused: BooleanConstructor;
3781
+ 'onUpdate:focused': PropType<(args_0: boolean) => void>;
3782
+ errorMessages: {
3783
+ type: PropType<string | readonly string[] | null>;
3784
+ default: () => never[];
3785
+ };
3786
+ maxErrors: {
3787
+ type: (StringConstructor | NumberConstructor)[];
3788
+ default: number;
3789
+ };
3790
+ readonly: {
3791
+ type: PropType<boolean | null>;
3792
+ default: null;
3793
+ };
3794
+ rules: {
3795
+ type: PropType<readonly ValidationRule[]>;
3796
+ default: () => never[];
3797
+ };
3798
+ modelValue: null;
3799
+ validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
3800
+ validationValue: null;
3469
3801
  rounded: {
3470
3802
  type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
3471
3803
  default: undefined;
@@ -3475,21 +3807,51 @@ declare const VNumberInput: {
3475
3807
  default: string;
3476
3808
  validator: (v: any) => boolean;
3477
3809
  };
3478
- baseColor: StringConstructor;
3479
- bgColor: StringConstructor;
3480
- label: StringConstructor;
3481
- readonly: {
3482
- type: PropType<boolean | null>;
3483
- default: null;
3484
- };
3810
+ maxWidth: (StringConstructor | NumberConstructor)[];
3811
+ minWidth: (StringConstructor | NumberConstructor)[];
3812
+ tile: BooleanConstructor;
3813
+ role: StringConstructor;
3485
3814
  density: {
3486
3815
  type: PropType<Density>;
3487
3816
  default: string;
3488
3817
  validator: (v: any) => boolean;
3489
3818
  };
3819
+ direction: {
3820
+ type: PropType<"horizontal" | "vertical">;
3821
+ default: string;
3822
+ validator: (v: any) => boolean;
3823
+ };
3824
+ baseColor: StringConstructor;
3825
+ bgColor: StringConstructor;
3826
+ prependIcon: PropType<IconValue>;
3827
+ appendIcon: PropType<IconValue>;
3828
+ clearIcon: {
3829
+ type: PropType<IconValue>;
3830
+ default: string;
3831
+ };
3832
+ 'onClick:clear': PropType<(args_0: MouseEvent) => void>;
3833
+ 'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
3834
+ 'onClick:append': PropType<(args_0: MouseEvent) => void>;
3835
+ 'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
3836
+ 'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
3837
+ centerAffix: {
3838
+ type: BooleanConstructor;
3839
+ default: undefined;
3840
+ };
3841
+ hideSpinButtons: BooleanConstructor;
3490
3842
  hint: StringConstructor;
3491
3843
  persistentHint: BooleanConstructor;
3492
3844
  hideDetails: PropType<boolean | "auto">;
3845
+ autofocus: BooleanConstructor;
3846
+ clearable: BooleanConstructor;
3847
+ dirty: BooleanConstructor;
3848
+ persistentClear: BooleanConstructor;
3849
+ singleLine: BooleanConstructor;
3850
+ persistentPlaceholder: BooleanConstructor;
3851
+ persistentCounter: BooleanConstructor;
3852
+ suffix: StringConstructor;
3853
+ counterValue: PropType<number | ((value: any) => number)>;
3854
+ modelModifiers: PropType<Record<string, boolean>>;
3493
3855
  controlVariant: {
3494
3856
  type: PropType<ControlVariant>;
3495
3857
  default: string;
@@ -4171,7 +4533,7 @@ declare const VSnackbar: {
4171
4533
  component?: vue.Component | undefined;
4172
4534
  })>;
4173
4535
  zIndex: string | number;
4174
- modelValue: boolean | null;
4536
+ modelValue: boolean;
4175
4537
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
4176
4538
  origin: Anchor | "auto" | "overlap";
4177
4539
  vertical: boolean;
@@ -4221,7 +4583,7 @@ declare const VSnackbar: {
4221
4583
  }) => vue.VNodeChild) | undefined;
4222
4584
  default?: (() => vue.VNodeChild) | undefined;
4223
4585
  actions?: ((arg: {
4224
- isActive: Ref<boolean | null>;
4586
+ isActive: Ref<boolean>;
4225
4587
  }) => vue.VNodeChild) | undefined;
4226
4588
  text?: (() => vue.VNodeChild) | undefined;
4227
4589
  };
@@ -4232,7 +4594,7 @@ declare const VSnackbar: {
4232
4594
  }) => vue.VNodeChild) | undefined;
4233
4595
  default?: false | (() => vue.VNodeChild) | undefined;
4234
4596
  actions?: false | ((arg: {
4235
- isActive: Ref<boolean | null>;
4597
+ isActive: Ref<boolean>;
4236
4598
  }) => vue.VNodeChild) | undefined;
4237
4599
  text?: false | (() => vue.VNodeChild) | undefined;
4238
4600
  } | undefined;
@@ -4243,7 +4605,7 @@ declare const VSnackbar: {
4243
4605
  }) => vue.VNodeChild) | undefined;
4244
4606
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
4245
4607
  "v-slot:actions"?: false | ((arg: {
4246
- isActive: Ref<boolean | null>;
4608
+ isActive: Ref<boolean>;
4247
4609
  }) => vue.VNodeChild) | undefined;
4248
4610
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
4249
4611
  } & {
@@ -4259,7 +4621,7 @@ declare const VSnackbar: {
4259
4621
  component?: vue.Component | undefined;
4260
4622
  });
4261
4623
  zIndex: string | number;
4262
- modelValue: boolean | null;
4624
+ modelValue: boolean;
4263
4625
  origin: Anchor | "auto" | "overlap";
4264
4626
  eager: boolean;
4265
4627
  location: Anchor;
@@ -4286,7 +4648,7 @@ declare const VSnackbar: {
4286
4648
  component?: vue.Component | undefined;
4287
4649
  });
4288
4650
  zIndex: string | number;
4289
- modelValue: boolean | null;
4651
+ modelValue: boolean;
4290
4652
  origin: Anchor | "auto" | "overlap";
4291
4653
  eager: boolean;
4292
4654
  location: Anchor;
@@ -4364,7 +4726,7 @@ declare const VSnackbar: {
4364
4726
  component?: vue.Component | undefined;
4365
4727
  });
4366
4728
  zIndex: string | number;
4367
- modelValue: boolean | null;
4729
+ modelValue: boolean;
4368
4730
  origin: Anchor | "auto" | "overlap";
4369
4731
  eager: boolean;
4370
4732
  location: Anchor;
@@ -4471,7 +4833,7 @@ declare const VSnackbar: {
4471
4833
  component?: vue.Component | undefined;
4472
4834
  });
4473
4835
  zIndex: string | number;
4474
- modelValue: boolean | null;
4836
+ modelValue: boolean;
4475
4837
  origin: Anchor | "auto" | "overlap";
4476
4838
  eager: boolean;
4477
4839
  location: Anchor;
@@ -4567,7 +4929,7 @@ declare const VSnackbar: {
4567
4929
  component?: vue.Component | undefined;
4568
4930
  });
4569
4931
  zIndex: string | number;
4570
- modelValue: boolean | null;
4932
+ modelValue: boolean;
4571
4933
  origin: Anchor | "auto" | "overlap";
4572
4934
  eager: boolean;
4573
4935
  location: Anchor;
@@ -4627,7 +4989,7 @@ declare const VSnackbar: {
4627
4989
  component?: vue.Component | undefined;
4628
4990
  });
4629
4991
  zIndex: string | number;
4630
- modelValue: boolean | null;
4992
+ modelValue: boolean;
4631
4993
  origin: Anchor | "auto" | "overlap";
4632
4994
  eager: boolean;
4633
4995
  location: Anchor;
@@ -4720,7 +5082,7 @@ declare const VSnackbar: {
4720
5082
  component?: vue.Component | undefined;
4721
5083
  })>;
4722
5084
  zIndex: string | number;
4723
- modelValue: boolean | null;
5085
+ modelValue: boolean;
4724
5086
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
4725
5087
  origin: Anchor | "auto" | "overlap";
4726
5088
  vertical: boolean;
@@ -4770,7 +5132,7 @@ declare const VSnackbar: {
4770
5132
  }) => vue.VNodeChild) | undefined;
4771
5133
  default?: (() => vue.VNodeChild) | undefined;
4772
5134
  actions?: ((arg: {
4773
- isActive: Ref<boolean | null>;
5135
+ isActive: Ref<boolean>;
4774
5136
  }) => vue.VNodeChild) | undefined;
4775
5137
  text?: (() => vue.VNodeChild) | undefined;
4776
5138
  };
@@ -4781,7 +5143,7 @@ declare const VSnackbar: {
4781
5143
  }) => vue.VNodeChild) | undefined;
4782
5144
  default?: false | (() => vue.VNodeChild) | undefined;
4783
5145
  actions?: false | ((arg: {
4784
- isActive: Ref<boolean | null>;
5146
+ isActive: Ref<boolean>;
4785
5147
  }) => vue.VNodeChild) | undefined;
4786
5148
  text?: false | (() => vue.VNodeChild) | undefined;
4787
5149
  } | undefined;
@@ -4792,7 +5154,7 @@ declare const VSnackbar: {
4792
5154
  }) => vue.VNodeChild) | undefined;
4793
5155
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
4794
5156
  "v-slot:actions"?: false | ((arg: {
4795
- isActive: Ref<boolean | null>;
5157
+ isActive: Ref<boolean>;
4796
5158
  }) => vue.VNodeChild) | undefined;
4797
5159
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
4798
5160
  } & {
@@ -4805,7 +5167,7 @@ declare const VSnackbar: {
4805
5167
  component?: vue.Component | undefined;
4806
5168
  })>;
4807
5169
  zIndex: string | number;
4808
- modelValue: boolean | null;
5170
+ modelValue: boolean;
4809
5171
  rounded: string | number | boolean;
4810
5172
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
4811
5173
  origin: Anchor | "auto" | "overlap";
@@ -4836,7 +5198,7 @@ declare const VSnackbar: {
4836
5198
  [key: string]: any;
4837
5199
  }>[];
4838
5200
  actions: (arg: {
4839
- isActive: Ref<boolean | null>;
5201
+ isActive: Ref<boolean>;
4840
5202
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4841
5203
  [key: string]: any;
4842
5204
  }>[];
@@ -4858,7 +5220,7 @@ declare const VSnackbar: {
4858
5220
  component?: vue.Component | undefined;
4859
5221
  })>;
4860
5222
  zIndex: string | number;
4861
- modelValue: boolean | null;
5223
+ modelValue: boolean;
4862
5224
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
4863
5225
  origin: Anchor | "auto" | "overlap";
4864
5226
  vertical: boolean;
@@ -4908,7 +5270,7 @@ declare const VSnackbar: {
4908
5270
  }) => vue.VNodeChild) | undefined;
4909
5271
  default?: (() => vue.VNodeChild) | undefined;
4910
5272
  actions?: ((arg: {
4911
- isActive: Ref<boolean | null>;
5273
+ isActive: Ref<boolean>;
4912
5274
  }) => vue.VNodeChild) | undefined;
4913
5275
  text?: (() => vue.VNodeChild) | undefined;
4914
5276
  };
@@ -4919,7 +5281,7 @@ declare const VSnackbar: {
4919
5281
  }) => vue.VNodeChild) | undefined;
4920
5282
  default?: false | (() => vue.VNodeChild) | undefined;
4921
5283
  actions?: false | ((arg: {
4922
- isActive: Ref<boolean | null>;
5284
+ isActive: Ref<boolean>;
4923
5285
  }) => vue.VNodeChild) | undefined;
4924
5286
  text?: false | (() => vue.VNodeChild) | undefined;
4925
5287
  } | undefined;
@@ -4930,7 +5292,7 @@ declare const VSnackbar: {
4930
5292
  }) => vue.VNodeChild) | undefined;
4931
5293
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
4932
5294
  "v-slot:actions"?: false | ((arg: {
4933
- isActive: Ref<boolean | null>;
5295
+ isActive: Ref<boolean>;
4934
5296
  }) => vue.VNodeChild) | undefined;
4935
5297
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
4936
5298
  } & {
@@ -4946,7 +5308,7 @@ declare const VSnackbar: {
4946
5308
  component?: vue.Component | undefined;
4947
5309
  });
4948
5310
  zIndex: string | number;
4949
- modelValue: boolean | null;
5311
+ modelValue: boolean;
4950
5312
  origin: Anchor | "auto" | "overlap";
4951
5313
  eager: boolean;
4952
5314
  location: Anchor;
@@ -4973,7 +5335,7 @@ declare const VSnackbar: {
4973
5335
  component?: vue.Component | undefined;
4974
5336
  });
4975
5337
  zIndex: string | number;
4976
- modelValue: boolean | null;
5338
+ modelValue: boolean;
4977
5339
  origin: Anchor | "auto" | "overlap";
4978
5340
  eager: boolean;
4979
5341
  location: Anchor;
@@ -5051,7 +5413,7 @@ declare const VSnackbar: {
5051
5413
  component?: vue.Component | undefined;
5052
5414
  });
5053
5415
  zIndex: string | number;
5054
- modelValue: boolean | null;
5416
+ modelValue: boolean;
5055
5417
  origin: Anchor | "auto" | "overlap";
5056
5418
  eager: boolean;
5057
5419
  location: Anchor;
@@ -5158,7 +5520,7 @@ declare const VSnackbar: {
5158
5520
  component?: vue.Component | undefined;
5159
5521
  });
5160
5522
  zIndex: string | number;
5161
- modelValue: boolean | null;
5523
+ modelValue: boolean;
5162
5524
  origin: Anchor | "auto" | "overlap";
5163
5525
  eager: boolean;
5164
5526
  location: Anchor;
@@ -5254,7 +5616,7 @@ declare const VSnackbar: {
5254
5616
  component?: vue.Component | undefined;
5255
5617
  });
5256
5618
  zIndex: string | number;
5257
- modelValue: boolean | null;
5619
+ modelValue: boolean;
5258
5620
  origin: Anchor | "auto" | "overlap";
5259
5621
  eager: boolean;
5260
5622
  location: Anchor;
@@ -5314,7 +5676,7 @@ declare const VSnackbar: {
5314
5676
  component?: vue.Component | undefined;
5315
5677
  });
5316
5678
  zIndex: string | number;
5317
- modelValue: boolean | null;
5679
+ modelValue: boolean;
5318
5680
  origin: Anchor | "auto" | "overlap";
5319
5681
  eager: boolean;
5320
5682
  location: Anchor;
@@ -5405,7 +5767,7 @@ declare const VSnackbar: {
5405
5767
  component?: vue.Component | undefined;
5406
5768
  })>;
5407
5769
  zIndex: string | number;
5408
- modelValue: boolean | null;
5770
+ modelValue: boolean;
5409
5771
  rounded: string | number | boolean;
5410
5772
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
5411
5773
  origin: Anchor | "auto" | "overlap";
@@ -5437,7 +5799,7 @@ declare const VSnackbar: {
5437
5799
  component?: vue.Component | undefined;
5438
5800
  })>;
5439
5801
  zIndex: string | number;
5440
- modelValue: boolean | null;
5802
+ modelValue: boolean;
5441
5803
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
5442
5804
  origin: Anchor | "auto" | "overlap";
5443
5805
  vertical: boolean;
@@ -5487,7 +5849,7 @@ declare const VSnackbar: {
5487
5849
  }) => vue.VNodeChild) | undefined;
5488
5850
  default?: (() => vue.VNodeChild) | undefined;
5489
5851
  actions?: ((arg: {
5490
- isActive: Ref<boolean | null>;
5852
+ isActive: Ref<boolean>;
5491
5853
  }) => vue.VNodeChild) | undefined;
5492
5854
  text?: (() => vue.VNodeChild) | undefined;
5493
5855
  };
@@ -5498,7 +5860,7 @@ declare const VSnackbar: {
5498
5860
  }) => vue.VNodeChild) | undefined;
5499
5861
  default?: false | (() => vue.VNodeChild) | undefined;
5500
5862
  actions?: false | ((arg: {
5501
- isActive: Ref<boolean | null>;
5863
+ isActive: Ref<boolean>;
5502
5864
  }) => vue.VNodeChild) | undefined;
5503
5865
  text?: false | (() => vue.VNodeChild) | undefined;
5504
5866
  } | undefined;
@@ -5509,7 +5871,7 @@ declare const VSnackbar: {
5509
5871
  }) => vue.VNodeChild) | undefined;
5510
5872
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
5511
5873
  "v-slot:actions"?: false | ((arg: {
5512
- isActive: Ref<boolean | null>;
5874
+ isActive: Ref<boolean>;
5513
5875
  }) => vue.VNodeChild) | undefined;
5514
5876
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
5515
5877
  } & {
@@ -5525,7 +5887,7 @@ declare const VSnackbar: {
5525
5887
  component?: vue.Component | undefined;
5526
5888
  });
5527
5889
  zIndex: string | number;
5528
- modelValue: boolean | null;
5890
+ modelValue: boolean;
5529
5891
  origin: Anchor | "auto" | "overlap";
5530
5892
  eager: boolean;
5531
5893
  location: Anchor;
@@ -5552,7 +5914,7 @@ declare const VSnackbar: {
5552
5914
  component?: vue.Component | undefined;
5553
5915
  });
5554
5916
  zIndex: string | number;
5555
- modelValue: boolean | null;
5917
+ modelValue: boolean;
5556
5918
  origin: Anchor | "auto" | "overlap";
5557
5919
  eager: boolean;
5558
5920
  location: Anchor;
@@ -5630,7 +5992,7 @@ declare const VSnackbar: {
5630
5992
  component?: vue.Component | undefined;
5631
5993
  });
5632
5994
  zIndex: string | number;
5633
- modelValue: boolean | null;
5995
+ modelValue: boolean;
5634
5996
  origin: Anchor | "auto" | "overlap";
5635
5997
  eager: boolean;
5636
5998
  location: Anchor;
@@ -5737,7 +6099,7 @@ declare const VSnackbar: {
5737
6099
  component?: vue.Component | undefined;
5738
6100
  });
5739
6101
  zIndex: string | number;
5740
- modelValue: boolean | null;
6102
+ modelValue: boolean;
5741
6103
  origin: Anchor | "auto" | "overlap";
5742
6104
  eager: boolean;
5743
6105
  location: Anchor;
@@ -5833,7 +6195,7 @@ declare const VSnackbar: {
5833
6195
  component?: vue.Component | undefined;
5834
6196
  });
5835
6197
  zIndex: string | number;
5836
- modelValue: boolean | null;
6198
+ modelValue: boolean;
5837
6199
  origin: Anchor | "auto" | "overlap";
5838
6200
  eager: boolean;
5839
6201
  location: Anchor;
@@ -5893,7 +6255,7 @@ declare const VSnackbar: {
5893
6255
  component?: vue.Component | undefined;
5894
6256
  });
5895
6257
  zIndex: string | number;
5896
- modelValue: boolean | null;
6258
+ modelValue: boolean;
5897
6259
  origin: Anchor | "auto" | "overlap";
5898
6260
  eager: boolean;
5899
6261
  location: Anchor;
@@ -5986,7 +6348,7 @@ declare const VSnackbar: {
5986
6348
  component?: vue.Component | undefined;
5987
6349
  })>;
5988
6350
  zIndex: string | number;
5989
- modelValue: boolean | null;
6351
+ modelValue: boolean;
5990
6352
  rounded: string | number | boolean;
5991
6353
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
5992
6354
  origin: Anchor | "auto" | "overlap";
@@ -6017,7 +6379,7 @@ declare const VSnackbar: {
6017
6379
  [key: string]: any;
6018
6380
  }>[];
6019
6381
  actions: (arg: {
6020
- isActive: Ref<boolean | null>;
6382
+ isActive: Ref<boolean>;
6021
6383
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
6022
6384
  [key: string]: any;
6023
6385
  }>[];
@@ -6055,10 +6417,7 @@ declare const VSnackbar: {
6055
6417
  type: (StringConstructor | NumberConstructor)[];
6056
6418
  default: number;
6057
6419
  };
6058
- modelValue: {
6059
- type: vue.PropType<boolean | null>;
6060
- default: null;
6061
- };
6420
+ modelValue: BooleanConstructor;
6062
6421
  contentClass: null;
6063
6422
  origin: {
6064
6423
  type: vue.PropType<Anchor | "auto" | "overlap">;
@@ -6159,10 +6518,7 @@ declare const VSnackbar: {
6159
6518
  type: (StringConstructor | NumberConstructor)[];
6160
6519
  default: number;
6161
6520
  };
6162
- modelValue: {
6163
- type: vue.PropType<boolean | null>;
6164
- default: null;
6165
- };
6521
+ modelValue: BooleanConstructor;
6166
6522
  contentClass: null;
6167
6523
  origin: {
6168
6524
  type: vue.PropType<Anchor | "auto" | "overlap">;
@@ -8603,7 +8959,7 @@ declare const VTreeviewItem: {
8603
8959
  prependAvatar?: string | undefined;
8604
8960
  activeColor?: string | undefined;
8605
8961
  subtitle?: string | number | undefined;
8606
- lines?: "one" | "two" | "three" | undefined;
8962
+ lines?: false | "one" | "two" | "three" | undefined;
8607
8963
  toggleIcon?: IconValue | undefined;
8608
8964
  } & {
8609
8965
  $children?: vue.VNodeChild | {
@@ -8720,7 +9076,7 @@ declare const VTreeviewItem: {
8720
9076
  prependAvatar?: string | undefined;
8721
9077
  activeColor?: string | undefined;
8722
9078
  subtitle?: string | number | undefined;
8723
- lines?: "one" | "two" | "three" | undefined;
9079
+ lines?: false | "one" | "two" | "three" | undefined;
8724
9080
  toggleIcon?: IconValue | undefined;
8725
9081
  } & {
8726
9082
  $children?: vue.VNodeChild | {
@@ -8893,7 +9249,7 @@ declare const VTreeviewItem: {
8893
9249
  prependAvatar?: string | undefined;
8894
9250
  activeColor?: string | undefined;
8895
9251
  subtitle?: string | number | undefined;
8896
- lines?: "one" | "two" | "three" | undefined;
9252
+ lines?: false | "one" | "two" | "three" | undefined;
8897
9253
  toggleIcon?: IconValue | undefined;
8898
9254
  } & {
8899
9255
  $children?: vue.VNodeChild | {
@@ -9032,7 +9388,7 @@ declare const VTreeviewItem: {
9032
9388
  prependAvatar?: string | undefined;
9033
9389
  activeColor?: string | undefined;
9034
9390
  subtitle?: string | number | undefined;
9035
- lines?: "one" | "two" | "three" | undefined;
9391
+ lines?: false | "one" | "two" | "three" | undefined;
9036
9392
  toggleIcon?: IconValue | undefined;
9037
9393
  } & {
9038
9394
  $children?: vue.VNodeChild | {
@@ -9209,7 +9565,7 @@ declare const VTreeviewItem: {
9209
9565
  appendIcon: vue.PropType<IconValue>;
9210
9566
  baseColor: StringConstructor;
9211
9567
  disabled: BooleanConstructor;
9212
- lines: vue.PropType<"one" | "two" | "three">;
9568
+ lines: vue.PropType<false | "one" | "two" | "three">;
9213
9569
  link: {
9214
9570
  type: BooleanConstructor;
9215
9571
  default: undefined;
@@ -9289,7 +9645,7 @@ declare const VTreeviewItem: {
9289
9645
  appendIcon: vue.PropType<IconValue>;
9290
9646
  baseColor: StringConstructor;
9291
9647
  disabled: BooleanConstructor;
9292
- lines: vue.PropType<"one" | "two" | "three">;
9648
+ lines: vue.PropType<false | "one" | "two" | "three">;
9293
9649
  link: {
9294
9650
  type: BooleanConstructor;
9295
9651
  default: undefined;