vuetify 3.5.11 → 3.5.13

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 (182) hide show
  1. package/dist/_component-variables-labs.sass +2 -1
  2. package/dist/json/attributes.json +243 -19
  3. package/dist/json/importMap-labs.json +14 -2
  4. package/dist/json/importMap.json +118 -118
  5. package/dist/json/tags.json +71 -0
  6. package/dist/json/web-types.json +747 -38
  7. package/dist/vuetify-labs.css +2574 -2324
  8. package/dist/vuetify-labs.d.ts +1117 -154
  9. package/dist/vuetify-labs.esm.js +676 -26
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +676 -26
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +1806 -1797
  14. package/dist/vuetify.d.ts +319 -190
  15. package/dist/vuetify.esm.js +34 -20
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +34 -20
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +94 -93
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAvatar/VAvatar.css +6 -0
  23. package/lib/components/VAvatar/VAvatar.sass +6 -0
  24. package/lib/components/VAvatar/_variables.scss +2 -0
  25. package/lib/components/VCheckbox/index.d.mts +54 -18
  26. package/lib/components/VChip/VChip.css +5 -2
  27. package/lib/components/VChip/VChip.sass +3 -0
  28. package/lib/components/VChip/_variables.scss +2 -2
  29. package/lib/components/VDivider/VDivider.css +1 -1
  30. package/lib/components/VDivider/VDivider.sass +1 -1
  31. package/lib/components/VExpansionPanel/VExpansionPanel.css +3 -3
  32. package/lib/components/VExpansionPanel/VExpansionPanel.sass +2 -2
  33. package/lib/components/VField/VField.css +1 -1
  34. package/lib/components/VField/_variables.scss +1 -1
  35. package/lib/components/VFileInput/index.d.mts +12 -12
  36. package/lib/components/VForm/index.d.mts +42 -42
  37. package/lib/components/VInput/index.d.mts +6 -6
  38. package/lib/components/VRadio/index.d.mts +27 -9
  39. package/lib/components/VRadioGroup/index.d.mts +27 -9
  40. package/lib/components/VSelectionControl/VSelectionControl.mjs +1 -0
  41. package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
  42. package/lib/components/VSelectionControl/index.d.mts +27 -9
  43. package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs +1 -1
  44. package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs.map +1 -1
  45. package/lib/components/VSelectionControlGroup/index.d.mts +27 -9
  46. package/lib/components/VSwitch/index.d.mts +27 -9
  47. package/lib/components/VTextField/index.d.mts +12 -12
  48. package/lib/components/VTextarea/index.d.mts +12 -12
  49. package/lib/components/VValidation/index.d.mts +6 -6
  50. package/lib/components/index.d.mts +279 -153
  51. package/lib/composables/form.mjs.map +1 -1
  52. package/lib/composables/router.mjs +17 -9
  53. package/lib/composables/router.mjs.map +1 -1
  54. package/lib/composables/transition.mjs +5 -2
  55. package/lib/composables/transition.mjs.map +1 -1
  56. package/lib/composables/validation.mjs +5 -4
  57. package/lib/composables/validation.mjs.map +1 -1
  58. package/lib/entry-bundler.mjs +1 -1
  59. package/lib/framework.mjs +1 -1
  60. package/lib/index.d.mts +40 -37
  61. package/lib/labs/VNumberInput/VNumberInput.mjs +4 -4
  62. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  63. package/lib/labs/VTimePicker/SelectingTimes.mjs.map +1 -0
  64. package/lib/labs/VTimePicker/VTimePicker.css +8 -0
  65. package/lib/labs/VTimePicker/VTimePicker.mjs +265 -0
  66. package/lib/labs/VTimePicker/VTimePicker.mjs.map +1 -0
  67. package/lib/labs/VTimePicker/VTimePicker.sass +10 -0
  68. package/lib/labs/VTimePicker/VTimePickerClock.css +130 -0
  69. package/lib/labs/VTimePicker/VTimePickerClock.mjs +244 -0
  70. package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -0
  71. package/lib/{components → labs}/VTimePicker/VTimePickerClock.sass +22 -39
  72. package/lib/labs/VTimePicker/VTimePickerControls.css +104 -0
  73. package/lib/labs/VTimePicker/VTimePickerControls.mjs +125 -0
  74. package/lib/labs/VTimePicker/VTimePickerControls.mjs.map +1 -0
  75. package/lib/labs/VTimePicker/VTimePickerControls.sass +102 -0
  76. package/lib/labs/VTimePicker/_variables.scss +34 -0
  77. package/lib/labs/VTimePicker/index.d.mts +848 -0
  78. package/lib/labs/VTimePicker/index.mjs +4 -0
  79. package/lib/labs/VTimePicker/index.mjs.map +1 -0
  80. package/lib/labs/components.d.mts +835 -1
  81. package/lib/labs/components.mjs +1 -0
  82. package/lib/labs/components.mjs.map +1 -1
  83. package/lib/locale/af.mjs +2 -1
  84. package/lib/locale/af.mjs.map +1 -1
  85. package/lib/locale/ar.mjs +2 -1
  86. package/lib/locale/ar.mjs.map +1 -1
  87. package/lib/locale/az.mjs +2 -1
  88. package/lib/locale/az.mjs.map +1 -1
  89. package/lib/locale/bg.mjs +2 -1
  90. package/lib/locale/bg.mjs.map +1 -1
  91. package/lib/locale/ca.mjs +2 -1
  92. package/lib/locale/ca.mjs.map +1 -1
  93. package/lib/locale/ckb.mjs +2 -1
  94. package/lib/locale/ckb.mjs.map +1 -1
  95. package/lib/locale/cs.mjs +2 -1
  96. package/lib/locale/cs.mjs.map +1 -1
  97. package/lib/locale/da.mjs +2 -1
  98. package/lib/locale/da.mjs.map +1 -1
  99. package/lib/locale/de.mjs +2 -1
  100. package/lib/locale/de.mjs.map +1 -1
  101. package/lib/locale/el.mjs +2 -1
  102. package/lib/locale/el.mjs.map +1 -1
  103. package/lib/locale/en.mjs +2 -1
  104. package/lib/locale/en.mjs.map +1 -1
  105. package/lib/locale/es.mjs +2 -1
  106. package/lib/locale/es.mjs.map +1 -1
  107. package/lib/locale/et.mjs +2 -1
  108. package/lib/locale/et.mjs.map +1 -1
  109. package/lib/locale/fa.mjs +2 -1
  110. package/lib/locale/fa.mjs.map +1 -1
  111. package/lib/locale/fi.mjs +2 -1
  112. package/lib/locale/fi.mjs.map +1 -1
  113. package/lib/locale/fr.mjs +2 -1
  114. package/lib/locale/fr.mjs.map +1 -1
  115. package/lib/locale/he.mjs +2 -1
  116. package/lib/locale/he.mjs.map +1 -1
  117. package/lib/locale/hr.mjs +2 -1
  118. package/lib/locale/hr.mjs.map +1 -1
  119. package/lib/locale/hu.mjs +2 -1
  120. package/lib/locale/hu.mjs.map +1 -1
  121. package/lib/locale/id.mjs +2 -1
  122. package/lib/locale/id.mjs.map +1 -1
  123. package/lib/locale/index.d.mts +43 -0
  124. package/lib/locale/it.mjs +2 -1
  125. package/lib/locale/it.mjs.map +1 -1
  126. package/lib/locale/ja.mjs +2 -1
  127. package/lib/locale/ja.mjs.map +1 -1
  128. package/lib/locale/km.mjs +2 -1
  129. package/lib/locale/km.mjs.map +1 -1
  130. package/lib/locale/ko.mjs +2 -1
  131. package/lib/locale/ko.mjs.map +1 -1
  132. package/lib/locale/lt.mjs +2 -1
  133. package/lib/locale/lt.mjs.map +1 -1
  134. package/lib/locale/lv.mjs +2 -1
  135. package/lib/locale/lv.mjs.map +1 -1
  136. package/lib/locale/nl.mjs +2 -1
  137. package/lib/locale/nl.mjs.map +1 -1
  138. package/lib/locale/no.mjs +2 -1
  139. package/lib/locale/no.mjs.map +1 -1
  140. package/lib/locale/pl.mjs +2 -1
  141. package/lib/locale/pl.mjs.map +1 -1
  142. package/lib/locale/pt.mjs +2 -1
  143. package/lib/locale/pt.mjs.map +1 -1
  144. package/lib/locale/ro.mjs +2 -1
  145. package/lib/locale/ro.mjs.map +1 -1
  146. package/lib/locale/ru.mjs +2 -1
  147. package/lib/locale/ru.mjs.map +1 -1
  148. package/lib/locale/sk.mjs +2 -1
  149. package/lib/locale/sk.mjs.map +1 -1
  150. package/lib/locale/sl.mjs +2 -1
  151. package/lib/locale/sl.mjs.map +1 -1
  152. package/lib/locale/sr-Cyrl.mjs +2 -1
  153. package/lib/locale/sr-Cyrl.mjs.map +1 -1
  154. package/lib/locale/sr-Latn.mjs +2 -1
  155. package/lib/locale/sr-Latn.mjs.map +1 -1
  156. package/lib/locale/sv.mjs +2 -1
  157. package/lib/locale/sv.mjs.map +1 -1
  158. package/lib/locale/th.mjs +2 -1
  159. package/lib/locale/th.mjs.map +1 -1
  160. package/lib/locale/tr.mjs +2 -1
  161. package/lib/locale/tr.mjs.map +1 -1
  162. package/lib/locale/uk.mjs +2 -1
  163. package/lib/locale/uk.mjs.map +1 -1
  164. package/lib/locale/vi.mjs +2 -1
  165. package/lib/locale/vi.mjs.map +1 -1
  166. package/lib/locale/zh-Hans.mjs +2 -1
  167. package/lib/locale/zh-Hans.mjs.map +1 -1
  168. package/lib/locale/zh-Hant.mjs +2 -1
  169. package/lib/locale/zh-Hant.mjs.map +1 -1
  170. package/package.json +4 -4
  171. package/lib/components/VTimePicker/SelectingTimes.mjs.map +0 -1
  172. package/lib/components/VTimePicker/VTimePicker.mjs +0 -288
  173. package/lib/components/VTimePicker/VTimePicker.mjs.map +0 -1
  174. package/lib/components/VTimePicker/VTimePickerClock.mjs +0 -251
  175. package/lib/components/VTimePicker/VTimePickerClock.mjs.map +0 -1
  176. package/lib/components/VTimePicker/VTimePickerTitle.mjs +0 -64
  177. package/lib/components/VTimePicker/VTimePickerTitle.mjs.map +0 -1
  178. package/lib/components/VTimePicker/VTimePickerTitle.sass +0 -61
  179. package/lib/components/VTimePicker/_variables.scss +0 -32
  180. package/lib/components/VTimePicker/index.mjs +0 -12
  181. package/lib/components/VTimePicker/index.mjs.map +0 -1
  182. /package/lib/{components → labs}/VTimePicker/SelectingTimes.mjs +0 -0
