vuetify 3.5.10 → 3.5.12

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 (184) 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 +22 -10
  4. package/dist/json/importMap.json +124 -124
  5. package/dist/json/tags.json +71 -0
  6. package/dist/json/web-types.json +747 -38
  7. package/dist/vuetify-labs.css +2467 -2217
  8. package/dist/vuetify-labs.d.ts +1117 -154
  9. package/dist/vuetify-labs.esm.js +683 -33
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +683 -33
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +415 -406
  14. package/dist/vuetify.d.ts +320 -191
  15. package/dist/vuetify.esm.js +35 -21
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +35 -21
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +95 -94
  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/VOtpInput/VOtpInput.mjs +2 -2
  39. package/lib/components/VOtpInput/VOtpInput.mjs.map +1 -1
  40. package/lib/components/VRadio/index.d.mts +27 -9
  41. package/lib/components/VRadioGroup/index.d.mts +27 -9
  42. package/lib/components/VSelectionControl/VSelectionControl.mjs +1 -0
  43. package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
  44. package/lib/components/VSelectionControl/index.d.mts +27 -9
  45. package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs +1 -1
  46. package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs.map +1 -1
  47. package/lib/components/VSelectionControlGroup/index.d.mts +27 -9
  48. package/lib/components/VSwitch/index.d.mts +27 -9
  49. package/lib/components/VTextField/index.d.mts +12 -12
  50. package/lib/components/VTextarea/index.d.mts +12 -12
  51. package/lib/components/VValidation/index.d.mts +6 -6
  52. package/lib/components/index.d.mts +279 -153
  53. package/lib/composables/form.mjs.map +1 -1
  54. package/lib/composables/router.mjs +16 -8
  55. package/lib/composables/router.mjs.map +1 -1
  56. package/lib/composables/transition.mjs +5 -2
  57. package/lib/composables/transition.mjs.map +1 -1
  58. package/lib/composables/validation.mjs +5 -4
  59. package/lib/composables/validation.mjs.map +1 -1
  60. package/lib/entry-bundler.mjs +1 -1
  61. package/lib/framework.mjs +1 -1
  62. package/lib/index.d.mts +41 -38
  63. package/lib/labs/VNumberInput/VNumberInput.mjs +10 -10
  64. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  65. package/lib/labs/VTimePicker/SelectingTimes.mjs.map +1 -0
  66. package/lib/labs/VTimePicker/VTimePicker.css +8 -0
  67. package/lib/labs/VTimePicker/VTimePicker.mjs +265 -0
  68. package/lib/labs/VTimePicker/VTimePicker.mjs.map +1 -0
  69. package/lib/labs/VTimePicker/VTimePicker.sass +10 -0
  70. package/lib/labs/VTimePicker/VTimePickerClock.css +130 -0
  71. package/lib/labs/VTimePicker/VTimePickerClock.mjs +244 -0
  72. package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -0
  73. package/lib/{components → labs}/VTimePicker/VTimePickerClock.sass +22 -39
  74. package/lib/labs/VTimePicker/VTimePickerControls.css +104 -0
  75. package/lib/labs/VTimePicker/VTimePickerControls.mjs +125 -0
  76. package/lib/labs/VTimePicker/VTimePickerControls.mjs.map +1 -0
  77. package/lib/labs/VTimePicker/VTimePickerControls.sass +102 -0
  78. package/lib/labs/VTimePicker/_variables.scss +34 -0
  79. package/lib/labs/VTimePicker/index.d.mts +848 -0
  80. package/lib/labs/VTimePicker/index.mjs +4 -0
  81. package/lib/labs/VTimePicker/index.mjs.map +1 -0
  82. package/lib/labs/components.d.mts +835 -1
  83. package/lib/labs/components.mjs +1 -0
  84. package/lib/labs/components.mjs.map +1 -1
  85. package/lib/locale/af.mjs +2 -1
  86. package/lib/locale/af.mjs.map +1 -1
  87. package/lib/locale/ar.mjs +2 -1
  88. package/lib/locale/ar.mjs.map +1 -1
  89. package/lib/locale/az.mjs +2 -1
  90. package/lib/locale/az.mjs.map +1 -1
  91. package/lib/locale/bg.mjs +2 -1
  92. package/lib/locale/bg.mjs.map +1 -1
  93. package/lib/locale/ca.mjs +2 -1
  94. package/lib/locale/ca.mjs.map +1 -1
  95. package/lib/locale/ckb.mjs +2 -1
  96. package/lib/locale/ckb.mjs.map +1 -1
  97. package/lib/locale/cs.mjs +2 -1
  98. package/lib/locale/cs.mjs.map +1 -1
  99. package/lib/locale/da.mjs +2 -1
  100. package/lib/locale/da.mjs.map +1 -1
  101. package/lib/locale/de.mjs +2 -1
  102. package/lib/locale/de.mjs.map +1 -1
  103. package/lib/locale/el.mjs +2 -1
  104. package/lib/locale/el.mjs.map +1 -1
  105. package/lib/locale/en.mjs +2 -1
  106. package/lib/locale/en.mjs.map +1 -1
  107. package/lib/locale/es.mjs +2 -1
  108. package/lib/locale/es.mjs.map +1 -1
  109. package/lib/locale/et.mjs +2 -1
  110. package/lib/locale/et.mjs.map +1 -1
  111. package/lib/locale/fa.mjs +2 -1
  112. package/lib/locale/fa.mjs.map +1 -1
  113. package/lib/locale/fi.mjs +2 -1
  114. package/lib/locale/fi.mjs.map +1 -1
  115. package/lib/locale/fr.mjs +2 -1
  116. package/lib/locale/fr.mjs.map +1 -1
  117. package/lib/locale/he.mjs +2 -1
  118. package/lib/locale/he.mjs.map +1 -1
  119. package/lib/locale/hr.mjs +2 -1
  120. package/lib/locale/hr.mjs.map +1 -1
  121. package/lib/locale/hu.mjs +2 -1
  122. package/lib/locale/hu.mjs.map +1 -1
  123. package/lib/locale/id.mjs +2 -1
  124. package/lib/locale/id.mjs.map +1 -1
  125. package/lib/locale/index.d.mts +43 -0
  126. package/lib/locale/it.mjs +2 -1
  127. package/lib/locale/it.mjs.map +1 -1
  128. package/lib/locale/ja.mjs +2 -1
  129. package/lib/locale/ja.mjs.map +1 -1
  130. package/lib/locale/km.mjs +2 -1
  131. package/lib/locale/km.mjs.map +1 -1
  132. package/lib/locale/ko.mjs +2 -1
  133. package/lib/locale/ko.mjs.map +1 -1
  134. package/lib/locale/lt.mjs +2 -1
  135. package/lib/locale/lt.mjs.map +1 -1
  136. package/lib/locale/lv.mjs +2 -1
  137. package/lib/locale/lv.mjs.map +1 -1
  138. package/lib/locale/nl.mjs +2 -1
  139. package/lib/locale/nl.mjs.map +1 -1
  140. package/lib/locale/no.mjs +2 -1
  141. package/lib/locale/no.mjs.map +1 -1
  142. package/lib/locale/pl.mjs +2 -1
  143. package/lib/locale/pl.mjs.map +1 -1
  144. package/lib/locale/pt.mjs +2 -1
  145. package/lib/locale/pt.mjs.map +1 -1
  146. package/lib/locale/ro.mjs +2 -1
  147. package/lib/locale/ro.mjs.map +1 -1
  148. package/lib/locale/ru.mjs +2 -1
  149. package/lib/locale/ru.mjs.map +1 -1
  150. package/lib/locale/sk.mjs +2 -1
  151. package/lib/locale/sk.mjs.map +1 -1
  152. package/lib/locale/sl.mjs +2 -1
  153. package/lib/locale/sl.mjs.map +1 -1
  154. package/lib/locale/sr-Cyrl.mjs +2 -1
  155. package/lib/locale/sr-Cyrl.mjs.map +1 -1
  156. package/lib/locale/sr-Latn.mjs +2 -1
  157. package/lib/locale/sr-Latn.mjs.map +1 -1
  158. package/lib/locale/sv.mjs +2 -1
  159. package/lib/locale/sv.mjs.map +1 -1
  160. package/lib/locale/th.mjs +2 -1
  161. package/lib/locale/th.mjs.map +1 -1
  162. package/lib/locale/tr.mjs +2 -1
  163. package/lib/locale/tr.mjs.map +1 -1
  164. package/lib/locale/uk.mjs +2 -1
  165. package/lib/locale/uk.mjs.map +1 -1
  166. package/lib/locale/vi.mjs +2 -1
  167. package/lib/locale/vi.mjs.map +1 -1
  168. package/lib/locale/zh-Hans.mjs +2 -1
  169. package/lib/locale/zh-Hans.mjs.map +1 -1
  170. package/lib/locale/zh-Hant.mjs +2 -1
  171. package/lib/locale/zh-Hant.mjs.map +1 -1
  172. package/package.json +4 -4
  173. package/lib/components/VTimePicker/SelectingTimes.mjs.map +0 -1
  174. package/lib/components/VTimePicker/VTimePicker.mjs +0 -288
  175. package/lib/components/VTimePicker/VTimePicker.mjs.map +0 -1
  176. package/lib/components/VTimePicker/VTimePickerClock.mjs +0 -251
  177. package/lib/components/VTimePicker/VTimePickerClock.mjs.map +0 -1
  178. package/lib/components/VTimePicker/VTimePickerTitle.mjs +0 -64
  179. package/lib/components/VTimePicker/VTimePickerTitle.mjs.map +0 -1
  180. package/lib/components/VTimePicker/VTimePickerTitle.sass +0 -61
  181. package/lib/components/VTimePicker/_variables.scss +0 -32
  182. package/lib/components/VTimePicker/index.mjs +0 -12
  183. package/lib/components/VTimePicker/index.mjs.map +0 -1
  184. /package/lib/{components → labs}/VTimePicker/SelectingTimes.mjs +0 -0
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.5.10
2
+ * Vuetify v3.5.12
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17045,6 +17045,18 @@ html.overflow-y-hidden {
17045
17045
  min-height: 100vh;
17046
17046
  min-height: 100dvh;
17047
17047
  position: relative;
17048
+ }.v-app-bar {
17049
+ display: flex;
17050
+ }
17051
+ .v-app-bar.v-toolbar {
17052
+ background: rgb(var(--v-theme-surface));
17053
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
17054
+ }
17055
+ .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
17056
+ box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
17057
+ }
17058
+ .v-app-bar:not(.v-toolbar--absolute) {
17059
+ padding-inline-end: var(--v-scrollbar-offset);
17048
17060
  }.v-alert {
17049
17061
  display: grid;
17050
17062
  flex: 1 1;
@@ -17255,18 +17267,6 @@ html.overflow-y-hidden {
17255
17267
  text-transform: none;
17256
17268
  word-break: normal;
17257
17269
  word-wrap: break-word;
17258
- }.v-app-bar {
17259
- display: flex;
17260
- }
17261
- .v-app-bar.v-toolbar {
17262
- background: rgb(var(--v-theme-surface));
17263
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
17264
- }
17265
- .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
17266
- box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
17267
- }
17268
- .v-app-bar:not(.v-toolbar--absolute) {
17269
- padding-inline-end: var(--v-scrollbar-offset);
17270
17270
  }.v-autocomplete .v-field .v-text-field__prefix,
