vuetify 2.6.14 → 2.6.16

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 (53) hide show
  1. package/dist/json/attributes.json +9 -9
  2. package/dist/json/web-types.json +14 -14
  3. package/dist/vuetify.css +11 -3
  4. package/dist/vuetify.css.map +1 -1
  5. package/dist/vuetify.js +28 -19
  6. package/dist/vuetify.js.map +1 -1
  7. package/dist/vuetify.min.css +2 -2
  8. package/dist/vuetify.min.js +2 -2
  9. package/es5/components/VApp/VApp.js +1 -1
  10. package/es5/components/VApp/VApp.js.map +1 -1
  11. package/es5/components/VDataIterator/VDataIterator.js +4 -4
  12. package/es5/components/VDataIterator/VDataIterator.js.map +1 -1
  13. package/es5/components/VDataTable/VDataTable.js +2 -1
  14. package/es5/components/VDataTable/VDataTable.js.map +1 -1
  15. package/es5/components/VLabel/VLabel.js +7 -4
  16. package/es5/components/VLabel/VLabel.js.map +1 -1
  17. package/es5/components/VSelect/VSelect.js +11 -6
  18. package/es5/components/VSelect/VSelect.js.map +1 -1
  19. package/es5/framework.js +1 -1
  20. package/es5/mixins/overlayable/index.js +1 -1
  21. package/es5/mixins/overlayable/index.js.map +1 -1
  22. package/es5/services/icons/presets/fa.js +1 -1
  23. package/es5/services/icons/presets/fa.js.map +1 -1
  24. package/lib/components/VApp/VApp.js +1 -1
  25. package/lib/components/VApp/VApp.js.map +1 -1
  26. package/lib/components/VDataIterator/VDataIterator.js +4 -4
  27. package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
  28. package/lib/components/VDataTable/VDataTable.js +2 -1
  29. package/lib/components/VDataTable/VDataTable.js.map +1 -1
  30. package/lib/components/VLabel/VLabel.js +6 -4
  31. package/lib/components/VLabel/VLabel.js.map +1 -1
  32. package/lib/components/VSelect/VSelect.js +11 -6
  33. package/lib/components/VSelect/VSelect.js.map +1 -1
  34. package/lib/framework.js +1 -1
  35. package/lib/mixins/overlayable/index.js +1 -1
  36. package/lib/mixins/overlayable/index.js.map +1 -1
  37. package/lib/services/icons/presets/fa.js +1 -1
  38. package/lib/services/icons/presets/fa.js.map +1 -1
  39. package/package.json +2 -2
  40. package/src/components/VApp/VApp.ts +1 -1
  41. package/src/components/VCarousel/__tests__/VCarouselItem.spec.ts +1 -1
  42. package/src/components/VColorPicker/VColorPickerSwatches.sass +1 -1
  43. package/src/components/VColorPicker/_variables.scss +2 -1
  44. package/src/components/VDataIterator/VDataIterator.ts +4 -4
  45. package/src/components/VDataTable/VDataTable.ts +1 -0
  46. package/src/components/VDataTable/__tests__/__snapshots__/VDataTable.spec.ts.snap +2 -2
  47. package/src/components/VLabel/VLabel.ts +5 -4
  48. package/src/components/VSelect/VSelect.ts +12 -4
  49. package/src/components/VSystemBar/VSystemBar.sass +4 -0
  50. package/src/components/VTextField/VTextField.sass +1 -1
  51. package/src/components/VTextarea/VTextarea.sass +9 -0
  52. package/src/mixins/overlayable/index.ts +1 -1
  53. package/src/services/icons/presets/fa.ts +1 -1
@@ -373,7 +373,7 @@
373
373
  },
374
374
  "v-autocomplete/filter": {
375
375
  "type": "function",
376
- "description": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#L40)"
376
+ "description": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/v2-stable/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#L40)"
377
377
  },
378
378
  "v-autocomplete/flat": {
379
379
  "type": "boolean",
@@ -397,7 +397,7 @@
397
397
  },
398
398
  "v-autocomplete/hide-selected": {
399
399
  "type": "boolean",
400
- "description": "Do not display in the select menu items that are already selected"
400
+ "description": "Do not display in the select menu items that are already selected. Also removes checkboxes from the list when multiple"
401
401
  },
402
402
  "v-autocomplete/hint": {
403
403
  "type": "string",
@@ -561,7 +561,7 @@
561
561
  },
562
562
  "v-autocomplete/value-comparator": {
563
563
  "type": "function",
564
- "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)"
564
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/v2-stable/packages/vuetify/src/util/helpers.ts)"
565
565
  },
566
566
  "v-avatar/color": {
567
567
  "type": "string",
@@ -2669,7 +2669,7 @@
2669
2669
  },
2670
2670
  "v-combobox/hide-selected": {
2671
2671
  "type": "boolean",
2672
- "description": "Do not display in the select menu items that are already selected"
2672
+ "description": "Do not display in the select menu items that are already selected. Also removes checkboxes from the list when multiple"
2673
2673
  },