@@ -82,6 +82,12 @@
82
82
  .v-avatar--rounded {
83
83
  border-radius: 4px;
84
84
  }
85
+ .v-avatar--start {
86
+ margin-inline-end: 8px;
87
+ }
88
+ .v-avatar--end {
89
+ margin-inline-start: 8px;
90
+ }
85
91
  .v-avatar .v-img {
86
92
  height: 100%;
87
93
  width: 100%;
@@ -24,6 +24,12 @@
24
24
  &--rounded
25
25
  @include tools.rounded($avatar-rounded-border-radius)
26
26
 
27
+ &--start
28
+ margin-inline-end: $avatar-margin-start
29
+
30
+ &--end
31
+ margin-inline-start: $avatar-margin-end
32
+
27
33
  .v-img
28
34
  height: 100%
29
35
  width: 100%
@@ -14,6 +14,8 @@ $avatar-plain-opacity: .62 !default;
14
14
  $avatar-rounded-border-radius: variables.$border-radius-root !default;
15
15
  $avatar-vertical-align: middle !default;
16
16
  $avatar-width: 40px !default;
17
+ $avatar-margin-end: map.get(variables.$grid-gutters, 'md') !default;
18
+ $avatar-margin-start: map.get(variables.$grid-gutters, 'md') !default;
17
19
 
18
20
  $avatar-sizes: () !default;
19
21
  $avatar-sizes: functions.map-deep-merge(
@@ -107,7 +107,9 @@ declare const VCheckbox: {
107
107
  maxErrors: string | number;
108
108
  rules: readonly ValidationRule[];
109
109
  density: Density;
110
- ripple: boolean;
110
+ ripple: boolean | {
111
+ class: string;
112
+ } | undefined;
111
113
  falseIcon: NonNullable<IconValue>;
112
114
  trueIcon: NonNullable<IconValue>;
113
115
  valueComparator: typeof deepEqual;
@@ -156,7 +158,9 @@ declare const VCheckbox: {
156
158
  maxErrors: string | number;
157
159
  rules: readonly ValidationRule[];
158
160
  density: Density;
159
- ripple: boolean;
161
+ ripple: boolean | {
162
+ class: string;
163
+ } | undefined;
160
164
  falseIcon: NonNullable<IconValue>;
161
165
  trueIcon: NonNullable<IconValue>;
162
166
  valueComparator: typeof deepEqual;
@@ -202,7 +206,9 @@ declare const VCheckbox: {
202
206
  maxErrors: string | number;
203
207
  rules: readonly ValidationRule[];
204
208
  density: Density;
205
- ripple: boolean;
209
+ ripple: boolean | {
210
+ class: string;
211
+ } | undefined;
206
212
  falseIcon: NonNullable<IconValue>;
207
213
  trueIcon: NonNullable<IconValue>;
208
214
  valueComparator: typeof deepEqual;
@@ -259,7 +265,9 @@ declare const VCheckbox: {
259
265
  maxErrors: string | number;
260
266
  rules: readonly ValidationRule[];
261
267
  density: Density;
262
- ripple: boolean;
268
+ ripple: boolean | {
269
+ class: string;
270
+ } | undefined;
263
271
  falseIcon: NonNullable<IconValue>;
264
272
  trueIcon: NonNullable<IconValue>;
265
273
  valueComparator: typeof deepEqual;
@@ -305,7 +313,9 @@ declare const VCheckbox: {
305
313
  maxErrors: string | number;
306
314
  rules: readonly ValidationRule[];
307
315
  density: Density;
308
- ripple: boolean;
316
+ ripple: boolean | {
317
+ class: string;
318
+ } | undefined;
309
319
  falseIcon: NonNullable<IconValue>;
310
320
  trueIcon: NonNullable<IconValue>;
311
321
  valueComparator: typeof deepEqual;
@@ -331,7 +341,9 @@ declare const VCheckbox: {
331
341
  maxErrors: string | number;
332
342
  rules: readonly ValidationRule[];
333
343
  density: Density;
334
- ripple: boolean;
344
+ ripple: boolean | {
345
+ class: string;
346
+ } | undefined;
335
347
  falseIcon: NonNullable<IconValue>;
336
348
  trueIcon: NonNullable<IconValue>;
337
349
  valueComparator: typeof deepEqual;
@@ -380,7 +392,9 @@ declare const VCheckbox: {
380
392
  maxErrors: string | number;
381
393
  rules: readonly ValidationRule[];
382
394
  density: Density;
383
- ripple: boolean;
395
+ ripple: boolean | {
396
+ class: string;
397
+ } | undefined;
384
398
  falseIcon: NonNullable<IconValue>;
385
399
  trueIcon: NonNullable<IconValue>;
386
400
  valueComparator: typeof deepEqual;
@@ -456,7 +470,9 @@ declare const VCheckbox: {
456
470
  validator: (v: any) => boolean;
457
471
  };
458
472
  ripple: {
459
- type: BooleanConstructor;
473
+ type: vue.PropType<boolean | {
474
+ class: string;
475
+ } | undefined>;
460
476
  default: boolean;
461
477
  };
462
478
  defaultsTarget: StringConstructor;
@@ -550,7 +566,9 @@ declare const VCheckbox: {
550
566
  validator: (v: any) => boolean;
551
567
  };
552
568
  ripple: {
553
- type: BooleanConstructor;
569
+ type: vue.PropType<boolean | {
570
+ class: string;
571
+ } | undefined>;
554
572
  default: boolean;
555
573
  };
556
574
  defaultsTarget: StringConstructor;
@@ -623,7 +641,9 @@ declare const VCheckboxBtn: {
623
641
  readonly: boolean | null;
624
642
  indeterminate: boolean;
625
643
  density: Density;
626
- ripple: boolean;
644
+ ripple: boolean | {
645
+ class: string;
646
+ } | undefined;
627
647
  falseIcon: NonNullable<IconValue>;
628
648
  trueIcon: NonNullable<IconValue>;
629
649
  valueComparator: typeof deepEqual;
@@ -655,7 +675,9 @@ declare const VCheckboxBtn: {
655
675
  readonly: boolean | null;
656
676
  indeterminate: boolean;
657
677
  density: Density;
658
- ripple: boolean;
678
+ ripple: boolean | {
679
+ class: string;
680
+ } | undefined;
659
681
  falseIcon: NonNullable<IconValue>;
660
682
  trueIcon: NonNullable<IconValue>;
661
683
  valueComparator: typeof deepEqual;
@@ -684,7 +706,9 @@ declare const VCheckboxBtn: {
684
706
  readonly: boolean | null;
685
707
  indeterminate: boolean;
686
708
  density: Density;
687
- ripple: boolean;
709
+ ripple: boolean | {
710
+ class: string;
711
+ } | undefined;
688
712
  falseIcon: NonNullable<IconValue>;
689
713
  trueIcon: NonNullable<IconValue>;
690
714
  valueComparator: typeof deepEqual;
@@ -721,7 +745,9 @@ declare const VCheckboxBtn: {
721
745
  readonly: boolean | null;
722
746
  indeterminate: boolean;
723
747
  density: Density;
724
- ripple: boolean;
748
+ ripple: boolean | {
749
+ class: string;
750
+ } | undefined;
725
751
  falseIcon: NonNullable<IconValue>;
726
752
  trueIcon: NonNullable<IconValue>;
727
753
  valueComparator: typeof deepEqual;
@@ -750,7 +776,9 @@ declare const VCheckboxBtn: {
750
776
  readonly: boolean | null;
751
777
  indeterminate: boolean;
752
778
  density: Density;
753
- ripple: boolean;
779
+ ripple: boolean | {
780
+ class: string;
781
+ } | undefined;
754
782
  falseIcon: NonNullable<IconValue>;
755
783
  trueIcon: NonNullable<IconValue>;
756
784
  valueComparator: typeof deepEqual;
@@ -768,7 +796,9 @@ declare const VCheckboxBtn: {
768
796
  readonly: boolean | null;
769
797
  indeterminate: boolean;
770
798
  density: Density;
771
- ripple: boolean;
799
+ ripple: boolean | {
800
+ class: string;
801
+ } | undefined;
772
802
  falseIcon: NonNullable<IconValue>;
773
803
  trueIcon: NonNullable<IconValue>;
774
804
  valueComparator: typeof deepEqual;
@@ -800,7 +830,9 @@ declare const VCheckboxBtn: {
800
830
  readonly: boolean | null;
801
831
  indeterminate: boolean;
802
832
  density: Density;
803
- ripple: boolean;
833
+ ripple: boolean | {
834
+ class: string;
835
+ } | undefined;
804
836
  falseIcon: NonNullable<IconValue>;
805
837
  trueIcon: NonNullable<IconValue>;
806
838
  valueComparator: typeof deepEqual;
@@ -857,7 +889,9 @@ declare const VCheckboxBtn: {
857
889
  default: NonNullable<IconValue>;
858
890
  };
859
891
  ripple: {
860
- type: BooleanConstructor;
892
+ type: vue.PropType<boolean | {
893
+ class: string;
894
+ } | undefined>;
861
895
  default: boolean;
862
896
  };
863
897
  multiple: {
@@ -915,7 +949,9 @@ declare const VCheckboxBtn: {
915
949
  default: NonNullable<IconValue>;
916
950
  };
917
951
  ripple: {
918
- type: BooleanConstructor;
952
+ type: vue.PropType<boolean | {
953
+ class: string;
954
+ } | undefined>;
919
955
  default: boolean;
920
956
  };
921
957
  multiple: {
@@ -14,6 +14,9 @@
14
14
  border-width: 0;
15
15
  border-radius: 9999px;
16
16
  }
17
+ .v-chip .v-icon {
18
+ --v-icon-size-multiplier: 0.8571428571;
19
+ }
17
20
  .v-chip.v-chip--size-x-small {
18
21
  --v-chip-size: 0.625rem;
19
22
  --v-chip-height: 20px;
@@ -264,11 +267,11 @@
264
267
  }
265
268
 
266
269
  .v-chip.v-chip--density-comfortable {
267
- height: calc(var(--v-chip-height) + -8px);
270
+ height: calc(var(--v-chip-height) + -4px);
268
271
  }
269
272
 
270
273
  .v-chip.v-chip--density-compact {
271
- height: calc(var(--v-chip-height) + -12px);
274
+ height: calc(var(--v-chip-height) + -8px);
272
275
  }
273
276
 
274
277
  .v-chip:hover > .v-chip__overlay {
@@ -14,6 +14,9 @@
14
14
  white-space: $chip-white-space
15
15
  vertical-align: middle
16
16
 
17
+ .v-icon
18
+ --v-icon-size-multiplier: #{$chip-icon-size-multiplier}
19
+
17
20
  @at-root
18
21
  @include chip-sizes()
19
22
  @include chip-density('height', $chip-density)
@@ -12,13 +12,13 @@ $chip-border-thin-width: thin !default;
12
12
  $chip-border-width: 0 !default;
13
13
  $chip-close-size: 18px !default;
14
14
  $chip-color: rgb(var(--v-theme-on-surface-variant)) !default;
15
- $chip-density: ("default": 0, "comfortable": -2, "compact": -3) !default;
15
+ $chip-density: ("default": 0, "comfortable": -1, "compact": -2) !default;
16
16
  $chip-disabled-opacity: 0.3 !default;
17
17
  $chip-elevation: 1 !default;
18
18
  $chip-font-size: tools.map-deep-get(settings.$typography, "button", "size") !default;
19
19
  $chip-font-weight: 400 !default;
20
20
  $chip-height: 32px !default;
21
- $chip-icon-font-size: 1.25rem !default;
21
+ $chip-icon-size-multiplier: calc(18/21) !default;
22
22
  $chip-label-border-radius: settings.$border-radius-root !default;
23
23
  $chip-max-width: 100% !default;
24
24
  $chip-overflow: hidden !default;
@@ -12,7 +12,7 @@
12
12
  align-self: stretch;
13
13
  border-width: 0 thin 0 0;
14
14
  display: inline-flex;
15
- height: inherit;
15
+ height: 100%;
16
16
  margin-left: -1px;
17
17
  max-height: 100%;
18
18
  max-width: 0px;
@@ -15,7 +15,7 @@
15
15
  align-self: stretch
16
16
  border-width: $divider-vertical-border-width
17
17
  display: inline-flex
18
- height: inherit
18
+ height: 100%
19
19
  margin-left: $divider-vertical-margin-left
20
20
  max-height: 100%
21
21
  max-width: 0px
@@ -38,15 +38,15 @@
38
38
  border-top-left-radius: 0 !important;
39
39
  border-top-right-radius: 0 !important;
40
40
  }
41
- .v-expansion-panels--variant-accordion > :first-child {
41
+ .v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
42
42
  border-bottom-left-radius: 0 !important;
43
43
  border-bottom-right-radius: 0 !important;
44
44
  }
45
- .v-expansion-panels--variant-accordion > :last-child {
45
+ .v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
46
46
  border-top-left-radius: 0 !important;
47
47
  border-top-right-radius: 0 !important;
48
48
  }
49
- .v-expansion-panels--variant-accordion > :last-child .v-expansion-panel-title--active {
49
+ .v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
50
50
  border-bottom-left-radius: initial;
51
51
  border-bottom-right-radius: initial;
52
52
  }
@@ -50,11 +50,11 @@
50
50
  border-top-right-radius: 0 !important
51
51
 
52
52
  &--variant-accordion
53
- > :first-child
53
+ > :first-child:not(:last-child)
54
54
  border-bottom-left-radius: 0 !important
55
55
  border-bottom-right-radius: 0 !important
56
56
 
57
- > :last-child
57
+ > :last-child:not(:first-child)
58
58
  border-top-left-radius: 0 !important
59
59
  border-top-right-radius: 0 !important
60
60
 
@@ -113,7 +113,7 @@
113
113
  box-shadow: none;
114
114
  }
115
115
  .v-field--rounded {
116
- border-radius: 9999px;
116
+ border-radius: 24px;
117
117
  }
118
118
  .v-field.v-field--prepended {
119
119
  --v-field-padding-start: 6px;
@@ -4,7 +4,7 @@
4
4
 
5
5
  // INPUT
6
6
  $field-border-radius: settings.$border-radius-root !default;
7
- $field-rounded-border-radius: map-get(settings.$rounded, 'pill') !default;
7
+ $field-rounded-border-radius: map-get(settings.$rounded, 'xl') !default;
8
8
  $field-color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity)) !default;
9
9
  $field-disabled-color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) !default;
10
10
  $field-error-color: rgb(var(--v-theme-error)) !default;
@@ -338,8 +338,8 @@ declare const VFileInput: {
338
338
  hint?: string | undefined;
339
339
  hideDetails?: boolean | "auto" | undefined;
340
340
  } & {}, {
341
- reset: () => void;
342
- resetValidation: () => void;
341
+ reset: () => Promise<void>;
342
+ resetValidation: () => Promise<void>;
343
343
  validate: (silent?: boolean) => Promise<string[]>;
344
344
  isValid: vue.ComputedRef<boolean | null>;
345
345
  errorMessages: vue.ComputedRef<string[]>;
@@ -426,8 +426,8 @@ declare const VFileInput: {
426
426
  hint?: string | undefined;
427
427
  hideDetails?: boolean | "auto" | undefined;
428
428
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
429
- reset: () => void;
430
- resetValidation: () => void;
429
+ reset: () => Promise<void>;
430
+ resetValidation: () => Promise<void>;
431
431
  validate: (silent?: boolean) => Promise<string[]>;
432
432
  isValid: vue.ComputedRef<boolean | null>;
433
433
  errorMessages: vue.ComputedRef<string[]>;
@@ -907,8 +907,8 @@ declare const VFileInput: {
907
907
  hint?: string | undefined;
908
908
  hideDetails?: boolean | "auto" | undefined;
909
909
  } & {}, {
910
- reset: () => void;
911
- resetValidation: () => void;
910
+ reset: () => Promise<void>;
911
+ resetValidation: () => Promise<void>;
912
912
  validate: (silent?: boolean) => Promise<string[]>;
913
913
  isValid: vue.ComputedRef<boolean | null>;
914
914
  errorMessages: vue.ComputedRef<string[]>;
@@ -995,8 +995,8 @@ declare const VFileInput: {
995
995
  hint?: string | undefined;
996
996
  hideDetails?: boolean | "auto" | undefined;
997
997
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
998
- reset: () => void;
999
- resetValidation: () => void;
998
+ reset: () => Promise<void>;
999
+ resetValidation: () => Promise<void>;
1000
1000
  validate: (silent?: boolean) => Promise<string[]>;
1001
1001
  isValid: vue.ComputedRef<boolean | null>;
1002
1002
  errorMessages: vue.ComputedRef<string[]>;
@@ -1299,8 +1299,8 @@ declare const VFileInput: {
1299
1299
  hint?: string | undefined;
1300
1300
  hideDetails?: boolean | "auto" | undefined;
1301
1301
  } & {}, {
1302
- reset: () => void;
1303
- resetValidation: () => void;
1302
+ reset: () => Promise<void>;
1303
+ resetValidation: () => Promise<void>;
1304
1304
  validate: (silent?: boolean) => Promise<string[]>;
1305
1305
  isValid: vue.ComputedRef<boolean | null>;
1306
1306
  errorMessages: vue.ComputedRef<string[]>;
@@ -1387,8 +1387,8 @@ declare const VFileInput: {
1387
1387
  hint?: string | undefined;
1388
1388
  hideDetails?: boolean | "auto" | undefined;
1389
1389
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
1390
- reset: () => void;
1391
- resetValidation: () => void;
1390
+ reset: () => Promise<void>;
1391
+ resetValidation: () => Promise<void>;
1392
1392
  validate: (silent?: boolean) => Promise<string[]>;
1393
1393
  isValid: vue.ComputedRef<boolean | null>;
1394
1394
  errorMessages: vue.ComputedRef<string[]>;
@@ -42,8 +42,8 @@ declare const VForm: {
42
42
  items: vue.Ref<{
43
43
  id: string | number;
44
44
  validate: () => Promise<string[]>;
45
- reset: () => void;
46
- resetValidation: () => void;
45
+ reset: () => Promise<void>;
46
+ resetValidation: () => Promise<void>;
47
47
  isValid: boolean | null;
48
48
  errorMessages: string[];
49
49
  }[]>;
@@ -71,8 +71,8 @@ declare const VForm: {
71
71
  items: vue.Ref<{
72
72
  id: string | number;
73
73
  validate: () => Promise<string[]>;
74
- reset: () => void;
75
- resetValidation: () => void;
74
+ reset: () => Promise<void>;
75
+ resetValidation: () => Promise<void>;
76
76
  isValid: boolean | null;
77
77
  errorMessages: string[];
78
78
  }[]>;
@@ -101,8 +101,8 @@ declare const VForm: {
101
101
  items: vue.Ref<{
102
102
  id: string | number;
103
103
  validate: () => Promise<string[]>;
104
- reset: () => void;
105
- resetValidation: () => void;
104
+ reset: () => Promise<void>;
105
+ resetValidation: () => Promise<void>;
106
106
  isValid: boolean | null;
107
107
  errorMessages: string[];
108
108
  }[]>;
@@ -132,8 +132,8 @@ declare const VForm: {
132
132
  items: vue.Ref<{
133
133
  id: string | number;
134
134
  validate: () => Promise<string[]>;
135
- reset: () => void;
136
- resetValidation: () => void;
135
+ reset: () => Promise<void>;
136
+ resetValidation: () => Promise<void>;
137
137
  isValid: boolean | null;
138
138
  errorMessages: string[];
139
139
  }[]>;
@@ -164,8 +164,8 @@ declare const VForm: {
164
164
  items: vue.Ref<{
165
165
  id: string | number;
166
166
  validate: () => Promise<string[]>;
167
- reset: () => void;
168
- resetValidation: () => void;
167
+ reset: () => Promise<void>;
168
+ resetValidation: () => Promise<void>;
169
169
  isValid: boolean | null;
170
170
  errorMessages: string[];
171
171
  }[]>;
@@ -206,8 +206,8 @@ declare const VForm: {
206
206
  items: vue.Ref<{
207
207
  id: string | number;
208
208
  validate: () => Promise<string[]>;
209
- reset: () => void;
210
- resetValidation: () => void;
209
+ reset: () => Promise<void>;
210
+ resetValidation: () => Promise<void>;
211
211
  isValid: boolean | null;
212
212
  errorMessages: string[];
213
213
  }[]>;
@@ -235,8 +235,8 @@ declare const VForm: {
235
235
  items: vue.Ref<{
236
236
  id: string | number;
237
237
  validate: () => Promise<string[]>;
238
- reset: () => void;
239
- resetValidation: () => void;
238
+ reset: () => Promise<void>;
239
+ resetValidation: () => Promise<void>;
240
240
  isValid: boolean | null;
241
241
  errorMessages: string[];
242
242
  }[]>;
@@ -265,8 +265,8 @@ declare const VForm: {
265
265
  items: vue.Ref<{
266
266
  id: string | number;
267
267
  validate: () => Promise<string[]>;
268
- reset: () => void;
269
- resetValidation: () => void;
268
+ reset: () => Promise<void>;
269
+ resetValidation: () => Promise<void>;
270
270
  isValid: boolean | null;
271
271
  errorMessages: string[];
272
272
  }[]>;
@@ -296,8 +296,8 @@ declare const VForm: {
296
296
  items: vue.Ref<{
297
297
  id: string | number;
298
298
  validate: () => Promise<string[]>;
299
- reset: () => void;
300
- resetValidation: () => void;
299
+ reset: () => Promise<void>;
300
+ resetValidation: () => Promise<void>;
301
301
  isValid: boolean | null;
302
302
  errorMessages: string[];
303
303
  }[]>;
@@ -336,8 +336,8 @@ declare const VForm: {
336
336
  items: vue.Ref<{
337
337
  id: string | number;
338
338
  validate: () => Promise<string[]>;
339
- reset: () => void;
340
- resetValidation: () => void;
339
+ reset: () => Promise<void>;
340
+ resetValidation: () => Promise<void>;
341
341
  isValid: boolean | null;
342
342
  errorMessages: string[];
343
343
  }[]>;
@@ -385,8 +385,8 @@ declare const VForm: {
385
385
  items: vue.Ref<{
386
386
  id: string | number;
387
387
  validate: () => Promise<string[]>;
388
- reset: () => void;
389
- resetValidation: () => void;
388
+ reset: () => Promise<void>;
389
+ resetValidation: () => Promise<void>;
390
390
  isValid: boolean | null;
391
391
  errorMessages: string[];
392
392
  }[]>;
@@ -414,8 +414,8 @@ declare const VForm: {
414
414
  items: vue.Ref<{
415
415
  id: string | number;
416
416
  validate: () => Promise<string[]>;
417
- reset: () => void;
418
- resetValidation: () => void;
417
+ reset: () => Promise<void>;
418
+ resetValidation: () => Promise<void>;
419
419
  isValid: boolean | null;
420
420
  errorMessages: string[];
421
421
  }[]>;
@@ -444,8 +444,8 @@ declare const VForm: {
444
444
  items: vue.Ref<{
445
445
  id: string | number;
446
446
  validate: () => Promise<string[]>;
447
- reset: () => void;
448
- resetValidation: () => void;
447
+ reset: () => Promise<void>;
448
+ resetValidation: () => Promise<void>;
449
449
  isValid: boolean | null;
450
450
  errorMessages: string[];
451
451
  }[]>;
@@ -475,8 +475,8 @@ declare const VForm: {
475
475
  items: vue.Ref<{
476
476
  id: string | number;
477
477
  validate: () => Promise<string[]>;
478
- reset: () => void;
479
- resetValidation: () => void;
478
+ reset: () => Promise<void>;
479
+ resetValidation: () => Promise<void>;
480
480
  isValid: boolean | null;
481
481
  errorMessages: string[];
482
482
  }[]>;
@@ -507,8 +507,8 @@ declare const VForm: {
507
507
  items: vue.Ref<{
508
508
  id: string | number;
509
509
  validate: () => Promise<string[]>;
510
- reset: () => void;
511
- resetValidation: () => void;
510
+ reset: () => Promise<void>;
511
+ resetValidation: () => Promise<void>;
512
512
  isValid: boolean | null;
513
513
  errorMessages: string[];
514
514
  }[]>;
@@ -557,8 +557,8 @@ declare const VForm: {
557
557
  items: vue.Ref<{
558
558
  id: string | number;
559
559
  validate: () => Promise<string[]>;
560
- reset: () => void;
561
- resetValidation: () => void;
560
+ reset: () => Promise<void>;
561
+ resetValidation: () => Promise<void>;
562
562
  isValid: boolean | null;
563
563
  errorMessages: string[];
564
564
  }[]>;
@@ -586,8 +586,8 @@ declare const VForm: {
586
586
  items: vue.Ref<{
587
587
  id: string | number;
588
588
  validate: () => Promise<string[]>;
589
- reset: () => void;
590
- resetValidation: () => void;
589
+ reset: () => Promise<void>;
590
+ resetValidation: () => Promise<void>;
591
591
  isValid: boolean | null;
592
592
  errorMessages: string[];
593
593
  }[]>;
@@ -616,8 +616,8 @@ declare const VForm: {
616
616
  items: vue.Ref<{
617
617
  id: string | number;
618
618
  validate: () => Promise<string[]>;
619
- reset: () => void;
620
- resetValidation: () => void;
619
+ reset: () => Promise<void>;
620
+ resetValidation: () => Promise<void>;
621
621
  isValid: boolean | null;
622
622
  errorMessages: string[];
623
623
  }[]>;
@@ -647,8 +647,8 @@ declare const VForm: {
647
647
  items: vue.Ref<{
648
648
  id: string | number;
649
649
  validate: () => Promise<string[]>;
650
- reset: () => void;
651
- resetValidation: () => void;
650
+ reset: () => Promise<void>;
651
+ resetValidation: () => Promise<void>;
652
652
  isValid: boolean | null;
653
653
  errorMessages: string[];
654
654
  }[]>;
@@ -679,8 +679,8 @@ declare const VForm: {
679
679
  items: vue.Ref<{
680
680
  id: string | number;
681
681
  validate: () => Promise<string[]>;
682
- reset: () => void;
683
- resetValidation: () => void;
682
+ reset: () => Promise<void>;
683
+ resetValidation: () => Promise<void>;
684
684
  isValid: boolean | null;
685
685
  errorMessages: string[];
686
686
  }[]>;
@@ -718,8 +718,8 @@ declare const VForm: {
718
718
  items: vue.Ref<{
719
719
  id: string | number;
720
720
  validate: () => Promise<string[]>;
721
- reset: () => void;
722
- resetValidation: () => void;
721
+ reset: () => Promise<void>;
722
+ resetValidation: () => Promise<void>;
723
723
  isValid: boolean | null;
724
724
  errorMessages: string[];
725
725
  }[]>;