@vuetify/nightly 4.0.0-dev-20230419.0 → 4.0.0-dev-20230421.0

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 (121) hide show
  1. package/CHANGELOG.md +7 -2
  2. package/dist/json/attributes.json +172 -108
  3. package/dist/json/importMap.json +34 -34
  4. package/dist/json/tags.json +16 -0
  5. package/dist/json/web-types.json +522 -220
  6. package/dist/vuetify-labs.css +293 -130
  7. package/dist/vuetify-labs.d.ts +620 -171
  8. package/dist/vuetify-labs.esm.js +867 -186
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +867 -185
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +166 -3
  13. package/dist/vuetify.d.ts +577 -160
  14. package/dist/vuetify.esm.js +809 -138
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +809 -137
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +802 -736
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/adapters/date-adapter.mjs +2 -0
  22. package/lib/adapters/date-adapter.mjs.map +1 -0
  23. package/lib/adapters/vuetify.mjs +399 -0
  24. package/lib/adapters/vuetify.mjs.map +1 -0
  25. package/lib/blueprints/index.d.ts +34 -0
  26. package/lib/blueprints/md1.d.ts +34 -0
  27. package/lib/blueprints/md2.d.ts +34 -0
  28. package/lib/blueprints/md3.d.ts +34 -0
  29. package/lib/components/VAppBar/VAppBar.mjs +62 -10
  30. package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
  31. package/lib/components/VAppBar/index.d.ts +26 -0
  32. package/lib/components/VAutocomplete/VAutocomplete.css +9 -0
  33. package/lib/components/VAutocomplete/VAutocomplete.mjs +50 -6
  34. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  35. package/lib/components/VAutocomplete/VAutocomplete.sass +10 -0
  36. package/lib/components/VAutocomplete/index.d.ts +29 -17
  37. package/lib/components/VBtn/_mixins.scss +1 -1
  38. package/lib/components/VCard/VCard.mjs.map +1 -1
  39. package/lib/components/VCard/index.d.ts +21 -16
  40. package/lib/components/VCheckbox/VCheckbox.mjs +2 -2
  41. package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
  42. package/lib/components/VCheckbox/index.d.ts +22 -1
  43. package/lib/components/VCombobox/VCombobox.css +1 -1
  44. package/lib/components/VCombobox/VCombobox.mjs +6 -4
  45. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  46. package/lib/components/VCombobox/VCombobox.sass +1 -1
  47. package/lib/components/VCombobox/index.d.ts +29 -17
  48. package/lib/components/VField/index.d.ts +6 -0
  49. package/lib/components/VFileInput/VFileInput.mjs +13 -17
  50. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  51. package/lib/components/VFileInput/index.d.ts +68 -23
  52. package/lib/components/VInput/VInput.mjs +14 -7
  53. package/lib/components/VInput/VInput.mjs.map +1 -1
  54. package/lib/components/VInput/index.d.ts +22 -1
  55. package/lib/components/VOverlay/locationStrategies.mjs +9 -4
  56. package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
  57. package/lib/components/VRadioGroup/VRadioGroup.mjs +2 -2
  58. package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
  59. package/lib/components/VRadioGroup/index.d.ts +22 -1
  60. package/lib/components/VRangeSlider/VRangeSlider.mjs +33 -22
  61. package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
  62. package/lib/components/VRangeSlider/index.d.ts +39 -6
  63. package/lib/components/VSelect/VSelect.mjs +6 -0
  64. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  65. package/lib/components/VSelect/index.d.ts +32 -17
  66. package/lib/components/VSlider/VSlider.mjs +33 -15
  67. package/lib/components/VSlider/VSlider.mjs.map +1 -1
  68. package/lib/components/VSlider/index.d.ts +39 -6
  69. package/lib/components/VSlider/slider.mjs +47 -24
  70. package/lib/components/VSlider/slider.mjs.map +1 -1
  71. package/lib/components/VSwitch/VSwitch.mjs +5 -3
  72. package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
  73. package/lib/components/VSwitch/index.d.ts +43 -1
  74. package/lib/components/VTextField/VTextField.mjs +4 -12
  75. package/lib/components/VTextField/VTextField.mjs.map +1 -1
  76. package/lib/components/VTextField/index.d.ts +70 -22
  77. package/lib/components/VTextarea/VTextarea.mjs +4 -12
  78. package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
  79. package/lib/components/VTextarea/index.d.ts +61 -22
  80. package/lib/components/VToolbar/VToolbar.css +3 -1
  81. package/lib/components/VToolbar/VToolbar.sass +3 -1
  82. package/lib/components/VValidation/index.d.ts +10 -1
  83. package/lib/components/index.d.ts +525 -150
  84. package/lib/composables/date.mjs +39 -0
  85. package/lib/composables/date.mjs.map +1 -0
  86. package/lib/composables/focus.mjs +3 -2
  87. package/lib/composables/focus.mjs.map +1 -1
  88. package/lib/composables/index.mjs +1 -0
  89. package/lib/composables/index.mjs.map +1 -1
  90. package/lib/composables/items.mjs +7 -2
  91. package/lib/composables/items.mjs.map +1 -1
  92. package/lib/composables/scroll.mjs +3 -0
  93. package/lib/composables/scroll.mjs.map +1 -1
  94. package/lib/entry-bundler.mjs +1 -1
  95. package/lib/framework.mjs +8 -3
  96. package/lib/framework.mjs.map +1 -1
  97. package/lib/iconsets/mdi-svg.mjs +2 -2
  98. package/lib/iconsets/mdi-svg.mjs.map +1 -1
  99. package/lib/index.d.ts +52 -10
  100. package/lib/labs/VDataTable/VDataTable.mjs +2 -2
  101. package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
  102. package/lib/labs/VDataTable/VDataTableFooter.mjs.map +1 -1
  103. package/lib/labs/VDataTable/VDataTableHeaders.mjs.map +1 -1
  104. package/lib/labs/VDataTable/VDataTableRows.mjs +52 -44
  105. package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
  106. package/lib/labs/VDataTable/VDataTableServer.mjs +2 -1
  107. package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
  108. package/lib/labs/VDataTable/VDataTableVirtual.mjs +0 -1
  109. package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
  110. package/lib/labs/VDataTable/composables/options.mjs +2 -1
  111. package/lib/labs/VDataTable/composables/options.mjs.map +1 -1
  112. package/lib/labs/VDataTable/index.d.ts +44 -11
  113. package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs +1 -0
  114. package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs.map +1 -1
  115. package/lib/labs/VSkeletonLoader/index.d.ts +9 -9
  116. package/lib/labs/components.d.ts +53 -20
  117. package/lib/styles/main.css +152 -0
  118. package/lib/styles/settings/_utilities.scss +11 -1
  119. package/lib/util/helpers.mjs +4 -0
  120. package/lib/util/helpers.mjs.map +1 -1
  121. package/package.json +2 -2
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v4.0.0-dev-20230419.0
2
+ * Vuetify v4.0.0-dev-20230421.0
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -3454,6 +3454,38 @@ html.overflow-y-hidden {
3454
3454
  flex: 1 1 auto !important;
3455
3455
  }
