@vuetify/nightly 3.6.10-master.2024-06-21 → 3.6.11-dev.2024-07-03

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 (92) hide show
  1. package/CHANGELOG.md +13 -2
  2. package/dist/json/attributes.json +291 -119
  3. package/dist/json/importMap-labs.json +28 -28
  4. package/dist/json/importMap.json +106 -106
  5. package/dist/json/tags.json +49 -6
  6. package/dist/json/web-types.json +601 -211
  7. package/dist/vuetify-labs.css +2575 -2559
  8. package/dist/vuetify-labs.d.ts +802 -519
  9. package/dist/vuetify-labs.esm.js +86 -71
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +86 -71
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +627 -611
  14. package/dist/vuetify.d.ts +716 -505
  15. package/dist/vuetify.esm.js +36 -16
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +36 -16
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +24 -24
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAppBar/index.d.mts +6 -0
  23. package/lib/components/VAutocomplete/index.d.mts +49 -49
  24. package/lib/components/VAvatar/VAvatar.css +7 -0
  25. package/lib/components/VAvatar/VAvatar.mjs +6 -1
  26. package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
  27. package/lib/components/VAvatar/VAvatar.sass +1 -0
  28. package/lib/components/VAvatar/_variables.scss +13 -0
  29. package/lib/components/VAvatar/index.d.mts +6 -0
  30. package/lib/components/VBottomSheet/index.d.mts +7 -7
  31. package/lib/components/VBreadcrumbs/index.d.mts +8 -8
  32. package/lib/components/VBtn/VBtn.mjs +3 -1
  33. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  34. package/lib/components/VBtn/index.d.mts +6 -0
  35. package/lib/components/VCarousel/index.d.mts +16 -7
  36. package/lib/components/VCheckbox/index.d.mts +6 -6
  37. package/lib/components/VCombobox/index.d.mts +49 -49
  38. package/lib/components/VDialog/index.d.mts +31 -31
  39. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +7 -2
  40. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  41. package/lib/components/VExpansionPanel/index.d.mts +122 -14
  42. package/lib/components/VFab/index.d.mts +6 -0
  43. package/lib/components/VFileInput/index.d.mts +18 -18
  44. package/lib/components/VForm/index.d.mts +9 -9
  45. package/lib/components/VGrid/VContainer.mjs +6 -1
  46. package/lib/components/VGrid/VContainer.mjs.map +1 -1
  47. package/lib/components/VGrid/index.d.mts +36 -0
  48. package/lib/components/VImg/VImg.css +9 -0
  49. package/lib/components/VImg/VImg.mjs +2 -0
  50. package/lib/components/VImg/VImg.mjs.map +1 -1
  51. package/lib/components/VImg/VImg.sass +9 -0
  52. package/lib/components/VImg/index.d.mts +16 -7
  53. package/lib/components/VInput/index.d.mts +6 -6
  54. package/lib/components/VList/index.d.mts +12 -12
  55. package/lib/components/VMenu/index.d.mts +33 -33
  56. package/lib/components/VOverlay/VOverlay.mjs +1 -1
  57. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  58. package/lib/components/VOverlay/index.d.mts +7 -7
  59. package/lib/components/VRadioGroup/index.d.mts +6 -6
  60. package/lib/components/VRangeSlider/index.d.mts +6 -6
  61. package/lib/components/VSelect/index.d.mts +49 -49
  62. package/lib/components/VSlideGroup/VSlideGroup.mjs +3 -1
  63. package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
  64. package/lib/components/VSlideGroup/index.d.mts +6 -0
  65. package/lib/components/VSlider/index.d.mts +6 -6
  66. package/lib/components/VSnackbar/index.d.mts +33 -33
  67. package/lib/components/VSpeedDial/index.d.mts +9 -9
  68. package/lib/components/VSwitch/index.d.mts +6 -6
  69. package/lib/components/VTabs/index.d.mts +21 -3
  70. package/lib/components/VTextField/index.d.mts +18 -18
  71. package/lib/components/VTextarea/index.d.mts +18 -18
  72. package/lib/components/VTooltip/index.d.mts +39 -39
  73. package/lib/components/VValidation/index.d.mts +9 -8
  74. package/lib/components/index.d.mts +675 -464
  75. package/lib/composables/validation.mjs +8 -6
  76. package/lib/composables/validation.mjs.map +1 -1
  77. package/lib/entry-bundler.mjs +1 -1
  78. package/lib/entry-bundler.mjs.map +1 -1
  79. package/lib/framework.mjs +1 -1
  80. package/lib/framework.mjs.map +1 -1
  81. package/lib/index.d.mts +41 -41
  82. package/lib/labs/VDateInput/index.d.mts +6 -6
  83. package/lib/labs/VNumberInput/VNumberInput.mjs +48 -55
  84. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  85. package/lib/labs/VNumberInput/index.d.mts +6 -6
  86. package/lib/labs/VSnackbarQueue/index.d.mts +42 -42
  87. package/lib/labs/VStepperVertical/VStepperVertical.mjs +2 -0
  88. package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -1
  89. package/lib/labs/VStepperVertical/index.d.mts +90 -18
  90. package/lib/labs/VTreeview/index.d.mts +16 -16
  91. package/lib/labs/components.d.mts +160 -88
  92. package/package.json +1 -1
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.10-master.2024-06-21
2
+ * Vuetify v3.6.11-dev.2024-07-03
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17696,6 +17696,87 @@ html.overflow-y-hidden {
17696
17696
  text-transform: none;
17697
17697
  word-break: normal;
17698
17698
  word-wrap: break-word;
17699
+ }.v-autocomplete .v-field .v-text-field__prefix,
17700
+ .v-autocomplete .v-field .v-text-field__suffix,
17701
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17702
+ cursor: text;
17703
+ }
17704
+ .v-autocomplete .v-field .v-field__input > input {
17705
+ flex: 1 1;
17706
+ }
17707
+ .v-autocomplete .v-field input {
17708
+ min-width: 64px;
17709
+ }
17710
+ .v-autocomplete .v-field:not(.v-field--focused) input {
17711
+ min-width: 0;
17712
+ }
17713
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17714
+ margin-inline-end: 2px;
17715
+ }
17716
+ .v-autocomplete .v-autocomplete__selection-text {
17717
+ overflow: hidden;
17718
+ text-overflow: ellipsis;
17719
+ white-space: nowrap;
17720
+ }
17721
+
17722
+ .v-autocomplete__content {
17723
+ overflow: hidden;
17724
+ 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));
17725
+ border-radius: 4px;
17726
+ }
17727
+ .v-autocomplete__mask {
17728
+ background: rgb(var(--v-theme-surface-light));
17729
+ }
17730
+ .v-autocomplete__selection {
17731
+ display: inline-flex;
17732
+ align-items: center;
17733
+ height: 1.5rem;
17734
+ letter-spacing: inherit;
17735
+ line-height: inherit;
17736
+ max-width: calc(100% - 2px - 2px);
17737
+ }
17738
+ .v-autocomplete__selection:first-child {
17739
+ margin-inline-start: 0;
17740
+ }
17741
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17742
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17743
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17744
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17745
+ top: 0px;
17746
+ }
17747
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
17748
+ opacity: var(--v-medium-emphasis-opacity);
17749
+ }
17750
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
17751
+ opacity: 1;
17752
+ }
17753
+ .v-autocomplete--selecting-index .v-field__input > input {
17754
+ caret-color: transparent;
17755
+ }
17756
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
17757
+ flex: 1 1;
17758
+ position: absolute;
17759
+ left: 0;
17760
+ right: 0;
17761
+ width: 100%;
17762
+ padding-inline: inherit;
17763
+ }
17764
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
17765
+ transition: none;
17766
+ }
17767
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
17768
+ opacity: 0;
17769
+ }
17770
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
17771
+ opacity: 0;
17772
+ }
17773
+ .v-autocomplete__menu-icon {
17774
+ margin-inline-start: 4px;
17775
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17776
+ }
17777
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17778
+ opacity: var(--v-high-emphasis-opacity);
17779
+ transform: rotate(180deg);
17699
17780
  }.v-avatar {
17700
17781
  flex: none;
17701
17782
  align-items: center;
@@ -17708,6 +17789,9 @@ html.overflow-y-hidden {
17708
17789
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17709
17790
  transition-property: width, height;
17710
17791
  vertical-align: middle;
17792
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
17793
+ border-style: solid;
17794
+ border-width: thin;
17711
17795
  border-radius: 50%;
17712
17796
  }
17713
17797
  .v-avatar.v-avatar--size-x-small {
@@ -17737,6 +17821,10 @@ html.overflow-y-hidden {
17737
17821
  height: calc(var(--v-avatar-height) + -8px);
17738
17822
  width: calc(var(--v-avatar-height) + -8px);
17739
17823
  }
17824
+ .v-avatar--border {
17825
+ border-width: thin;
17826
+ box-shadow: none;
17827
+ }
17740
17828
  .v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
17741
17829
  background: transparent;
17742
17830
  color: inherit;
@@ -17791,87 +17879,6 @@ html.overflow-y-hidden {
17791
17879
  .v-avatar .v-img {
17792
17880
  height: 100%;
17793
17881
  width: 100%;
17794
- }.v-autocomplete .v-field .v-text-field__prefix,
17795
- .v-autocomplete .v-field .v-text-field__suffix,
17796
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17797
- cursor: text;
17798
- }
17799
- .v-autocomplete .v-field .v-field__input > input {
17800
- flex: 1 1;
17801
- }
17802
- .v-autocomplete .v-field input {
17803
- min-width: 64px;
17804
- }
17805
- .v-autocomplete .v-field:not(.v-field--focused) input {
17806
- min-width: 0;
17807
- }
17808
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17809
- margin-inline-end: 2px;
17810
- }
17811
- .v-autocomplete .v-autocomplete__selection-text {
17812
- overflow: hidden;
17813
- text-overflow: ellipsis;
17814
- white-space: nowrap;
17815
- }
17816
-
17817
- .v-autocomplete__content {
17818
- overflow: hidden;
17819
- 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));
17820
- border-radius: 4px;
17821
- }
17822
- .v-autocomplete__mask {
17823
- background: rgb(var(--v-theme-surface-light));
17824
- }
17825
- .v-autocomplete__selection {
17826
- display: inline-flex;
17827
- align-items: center;
17828
- height: 1.5rem;
17829
- letter-spacing: inherit;
17830
- line-height: inherit;
17831
- max-width: calc(100% - 2px - 2px);
17832
- }
17833
- .v-autocomplete__selection:first-child {
17834
- margin-inline-start: 0;
17835
- }
17836
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17837
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17838
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17839
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17840
- top: 0px;
17841
- }
17842
- .v-autocomplete--selecting-index .v-autocomplete__selection {
17843
- opacity: var(--v-medium-emphasis-opacity);
17844
- }
17845
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
17846
- opacity: 1;
17847
- }
17848
- .v-autocomplete--selecting-index .v-field__input > input {
17849
- caret-color: transparent;
17850
- }
17851
- .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
17852
- flex: 1 1;
17853
- position: absolute;
17854
- left: 0;
17855
- right: 0;
17856
- width: 100%;
17857
- padding-inline: inherit;
17858
- }
17859
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
17860
- transition: none;
17861
- }
17862
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
17863
- opacity: 0;
17864
- }
17865
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
17866
- opacity: 0;
17867
- }
17868
- .v-autocomplete__menu-icon {
17869
- margin-inline-start: 4px;
17870
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17871
- }
17872
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17873
- opacity: var(--v-high-emphasis-opacity);
17874
- transform: rotate(180deg);
17875
17882
  }.v-badge {
17876
17883
  display: inline-block;
17877
17884
  line-height: 1;
@@ -18719,6 +18726,82 @@ html.overflow-y-hidden {
18719
18726
  }
18720
18727
  .v-btn-group--tile {
18721
18728
  border-radius: 0;
18729
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
18730
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
18731
+ }
18732
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
18733
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
18734
+ }
18735
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
18736
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18737
+ }
18738
+ @supports not selector(:focus-visible) {
18739
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
18740
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18741
+ }
18742
+ }.v-carousel {
18743
+ overflow: hidden;
18744
+ position: relative;
18745
+ width: 100%;
18746
+ }
18747
+ .v-carousel__controls {
18748
+ align-items: center;
18749
+ bottom: 0;
18750
+ display: flex;
18751
+ height: 50px;
18752
+ justify-content: center;
18753
+ list-style-type: none;
18754
+ position: absolute;
18755
+ width: 100%;
18756
+ z-index: 1;
18757
+ background: rgba(var(--v-theme-surface-variant), 0.3);
18758
+ color: rgb(var(--v-theme-on-surface-variant));
18759
+ }
18760
+ .v-carousel__controls > .v-item-group {
18761
+ flex: 0 1 auto;
18762
+ }
18763
+ .v-carousel__controls__item {
18764
+ margin: 0 8px;
18765
+ }
18766
+ .v-carousel__controls__item .v-icon {
18767
+ opacity: 0.5;
18768
+ }
18769
+ .v-carousel__controls__item--active .v-icon {
18770
+ opacity: 1;
18771
+ vertical-align: middle;
18772
+ }
18773
+ .v-carousel__controls__item:hover {
18774
+ background: none;
18775
+ }
18776
+ .v-carousel__controls__item:hover .v-icon {
18777
+ opacity: 0.8;
18778
+ }
18779
+
18780
+ .v-carousel__progress {
18781
+ margin: 0;
18782
+ position: absolute;
18783
+ bottom: 0;
18784
+ left: 0;
18785
+ right: 0;
18786
+ }
18787
+
18788
+ .v-carousel-item {
18789
+ display: block;
18790
+ height: inherit;
18791
+ text-decoration: none;
18792
+ }
18793
+ .v-carousel-item > .v-img {
18794
+ height: inherit;
18795
+ }
18796
+
18797
+ .v-carousel--hide-delimiter-background .v-carousel__controls {
18798
+ background: transparent;
18799
+ }
18800
+
18801
+ .v-carousel--vertical-delimiters .v-carousel__controls {
18802
+ flex-direction: column;
18803
+ height: 100% !important;
18804
+ width: 50px;
18722
18805
  }.v-card {
18723
18806
  display: block;
18724
18807
  overflow: hidden;
@@ -19018,87 +19101,6 @@ html.overflow-y-hidden {
19018
19101
  pointer-events: none;
19019
19102
  opacity: 0;
19020
19103
  transition: opacity 0.2s ease-in-out;
19021
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19022
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19023
- }
19024
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19025
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19026
- }
19027
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19028
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19029
- }
19030
- @supports not selector(:focus-visible) {
19031
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19032
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19033
- }
19034
- }.v-carousel {
19035
- overflow: hidden;
19036
- position: relative;
19037
- width: 100%;
19038
- }
19039
- .v-carousel__controls {
19040
- align-items: center;
19041
- bottom: 0;
19042
- display: flex;
19043
- height: 50px;
19044
- justify-content: center;
19045
- list-style-type: none;
19046
- position: absolute;
19047
- width: 100%;
19048
- z-index: 1;
19049
- background: rgba(var(--v-theme-surface-variant), 0.3);
19050
- color: rgb(var(--v-theme-on-surface-variant));
19051
- }
19052
- .v-carousel__controls > .v-item-group {
19053
- flex: 0 1 auto;
19054
- }
19055
- .v-carousel__controls__item {
19056
- margin: 0 8px;
19057
- }
19058
- .v-carousel__controls__item .v-icon {
19059
- opacity: 0.5;
19060
- }
19061
- .v-carousel__controls__item--active .v-icon {
19062
- opacity: 1;
19063
- vertical-align: middle;
19064
- }
19065
- .v-carousel__controls__item:hover {
19066
- background: none;
19067
- }
19068
- .v-carousel__controls__item:hover .v-icon {
19069
- opacity: 0.8;
19070
- }
19071
-
19072
- .v-carousel__progress {
19073
- margin: 0;
19074
- position: absolute;
19075
- bottom: 0;
19076
- left: 0;
19077
- right: 0;
19078
- }
19079
-
19080
- .v-carousel-item {
19081
- display: block;
19082
- height: inherit;
19083
- text-decoration: none;
19084
- }
19085
- .v-carousel-item > .v-img {
19086
- height: inherit;
19087
- }
19088
-
19089
- .v-carousel--hide-delimiter-background .v-carousel__controls {
19090
- background: transparent;
19091
- }
19092
-
19093
- .v-carousel--vertical-delimiters .v-carousel__controls {
19094
- flex-direction: column;
19095
- height: 100% !important;
19096
- width: 50px;
19097
- }.v-checkbox.v-input {
19098
- flex: 0 1 auto;
19099
- }
19100
- .v-checkbox .v-selection-control {
19101
- min-height: var(--v-input-control-height);
19102
19104
  }.v-chip {
19103
19105
  align-items: center;
19104
19106
  display: inline-flex;
@@ -19511,6 +19513,11 @@ html.overflow-y-hidden {
19511
19513
 
19512
19514
  .v-chip--label {
19513
19515
  border-radius: 4px;
19516
+ }.v-checkbox.v-input {
19517
+ flex: 0 1 auto;
19518
+ }
19519
+ .v-checkbox .v-selection-control {
19520
+ min-height: var(--v-input-control-height);
19514
19521
  }.v-chip-group {
19515
19522
  display: flex;
19516
19523
  max-width: 100%;
@@ -19853,6 +19860,61 @@ html.overflow-y-hidden {
19853
19860
  }
19854
19861
  .v-data-table-footer__page {
19855
19862
  padding: 0 8px;
19863
+ }.v-date-picker-month {
19864
+ display: flex;
19865
+ justify-content: center;
19866
+ padding: 0 12px 8px;
19867
+ --v-date-picker-month-day-diff: 4px;
19868
+ }
19869
+
19870
+ .v-date-picker-month__weeks {
19871
+ display: grid;
19872
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
19873
+ column-gap: 4px;
19874
+ font-size: 0.85rem;
19875
+ }
19876
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
19877
+ grid-row-gap: 0;
19878
+ }
19879
+
19880
+ .v-date-picker-month__weekday {
19881
+ font-size: 0.85rem;
19882
+ }
19883
+
19884
+ .v-date-picker-month__days {
19885
+ display: grid;
19886
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
19887
+ column-gap: 4px;
19888
+ flex: 1 1;
19889
+ justify-content: space-around;
19890
+ }
19891
+
19892
+ .v-date-picker-month__day {
19893
+ align-items: center;
19894
+ display: flex;
19895
+ justify-content: center;
19896
+ position: relative;
19897
+ height: 40px;
19898
+ width: 40px;
19899
+ }
19900
+ .v-date-picker-month__day--selected .v-btn {
19901
+ background-color: rgb(var(--v-theme-surface-variant));
19902
+ color: rgb(var(--v-theme-on-surface-variant));
19903
+ }
19904
+ .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
19905
+ --v-btn-height: 24px;
19906
+ --v-btn-size: 0.85rem;
19907
+ }
19908
+ .v-date-picker-month__day--week {
19909
+ font-size: var(--v-btn-size);
19910
+ }
19911
+
19912
+ .v-date-picker-month__day--adjacent {
19913
+ opacity: 0.5;
19914
+ }
19915
+
19916
+ .v-date-picker-month__day--hide-adjacent {
19917
+ opacity: 0;
19856
19918
  }.v-date-picker {
19857
19919
  overflow: hidden;
19858
19920
  width: 328px;
@@ -19915,61 +19977,25 @@ html.overflow-y-hidden {
19915
19977
 
19916
19978
  .v-date-picker__title {
19917
19979
  display: inline-block;
19918
- }.v-date-picker-month {
19919
- display: flex;
19920
- justify-content: center;
19921
- padding: 0 12px 8px;
19922
- --v-date-picker-month-day-diff: 4px;
19923
- }
19924
-
19925
- .v-date-picker-month__weeks {
19926
- display: grid;
19927
- grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
19928
- column-gap: 4px;
19929
- font-size: 0.85rem;
19930
- }
19931
- .v-date-picker-month__weeks + .v-date-picker-month__days {
19932
- grid-row-gap: 0;
19933
- }
19934
-
19935
- .v-date-picker-month__weekday {
19936
- font-size: 0.85rem;
19980
+ }.v-date-picker-months {
19981
+ height: 288px;
19937
19982
  }
19938
19983
 
19939
- .v-date-picker-month__days {
19984
+ .v-date-picker-months__content {
19985
+ align-items: center;
19940
19986
  display: grid;
19941
- grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
19942
- column-gap: 4px;
19943
19987
  flex: 1 1;
19988
+ height: inherit;
19944
19989
  justify-content: space-around;
19990
+ grid-template-columns: repeat(2, 1fr);
19991
+ grid-gap: 0px 24px;
19992
+ padding-inline-start: 36px;
19993
+ padding-inline-end: 36px;
19945
19994
  }
19946
-
19947
- .v-date-picker-month__day {
19948
- align-items: center;
19949
- display: flex;
19950
- justify-content: center;
19951
- position: relative;
19952
- height: 40px;
19953
- width: 40px;
19954
- }
19955
- .v-date-picker-month__day--selected .v-btn {
19956
- background-color: rgb(var(--v-theme-surface-variant));
19957
- color: rgb(var(--v-theme-on-surface-variant));
19958
- }
19959
- .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
19960
- --v-btn-height: 24px;
19961
- --v-btn-size: 0.85rem;
19962
- }
19963
- .v-date-picker-month__day--week {
19964
- font-size: var(--v-btn-size);
19965
- }
19966
-
19967
- .v-date-picker-month__day--adjacent {
19968
- opacity: 0.5;
19969
- }
19970
-
19971
- .v-date-picker-month__day--hide-adjacent {
19972
- opacity: 0;
19995
+ .v-date-picker-months__content .v-btn {
19996
+ text-transform: none;
19997
+ padding-inline-start: 8px;
19998
+ padding-inline-end: 8px;
19973
19999
  }.v-date-picker-header {
19974
20000
  align-items: flex-end;
19975
20001
  height: 70px;
@@ -20030,25 +20056,6 @@ html.overflow-y-hidden {
20030
20056
  .date-picker-header-reverse-transition-leave-to {
20031
20057
  opacity: 0;
20032
20058
  transform: translate(0, 100%);
20033
- }.v-date-picker-months {
20034
- height: 288px;
20035
- }
20036
-
20037
- .v-date-picker-months__content {
20038
- align-items: center;
20039
- display: grid;
20040
- flex: 1 1;
20041
- height: inherit;
20042
- justify-content: space-around;
20043
- grid-template-columns: repeat(2, 1fr);
20044
- grid-gap: 0px 24px;
20045
- padding-inline-start: 36px;
20046
- padding-inline-end: 36px;
20047
- }
20048
- .v-date-picker-months__content .v-btn {
20049
- text-transform: none;
20050
- padding-inline-start: 8px;
20051
- padding-inline-end: 8px;
20052
20059
  }.v-date-picker-years {
20053
20060
  height: 288px;
20054
20061
  overflow-y: scroll;
@@ -20581,34 +20588,6 @@ html.overflow-y-hidden {
20581
20588
  }
20582
20589
  .v-input--plain-underlined.v-file-input .v-input__details {
20583
20590
  padding-inline: 0;
20584
- }.v-footer {
20585
- align-items: center;
20586
- display: flex;
20587
- flex: 1 1 auto;
20588
- padding: 8px 16px;
20589
- position: relative;
20590
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20591
- transition-property: height, width, transform, max-width, left, right, top, bottom;
20592
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20593
- border-style: solid;
20594
- border-width: 0;
20595
- 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));
20596
- border-radius: 0;
20597
- background: rgb(var(--v-theme-surface));
20598
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
20599
- }
20600
- .v-footer--border {
20601
- border-width: thin;
20602
- box-shadow: none;
20603
- }
20604
- .v-footer--absolute {
20605
- position: absolute;
20606
- }
20607
- .v-footer--fixed {
20608
- position: fixed;
20609
- }
20610
- .v-footer--rounded {
20611
- border-radius: 4px;
20612
20591
  }/* region INPUT */
20613
20592
  .v-field {
20614
20593
  --v-theme-overlay-multiplier: 1;
@@ -21180,13 +21159,41 @@ textarea.v-field__input::placeholder {
21180
21159
  opacity: 0;
21181
21160
  }
21182
21161
 
21183
- /* endregion */.v-container {
21184
- width: 100%;
21185
- padding: 16px;
21186
- margin-right: auto;
21187
- margin-left: auto;
21162
+ /* endregion */.v-footer {
21163
+ align-items: center;
21164
+ display: flex;
21165
+ flex: 1 1 auto;
21166
+ padding: 8px 16px;
21167
+ position: relative;
21168
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21169
+ transition-property: height, width, transform, max-width, left, right, top, bottom;
21170
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21171
+ border-style: solid;
21172
+ border-width: 0;
21173
+ 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));
21174
+ border-radius: 0;
21175
+ background: rgb(var(--v-theme-surface));
21176
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21188
21177
  }
21189
- @media (min-width: 960px) {
21178
+ .v-footer--border {
21179
+ border-width: thin;
21180
+ box-shadow: none;
21181
+ }
21182
+ .v-footer--absolute {
21183
+ position: absolute;
21184
+ }
21185
+ .v-footer--fixed {
21186
+ position: fixed;
21187
+ }
21188
+ .v-footer--rounded {
21189
+ border-radius: 4px;
21190
+ }.v-container {
21191
+ width: 100%;
21192
+ padding: 16px;
21193
+ margin-right: auto;
21194
+ margin-left: auto;
21195
+ }
21196
+ @media (min-width: 960px) {
21190
21197
  .v-container {
21191
21198
  max-width: 900px;
21192
21199
  }
@@ -21909,6 +21916,15 @@ textarea.v-field__input::placeholder {
21909
21916
  --v-theme-overlay-multiplier: 3;
21910
21917
  z-index: 0;
21911
21918
  }
21919
+ .v-img.v-img--absolute {
21920
+ height: 100%;
21921
+ left: 0;
21922
+ overflow: hidden;
21923
+ position: absolute;
21924
+ top: 0;
21925
+ width: 100%;
21926
+ z-index: -1;
21927
+ }
21912
21928
  .v-img--booting .v-responsive__sizer {
21913
21929
  transition: none;
21914
21930
  }
@@ -21966,6 +21982,11 @@ textarea.v-field__input::placeholder {
21966
21982
  display: flex;
21967
21983
  justify-content: center;
21968
21984
  padding: 8px;
21985
+ }.v-item-group {
21986
+ flex: 0 1 auto;
21987
+ max-width: 100%;
21988
+ position: relative;
21989
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21969
21990
  }.v-input {
21970
21991
  display: grid;
21971
21992
  flex: 1 1 auto;
@@ -22108,11 +22129,6 @@ textarea.v-field__input::placeholder {
22108
22129
 
22109
22130
  .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22110
22131
  padding-top: calc(var(--v-input-padding-top) + 0px);
22111
- }.v-item-group {
22112
- flex: 0 1 auto;
22113
- max-width: 100%;
22114
- position: relative;
22115
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22116
22132
  }.v-label {
22117
22133
  align-items: center;
22118
22134
  color: inherit;
@@ -22917,14 +22933,6 @@ textarea.v-field__input::placeholder {
22917
22933
  }
22918
22934
  .v-otp-input__loader .v-progress-linear {
22919
22935
  position: absolute;
22920
- }.v-pagination__list {
22921
- display: inline-flex;
22922
- list-style-type: none;
22923
- justify-content: center;
22924
- width: 100%;
22925
- }
22926
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22927
- margin: 0.3rem;
22928
22936
  }.v-overlay-container {
22929
22937
  contain: layout;
22930
22938
  left: 0;
@@ -22988,6 +22996,14 @@ html.v-overlay-scroll-blocked {
22988
22996
 
22989
22997
  .v-overlay--scroll-blocked {
22990
22998
  padding-inline-end: var(--v-scrollbar-offset);
22999
+ }.v-pagination__list {
23000
+ display: inline-flex;
23001
+ list-style-type: none;
23002
+ justify-content: center;
23003
+ width: 100%;
23004
+ }
23005
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23006
+ margin: 0.3rem;
22991
23007
  }.v-parallax {
22992
23008
  position: relative;
22993
23009
  overflow: hidden;
@@ -23456,6 +23472,54 @@ html.v-overlay-scroll-blocked {
23456
23472
  flex: 1 0 0px;
23457
23473
  transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23458
23474
  pointer-events: none;
23475
+ }.v-select .v-field .v-text-field__prefix,
23476
+ .v-select .v-field .v-text-field__suffix,
23477
+ .v-select .v-field .v-field__input, .v-select .v-field.v-field {
23478
+ cursor: pointer;
23479
+ }
23480
+ .v-select .v-field .v-field__input > input {
23481
+ align-self: flex-start;
23482
+ opacity: 1;
23483
+ flex: 0 0;
23484
+ position: absolute;
23485
+ width: 100%;
23486
+ transition: none;
23487
+ pointer-events: none;
23488
+ caret-color: transparent;
23489
+ }
23490
+ .v-select .v-field--dirty .v-select__selection {
23491
+ margin-inline-end: 2px;
23492
+ }
23493
+ .v-select .v-select__selection-text {
23494
+ overflow: hidden;
23495
+ text-overflow: ellipsis;
23496
+ white-space: nowrap;
23497
+ }
23498
+ .v-select__content {
23499
+ overflow: hidden;
23500
+ 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));
23501
+ border-radius: 4px;
23502
+ }
23503
+ .v-select__selection {
23504
+ display: inline-flex;
23505
+ align-items: center;
23506
+ letter-spacing: inherit;
23507
+ line-height: inherit;
23508
+ max-width: 100%;
23509
+ }
23510
+ .v-select .v-select__selection:first-child {
23511
+ margin-inline-start: 0;
23512
+ }
23513
+ .v-select--selected .v-field .v-field__input > input {
23514
+ opacity: 0;
23515
+ }
23516
+ .v-select__menu-icon {
23517
+ margin-inline-start: 4px;
23518
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23519
+ }
23520
+ .v-select--active-menu .v-select__menu-icon {
23521
+ opacity: var(--v-high-emphasis-opacity);
23522
+ transform: rotate(180deg);
23459
23523
  }.v-selection-control {
23460
23524
  align-items: center;
23461
23525
  contain: layout;
@@ -23557,54 +23621,6 @@ html.v-overlay-scroll-blocked {
23557
23621
  }
23558
23622
  .v-selection-control--focus-visible .v-selection-control__input::before {
23559
23623
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
23560
- }.v-select .v-field .v-text-field__prefix,
23561
- .v-select .v-field .v-text-field__suffix,
23562
- .v-select .v-field .v-field__input, .v-select .v-field.v-field {
23563
- cursor: pointer;
23564
- }
23565
- .v-select .v-field .v-field__input > input {
23566
- align-self: flex-start;
23567
- opacity: 1;
23568
- flex: 0 0;
23569
- position: absolute;
23570
- width: 100%;
23571
- transition: none;
23572
- pointer-events: none;
23573
- caret-color: transparent;
23574
- }
23575
- .v-select .v-field--dirty .v-select__selection {
23576
- margin-inline-end: 2px;
23577
- }
23578
- .v-select .v-select__selection-text {
23579
- overflow: hidden;
23580
- text-overflow: ellipsis;
23581
- white-space: nowrap;
23582
- }
23583
- .v-select__content {
23584
- overflow: hidden;
23585
- 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));
23586
- border-radius: 4px;
23587
- }
23588
- .v-select__selection {
23589
- display: inline-flex;
23590
- align-items: center;
23591
- letter-spacing: inherit;
23592
- line-height: inherit;
23593
- max-width: 100%;
23594
- }
23595
- .v-select .v-select__selection:first-child {
23596
- margin-inline-start: 0;
23597
- }
23598
- .v-select--selected .v-field .v-field__input > input {
23599
- opacity: 0;
23600
- }
23601
- .v-select__menu-icon {
23602
- margin-inline-start: 4px;
23603
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23604
- }
23605
- .v-select--active-menu .v-select__menu-icon {
23606
- opacity: var(--v-high-emphasis-opacity);
23607
- transform: rotate(180deg);
23608
23624
  }.v-sheet {
23609
23625
  display: block;
23610
23626
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
@@ -24057,47 +24073,6 @@ html.v-overlay-scroll-blocked {
24057
24073
  }
24058
24074
  .v-snackbar-transition-leave-to {
24059
24075
  opacity: 0;
24060
- }.v-speed-dial__content {
24061
- gap: 8px;
24062
- }
24063
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
24064
- flex-direction: row;
24065
- }
24066
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
24067
- flex-direction: row-reverse;
24068
- }
24069
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
24070
- flex-direction: column-reverse;
24071
- }
24072
- .v-speed-dial__content > *:nth-child(1) {
24073
- transition-delay: 0s;
24074
- }
24075
- .v-speed-dial__content > *:nth-child(2) {
24076
- transition-delay: 0.05s;
24077
- }
24078
- .v-speed-dial__content > *:nth-child(3) {
24079
- transition-delay: 0.1s;
24080
- }
24081
- .v-speed-dial__content > *:nth-child(4) {
24082
- transition-delay: 0.15s;
24083
- }
24084
- .v-speed-dial__content > *:nth-child(5) {
24085
- transition-delay: 0.2s;
24086
- }
24087
- .v-speed-dial__content > *:nth-child(6) {
24088
- transition-delay: 0.25s;
24089
- }
24090
- .v-speed-dial__content > *:nth-child(7) {
24091
- transition-delay: 0.3s;
24092
- }
24093
- .v-speed-dial__content > *:nth-child(8) {
24094
- transition-delay: 0.35s;
24095
- }
24096
- .v-speed-dial__content > *:nth-child(9) {
24097
- transition-delay: 0.4s;
24098
- }
24099
- .v-speed-dial__content > *:nth-child(10) {
24100
- transition-delay: 0.45s;
24101
24076
  }.v-stepper.v-sheet {
24102
24077
  box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
24103
24078
  border-radius: 4px;
@@ -24264,43 +24239,47 @@ html.v-overlay-scroll-blocked {
24264
24239
  width: 100%;
24265
24240
  height: 100%;
24266
24241
  pointer-events: none;
24267
- }.v-system-bar {
24268
- align-items: center;
24269
- display: flex;
24270
- flex: 1 1 auto;
24271
- height: 24px;
24272
- justify-content: flex-end;
24273
- max-width: 100%;
24274
- padding-inline: 8px;
24275
- position: relative;
24276
- text-align: end;
24277
- width: 100%;
24278
- 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));
24279
- background: rgba(var(--v-theme-surface-light));
24280
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24281
- font-size: 0.75rem;
24282
- font-weight: 400;
24283
- letter-spacing: 0.0333333333em;
24284
- line-height: 1.667;
24285
- text-transform: none;
24242
+ }.v-speed-dial__content {
24243
+ gap: 8px;
24286
24244
  }
24287
- .v-system-bar .v-icon {
24288
- opacity: var(--v-medium-emphasis-opacity);
24245
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
24246
+ flex-direction: row;
24289
24247
  }
24290
- .v-system-bar--absolute {
24291
- position: absolute;
24248
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
24249
+ flex-direction: row-reverse;
24292
24250
  }
24293
- .v-system-bar--fixed {
24294
- position: fixed;
24251
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
24252
+ flex-direction: column-reverse;
24295
24253
  }
24296
- .v-system-bar--rounded {
24297
- border-radius: 0;
24254
+ .v-speed-dial__content > *:nth-child(1) {
24255
+ transition-delay: 0s;
24298
24256
  }
24299
- .v-system-bar--window {
24300
- height: 32px;
24257
+ .v-speed-dial__content > *:nth-child(2) {
24258
+ transition-delay: 0.05s;
24301
24259
  }
24302
- .v-system-bar:not(.v-system-bar--absolute) {
24303
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
24260
+ .v-speed-dial__content > *:nth-child(3) {
24261
+ transition-delay: 0.1s;
24262
+ }
24263
+ .v-speed-dial__content > *:nth-child(4) {
24264
+ transition-delay: 0.15s;
24265
+ }
24266
+ .v-speed-dial__content > *:nth-child(5) {
24267
+ transition-delay: 0.2s;
24268
+ }
24269
+ .v-speed-dial__content > *:nth-child(6) {
24270
+ transition-delay: 0.25s;
24271
+ }
24272
+ .v-speed-dial__content > *:nth-child(7) {
24273
+ transition-delay: 0.3s;
24274
+ }
24275
+ .v-speed-dial__content > *:nth-child(8) {
24276
+ transition-delay: 0.35s;
24277
+ }
24278
+ .v-speed-dial__content > *:nth-child(9) {
24279
+ transition-delay: 0.4s;
24280
+ }
24281
+ .v-speed-dial__content > *:nth-child(10) {
24282
+ transition-delay: 0.45s;
24304
24283
  }.v-switch .v-label {
24305
24284
  padding-inline-start: 10px;
24306
24285
  }
@@ -24481,101 +24460,43 @@ html.v-overlay-scroll-blocked {
24481
24460
  .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
24482
24461
  border-width: 0;
24483
24462
  }
24484
- }.v-tab.v-tab.v-btn {
24485
- height: var(--v-tabs-height);
24486
- border-radius: 0;
24487
- min-width: 90px;
24488
- }
24489
- .v-slide-group--horizontal .v-tab {
24490
- max-width: 360px;
24491
- }
24492
- .v-slide-group--vertical .v-tab {
24493
- justify-content: start;
24494
- }
24495
-
24496
- .v-tab__slider {
24497
- position: absolute;
24498
- bottom: 0;
24499
- left: 0;
24500
- height: 2px;
24501
- width: 100%;
24502
- background: currentColor;
24503
- pointer-events: none;
24504
- opacity: 0;
24505
- }
24506
- .v-tab--selected .v-tab__slider {
24507
- opacity: 1;
24508
- }
24509
- .v-slide-group--vertical .v-tab__slider {
24510
- top: 0;
24511
- height: 100%;
24512
- width: 2px;
24513
- }.v-tabs {
24463
+ }.v-system-bar {
24464
+ align-items: center;
24514
24465
  display: flex;
24515
- height: var(--v-tabs-height);
24516
- }
24517
- .v-tabs--density-default {
24518
- --v-tabs-height: 48px;
24519
- }
24520
- .v-tabs--density-default.v-tabs--stacked {
24521
- --v-tabs-height: 72px;
24522
- }
24523
-
24524
- .v-tabs--density-comfortable {
24525
- --v-tabs-height: 44px;
24526
- }
24527
- .v-tabs--density-comfortable.v-tabs--stacked {
24528
- --v-tabs-height: 68px;
24529
- }
24530
-
24531
- .v-tabs--density-compact {
24532
- --v-tabs-height: 36px;
24533
- }
24534
- .v-tabs--density-compact.v-tabs--stacked {
24535
- --v-tabs-height: 60px;
24536
- }
24537
-
24538
- .v-tabs.v-slide-group--vertical {
24539
- height: auto;
24540
- flex: none;
24541
- --v-tabs-height: 48px;
24542
- }
24543
-
24544
- .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
24545
- margin-inline-start: 42px;
24546
- }
24547
-
24548
- .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
24549
- .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
24550
- margin-inline-end: auto;
24466
+ flex: 1 1 auto;
24467
+ height: 24px;
24468
+ justify-content: flex-end;
24469
+ max-width: 100%;
24470
+ padding-inline: 8px;
24471
+ position: relative;
24472
+ text-align: end;
24473
+ width: 100%;
24474
+ 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));
24475
+ background: rgba(var(--v-theme-surface-light));
24476
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24477
+ font-size: 0.75rem;
24478
+ font-weight: 400;
24479
+ letter-spacing: 0.0333333333em;
24480
+ line-height: 1.667;
24481
+ text-transform: none;
24551
24482
  }
24552
- .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
24553
- .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
24554
- margin-inline-start: auto;
24483
+ .v-system-bar .v-icon {
24484
+ opacity: var(--v-medium-emphasis-opacity);
24555
24485
  }
24556
-
24557
- .v-tabs--grow {
24558
- flex-grow: 1;
24486
+ .v-system-bar--absolute {
24487
+ position: absolute;
24559
24488
  }
24560
- .v-tabs--grow .v-tab {
24561
- flex: 1 0 auto;
24562
- max-width: none;
24489
+ .v-system-bar--fixed {
24490
+ position: fixed;
24563
24491
  }
24564
-
24565
- .v-tabs--align-tabs-end .v-tab:first-child {
24566
- margin-inline-start: auto;
24492
+ .v-system-bar--rounded {
24493
+ border-radius: 0;
24567
24494
  }
24568
- .v-tabs--align-tabs-end .v-tab:last-child {
24569
- margin-inline-end: 0;
24495
+ .v-system-bar--window {
24496
+ height: 32px;
24570
24497
  }
24571
-
24572
- @media (max-width: 1279.98px) {
24573
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
24574
- margin-inline-start: 52px;
24575
- }
24576
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24577
- margin-inline-end: 52px;
24578
- }
24498
+ .v-system-bar:not(.v-system-bar--absolute) {
24499
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
24579
24500
  }.v-table {
24580
24501
  background: rgb(var(--v-theme-surface));
24581
24502
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -24714,45 +24635,6 @@ html.v-overlay-scroll-blocked {
24714
24635
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
24715
24636
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
24716
24637
  border-top: 0px !important;
24717
- }.v-textarea .v-field {
24718
- --v-textarea-control-height: var(--v-input-control-height);
24719
- }
24720
- .v-textarea .v-field__field {
24721
- --v-input-control-height: var(--v-textarea-control-height);
24722
- }
24723
- .v-textarea .v-field__input {
24724
- flex: 1 1 auto;
24725
- outline: none;
24726
- -webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
24727
- mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
24728
- }
24729
- .v-textarea .v-field__input.v-textarea__sizer {
24730
- visibility: hidden;
24731
- position: absolute;
24732
- top: 0;
24733
- left: 0;
24734
- height: 0 !important;
24735
- min-height: 0 !important;
24736
- pointer-events: none;
24737
- }
24738
- .v-textarea--no-resize .v-field__input {
24739
- resize: none;
24740
- }
24741
- .v-textarea .v-field--no-label textarea,
24742
- .v-textarea .v-field--active textarea {
24743
- opacity: 1;
24744
- }
24745
- .v-textarea textarea {
24746
- opacity: 0;
24747
- flex: 1;
24748
- min-width: 0;
24749
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24750
- }
24751
- .v-textarea textarea:focus, .v-textarea textarea:active {
24752
- outline: none;
24753
- }
24754
- .v-textarea textarea:invalid {
24755
- box-shadow: none;
24756
24638
  }/* region BLOCK */
24757
24639
  .v-text-field input {
24758
24640
  color: inherit;
@@ -24820,7 +24702,141 @@ html.v-overlay-scroll-blocked {
24820
24702
  padding-inline-end: var(--v-field-padding-end);
24821
24703
  }
24822
24704
 
24823
- /* endregion */.v-theme-provider {
24705
+ /* endregion */.v-tabs {
24706
+ display: flex;
24707
+ height: var(--v-tabs-height);
24708
+ }
24709
+ .v-tabs--density-default {
24710
+ --v-tabs-height: 48px;
24711
+ }
24712
+ .v-tabs--density-default.v-tabs--stacked {
24713
+ --v-tabs-height: 72px;
24714
+ }
24715
+
24716
+ .v-tabs--density-comfortable {
24717
+ --v-tabs-height: 44px;
24718
+ }
24719
+ .v-tabs--density-comfortable.v-tabs--stacked {
24720
+ --v-tabs-height: 68px;
24721
+ }
24722
+
24723
+ .v-tabs--density-compact {
24724
+ --v-tabs-height: 36px;
24725
+ }
24726
+ .v-tabs--density-compact.v-tabs--stacked {
24727
+ --v-tabs-height: 60px;
24728
+ }
24729
+
24730
+ .v-tabs.v-slide-group--vertical {
24731
+ height: auto;
24732
+ flex: none;
24733
+ --v-tabs-height: 48px;
24734
+ }
24735
+
24736
+ .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
24737
+ margin-inline-start: 42px;
24738
+ }
24739
+
24740
+ .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
24741
+ .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
24742
+ margin-inline-end: auto;
24743
+ }
24744
+ .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
24745
+ .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
24746
+ margin-inline-start: auto;
24747
+ }
24748
+
24749
+ .v-tabs--grow {
24750
+ flex-grow: 1;
24751
+ }
24752
+ .v-tabs--grow .v-tab {
24753
+ flex: 1 0 auto;
24754
+ max-width: none;
24755
+ }
24756
+
24757
+ .v-tabs--align-tabs-end .v-tab:first-child {
24758
+ margin-inline-start: auto;
24759
+ }
24760
+ .v-tabs--align-tabs-end .v-tab:last-child {
24761
+ margin-inline-end: 0;
24762
+ }
24763
+
24764
+ @media (max-width: 1279.98px) {
24765
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
24766
+ margin-inline-start: 52px;
24767
+ }
24768
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24769
+ margin-inline-end: 52px;
24770
+ }
24771
+ }.v-tab.v-tab.v-btn {
24772
+ height: var(--v-tabs-height);
24773
+ border-radius: 0;
24774
+ min-width: 90px;
24775
+ }
24776
+ .v-slide-group--horizontal .v-tab {
24777
+ max-width: 360px;
24778
+ }
24779
+ .v-slide-group--vertical .v-tab {
24780
+ justify-content: start;
24781
+ }
24782
+
24783
+ .v-tab__slider {
24784
+ position: absolute;
24785
+ bottom: 0;
24786
+ left: 0;
24787
+ height: 2px;
24788
+ width: 100%;
24789
+ background: currentColor;
24790
+ pointer-events: none;
24791
+ opacity: 0;
24792
+ }
24793
+ .v-tab--selected .v-tab__slider {
24794
+ opacity: 1;
24795
+ }
24796
+ .v-slide-group--vertical .v-tab__slider {
24797
+ top: 0;
24798
+ height: 100%;
24799
+ width: 2px;
24800
+ }.v-textarea .v-field {
24801
+ --v-textarea-control-height: var(--v-input-control-height);
24802
+ }
24803
+ .v-textarea .v-field__field {
24804
+ --v-input-control-height: var(--v-textarea-control-height);
24805
+ }
24806
+ .v-textarea .v-field__input {
24807
+ flex: 1 1 auto;
24808
+ outline: none;
24809
+ -webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
24810
+ mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
24811
+ }
24812
+ .v-textarea .v-field__input.v-textarea__sizer {
24813
+ visibility: hidden;
24814
+ position: absolute;
24815
+ top: 0;
24816
+ left: 0;
24817
+ height: 0 !important;
24818
+ min-height: 0 !important;
24819
+ pointer-events: none;
24820
+ }
24821
+ .v-textarea--no-resize .v-field__input {
24822
+ resize: none;
24823
+ }
24824
+ .v-textarea .v-field--no-label textarea,
24825
+ .v-textarea .v-field--active textarea {
24826
+ opacity: 1;
24827
+ }
24828
+ .v-textarea textarea {
24829
+ opacity: 0;
24830
+ flex: 1;
24831
+ min-width: 0;
24832
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24833
+ }
24834
+ .v-textarea textarea:focus, .v-textarea textarea:active {
24835
+ outline: none;
24836
+ }
24837
+ .v-textarea textarea:invalid {
24838
+ box-shadow: none;
24839
+ }.v-theme-provider {
24824
24840
  background: rgb(var(--v-theme-background));
24825
24841
  color: rgb(var(--v-theme-on-background));
24826
24842
  }.v-timeline .v-timeline-divider__dot {
@@ -25469,6 +25485,91 @@ html.v-overlay-scroll-blocked {
25469
25485
  }
25470
25486
  .v-window-y-reverse-transition-leave-to {
25471
25487
  transform: translateY(100%);
25488
+ }.v-color-picker-canvas {
25489
+ display: flex;
25490
+ position: relative;
25491
+ overflow: hidden;
25492
+ contain: content;
25493
+ touch-action: none;
25494
+ }
25495
+ .v-color-picker-canvas__dot {
25496
+ position: absolute;
25497
+ top: 0;
25498
+ left: 0;
25499
+ width: 15px;
25500
+ height: 15px;
25501
+ background: transparent;
25502
+ border-radius: 50%;
25503
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25504
+ }
25505
+ .v-color-picker-canvas__dot--disabled {
25506
+ box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25507
+ }
25508
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25509
+ will-change: transform;
25510
+ }.v-color-picker-edit {
25511
+ display: flex;
25512
+ margin-top: 24px;
25513
+ }
25514
+
25515
+ .v-color-picker-edit__input {
25516
+ width: 100%;
25517
+ display: flex;
25518
+ flex-wrap: wrap;
25519
+ justify-content: center;
25520
+ text-align: center;
25521
+ }
25522
+ .v-color-picker-edit__input:not(:last-child) {
25523
+ margin-inline-end: 8px;
25524
+ }
25525
+ .v-color-picker-edit__input input {
25526
+ border-radius: 4px;
25527
+ margin-bottom: 8px;
25528
+ min-width: 0;
25529
+ outline: none;
25530
+ text-align: center;
25531
+ width: 100%;
25532
+ height: 32px;
25533
+ background: rgba(var(--v-theme-surface-variant), 0.2);
25534
+ color: rgba(var(--v-theme-on-surface));
25535
+ }
25536
+ .v-color-picker-edit__input span {
25537
+ font-size: 0.75rem;
25538
+ }.v-color-picker-swatches {
25539
+ overflow-y: auto;
25540
+ }
25541
+ .v-color-picker-swatches > div {
25542
+ display: flex;
25543
+ flex-wrap: wrap;
25544
+ justify-content: center;
25545
+ padding: 8px;
25546
+ }
25547
+
25548
+ .v-color-picker-swatches__swatch {
25549
+ display: flex;
25550
+ flex-direction: column;
25551
+ margin-bottom: 10px;
25552
+ }
25553
+
25554
+ .v-color-picker-swatches__color {
25555
+ position: relative;
25556
+ height: 18px;
25557
+ max-height: 18px;
25558
+ width: 45px;
25559
+ margin: 2px 4px;
25560
+ border-radius: 2px;
25561
+ -webkit-user-select: none;
25562
+ user-select: none;
25563
+ overflow: hidden;
25564
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
25565
+ cursor: pointer;
25566
+ }
25567
+ .v-color-picker-swatches__color > div {
25568
+ display: flex;
25569
+ align-items: center;
25570
+ justify-content: center;
25571
+ width: 100%;
25572
+ height: 100%;
25472
25573
  }.v-color-picker-preview__alpha .v-slider-track__background {
25473
25574
  background-color: transparent !important;
25474
25575
  }
@@ -25539,91 +25640,6 @@ html.v-overlay-scroll-blocked {
25539
25640
  .v-color-picker-preview__eye-dropper {
25540
25641
  position: relative;
25541
25642
  margin-right: 12px;
25542
- }.v-color-picker-swatches {
25543
- overflow-y: auto;
25544
- }
25545
- .v-color-picker-swatches > div {
25546
- display: flex;
25547
- flex-wrap: wrap;
25548
- justify-content: center;
25549
- padding: 8px;
25550
- }
25551
-
25552
- .v-color-picker-swatches__swatch {
25553
- display: flex;
25554
- flex-direction: column;
25555
- margin-bottom: 10px;
25556
- }
25557
-
25558
- .v-color-picker-swatches__color {
25559
- position: relative;
25560
- height: 18px;
25561
- max-height: 18px;
25562
- width: 45px;
25563
- margin: 2px 4px;
25564
- border-radius: 2px;
25565
- -webkit-user-select: none;
25566
- user-select: none;
25567
- overflow: hidden;
25568
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
25569
- cursor: pointer;
25570
- }
25571
- .v-color-picker-swatches__color > div {
25572
- display: flex;
25573
- align-items: center;
25574
- justify-content: center;
25575
- width: 100%;
25576
- height: 100%;
25577
- }.v-color-picker-canvas {
25578
- display: flex;
25579
- position: relative;
25580
- overflow: hidden;
25581
- contain: content;
25582
- touch-action: none;
25583
- }
25584
- .v-color-picker-canvas__dot {
25585
- position: absolute;
25586
- top: 0;
25587
- left: 0;
25588
- width: 15px;
25589
- height: 15px;
25590
- background: transparent;
25591
- border-radius: 50%;
25592
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25593
- }
25594
- .v-color-picker-canvas__dot--disabled {
25595
- box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25596
- }
25597
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25598
- will-change: transform;
25599
- }.v-color-picker-edit {
25600
- display: flex;
25601
- margin-top: 24px;
25602
- }
25603
-
25604
- .v-color-picker-edit__input {
25605
- width: 100%;
25606
- display: flex;
25607
- flex-wrap: wrap;
25608
- justify-content: center;
25609
- text-align: center;
25610
- }
25611
- .v-color-picker-edit__input:not(:last-child) {
25612
- margin-inline-end: 8px;
25613
- }
25614
- .v-color-picker-edit__input input {
25615
- border-radius: 4px;
25616
- margin-bottom: 8px;
25617
- min-width: 0;
25618
- outline: none;
25619
- text-align: center;
25620
- width: 100%;
25621
- height: 32px;
25622
- background: rgba(var(--v-theme-surface-variant), 0.2);
25623
- color: rgba(var(--v-theme-on-surface));
25624
- }
25625
- .v-color-picker-edit__input span {
25626
- font-size: 0.75rem;
25627
25643
  }.v-picker.v-sheet {
25628
25644
  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));
25629
25645
  border-radius: 4px;