2674
2674
  "v-combobox/hint": {
2675
2675
  "type": "string",
@@ -2833,7 +2833,7 @@
2833
2833
  },
2834
2834
  "v-combobox/value-comparator": {
2835
2835
  "type": "function",
2836
- "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)"
2836
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/v2-stable/packages/vuetify/src/util/helpers.ts)"
2837
2837
  },
2838
2838
  "v-data-iterator/checkbox-color": {
2839
2839
  "type": "string",
@@ -5469,7 +5469,7 @@
5469
5469
  },
5470
5470
  "v-overflow-btn/hide-selected": {
5471
5471
  "type": "boolean",
5472
- "description": "Do not display in the select menu items that are already selected"
5472
+ "description": "Do not display in the select menu items that are already selected. Also removes checkboxes from the list when multiple"
5473
5473
  },
5474
5474
  "v-overflow-btn/hint": {
5475
5475
  "type": "string",
@@ -5637,7 +5637,7 @@
5637
5637
  },
5638
5638
  "v-overflow-btn/value-comparator": {
5639
5639
  "type": "function",
5640
- "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)"
5640
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/v2-stable/packages/vuetify/src/util/helpers.ts)"
5641
5641
  },
5642
5642
  "v-overlay/absolute": {
5643
5643
  "type": "boolean",
@@ -6469,7 +6469,7 @@
6469
6469
  },
6470
6470
  "v-select/hide-selected": {
6471
6471
  "type": "boolean",
6472
- "description": "Do not display in the select menu items that are already selected"
6472
+ "description": "Do not display in the select menu items that are already selected. Also removes checkboxes from the list when multiple"
6473
6473
  },
6474
6474
  "v-select/hint": {
6475
6475
  "type": "string",
@@ -6625,7 +6625,7 @@
6625
6625
  },
6626
6626
  "v-select/value-comparator": {
6627
6627
  "type": "function",
6628
- "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)"
6628
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/v2-stable/packages/vuetify/src/util/helpers.ts)"
6629
6629
  },
6630
6630
  "v-skeleton-loader/boilerplate": {
6631
6631
  "type": "boolean",
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "2.6.14",
5
+ "version": "2.6.16",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -1231,7 +1231,7 @@
1231
1231
  },