3456
3456
 
3457
+ .flex-1-1 {
3458
+ flex: 1 1 auto !important;
3459
+ }
3460
+
3461
+ .flex-1-0 {
3462
+ flex: 1 0 auto !important;
3463
+ }
3464
+
3465
+ .flex-0-1 {
3466
+ flex: 0 1 auto !important;
3467
+ }
3468
+
3469
+ .flex-0-0 {
3470
+ flex: 0 0 auto !important;
3471
+ }
3472
+
3473
+ .flex-1-1-100 {
3474
+ flex: 1 1 100% !important;
3475
+ }
3476
+
3477
+ .flex-1-0-100 {
3478
+ flex: 1 0 100% !important;
3479
+ }
3480
+
3481
+ .flex-0-1-100 {
3482
+ flex: 0 1 100% !important;
3483
+ }
3484
+
3485
+ .flex-0-0-100 {
3486
+ flex: 0 0 100% !important;
3487
+ }
3488
+
3457
3489
  .flex-row {
3458
3490
  flex-direction: row !important;
3459
3491
  }
@@ -6732,6 +6764,30 @@ html.overflow-y-hidden {
6732
6764
  .flex-sm-fill {
6733
6765
  flex: 1 1 auto !important;
6734
6766
  }
6767
+ .flex-sm-1-1 {
6768
+ flex: 1 1 auto !important;
6769
+ }
6770
+ .flex-sm-1-0 {
6771
+ flex: 1 0 auto !important;
6772
+ }
6773
+ .flex-sm-0-1 {
6774
+ flex: 0 1 auto !important;
6775
+ }
6776
+ .flex-sm-0-0 {
6777
+ flex: 0 0 auto !important;
6778
+ }
6779
+ .flex-sm-1-1-100 {
6780
+ flex: 1 1 100% !important;
6781
+ }
6782
+ .flex-sm-1-0-100 {
6783
+ flex: 1 0 100% !important;
6784
+ }
6785
+ .flex-sm-0-1-100 {
6786
+ flex: 0 1 100% !important;
6787
+ }
6788
+ .flex-sm-0-0-100 {
6789
+ flex: 0 0 100% !important;
6790
+ }
6735
6791
  .flex-sm-row {
6736
6792
  flex-direction: row !important;
6737
6793
  }
@@ -8536,6 +8592,30 @@ html.overflow-y-hidden {
8536
8592
  .flex-md-fill {
8537
8593
  flex: 1 1 auto !important;
8538
8594
  }
8595
+ .flex-md-1-1 {
8596
+ flex: 1 1 auto !important;
8597
+ }
8598
+ .flex-md-1-0 {
8599
+ flex: 1 0 auto !important;
8600
+ }
8601
+ .flex-md-0-1 {
8602
+ flex: 0 1 auto !important;
8603
+ }
8604
+ .flex-md-0-0 {
8605
+ flex: 0 0 auto !important;
8606
+ }
8607
+ .flex-md-1-1-100 {
8608
+ flex: 1 1 100% !important;
8609
+ }
8610
+ .flex-md-1-0-100 {
8611
+ flex: 1 0 100% !important;
8612
+ }
8613
+ .flex-md-0-1-100 {
8614
+ flex: 0 1 100% !important;
8615
+ }
8616
+ .flex-md-0-0-100 {
8617
+ flex: 0 0 100% !important;
8618
+ }
8539
8619
  .flex-md-row {
8540
8620
  flex-direction: row !important;
8541
8621
  }
@@ -10340,6 +10420,30 @@ html.overflow-y-hidden {
10340
10420
  .flex-lg-fill {
10341
10421
  flex: 1 1 auto !important;
10342
10422
  }
10423
+ .flex-lg-1-1 {
10424
+ flex: 1 1 auto !important;
10425
+ }
10426
+ .flex-lg-1-0 {
10427
+ flex: 1 0 auto !important;
10428
+ }
10429
+ .flex-lg-0-1 {
10430
+ flex: 0 1 auto !important;
10431
+ }
10432
+ .flex-lg-0-0 {
10433
+ flex: 0 0 auto !important;
10434
+ }
10435
+ .flex-lg-1-1-100 {
10436
+ flex: 1 1 100% !important;
10437
+ }
10438
+ .flex-lg-1-0-100 {
10439
+ flex: 1 0 100% !important;
10440
+ }
10441
+ .flex-lg-0-1-100 {
10442
+ flex: 0 1 100% !important;
10443
+ }
10444
+ .flex-lg-0-0-100 {
10445
+ flex: 0 0 100% !important;
10446
+ }
10343
10447
  .flex-lg-row {
10344
10448
  flex-direction: row !important;
10345
10449
  }
@@ -12144,6 +12248,30 @@ html.overflow-y-hidden {
12144
12248
  .flex-xl-fill {
12145
12249
  flex: 1 1 auto !important;
12146
12250
  }
12251
+ .flex-xl-1-1 {
12252
+ flex: 1 1 auto !important;
12253
+ }
12254
+ .flex-xl-1-0 {
12255
+ flex: 1 0 auto !important;
12256
+ }
12257
+ .flex-xl-0-1 {
12258
+ flex: 0 1 auto !important;
12259
+ }
12260
+ .flex-xl-0-0 {
12261
+ flex: 0 0 auto !important;
12262
+ }
12263
+ .flex-xl-1-1-100 {
12264
+ flex: 1 1 100% !important;
12265
+ }
12266
+ .flex-xl-1-0-100 {
12267
+ flex: 1 0 100% !important;
12268
+ }
12269
+ .flex-xl-0-1-100 {
12270
+ flex: 0 1 100% !important;
12271
+ }
12272
+ .flex-xl-0-0-100 {
12273
+ flex: 0 0 100% !important;
12274
+ }
12147
12275
  .flex-xl-row {
12148
12276
  flex-direction: row !important;
12149
12277
  }
@@ -13948,6 +14076,30 @@ html.overflow-y-hidden {
13948
14076
  .flex-xxl-fill {
13949
14077
  flex: 1 1 auto !important;
13950
14078
  }
14079
+ .flex-xxl-1-1 {
14080
+ flex: 1 1 auto !important;
14081
+ }
14082
+ .flex-xxl-1-0 {
14083
+ flex: 1 0 auto !important;
14084
+ }
14085
+ .flex-xxl-0-1 {
14086
+ flex: 0 1 auto !important;
14087
+ }
14088
+ .flex-xxl-0-0 {
14089
+ flex: 0 0 auto !important;
14090
+ }
14091
+ .flex-xxl-1-1-100 {
14092
+ flex: 1 1 100% !important;
14093
+ }
14094
+ .flex-xxl-1-0-100 {
14095
+ flex: 1 0 100% !important;
14096
+ }
14097
+ .flex-xxl-0-1-100 {
14098
+ flex: 0 1 100% !important;
14099
+ }
14100
+ .flex-xxl-0-0-100 {
14101
+ flex: 0 0 100% !important;
14102
+ }
13951
14103
  .flex-xxl-row {
13952
14104
  flex-direction: row !important;
13953
14105
  }
@@ -16485,6 +16637,15 @@ html.overflow-y-hidden {
16485
16637
  .v-autocomplete--chips .v-autocomplete__selection:first-child {
16486
16638
  margin-inline-start: 0;
16487
16639
  }
16640
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
16641
+ opacity: var(--v-medium-emphasis-opacity);
16642
+ }
16643
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
16644
+ opacity: 1;
16645
+ }
16646
+ .v-autocomplete--selecting-index .v-field__input > input {
16647
+ caret-color: transparent;
16648
+ }
16488
16649
  .v-autocomplete--single.v-text-field input {
16489
16650
  flex: 1 1;
16490
16651
  position: absolute;
@@ -18255,7 +18416,7 @@ html.overflow-y-hidden {
18255
18416
  opacity: 1;
18256
18417
  }
18257
18418
  .v-combobox--selecting-index .v-field__input > input {
18258
- caret-color: transparent !important;
18419
+ caret-color: transparent;
18259
18420
  }
18260
18421
  .v-combobox--single.v-text-field input {
18261
18422
  flex: 1 1;
@@ -20073,11 +20234,6 @@ textarea.v-field__input::placeholder {
20073
20234
 
20074
20235
  .v-img__gradient {
20075
20236
  background-repeat: no-repeat;
20076
- }.v-item-group {
20077
- flex: 0 1 auto;
20078
- max-width: 100%;
20079
- position: relative;
20080
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20081
20237
  }.v-input {
20082
20238
  display: grid;
20083
20239
  flex: 1 1 auto;
@@ -20190,6 +20346,11 @@ textarea.v-field__input::placeholder {
20190
20346
  .v-input__control {
20191
20347
  display: flex;
20192
20348
  grid-area: control;
20349
+ }.v-item-group {
20350
+ flex: 0 1 auto;
20351
+ max-width: 100%;
20352
+ position: relative;
20353
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20193
20354
  }.v-label {
20194
20355
  align-items: center;
20195
20356
  display: inline-flex;
@@ -21560,6 +21721,14 @@ html.v-overlay-scroll-blocked {
21560
21721
  }
21561
21722
  .v-selection-control--focus-visible .v-selection-control__input::before {
21562
21723
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21724
+ }.v-selection-control-group {
21725
+ grid-area: control;
21726
+ display: flex;
21727
+ flex-direction: column;
21728
+ }
21729
+ .v-selection-control-group--inline {
21730
+ flex-direction: row;
21731
+ flex-wrap: wrap;
21563
21732
  }.v-sheet {
21564
21733
  display: block;
21565
21734
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
@@ -21624,14 +21793,6 @@ html.v-overlay-scroll-blocked {
21624
21793
  .v-slide-group--vertical .v-slide-group__container,
21625
21794
  .v-slide-group--vertical .v-slide-group__content {
21626
21795
  flex-direction: column;
21627
- }.v-selection-control-group {
21628
- grid-area: control;
21629
- display: flex;
21630
- flex-direction: column;
21631
- }
21632
- .v-selection-control-group--inline {
21633
- flex-direction: row;
21634
- flex-wrap: wrap;
21635
21796
  }.v-snackbar {
21636
21797
  justify-content: center;
21637
21798
  z-index: 10000;
@@ -21952,120 +22113,6 @@ html.v-overlay-scroll-blocked {
21952
22113
  top: 0;
21953
22114
  height: 100%;
21954
22115
  width: 2px;
21955
- }.v-textarea .v-field {
21956
- --v-textarea-control-height: var(--v-input-control-height);
21957
- }
21958
- .v-textarea .v-field__field {
21959
- --v-input-control-height: var(--v-textarea-control-height);
21960
- }
21961
- .v-textarea .v-field__input {
21962
- flex: 1 1 auto;
21963
- outline: none;
21964
- -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));
21965
- 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));
21966
- }
21967
- .v-textarea--auto-grow .v-field__input {
21968
- overflow: hidden;
21969
- }
21970
- .v-textarea--no-resize .v-field__input {
21971
- resize: none;
21972
- }
21973
- .v-textarea__sizer {
21974
- visibility: hidden;
21975
- position: absolute;
21976
- top: 0;
21977
- left: 0;
21978
- height: 0 !important;
21979
- min-height: 0 !important;
21980
- pointer-events: none;
21981
- }
21982
- .v-textarea .v-field--no-label textarea,
21983
- .v-textarea .v-field--active textarea {
21984
- opacity: 1;
21985
- }
21986
- .v-textarea textarea {
21987
- opacity: 0;
21988
- flex: 1;
21989
- min-width: 0;
21990
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
21991
- }
21992
- .v-textarea textarea:focus, .v-textarea textarea:active {
21993
- outline: none;
21994
- }
21995
- .v-textarea textarea:invalid {
21996
- box-shadow: none;
21997
- }/* region BLOCK */
21998
- .v-text-field input {
21999
- color: inherit;
22000
- opacity: 0;
22001
- flex: 1;
22002
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
22003
- min-width: 0;
22004
- }
22005
- .v-text-field input:focus, .v-text-field input:active {
22006
- outline: none;
22007
- }
22008
- .v-text-field input:invalid {
22009
- box-shadow: none;
22010
- }
22011
- .v-text-field .v-field {
22012
- cursor: text;
22013
- }
22014
- .v-text-field--prefixed.v-text-field .v-field__input {
22015
- --v-field-padding-start: 6px;
22016
- }
22017
-
22018
- .v-text-field--suffixed.v-text-field .v-field__input {
22019
- --v-field-padding-end: 0;
22020
- }
22021
-
22022
- .v-text-field .v-input__details {
22023
- padding-inline-start: 16px;
22024
- padding-inline-end: 16px;
22025
- }
22026
- .v-text-field .v-field--no-label input,
22027
- .v-text-field .v-field--active input {
22028
- opacity: 1;
22029
- }
22030
- .v-text-field .v-field--single-line input {
22031
- transition: none;
22032
- }
22033
-
22034
- /* endregion */
22035
- /* region ELEMENTS */
22036
- .v-text-field__prefix, .v-text-field__suffix {
22037
- align-items: center;
22038
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
22039
- cursor: default;
22040
- display: flex;
22041
- opacity: 0;
22042
- transition: inherit;
22043
- white-space: nowrap;
22044
- padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
22045
- padding-bottom: var(--v-field-padding-bottom, 6px);
22046
- }
22047
- .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
22048
- opacity: 1;
22049
- }
22050
- .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
22051
- color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
22052
- }
22053
- .v-text-field__prefix {
22054
- padding-inline-start: var(--v-field-padding-start);
22055
- }
22056
- .v-text-field__suffix {
22057
- padding-inline-end: var(--v-field-padding-end);
22058
- }
22059
-
22060
- /* endregion */
22061
- /* region MODIFIERS */
22062
- .v-text-field--flush-details .v-input__details {
22063
- padding: 0;
22064
- }
22065
-
22066
- /* endregion */.v-theme-provider {
22067
- background: rgb(var(--v-theme-background));
22068
- color: rgb(var(--v-theme-on-background));
22069
22116
  }.v-table {
22070
22117
  background: rgb(var(--v-theme-surface));
22071
22118
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -22193,6 +22240,120 @@ html.v-overlay-scroll-blocked {
22193
22240
  border-top: 0px !important;
22194
22241
  position: sticky;
22195
22242
  bottom: 0;
22243
+ }.v-textarea .v-field {
22244
+ --v-textarea-control-height: var(--v-input-control-height);
22245
+ }
22246
+ .v-textarea .v-field__field {
22247
+ --v-input-control-height: var(--v-textarea-control-height);
22248
+ }
22249
+ .v-textarea .v-field__input {
22250
+ flex: 1 1 auto;
22251
+ outline: none;
22252
+ -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));
22253
+ 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));
22254
+ }
22255
+ .v-textarea--auto-grow .v-field__input {
22256
+ overflow: hidden;
22257
+ }
22258
+ .v-textarea--no-resize .v-field__input {
22259
+ resize: none;
22260
+ }
22261
+ .v-textarea__sizer {
22262
+ visibility: hidden;
22263
+ position: absolute;
22264
+ top: 0;
22265
+ left: 0;
22266
+ height: 0 !important;
22267
+ min-height: 0 !important;
22268
+ pointer-events: none;
22269
+ }
22270
+ .v-textarea .v-field--no-label textarea,
22271
+ .v-textarea .v-field--active textarea {
22272
+ opacity: 1;
22273
+ }
22274
+ .v-textarea textarea {
22275
+ opacity: 0;
22276
+ flex: 1;
22277
+ min-width: 0;
22278
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
22279
+ }
22280
+ .v-textarea textarea:focus, .v-textarea textarea:active {
22281
+ outline: none;
22282
+ }
22283
+ .v-textarea textarea:invalid {
22284
+ box-shadow: none;
22285
+ }/* region BLOCK */
22286
+ .v-text-field input {
22287
+ color: inherit;
22288
+ opacity: 0;
22289
+ flex: 1;
22290
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
22291
+ min-width: 0;
22292
+ }
22293
+ .v-text-field input:focus, .v-text-field input:active {
22294
+ outline: none;
22295
+ }
22296
+ .v-text-field input:invalid {
22297
+ box-shadow: none;
22298
+ }
22299
+ .v-text-field .v-field {
22300
+ cursor: text;
22301
+ }
22302
+ .v-text-field--prefixed.v-text-field .v-field__input {
22303
+ --v-field-padding-start: 6px;
22304
+ }
22305
+
22306
+ .v-text-field--suffixed.v-text-field .v-field__input {
22307
+ --v-field-padding-end: 0;
22308
+ }
22309
+
22310
+ .v-text-field .v-input__details {
22311
+ padding-inline-start: 16px;
22312
+ padding-inline-end: 16px;
22313
+ }
22314
+ .v-text-field .v-field--no-label input,
22315
+ .v-text-field .v-field--active input {
22316
+ opacity: 1;
22317
+ }
22318
+ .v-text-field .v-field--single-line input {
22319
+ transition: none;
22320
+ }
22321
+
22322
+ /* endregion */
22323
+ /* region ELEMENTS */
22324
+ .v-text-field__prefix, .v-text-field__suffix {
22325
+ align-items: center;
22326
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
22327
+ cursor: default;
22328
+ display: flex;
22329
+ opacity: 0;
22330
+ transition: inherit;
22331
+ white-space: nowrap;
22332
+ padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
22333
+ padding-bottom: var(--v-field-padding-bottom, 6px);
22334
+ }
22335
+ .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
22336
+ opacity: 1;
22337
+ }
22338
+ .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
22339
+ color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
22340
+ }
22341
+ .v-text-field__prefix {
22342
+ padding-inline-start: var(--v-field-padding-start);
22343
+ }
22344
+ .v-text-field__suffix {
22345
+ padding-inline-end: var(--v-field-padding-end);
22346
+ }
22347
+
22348
+ /* endregion */
22349
+ /* region MODIFIERS */
22350
+ .v-text-field--flush-details .v-input__details {
22351
+ padding: 0;
22352
+ }
22353
+
22354
+ /* endregion */.v-theme-provider {
22355
+ background: rgb(var(--v-theme-background));
22356
+ color: rgb(var(--v-theme-on-background));
22196
22357
  }.v-timeline .v-timeline-divider__dot {
22197
22358
  background: rgb(var(--v-theme-on-surface-variant));
22198
22359
  }
@@ -22648,7 +22809,7 @@ html.v-overlay-scroll-blocked {
22648
22809
  overflow: hidden;
22649
22810
  position: relative;
22650
22811
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22651
- transition-property: height, width, transform, max-width, left, right, top, bottom;
22812
+ transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
22652
22813
  width: 100%;
22653
22814
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22654
22815
  border-style: solid;
@@ -22718,6 +22879,8 @@ html.v-overlay-scroll-blocked {
22718
22879
  width: 100%;
22719
22880
  height: 100%;
22720
22881
  display: flex;
22882
+ opacity: var(--v-toolbar-image-opacity, 1);
22883
+ transition-property: opacity;
22721
22884
  }
22722
22885
 
22723
22886
  .v-toolbar__prepend,