@vuetify/nightly 3.0.4 → 3.0.5-next-20221210.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.
package/CHANGELOG.md CHANGED
@@ -1,8 +1,13 @@
1
- # [](https://github.com/vuetifyjs/vuetify/compare/v3.0.5-next-20221208.0...v) (2022-12-08)
1
+ # [](https://github.com/vuetifyjs/vuetify/compare/v3.0.5-next-20221210.0...v) (2022-12-10)
2
2
 
3
3
 
4
4
 
5
- ## [3.0.5-next-20221208.0](https://github.com/vuetifyjs/vuetify/compare/v3.0.4...v3.0.5-next-20221208.0) (2022-12-08)
5
+ ## [3.0.5-next-20221210.0](https://github.com/vuetifyjs/vuetify/compare/v3.0.4...v3.0.5-next-20221210.0) (2022-12-10)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **loader:** add String to prop types ([a533a7e](https://github.com/vuetifyjs/vuetify/commit/a533a7e454abba660d5e4f1e519142538bdd6bb9))
6
11
 
7
12
 
8
13
 
@@ -428,10 +428,6 @@
428
428
  "from": "components/VProgressLinear/index.mjs",
429
429
  "styles": []
430
430
  },
431
- "VRadioGroup": {
432
- "from": "components/VRadioGroup/index.mjs",
433
- "styles": []
434
- },
435
431
  "VRating": {
436
432
  "from": "components/VRating/index.mjs",
437
433
  "styles": []
@@ -527,6 +523,10 @@
527
523
  "VWindowItem": {
528
524
  "from": "components/VWindow/index.mjs",
529
525
  "styles": []
526
+ },
527
+ "VRadioGroup": {
528
+ "from": "components/VRadioGroup/index.mjs",
529
+ "styles": []
530
530
  }
531
531
  },
532
532
  "directives": [
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.0.4
2
+ * Vuetify v3.0.5-next-20221210.0
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -25150,6 +25150,26 @@ html.v-overlay-scroll-blocked {
25150
25150
  }
25151
25151
  .v-window-y-reverse-transition-leave-to {
25152
25152
  transform: translateY(100%);
25153
+ }.v-color-picker-canvas {
25154
+ position: relative;
25155
+ overflow: hidden;
25156
+ contain: strict;
25157
+ }
25158
+ .v-color-picker-canvas__dot {
25159
+ position: absolute;
25160
+ top: 0;
25161
+ left: 0;
25162
+ width: 15px;
25163
+ height: 15px;
25164
+ background: transparent;
25165
+ border-radius: 50%;
25166
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25167
+ }
25168
+ .v-color-picker-canvas__dot--disabled {
25169
+ 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);
25170
+ }
25171
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25172
+ will-change: transform;
25153
25173
  }.v-color-picker-edit {
25154
25174
  display: flex;
25155
25175
  }
@@ -25281,26 +25301,6 @@ html.v-overlay-scroll-blocked {
25281
25301
  justify-content: center;
25282
25302
  width: 100%;
25283
25303
  height: 100%;
25284
- }.v-color-picker-canvas {
25285
- position: relative;
25286
- overflow: hidden;
25287
- contain: strict;
25288
- }
25289
- .v-color-picker-canvas__dot {
25290
- position: absolute;
25291
- top: 0;
25292
- left: 0;
25293
- width: 15px;
25294
- height: 15px;
25295
- background: transparent;
25296
- border-radius: 50%;
25297
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25298
- }
25299
- .v-color-picker-canvas__dot--disabled {
25300
- 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);
25301
- }
25302
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25303
- will-change: transform;
25304
25304
  }.v-slider-thumb {
25305
25305
  touch-action: none;
25306
25306
  color: rgb(var(--v-theme-surface-variant));