vuetify 2.4.4 → 2.4.5

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 (81) hide show
  1. package/dist/json/attributes.json +7 -7
  2. package/dist/json/web-types.json +12 -12
  3. package/dist/vuetify.css +3 -0
  4. package/dist/vuetify.css.map +1 -1
  5. package/dist/vuetify.js +88 -34
  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/VCalendar/VCalendarCategory.js +8 -6
  10. package/es5/components/VCalendar/VCalendarCategory.js.map +1 -1
  11. package/es5/components/VCombobox/VCombobox.js +7 -1
  12. package/es5/components/VCombobox/VCombobox.js.map +1 -1
  13. package/es5/components/VData/VData.js +1 -1
  14. package/es5/components/VData/VData.js.map +1 -1
  15. package/es5/components/VFileInput/VFileInput.js +1 -1
  16. package/es5/components/VFileInput/VFileInput.js.map +1 -1
  17. package/es5/components/VLazy/VLazy.js +3 -8
  18. package/es5/components/VLazy/VLazy.js.map +1 -1
  19. package/es5/components/VList/VListItem.js +1 -1
  20. package/es5/components/VList/VListItem.js.map +1 -1
  21. package/es5/components/VRating/VRating.js +0 -1
  22. package/es5/components/VRating/VRating.js.map +1 -1
  23. package/es5/components/VSelect/VSelect.js +19 -10
  24. package/es5/components/VSelect/VSelect.js.map +1 -1
  25. package/es5/components/VTextField/VTextField.js +8 -2
  26. package/es5/components/VTextField/VTextField.js.map +1 -1
  27. package/es5/framework.js +1 -1
  28. package/es5/locale/sk.js +1 -1
  29. package/es5/locale/sk.js.map +1 -1
  30. package/es5/services/theme/utils.js +10 -10
  31. package/es5/services/theme/utils.js.map +1 -1
  32. package/es5/util/dom.js +33 -0
  33. package/es5/util/dom.js.map +1 -0
  34. package/lib/components/VCalendar/VCalendarCategory.js +7 -5
  35. package/lib/components/VCalendar/VCalendarCategory.js.map +1 -1
  36. package/lib/components/VCombobox/VCombobox.js +6 -1
  37. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  38. package/lib/components/VData/VData.js +1 -1
  39. package/lib/components/VData/VData.js.map +1 -1
  40. package/lib/components/VFileInput/VFileInput.js +1 -1
  41. package/lib/components/VFileInput/VFileInput.js.map +1 -1
  42. package/lib/components/VLazy/VLazy.js +3 -8
  43. package/lib/components/VLazy/VLazy.js.map +1 -1
  44. package/lib/components/VList/VListItem.js +1 -1
  45. package/lib/components/VList/VListItem.js.map +1 -1
  46. package/lib/components/VRating/VRating.js +0 -1
  47. package/lib/components/VRating/VRating.js.map +1 -1
  48. package/lib/components/VSelect/VSelect.js +9 -2
  49. package/lib/components/VSelect/VSelect.js.map +1 -1
  50. package/lib/components/VTextField/VTextField.js +7 -2
  51. package/lib/components/VTextField/VTextField.js.map +1 -1
  52. package/lib/framework.js +1 -1
  53. package/lib/locale/sk.js +1 -1
  54. package/lib/locale/sk.js.map +1 -1
  55. package/lib/util/dom.js +24 -0
  56. package/lib/util/dom.js.map +1 -0
  57. package/package.json +2 -2
  58. package/src/components/VAutocomplete/__tests__/VAutocomplete.spec.ts +3 -1
  59. package/src/components/VAutocomplete/__tests__/VAutocomplete2.spec.ts +3 -0
  60. package/src/components/VAutocomplete/__tests__/VAutocomplete3.spec.ts +1 -0
  61. package/src/components/VCalendar/VCalendarCategory.ts +7 -5
  62. package/src/components/VCombobox/VCombobox.ts +10 -0
  63. package/src/components/VCombobox/__tests__/VCombobox-multiple.spec.ts +1 -1
  64. package/src/components/VCombobox/__tests__/VCombobox.spec.ts +1 -0
  65. package/src/components/VData/VData.ts +1 -1
  66. package/src/components/VDataTable/VDataTableHeader.sass +2 -0
  67. package/src/components/VFileInput/VFileInput.ts +1 -1
  68. package/src/components/VLazy/VLazy.ts +6 -11
  69. package/src/components/VList/VListItem.ts +1 -1
  70. package/src/components/VList/__tests__/VListItem.spec.ts +1 -1
  71. package/src/components/VRating/VRating.ts +0 -1
  72. package/src/components/VSelect/VSelect.ts +13 -4
  73. package/src/components/VSelect/__tests__/VSelect.spec.ts +67 -0
  74. package/src/components/VSelect/__tests__/VSelect2.spec.ts +26 -0
  75. package/src/components/VSelect/__tests__/__snapshots__/VSelect2.spec.ts.snap +4 -4
  76. package/src/components/VTextField/VTextField.ts +9 -4
  77. package/src/components/VTextField/__tests__/VTextField.spec.ts +15 -4
  78. package/src/locale/sk.ts +1 -1
  79. package/src/util/__tests__/dom.spec.ts +42 -0
  80. package/src/util/dom.ts +24 -0
  81. package/types/services/icons.d.ts +2 -2
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "v-app-bar/app": {
11
11
  "type": "boolean",
12
- "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
12
+ "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
13
13
  },