17271
17271
  .v-autocomplete .v-field .v-text-field__suffix,
17272
17272
  .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
@@ -17432,9 +17432,86 @@ html.overflow-y-hidden {
17432
17432
  .v-avatar--rounded {
17433
17433
  border-radius: 4px;
17434
17434
  }
17435
+ .v-avatar--start {
17436
+ margin-inline-end: 8px;
17437
+ }
17438
+ .v-avatar--end {
17439
+ margin-inline-start: 8px;
17440
+ }
17435
17441
  .v-avatar .v-img {
17436
17442
  height: 100%;
17437
17443
  width: 100%;
17444
+ }.v-badge {
17445
+ display: inline-block;
17446
+ line-height: 1;
17447
+ }
17448
+
17449
+ .v-badge__badge {
17450
+ align-items: center;
17451
+ display: inline-flex;
17452
+ border-radius: 10px;
17453
+ font-size: 0.75rem;
17454
+ font-weight: 500;
17455
+ height: 1.25rem;
17456
+ justify-content: center;
17457
+ min-width: 20px;
17458
+ padding: 4px 6px;
17459
+ pointer-events: auto;
17460
+ position: absolute;
17461
+ text-align: center;
17462
+ text-indent: 0;
17463
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
17464
+ white-space: nowrap;
17465
+ background: rgb(var(--v-theme-surface-variant));
17466
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
17467
+ }
17468
+ .v-badge--bordered .v-badge__badge::after {
17469
+ border-radius: inherit;
17470
+ border-style: solid;
17471
+ border-width: 2px;
17472
+ bottom: 0;
17473
+ color: rgb(var(--v-theme-background));
17474
+ content: "";
17475
+ left: 0;
17476
+ position: absolute;
17477
+ right: 0;
17478
+ top: 0;
17479
+ transform: scale(1.05);
17480
+ }
17481
+ .v-badge--dot .v-badge__badge {
17482
+ border-radius: 4.5px;
17483
+ height: 9px;
17484
+ min-width: 0;
17485
+ padding: 0;
17486
+ width: 9px;
17487
+ }
17488
+ .v-badge--dot .v-badge__badge::after {
17489
+ border-width: 1.5px;
17490
+ }
17491
+ .v-badge--inline .v-badge__badge {
17492
+ position: relative;
17493
+ vertical-align: middle;
17494
+ }
17495
+ .v-badge__badge .v-icon {
17496
+ color: inherit;
17497
+ font-size: 0.75rem;
17498
+ margin: 0 -2px;
17499
+ }
17500
+ .v-badge__badge img,
17501
+ .v-badge__badge .v-img {
17502
+ height: 100%;
17503
+ width: 100%;
17504
+ }
17505
+
17506
+ .v-badge__wrapper {
17507
+ display: flex;
17508
+ position: relative;
17509
+ }
17510
+ .v-badge--inline .v-badge__wrapper {
17511
+ align-items: center;
17512
+ display: inline-flex;
17513
+ justify-content: center;
17514
+ margin: 0 4px;
17438
17515
  }.v-banner {
17439
17516
  display: grid;
17440
17517
  flex: 1 1;
@@ -17592,77 +17669,6 @@ html.overflow-y-hidden {
17592
17669
  }
17593
17670
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
17594
17671
  align-self: flex-start;
17595
- }.v-badge {
17596
- display: inline-block;
17597
- line-height: 1;
17598
- }
17599
-
17600
- .v-badge__badge {
17601
- align-items: center;
17602
- display: inline-flex;
17603
- border-radius: 10px;
17604
- font-size: 0.75rem;
17605
- font-weight: 500;
17606
- height: 1.25rem;
17607
- justify-content: center;
17608
- min-width: 20px;
17609
- padding: 4px 6px;
17610
- pointer-events: auto;
17611
- position: absolute;
17612
- text-align: center;
17613
- text-indent: 0;
17614
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
17615
- white-space: nowrap;
17616
- background: rgb(var(--v-theme-surface-variant));
17617
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
17618
- }
17619
- .v-badge--bordered .v-badge__badge::after {
17620
- border-radius: inherit;
17621
- border-style: solid;
17622
- border-width: 2px;
17623
- bottom: 0;
17624
- color: rgb(var(--v-theme-background));
17625
- content: "";
17626
- left: 0;
17627
- position: absolute;
17628
- right: 0;
17629
- top: 0;
17630
- transform: scale(1.05);
17631
- }
17632
- .v-badge--dot .v-badge__badge {
17633
- border-radius: 4.5px;
17634
- height: 9px;
17635
- min-width: 0;
17636
- padding: 0;
17637
- width: 9px;
17638
- }
17639
- .v-badge--dot .v-badge__badge::after {
17640
- border-width: 1.5px;
17641
- }
17642
- .v-badge--inline .v-badge__badge {
17643
- position: relative;
17644
- vertical-align: middle;
17645
- }
17646
- .v-badge__badge .v-icon {
17647
- color: inherit;
17648
- font-size: 0.75rem;
17649
- margin: 0 -2px;
17650
- }
17651
- .v-badge__badge img,
17652
- .v-badge__badge .v-img {
17653
- height: 100%;
17654
- width: 100%;
17655
- }
17656
-
17657
- .v-badge__wrapper {
17658
- display: flex;
17659
- position: relative;
17660
- }
17661
- .v-badge--inline .v-badge__wrapper {
17662
- align-items: center;
17663
- display: inline-flex;
17664
- justify-content: center;
17665
- margin: 0 4px;
17666
17672
  }.v-bottom-navigation {
17667
17673
  display: flex;
17668
17674
  max-width: 100%;
@@ -17718,6 +17724,38 @@ html.overflow-y-hidden {
17718
17724
  }
17719
17725
  .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
17720
17726
  transform: translateY(0.5rem);
17727
+ }.bottom-sheet-transition-enter-from {
17728
+ transform: translateY(100%);
17729
+ }
17730
+ .bottom-sheet-transition-leave-to {
17731
+ transform: translateY(100%);
17732
+ }
17733
+
17734
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
17735
+ align-self: flex-end;
17736
+ border-radius: 0;
17737
+ flex: 0 1 auto;
17738
+ left: 0;
17739
+ right: 0;
17740
+ margin-inline: 0;
17741
+ margin-bottom: 0;
17742
+ transition-duration: 0.2s;
17743
+ width: 100%;
17744
+ max-width: 100%;
17745
+ overflow: visible;
17746
+ box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
17747
+ }
17748
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
17749
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
17750
+ border-radius: 0;
17751
+ }
17752
+ .v-bottom-sheet.v-bottom-sheet--inset {
17753
+ max-width: none;
17754
+ }
17755
+ @media (min-width: 600px) {
17756
+ .v-bottom-sheet.v-bottom-sheet--inset {
17757
+ max-width: 70%;
17758
+ }
17721
17759
  }.v-breadcrumbs {
17722
17760
  display: flex;
17723
17761
  align-items: center;
@@ -17775,38 +17813,6 @@ html.overflow-y-hidden {
17775
17813
  display: inline-block;
17776
17814
  padding: 0 8px;
17777
17815
  vertical-align: middle;
17778
- }.bottom-sheet-transition-enter-from {
17779
- transform: translateY(100%);
17780
- }
17781
- .bottom-sheet-transition-leave-to {
17782
- transform: translateY(100%);
17783
- }
17784
-
17785
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
17786
- align-self: flex-end;
17787
- border-radius: 0;
17788
- flex: 0 1 auto;
17789
- left: 0;
17790
- right: 0;
17791
- margin-inline: 0;
17792
- margin-bottom: 0;
17793
- transition-duration: 0.2s;
17794
- width: 100%;
17795
- max-width: 100%;
17796
- overflow: visible;
17797
- box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
17798
- }
17799
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
17800
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
17801
- border-radius: 0;
17802
- }
17803
- .v-bottom-sheet.v-bottom-sheet--inset {
17804
- max-width: none;
17805
- }
17806
- @media (min-width: 600px) {
17807
- .v-bottom-sheet.v-bottom-sheet--inset {
17808
- max-width: 70%;
17809
- }
17810
17816
  }.v-btn {
17811
17817
  align-items: center;
17812
17818
  border-radius: 4px;
@@ -18638,6 +18644,29 @@ html.overflow-y-hidden {
18638
18644
  flex-direction: column;
18639
18645
  height: 100% !important;
18640
18646
  width: 50px;
18647
+ }.v-checkbox.v-input {
18648
+ flex: 0 1 auto;
18649
+ }
18650
+ .v-checkbox .v-selection-control {
18651
+ min-height: var(--v-input-control-height);
18652
+ }.v-chip-group {
18653
+ display: flex;
18654
+ max-width: 100%;
18655
+ min-width: 0;
18656
+ overflow-x: auto;
18657
+ padding: 4px 0;
18658
+ }
18659
+ .v-chip-group .v-chip {
18660
+ margin: 4px 8px 4px 0;
18661
+ }
18662
+ .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
18663
+ opacity: var(--v-activated-opacity);
18664
+ }
18665
+
18666
+ .v-chip-group--column .v-slide-group__content {
18667
+ white-space: normal;
18668
+ flex-wrap: wrap;
18669
+ max-width: 100%;
18641
18670
  }.v-chip {
18642
18671
  align-items: center;
18643
18672
  display: inline-flex;
@@ -18654,6 +18683,9 @@ html.overflow-y-hidden {
18654
18683
  border-width: 0;
18655
18684
  border-radius: 9999px;
18656
18685
  }
18686
+ .v-chip .v-icon {
18687
+ --v-icon-size-multiplier: 0.8571428571;
18688
+ }
18657
18689
  .v-chip.v-chip--size-x-small {
18658
18690
  --v-chip-size: 0.625rem;
18659
18691
  --v-chip-height: 20px;
@@ -18904,11 +18936,11 @@ html.overflow-y-hidden {
18904
18936
  }
18905
18937
 
18906
18938
  .v-chip.v-chip--density-comfortable {
18907
- height: calc(var(--v-chip-height) + -8px);
18939
+ height: calc(var(--v-chip-height) + -4px);
18908
18940
  }
18909
18941
 
18910
18942
  .v-chip.v-chip--density-compact {
18911
- height: calc(var(--v-chip-height) + -12px);
18943
+ height: calc(var(--v-chip-height) + -8px);
18912
18944
  }
18913
18945
 
18914
18946
  .v-chip:hover > .v-chip__overlay {
@@ -19035,39 +19067,16 @@ html.overflow-y-hidden {
19035
19067
  opacity: 0;
19036
19068
  transition: opacity 0.2s ease-in-out;
19037
19069
  }
19038
-
19039
- .v-chip--disabled {
19040
- opacity: 0.3;
19041
- pointer-events: none;
19042
- -webkit-user-select: none;
19043
- user-select: none;
19044
- }
19045
-
19046
- .v-chip--label {
19047
- border-radius: 4px;
19048
- }.v-checkbox.v-input {
19049
- flex: 0 1 auto;
19050
- }
19051
- .v-checkbox .v-selection-control {
19052
- min-height: var(--v-input-control-height);
19053
- }.v-chip-group {
19054
- display: flex;
19055
- max-width: 100%;
19056
- min-width: 0;
19057
- overflow-x: auto;
19058
- padding: 4px 0;
19059
- }
19060
- .v-chip-group .v-chip {
19061
- margin: 4px 8px 4px 0;
19062
- }
19063
- .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
19064
- opacity: var(--v-activated-opacity);
19070
+
19071
+ .v-chip--disabled {
19072
+ opacity: 0.3;
19073
+ pointer-events: none;
19074
+ -webkit-user-select: none;
19075
+ user-select: none;
19065
19076
  }
19066
19077
 
19067
- .v-chip-group--column .v-slide-group__content {
19068
- white-space: normal;
19069
- flex-wrap: wrap;
19070
- max-width: 100%;
19078
+ .v-chip--label {
19079
+ border-radius: 4px;
19071
19080
  }.v-container {
19072
19081
  width: 100%;
19073
19082
  padding: 16px;
@@ -19841,11 +19850,6 @@ html.overflow-y-hidden {
19841
19850
  .v-combobox--active-menu .v-combobox__menu-icon {
19842
19851
  opacity: var(--v-high-emphasis-opacity);
19843
19852
  transform: rotate(180deg);
19844
- }.v-counter {
19845
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
19846
- flex: 0 1 auto;
19847
- font-size: 12px;
19848
- transition-duration: 150ms;
19849
19853
  }.v-data-table {
19850
19854
  width: 100%;
19851
19855
  }
@@ -20136,25 +20140,6 @@ html.overflow-y-hidden {
20136
20140
  .date-picker-header-reverse-transition-leave-to {
20137
20141
  opacity: 0;
20138
20142
  transform: translate(0, 100%);
20139
- }.v-date-picker-months {
20140
- height: 288px;
20141
- }
20142
-
20143
- .v-date-picker-months__content {
20144
- align-items: center;
20145
- display: grid;
20146
- flex: 1 1;
20147
- height: inherit;
20148
- justify-content: space-around;
20149
- grid-template-columns: repeat(2, 1fr);
20150
- grid-gap: 0px 24px;
20151
- padding-inline-start: 36px;
20152
- padding-inline-end: 36px;
20153
- }
20154
- .v-date-picker-months__content .v-btn {
20155
- text-transform: none;
20156
- padding-inline-start: 8px;
20157
- padding-inline-end: 8px;
20158
20143
  }.v-date-picker-month {
20159
20144
  display: flex;
20160
20145
  justify-content: center;
@@ -20225,6 +20210,54 @@ html.overflow-y-hidden {
20225
20210
  }
20226
20211
  .v-date-picker-years__content .v-btn {
20227
20212
  padding-inline: 8px;
20213
+ }.v-date-picker-months {
20214
+ height: 288px;
20215
+ }
20216
+
20217
+ .v-date-picker-months__content {
20218
+ align-items: center;
20219
+ display: grid;
20220
+ flex: 1 1;
20221
+ height: inherit;
20222
+ justify-content: space-around;
20223
+ grid-template-columns: repeat(2, 1fr);
20224
+ grid-gap: 0px 24px;
20225
+ padding-inline-start: 36px;
20226
+ padding-inline-end: 36px;
20227
+ }
20228
+ .v-date-picker-months__content .v-btn {
20229
+ text-transform: none;
20230
+ padding-inline-start: 8px;
20231
+ padding-inline-end: 8px;
20232
+ }.v-divider {
20233
+ display: block;
20234
+ flex: 1 1 100%;
20235
+ height: 0px;
20236
+ max-height: 0px;
20237
+ opacity: var(--v-border-opacity);
20238
+ transition: inherit;
20239
+ border-style: solid;
20240
+ border-width: thin 0 0 0;
20241
+ }
20242
+ .v-divider--vertical {
20243
+ align-self: stretch;
20244
+ border-width: 0 thin 0 0;
20245
+ display: inline-flex;
20246
+ height: 100%;
20247
+ margin-left: -1px;
20248
+ max-height: 100%;
20249
+ max-width: 0px;
20250
+ vertical-align: text-bottom;
20251
+ width: 0px;
20252
+ }
20253
+ .v-divider--inset:not(.v-divider--vertical) {
20254
+ max-width: calc(100% - 72px);
20255
+ margin-inline-start: 72px;
20256
+ }
20257
+ .v-divider--inset.v-divider--vertical {
20258
+ margin-bottom: 8px;
20259
+ margin-top: 8px;
20260
+ max-height: calc(100% - 16px);
20228
20261
  }.v-dialog {
20229
20262
  align-items: center;
20230
20263
  justify-content: center;
@@ -20313,35 +20346,6 @@ html.overflow-y-hidden {
20313
20346
  -webkit-backface-visibility: hidden;
20314
20347
  backface-visibility: hidden;
20315
20348
  overflow-y: auto;
20316
- }.v-divider {
20317
- display: block;
20318
- flex: 1 1 100%;
20319
- height: 0px;
20320
- max-height: 0px;
20321
- opacity: var(--v-border-opacity);
20322
- transition: inherit;
20323
- border-style: solid;
20324
- border-width: thin 0 0 0;
20325
- }
20326
- .v-divider--vertical {
20327
- align-self: stretch;
20328
- border-width: 0 thin 0 0;
20329
- display: inline-flex;
20330
- height: inherit;
20331
- margin-left: -1px;
20332
- max-height: 100%;
20333
- max-width: 0px;
20334
- vertical-align: text-bottom;
20335
- width: 0px;
20336
- }
20337
- .v-divider--inset:not(.v-divider--vertical) {
20338
- max-width: calc(100% - 72px);
20339
- margin-inline-start: 72px;
20340
- }
20341
- .v-divider--inset.v-divider--vertical {
20342
- margin-bottom: 8px;
20343
- margin-top: 8px;
20344
- max-height: calc(100% - 16px);
20345
20349
  }.v-expansion-panel {
20346
20350
  background-color: rgb(var(--v-theme-surface));
20347
20351
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -20382,15 +20386,15 @@ html.overflow-y-hidden {
20382
20386
  border-top-left-radius: 0 !important;
20383
20387
  border-top-right-radius: 0 !important;
20384
20388
  }
20385
- .v-expansion-panels--variant-accordion > :first-child {
20389
+ .v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
20386
20390
  border-bottom-left-radius: 0 !important;
20387
20391
  border-bottom-right-radius: 0 !important;
20388
20392
  }
20389
- .v-expansion-panels--variant-accordion > :last-child {
20393
+ .v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
20390
20394
  border-top-left-radius: 0 !important;
20391
20395
  border-top-right-radius: 0 !important;
20392
20396
  }
20393
- .v-expansion-panels--variant-accordion > :last-child .v-expansion-panel-title--active {
20397
+ .v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
20394
20398
  border-bottom-left-radius: initial;
20395
20399
  border-bottom-right-radius: initial;
20396
20400
  }
@@ -20552,26 +20556,6 @@ html.overflow-y-hidden {
20552
20556
  }
20553
20557
  .v-expansion-panels--tile > .v-expansion-panel {
20554
20558
  border-radius: 0;
20555
- }.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20556
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20557
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20558
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20559
- top: 0px;
20560
- }
20561
- .v-file-input input[type=file] {
20562
- height: 100%;
20563
- left: 0;
20564
- opacity: 0;
20565
- position: absolute;
20566
- top: 0;
20567
- width: 100%;
20568
- z-index: 1;
20569
- }
20570
- .v-file-input .v-input__details {
20571
- padding-inline: 16px;
20572
- }
20573
- .v-input--plain-underlined.v-file-input .v-input__details {
20574
- padding-inline: 0;
20575
20559
  }/* region INPUT */
20576
20560
  .v-field {
20577
20561
  display: grid;
@@ -20687,7 +20671,7 @@ html.overflow-y-hidden {
20687
20671
  box-shadow: none;
20688
20672
  }
20689
20673
  .v-field--rounded {
20690
- border-radius: 9999px;
20674
+ border-radius: 24px;
20691
20675
  }
20692
20676
  .v-field.v-field--prepended {
20693
20677
  --v-field-padding-start: 6px;
@@ -21142,7 +21126,27 @@ textarea.v-field__input::placeholder {
21142
21126
  opacity: 0;
21143
21127
  }
21144
21128
 
21145
- /* endregion */.v-footer {
21129
+ /* endregion */.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21130
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21131
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21132
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21133
+ top: 0px;
21134
+ }
21135
+ .v-file-input input[type=file] {
21136
+ height: 100%;
21137
+ left: 0;
21138
+ opacity: 0;
21139
+ position: absolute;
21140
+ top: 0;
21141
+ width: 100%;
21142
+ z-index: 1;
21143
+ }
21144
+ .v-file-input .v-input__details {
21145
+ padding-inline: 16px;
21146
+ }
21147
+ .v-input--plain-underlined.v-file-input .v-input__details {
21148
+ padding-inline: 0;
21149
+ }.v-footer {
21146
21150
  align-items: center;
21147
21151
  display: flex;
21148
21152
  flex: 1 1 auto;
@@ -21284,11 +21288,6 @@ textarea.v-field__input::placeholder {
21284
21288
  display: flex;
21285
21289
  justify-content: center;
21286
21290
  padding: 8px;
21287
- }.v-item-group {
21288
- flex: 0 1 auto;
21289
- max-width: 100%;
21290
- position: relative;
21291
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21292
21291
  }.v-input {
21293
21292
  display: grid;
21294
21293
  flex: 1 1 auto;
@@ -21431,6 +21430,11 @@ textarea.v-field__input::placeholder {
21431
21430
 
21432
21431
  .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
21433
21432
  padding-top: calc(var(--v-input-padding-top) + 0px);
21433
+ }.v-item-group {
21434
+ flex: 0 1 auto;
21435
+ max-width: 100%;
21436
+ position: relative;
21437
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21434
21438
  }.v-label {
21435
21439
  align-items: center;
21436
21440
  color: inherit;
@@ -21446,13 +21450,6 @@ textarea.v-field__input::placeholder {
21446
21450
 
21447
21451
  .v-label--clickable {
21448
21452
  cursor: pointer;
21449
- }.v-layout-item {
21450
- position: absolute;
21451
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21452
- }
21453
-
21454
- .v-layout-item--absolute {
21455
- position: absolute;
21456
21453
  }.v-layout {
21457
21454
  --v-scrollbar-offset: 0px;
21458
21455
  display: flex;
@@ -21461,6 +21458,13 @@ textarea.v-field__input::placeholder {
21461
21458
  .v-layout--full-height {
21462
21459
  --v-scrollbar-offset: inherit;
21463
21460
  height: 100%;
21461
+ }.v-layout-item {
21462
+ position: absolute;
21463
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21464
+ }
21465
+
21466
+ .v-layout-item--absolute {
21467
+ position: absolute;
21464
21468
  }.v-list {
21465
21469
  overflow: auto;
21466
21470
  padding: 8px 0;
@@ -22013,6 +22017,21 @@ textarea.v-field__input::placeholder {
22013
22017
  }
22014
22018
  .v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
22015
22019
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
22020
+ }.v-locale-provider {
22021
+ display: contents;
22022
+ }.v-menu > .v-overlay__content {
22023
+ display: flex;
22024
+ flex-direction: column;
22025
+ border-radius: 4px;
22026
+ }
22027
+ .v-menu > .v-overlay__content > .v-card,
22028
+ .v-menu > .v-overlay__content > .v-sheet,
22029
+ .v-menu > .v-overlay__content > .v-list {
22030
+ background: rgb(var(--v-theme-surface));
22031
+ border-radius: inherit;
22032
+ overflow: auto;
22033
+ height: 100%;
22034
+ box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
22016
22035
  }.v-main {
22017
22036
  flex: 1 0 auto;
22018
22037
  max-width: 100%;
@@ -22041,21 +22060,6 @@ textarea.v-field__input::placeholder {
22041
22060
  --v-layout-right: 0px;
22042
22061
  --v-layout-top: 0px;
22043
22062
  --v-layout-bottom: 0px;
22044
- }.v-locale-provider {
22045
- display: contents;
22046
- }.v-menu > .v-overlay__content {
22047
- display: flex;
22048
- flex-direction: column;
22049
- border-radius: 4px;
22050
- }
22051
- .v-menu > .v-overlay__content > .v-card,
22052
- .v-menu > .v-overlay__content > .v-sheet,
22053
- .v-menu > .v-overlay__content > .v-list {
22054
- background: rgb(var(--v-theme-surface));
22055
- border-radius: inherit;
22056
- overflow: auto;
22057
- height: 100%;
22058
- box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
22059
22063
  }.v-messages {
22060
22064
  flex: 1 1 auto;
22061
22065
  font-size: 12px;
@@ -22226,14 +22230,6 @@ textarea.v-field__input::placeholder {
22226
22230
  }
22227
22231
  .v-otp-input__loader .v-progress-linear {
22228
22232
  position: absolute;
22229
- }.v-pagination__list {
22230
- display: inline-flex;
22231
- list-style-type: none;
22232
- justify-content: center;
22233
- width: 100%;
22234
- }
22235
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22236
- margin: 0.3rem;
22237
22233
  }.v-overlay-container {
22238
22234
  contain: layout;
22239
22235
  left: 0;
@@ -22297,6 +22293,19 @@ html.v-overlay-scroll-blocked {
22297
22293
 
22298
22294
  .v-overlay--scroll-blocked {
22299
22295
  padding-inline-end: var(--v-scrollbar-offset);
22296
+ }.v-pagination__list {
22297
+ display: inline-flex;
22298
+ list-style-type: none;
22299
+ justify-content: center;
22300
+ width: 100%;
22301
+ }
22302
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22303
+ margin: 0.3rem;
22304
+ }.v-counter {
22305
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
22306
+ flex: 0 1 auto;
22307
+ font-size: 12px;
22308
+ transition-duration: 150ms;
22300
22309
  }.v-parallax {
22301
22310
  position: relative;
22302
22311
  overflow: hidden;
@@ -22735,34 +22744,8 @@ html.v-overlay-scroll-blocked {
22735
22744
  margin-bottom: 4px;
22736
22745
  }
22737
22746
 
22738
- .v-slider__label {
22739
- margin-inline-end: 12px;
22740
- }.v-responsive {
22741
- display: flex;
22742
- flex: 1 0 auto;
22743
- max-height: 100%;
22744
- max-width: 100%;
22745
- overflow: hidden;
22746
- position: relative;
22747
- }
22748
- .v-responsive--inline {
22749
- display: inline-flex;
22750
- flex: 0 0 auto;
22751
- }
22752
-
22753
- .v-responsive__content {
22754
- flex: 1 0 0px;
22755
- max-width: 100%;
22756
- }
22757
-
22758
- .v-responsive__sizer ~ .v-responsive__content {
22759
- margin-inline-start: -100%;
22760
- }
22761
-
22762
- .v-responsive__sizer {
22763
- flex: 1 0 0px;
22764
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22765
- pointer-events: none;
22747
+ .v-slider__label {
22748
+ margin-inline-end: 12px;
22766
22749
  }.v-select .v-field .v-text-field__prefix,
22767
22750
  .v-select .v-field .v-text-field__suffix,
22768
22751
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
@@ -22811,6 +22794,32 @@ html.v-overlay-scroll-blocked {
22811
22794
  .v-select--active-menu .v-select__menu-icon {
22812
22795
  opacity: var(--v-high-emphasis-opacity);
22813
22796
  transform: rotate(180deg);
22797
+ }.v-responsive {
22798
+ display: flex;
22799
+ flex: 1 0 auto;
22800
+ max-height: 100%;
22801
+ max-width: 100%;
22802
+ overflow: hidden;
22803
+ position: relative;
22804
+ }
22805
+ .v-responsive--inline {
22806
+ display: inline-flex;
22807
+ flex: 0 0 auto;
22808
+ }
22809
+
22810
+ .v-responsive__content {
22811
+ flex: 1 0 0px;
22812
+ max-width: 100%;
22813
+ }
22814
+
22815
+ .v-responsive__sizer ~ .v-responsive__content {
22816
+ margin-inline-start: -100%;
22817
+ }
22818
+
22819
+ .v-responsive__sizer {
22820
+ flex: 1 0 0px;
22821
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22822
+ pointer-events: none;
22814
22823
  }.v-selection-control {
22815
22824
  align-items: center;
22816
22825
  contain: layout;
@@ -22948,48 +22957,6 @@ html.v-overlay-scroll-blocked {
22948
22957
  }
22949
22958
  .v-sheet--rounded {
22950
22959
  border-radius: 4px;
22951
- }.v-slide-group {
22952
- display: flex;
22953
- overflow: hidden;
22954
- }
22955
-
22956
- .v-slide-group__next,
22957
- .v-slide-group__prev {
22958
- align-items: center;
22959
- display: flex;
22960
- flex: 0 1 52px;
22961
- justify-content: center;
22962
- min-width: 52px;
22963
- cursor: pointer;
22964
- }
22965
- .v-slide-group__next--disabled,
22966
- .v-slide-group__prev--disabled {
22967
- pointer-events: none;
22968
- opacity: var(--v-disabled-opacity);
22969
- }
22970
-
22971
- .v-slide-group__content {
22972
- display: flex;
22973
- flex: 1 0 auto;
22974
- position: relative;
22975
- transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
22976
- white-space: nowrap;
22977
- }
22978
- .v-slide-group__content > * {
22979
- white-space: initial;
22980
- }
22981
-
22982
- .v-slide-group__container {
22983
- contain: content;
22984
- display: flex;
22985
- flex: 1 1 auto;
22986
- overflow: hidden;
22987
- }
22988
-
22989
- .v-slide-group--vertical,
22990
- .v-slide-group--vertical .v-slide-group__container,
22991
- .v-slide-group--vertical .v-slide-group__content {
22992
- flex-direction: column;
22993
22960
  }.v-skeleton-loader {
22994
22961
  align-items: center;
22995
22962
  background: rgb(var(--v-theme-surface));
@@ -23213,6 +23180,48 @@ html.v-overlay-scroll-blocked {
23213
23180
  100% {
23214
23181
  transform: translateX(100%);
23215
23182
  }
23183
+ }.v-slide-group {
23184
+ display: flex;
23185
+ overflow: hidden;
23186
+ }
23187
+
23188
+ .v-slide-group__next,
23189
+ .v-slide-group__prev {
23190
+ align-items: center;
23191
+ display: flex;
23192
+ flex: 0 1 52px;
23193
+ justify-content: center;
23194
+ min-width: 52px;
23195
+ cursor: pointer;
23196
+ }
23197
+ .v-slide-group__next--disabled,
23198
+ .v-slide-group__prev--disabled {
23199
+ pointer-events: none;
23200
+ opacity: var(--v-disabled-opacity);
23201
+ }
23202
+
23203
+ .v-slide-group__content {
23204
+ display: flex;
23205
+ flex: 1 0 auto;
23206
+ position: relative;
23207
+ transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
23208
+ white-space: nowrap;
23209
+ }
23210
+ .v-slide-group__content > * {
23211
+ white-space: initial;
23212
+ }
23213
+
23214
+ .v-slide-group__container {
23215
+ contain: content;
23216
+ display: flex;
23217
+ flex: 1 1 auto;
23218
+ overflow: hidden;
23219
+ }
23220
+
23221
+ .v-slide-group--vertical,
23222
+ .v-slide-group--vertical .v-slide-group__container,
23223
+ .v-slide-group--vertical .v-slide-group__content {
23224
+ flex-direction: column;
23216
23225
  }.v-snackbar {
23217
23226
  justify-content: center;
23218
23227
  z-index: 10000;
@@ -23566,6 +23575,43 @@ html.v-overlay-scroll-blocked {
23566
23575
  }
23567
23576
  .v-switch.v-switch--inset .v-selection-control__wrapper {
23568
23577
  width: auto;
23578
+ }.v-system-bar {
23579
+ align-items: center;
23580
+ display: flex;
23581
+ flex: 1 1 auto;
23582
+ height: 24px;
23583
+ justify-content: flex-end;
23584
+ max-width: 100%;
23585
+ padding-inline: 8px;
23586
+ position: relative;
23587
+ text-align: end;
23588
+ width: 100%;
23589
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
23590
+ background: rgba(var(--v-theme-surface-light));
23591
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
23592
+ font-size: 0.75rem;
23593
+ font-weight: 400;
23594
+ letter-spacing: 0.0333333333em;
23595
+ line-height: 1.25rem;
23596
+ text-transform: none;
23597
+ }
23598
+ .v-system-bar .v-icon {
23599
+ opacity: var(--v-medium-emphasis-opacity);
23600
+ }
23601
+ .v-system-bar--absolute {
23602
+ position: absolute;
23603
+ }
23604
+ .v-system-bar--fixed {
23605
+ position: fixed;
23606
+ }
23607
+ .v-system-bar--rounded {
23608
+ border-radius: 0;
23609
+ }
23610
+ .v-system-bar--window {
23611
+ height: 32px;
23612
+ }
23613
+ .v-system-bar:not(.v-system-bar--absolute) {
23614
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
23569
23615
  }.v-tabs {
23570
23616
  display: flex;
23571
23617
  height: var(--v-tabs-height);
@@ -23905,7 +23951,10 @@ html.v-overlay-scroll-blocked {
23905
23951
  padding-inline-end: var(--v-field-padding-end);
23906
23952
  }
23907
23953
 
23908
- /* endregion */.v-timeline .v-timeline-divider__dot {
23954
+ /* endregion */.v-theme-provider {
23955
+ background: rgb(var(--v-theme-background));
23956
+ color: rgb(var(--v-theme-on-background));
23957
+ }.v-timeline .v-timeline-divider__dot {
23909
23958
  background: rgb(var(--v-theme-surface-light));
23910
23959
  }
23911
23960
  .v-timeline .v-timeline-divider__inner-dot {
@@ -24321,9 +24370,6 @@ html.v-overlay-scroll-blocked {
24321
24370
 
24322
24371
  .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
24323
24372
  padding-inline-end: 0;
24324
- }.v-theme-provider {
24325
- background: rgb(var(--v-theme-background));
24326
- color: rgb(var(--v-theme-on-background));
24327
24373
  }.v-toolbar {
24328
24374
  align-items: flex-start;
24329
24375
  display: flex;
@@ -24475,15 +24521,6 @@ html.v-overlay-scroll-blocked {
24475
24521
  .v-tooltip > .v-overlay__content[class*=leave-active] {
24476
24522
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
24477
24523
  transition-duration: 75ms;
24478
- }.v-virtual-scroll {
24479
- display: block;
24480
- flex: 1 1 auto;
24481
- max-width: 100%;
24482
- overflow: auto;
24483
- position: relative;
24484
- }
24485
- .v-virtual-scroll__container {
24486
- display: block;
24487
24524
  }.v-window {
24488
24525
  overflow: hidden;
24489
24526
  }
@@ -24553,43 +24590,15 @@ html.v-overlay-scroll-blocked {
24553
24590
  }
24554
24591
  .v-window-y-reverse-transition-leave-to {
24555
24592
  transform: translateY(100%);
24556
- }.v-system-bar {
24557
- align-items: center;
24558
- display: flex;
24593
+ }.v-virtual-scroll {
24594
+ display: block;
24559
24595
  flex: 1 1 auto;
24560
- height: 24px;
24561
- justify-content: flex-end;
24562
24596
  max-width: 100%;
24563
- padding-inline: 8px;
24597
+ overflow: auto;
24564
24598
  position: relative;
24565
- text-align: end;
24566
- width: 100%;
24567
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
24568
- background: rgba(var(--v-theme-surface-light));
24569
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24570
- font-size: 0.75rem;
24571
- font-weight: 400;
24572
- letter-spacing: 0.0333333333em;
24573
- line-height: 1.25rem;
24574
- text-transform: none;
24575
- }
24576
- .v-system-bar .v-icon {
24577
- opacity: var(--v-medium-emphasis-opacity);
24578
- }
24579
- .v-system-bar--absolute {
24580
- position: absolute;
24581
- }
24582
- .v-system-bar--fixed {
24583
- position: fixed;
24584
- }
24585
- .v-system-bar--rounded {
24586
- border-radius: 0;
24587
- }
24588
- .v-system-bar--window {
24589
- height: 32px;
24590
24599
  }
24591
- .v-system-bar:not(.v-system-bar--absolute) {
24592
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
24600
+ .v-virtual-scroll__container {
24601
+ display: block;
24593
24602
  }.v-color-picker-canvas {
24594
24603
  display: flex;
24595
24604
  position: relative;
@@ -24612,34 +24621,6 @@ html.v-overlay-scroll-blocked {
24612
24621
  }
24613
24622
  .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
24614
24623
  will-change: transform;
24615
- }.v-color-picker-edit {
24616
- display: flex;
24617
- margin-top: 24px;
24618
- }
24619
-
24620
- .v-color-picker-edit__input {
24621
- width: 100%;
24622
- display: flex;
24623
- flex-wrap: wrap;
24624
- justify-content: center;
24625
- text-align: center;
24626
- }
24627
- .v-color-picker-edit__input:not(:last-child) {
24628
- margin-inline-end: 8px;
24629
- }
24630
- .v-color-picker-edit__input input {
24631
- border-radius: 4px;
24632
- margin-bottom: 8px;
24633
- min-width: 0;
24634
- outline: none;
24635
- text-align: center;
24636
- width: 100%;
24637
- height: 32px;
24638
- background: rgba(var(--v-theme-surface-variant), 0.2);
24639
- color: rgba(var(--v-theme-on-surface));
24640
- }
24641
- .v-color-picker-edit__input span {
24642
- font-size: 0.75rem;
24643
24624
  }.v-color-picker-preview__alpha .v-slider-track__background {
24644
24625
  background-color: transparent !important;
24645
24626
  }
@@ -24745,6 +24726,34 @@ html.v-overlay-scroll-blocked {
24745
24726
  justify-content: center;
24746
24727
  width: 100%;
24747
24728
  height: 100%;
24729
+ }.v-color-picker-edit {
24730
+ display: flex;
24731
+ margin-top: 24px;
24732
+ }
24733
+
24734
+ .v-color-picker-edit__input {
24735
+ width: 100%;
24736
+ display: flex;
24737
+ flex-wrap: wrap;
24738
+ justify-content: center;
24739
+ text-align: center;
24740
+ }
24741
+ .v-color-picker-edit__input:not(:last-child) {
24742
+ margin-inline-end: 8px;
24743
+ }
24744
+ .v-color-picker-edit__input input {
24745
+ border-radius: 4px;
24746
+ margin-bottom: 8px;
24747
+ min-width: 0;
24748
+ outline: none;
24749
+ text-align: center;
24750
+ width: 100%;
24751
+ height: 32px;
24752
+ background: rgba(var(--v-theme-surface-variant), 0.2);
24753
+ color: rgba(var(--v-theme-on-surface));
24754
+ }
24755
+ .v-color-picker-edit__input span {
24756
+ font-size: 0.75rem;
24748
24757
  }.v-picker.v-sheet {
24749
24758
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
24750
24759
  border-radius: 4px;