1232
1232
  {
1233
1233
  "name": "filter",
1234
- "description": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#L40)",
1234
+ "description": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/v2-stable/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#L40)",
1235
1235
  "doc-url": "https://www.vuetifyjs.com/api/v-autocomplete#props",
1236
1236
  "default": "(item, queryText, itemText) => {}",
1237
1237
  "value": {
@@ -1300,7 +1300,7 @@
1300
1300
  },
1301
1301
  {
1302
1302
  "name": "hide-selected",
1303
- "description": "Do not display in the select menu items that are already selected",
1303
+ "description": "Do not display in the select menu items that are already selected. Also removes checkboxes from the list when multiple",
1304
1304
  "doc-url": "https://www.vuetifyjs.com/api/v-autocomplete#props",
1305
1305
  "default": "false",
1306
1306
  "value": {
@@ -1755,7 +1755,7 @@
1755
1755
  },
1756
1756
  {
1757
1757
  "name": "value-comparator",
1758
- "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)",
1758
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/v2-stable/packages/vuetify/src/util/helpers.ts)",
1759
1759
  "doc-url": "https://www.vuetifyjs.com/api/v-autocomplete#props",
1760
1760
  "default": "(a: any, b: any): boolean",
1761
1761
  "value": {
@@ -5097,7 +5097,7 @@
5097
5097
  "name": "start",
5098
5098
  "description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
5099
5099
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar#props",
5100
- "default": "2023-01-10",
5100
+ "default": "2023-07-05",
5101
5101
  "value": {
5102
5102
  "kind": "expression",
5103
5103
  "type": [
@@ -6726,7 +6726,7 @@
6726
6726
  "name": "start",
6727
6727
  "description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
6728
6728
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar-daily#props",
6729
- "default": "2023-01-10",
6729
+ "default": "2023-07-05",
6730
6730
  "value": {
6731
6731
  "kind": "expression",
6732
6732
  "type": [
@@ -6944,7 +6944,7 @@
6944
6944
  "name": "start",
6945
6945
  "description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
6946
6946
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar-weekly#props",
6947
- "default": "2023-01-10",
6947
+ "default": "2023-07-05",
6948
6948
  "value": {
6949
6949
  "kind": "expression",
6950
6950
  "type": [
@@ -7162,7 +7162,7 @@
7162
7162
  "name": "start",
7163
7163
  "description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
7164
7164
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar-monthly#props",
7165
- "default": "2023-01-10",
7165
+ "default": "2023-07-05",
7166
7166
  "value": {
7167
7167
  "kind": "expression",
7168
7168
  "type": [
@@ -10257,7 +10257,7 @@
10257
10257
  },
10258
10258
  {
10259
10259
  "name": "hide-selected",
10260
- "description": "Do not display in the select menu items that are already selected",
10260
+ "description": "Do not display in the select menu items that are already selected. Also removes checkboxes from the list when multiple",
10261
10261
  "doc-url": "https://www.vuetifyjs.com/api/v-combobox#props",
10262
10262
  "default": "false",
10263
10263
  "value": {
@@ -10712,7 +10712,7 @@
10712
10712
  },
10713
10713
  {
10714
10714
  "name": "value-comparator",
10715
- "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)",
10715
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/v2-stable/packages/vuetify/src/util/helpers.ts)",
10716
10716
  "doc-url": "https://www.vuetifyjs.com/api/v-combobox#props",
10717
10717
  "default": "(a: any, b: any): boolean",
10718
10718
  "value": {
@@ -21454,7 +21454,7 @@
21454
21454
  },
21455
21455
  {
21456
21456
  "name": "hide-selected",
21457
- "description": "Do not display in the select menu items that are already selected",
21457
+ "description": "Do not display in the select menu items that are already selected. Also removes checkboxes from the list when multiple",
21458
21458
  "doc-url": "https://www.vuetifyjs.com/api/v-overflow-btn#props",
21459
21459
  "default": "false",
21460
21460
  "value": {
@@ -21920,7 +21920,7 @@
21920
21920
  },
21921
21921
  {
21922
21922
  "name": "value-comparator",
21923
- "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)",
21923
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/v2-stable/packages/vuetify/src/util/helpers.ts)",
21924
21924
  "doc-url": "https://www.vuetifyjs.com/api/v-overflow-btn#props",
21925
21925
  "default": "(a: any, b: any): boolean",
21926
21926
  "value": {
@@ -25275,7 +25275,7 @@
25275
25275
  },
25276
25276
  {
25277
25277
  "name": "hide-selected",
25278
- "description": "Do not display in the select menu items that are already selected",
25278
+ "description": "Do not display in the select menu items that are already selected. Also removes checkboxes from the list when multiple",
25279
25279
  "doc-url": "https://www.vuetifyjs.com/api/v-select#props",
25280
25280
  "default": "false",
25281
25281
  "value": {
@@ -25709,7 +25709,7 @@
25709
25709
  },
25710
25710
  {
25711
25711
  "name": "value-comparator",
25712
- "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts)",
25712
+ "description": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/v2-stable/packages/vuetify/src/util/helpers.ts)",
25713
25713
  "doc-url": "https://www.vuetifyjs.com/api/v-select#props",
25714
25714
  "default": "(a: any, b: any): boolean",
25715
25715
  "value": {
package/dist/vuetify.css CHANGED
@@ -325,7 +325,6 @@
325
325
  .v-sheet.v-sheet--shaped {
326
326
  border-radius: 24px 0;
327
327
  }
328
- @charset "UTF-8";
329
328
  @-webkit-keyframes v-shake {
330
329
  59% {
331
330
  margin-left: 0;
@@ -19338,10 +19337,10 @@ html.overflow-y-hidden {
19338
19337
  padding-top: 0px;
19339
19338
  margin-bottom: 8px;
19340
19339
  }
19341
- .v-application--is-ltr .v-text-field--reverse input {
19340
+ .v-application--is-ltr .v-text-field--reverse input, .v-application--is-ltr .v-text-field--reverse textarea {
19342
19341
  text-align: right;
19343
19342
  }
19344
- .v-application--is-rtl .v-text-field--reverse input {
19343
+ .v-application--is-rtl .v-text-field--reverse input, .v-application--is-rtl .v-text-field--reverse textarea {
19345
19344
  text-align: left;
19346
19345
  }
19347
19346
  .v-application--is-ltr .v-text-field--reverse .v-label {
@@ -28399,6 +28398,9 @@ html.overflow-y-hidden {
28399
28398
  font-size: 1rem;
28400
28399
  margin-right: 4px;
28401
28400
  }
28401
+ .v-system-bar .v-btn .v-icon {
28402
+ margin-right: 0;
28403
+ }
28402
28404
  .v-system-bar--fixed, .v-system-bar--absolute {
28403
28405
  left: 0;
28404
28406
  top: 0;
@@ -28799,6 +28801,12 @@ html.overflow-y-hidden {
28799
28801
  .v-application--is-rtl .v-textarea.v-text-field--enclosed .v-text-field__slot textarea {
28800
28802
  padding-left: 12px;
28801
28803
  }
28804
+ .v-application--is-ltr .v-textarea.v-text-field--enclosed.v-text-field--reverse .v-text-field__slot .v-label {
28805
+ margin-right: 12px;
28806
+ }
28807
+ .v-application--is-rtl .v-textarea.v-text-field--enclosed.v-text-field--reverse .v-text-field__slot .v-label {
28808
+ margin-left: 12px;
28809
+ }
28802
28810
  /**
28803
28811
  * * .v-timeline::before - center divider
28804
28812
  * * .v-card::before - arrow shadow (conflicts with active link overlay)