14
14
  "v-app-bar/bottom": {
15
15
  "type": "boolean",
@@ -793,7 +793,7 @@
793
793
  },
794
794
  "v-bottom-navigation/app": {
795
795
  "type": "boolean",
796
- "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
796
+ "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
797
797
  },
798
798
  "v-bottom-navigation/background-color": {
799
799
  "type": "string",
@@ -2861,7 +2861,7 @@
2861
2861
  },
2862
2862
  "v-data-iterator/locale": {
2863
2863
  "type": "string",
2864
- "description": "Sets the locale of component. Used for translating internal text strings."
2864
+ "description": "Sets the locale used for sorting. This is passed into [`Intl.Collator()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator) in the default `customSort` function"
2865
2865
  },
2866
2866
  "v-data-iterator/mobile-breakpoint": {
2867
2867
  "type": "number|string",
@@ -3101,7 +3101,7 @@
3101
3101
  },
3102
3102
  "v-data-table/locale": {
3103
3103
  "type": "string",
3104
- "description": "Sets the locale of component. Used for translating internal text strings."
3104
+ "description": "Sets the locale used for sorting. This is passed into [`Intl.Collator()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator) in the default `customSort` function"
3105
3105
  },
3106
3106
  "v-data-table/mobile-breakpoint": {
3107
3107
  "type": "number|string",
@@ -3897,7 +3897,7 @@
3897
3897
  },
3898
3898
  "v-footer/app": {
3899
3899
  "type": "boolean",
3900
- "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
3900
+ "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
3901
3901
  },
3902
3902
  "v-footer/color": {
3903
3903
  "type": "string",
@@ -5109,7 +5109,7 @@
5109
5109
  },
5110
5110
  "v-navigation-drawer/app": {
5111
5111
  "type": "boolean",
5112
- "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
5112
+ "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
5113
5113
  },
5114
5114
  "v-navigation-drawer/bottom": {
5115
5115
  "type": "boolean",
@@ -7221,7 +7221,7 @@
7221
7221
  },
7222
7222
  "v-system-bar/app": {
7223
7223
  "type": "boolean",
7224
- "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
7224
+ "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop"
7225
7225
  },
7226
7226
  "v-system-bar/color": {
7227
7227
  "type": "string",
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "2.4.4",
5
+ "version": "2.4.5",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -63,7 +63,7 @@
63
63
  },
