vuetify 2.5.12 → 2.5.13

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 (84) hide show
  1. package/dist/json/web-types.json +5 -5
  2. package/dist/vuetify.css +7 -1
  3. package/dist/vuetify.css.map +1 -1
  4. package/dist/vuetify.js +105 -69
  5. package/dist/vuetify.js.map +1 -1
  6. package/dist/vuetify.min.css +2 -2
  7. package/dist/vuetify.min.js +2 -2
  8. package/es5/components/VCalendar/mixins/calendar-with-events.js +4 -2
  9. package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
  10. package/es5/components/VOverlay/VOverlay.js +1 -0
  11. package/es5/components/VOverlay/VOverlay.js.map +1 -1
  12. package/es5/components/VRadioGroup/VRadioGroup.js +7 -0
  13. package/es5/components/VRadioGroup/VRadioGroup.js.map +1 -1
  14. package/es5/components/VRangeSlider/VRangeSlider.js +4 -1
  15. package/es5/components/VRangeSlider/VRangeSlider.js.map +1 -1
  16. package/es5/components/VTabs/VTab.js +6 -3
  17. package/es5/components/VTabs/VTab.js.map +1 -1
  18. package/es5/components/transitions/createTransition.js +0 -20
  19. package/es5/components/transitions/createTransition.js.map +1 -1
  20. package/es5/directives/click-outside/index.js +18 -9
  21. package/es5/directives/click-outside/index.js.map +1 -1
  22. package/es5/directives/intersect/index.js +12 -11
  23. package/es5/directives/intersect/index.js.map +1 -1
  24. package/es5/directives/mutate/index.js +7 -6
  25. package/es5/directives/mutate/index.js.map +1 -1
  26. package/es5/directives/resize/index.js +8 -7
  27. package/es5/directives/resize/index.js.map +1 -1
  28. package/es5/directives/scroll/index.js +13 -10
  29. package/es5/directives/scroll/index.js.map +1 -1
  30. package/es5/framework.js +1 -1
  31. package/es5/mixins/intersectable/index.js +5 -2
  32. package/es5/mixins/intersectable/index.js.map +1 -1
  33. package/es5/mixins/overlayable/index.js +21 -11
  34. package/es5/mixins/overlayable/index.js.map +1 -1
  35. package/lib/components/VCalendar/mixins/calendar-with-events.js +4 -2
  36. package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
  37. package/lib/components/VOverlay/VOverlay.js +1 -0
  38. package/lib/components/VOverlay/VOverlay.js.map +1 -1
  39. package/lib/components/VRadioGroup/VRadioGroup.js +9 -0
  40. package/lib/components/VRadioGroup/VRadioGroup.js.map +1 -1
  41. package/lib/components/VRangeSlider/VRangeSlider.js +4 -1
  42. package/lib/components/VRangeSlider/VRangeSlider.js.map +1 -1
  43. package/lib/components/VTabs/VTab.js +7 -5
  44. package/lib/components/VTabs/VTab.js.map +1 -1
  45. package/lib/components/transitions/createTransition.js +0 -6
  46. package/lib/components/transitions/createTransition.js.map +1 -1
  47. package/lib/directives/click-outside/index.js +19 -9
  48. package/lib/directives/click-outside/index.js.map +1 -1
  49. package/lib/directives/intersect/index.js +12 -10
  50. package/lib/directives/intersect/index.js.map +1 -1
  51. package/lib/directives/mutate/index.js +7 -6
  52. package/lib/directives/mutate/index.js.map +1 -1
  53. package/lib/directives/resize/index.js +6 -5
  54. package/lib/directives/resize/index.js.map +1 -1
  55. package/lib/directives/scroll/index.js +9 -6
  56. package/lib/directives/scroll/index.js.map +1 -1
  57. package/lib/framework.js +1 -1
  58. package/lib/mixins/intersectable/index.js +5 -2
  59. package/lib/mixins/intersectable/index.js.map +1 -1
  60. package/lib/mixins/overlayable/index.js +21 -11
  61. package/lib/mixins/overlayable/index.js.map +1 -1
  62. package/package.json +2 -2
  63. package/src/components/VCalendar/mixins/calendar-with-events.sass +7 -1
  64. package/src/components/VCalendar/mixins/calendar-with-events.ts +3 -3
  65. package/src/components/VImg/__tests__/VImg.spec.ts +1 -1
  66. package/src/components/VOverlay/VOverlay.ts +1 -0
  67. package/src/components/VRadioGroup/VRadioGroup.ts +8 -0
  68. package/src/components/VRangeSlider/VRangeSlider.ts +3 -1
  69. package/src/components/VTabs/VTab.ts +6 -4
  70. package/src/components/transitions/createTransition.ts +0 -8
  71. package/src/directives/click-outside/__tests__/click-outside-shadow-dom.spec.ts +9 -6
  72. package/src/directives/click-outside/__tests__/click-outside.spec.ts +7 -4
  73. package/src/directives/click-outside/index.ts +18 -9
  74. package/src/directives/intersect/__tests__/intersect.spec.ts +13 -10
  75. package/src/directives/intersect/index.ts +13 -12
  76. package/src/directives/mutate/__tests__/mutate.spec.ts +36 -17
  77. package/src/directives/mutate/index.ts +8 -7
  78. package/src/directives/resize/__tests__/resize.spec.ts +4 -4
  79. package/src/directives/resize/index.ts +10 -5
  80. package/src/directives/scroll/__tests__/scroll.spec.ts +9 -9
  81. package/src/directives/scroll/index.ts +8 -7
  82. package/src/globals.d.ts +10 -12
  83. package/src/mixins/intersectable/index.ts +5 -2
  84. package/src/mixins/overlayable/index.ts +22 -11
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "2.5.12",
5
+ "version": "2.5.13",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -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": "2021-11-05",
5100
+ "default": "2021-11-08",
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": "2021-11-05",
6729
+ "default": "2021-11-08",
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": "2021-11-05",
6947
+ "default": "2021-11-08",
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": "2021-11-05",
7165
+ "default": "2021-11-08",
7166
7166
  "value": {
7167
7167
  "kind": "expression",
7168
7168
  "type": [
package/dist/vuetify.css CHANGED
@@ -22032,7 +22032,6 @@ html.overflow-y-hidden {
22032
22032
  }
22033
22033
  .v-calendar .v-event-timed {
22034
22034
  position: absolute;
22035
- overflow: hidden;
22036
22035
  white-space: nowrap;
22037
22036
  text-overflow: ellipsis;
22038
22037
  font-size: 12px;
@@ -22040,6 +22039,13 @@ html.overflow-y-hidden {
22040
22039
  border-radius: 4px;
22041
22040
  pointer-events: all;
22042
22041
  }
22042
+ .v-calendar .v-event-summary {
22043
+ display: inline-block;
22044
+ overflow: hidden;
22045
+ text-overflow: ellipsis;
22046
+ width: 100%;
22047
+ white-space: nowrap;
22048
+ }
22043
22049
  .v-calendar.v-calendar-events .v-calendar-weekly__head-weekday {
22044
22050
  margin-right: -1px;
22045
22051
  }