64
64
  {
65
65
  "name": "app",
66
- "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop",
66
+ "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop",
67
67
  "doc-url": "https://www.vuetifyjs.com/api/v-app-bar#props",
68
68
  "default": "false",
69
69
  "value": {
@@ -2829,7 +2829,7 @@
2829
2829
  },
2830
2830
  {
2831
2831
  "name": "app",
2832
- "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop",
2832
+ "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop",
2833
2833
  "doc-url": "https://www.vuetifyjs.com/api/v-bottom-navigation#props",
2834
2834
  "default": "false",
2835
2835
  "value": {
@@ -5059,7 +5059,7 @@
5059
5059
  "name": "start",
5060
5060
  "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.",
5061
5061
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar#props",
5062
- "default": "2021-02-09",
5062
+ "default": "2021-02-23",
5063
5063
  "value": {
5064
5064
  "kind": "expression",
5065
5065
  "type": [
@@ -6688,7 +6688,7 @@
6688
6688
  "name": "start",
6689
6689
  "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.",
6690
6690
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar-daily#props",
6691
- "default": "2021-02-09",
6691
+ "default": "2021-02-23",
6692
6692
  "value": {
6693
6693
  "kind": "expression",
6694
6694
  "type": [
@@ -6906,7 +6906,7 @@
6906
6906
  "name": "start",
6907
6907
  "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.",
6908
6908
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar-weekly#props",
6909
- "default": "2021-02-09",
6909
+ "default": "2021-02-23",
6910
6910
  "value": {
6911
6911
  "kind": "expression",
6912
6912
  "type": [
@@ -7124,7 +7124,7 @@
7124
7124
  "name": "start",
7125
7125
  "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.",
7126
7126
  "doc-url": "https://www.vuetifyjs.com/api/v-calendar-monthly#props",
7127
- "default": "2021-02-09",
7127
+ "default": "2021-02-23",
7128
7128
  "value": {
7129
7129
  "kind": "expression",
7130
7130
  "type": [
@@ -11117,7 +11117,7 @@
11117
11117
  },
11118
11118
  {
11119
11119
  "name": "locale",
11120
- "description": "Sets the locale of component. Used for translating internal text strings.",
11120
+ "description": "Sets the locale used for sorting. This is passed into [`Intl.Collator()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator) in the default `customSort` function",
11121
11121
  "doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#props",
11122
11122
  "default": "'en-US'",
11123
11123
  "value": {
@@ -12212,7 +12212,7 @@
12212
12212
  },
12213
12213
  {
12214
12214
  "name": "locale",
12215
- "description": "Sets the locale of component. Used for translating internal text strings.",
12215
+ "description": "Sets the locale used for sorting. This is passed into [`Intl.Collator()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator) in the default `customSort` function",
12216
12216
  "doc-url": "https://www.vuetifyjs.com/api/v-data-table#props",
12217
12217
  "default": "'en-US'",
12218
12218
  "value": {
@@ -15893,7 +15893,7 @@
15893
15893
  },
15894
15894
  {
15895
15895
  "name": "app",
15896
- "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop",
15896
+ "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop",
15897
15897
  "doc-url": "https://www.vuetifyjs.com/api/v-footer#props",
15898
15898
  "default": "false",
15899
15899
  "value": {
@@ -20173,7 +20173,7 @@
20173
20173
  },
20174
20174
  {
20175
20175
  "name": "app",
20176
- "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop",
20176
+ "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop",
20177
20177
  "doc-url": "https://www.vuetifyjs.com/api/v-navigation-drawer#props",
20178
20178
  "default": "false",
20179
20179
  "value": {
@@ -28162,7 +28162,7 @@
28162
28162
  },
28163
28163
  {
28164
28164
  "name": "app",
28165
- "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop",
28165
+ "description": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop",
28166
28166
  "doc-url": "https://www.vuetifyjs.com/api/v-system-bar#props",
28167
28167
  "default": "false",
28168
28168
  "value": {
package/dist/vuetify.css CHANGED
@@ -23563,6 +23563,9 @@ html.overflow-y-hidden {
23563
23563
  cursor: pointer;
23564
23564
  outline: 0;
23565
23565
  }
23566
+ .v-data-table-header th.sortable .v-data-table-header__icon {
23567
+ line-height: 0.9;
23568
+ }
23566
23569
  .v-data-table-header th.active .v-data-table-header__icon, .v-data-table-header th:hover .v-data-table-header__icon {
23567
23570
  transform: none;
23568
23571
  opacity: 1;