vuetify 2.5.9 → 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 (206) hide show
  1. package/dist/json/attributes.json +58 -66
  2. package/dist/json/tags.json +0 -2
  3. package/dist/json/web-types.json +89 -146
  4. package/dist/vuetify.css +37 -24
  5. package/dist/vuetify.css.map +1 -1
  6. package/dist/vuetify.js +374 -177
  7. package/dist/vuetify.js.map +1 -1
  8. package/dist/vuetify.min.css +2 -2
  9. package/dist/vuetify.min.js +2 -2
  10. package/es5/components/VAppBar/VAppBar.js +3 -0
  11. package/es5/components/VAppBar/VAppBar.js.map +1 -1
  12. package/es5/components/VAutocomplete/VAutocomplete.js +20 -2
  13. package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
  14. package/es5/components/VCalendar/mixins/calendar-with-events.js +4 -2
  15. package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
  16. package/es5/components/VCalendar/mixins/mouse.js +19 -0
  17. package/es5/components/VCalendar/mixins/mouse.js.map +1 -1
  18. package/es5/components/VCalendar/util/timestamp.js +2 -2
  19. package/es5/components/VCalendar/util/timestamp.js.map +1 -1
  20. package/es5/components/VCombobox/VCombobox.js +0 -5
  21. package/es5/components/VCombobox/VCombobox.js.map +1 -1
  22. package/es5/components/VDataTable/VDataTableHeaderMobile.js +2 -2
  23. package/es5/components/VDataTable/VDataTableHeaderMobile.js.map +1 -1
  24. package/es5/components/VDialog/VDialog.js +4 -2
  25. package/es5/components/VDialog/VDialog.js.map +1 -1
  26. package/es5/components/VList/VListItem.js +8 -1
  27. package/es5/components/VList/VListItem.js.map +1 -1
  28. package/es5/components/VOverlay/VOverlay.js +1 -0
  29. package/es5/components/VOverlay/VOverlay.js.map +1 -1
  30. package/es5/components/VRadioGroup/VRadioGroup.js +7 -0
  31. package/es5/components/VRadioGroup/VRadioGroup.js.map +1 -1
  32. package/es5/components/VRangeSlider/VRangeSlider.js +4 -1
  33. package/es5/components/VRangeSlider/VRangeSlider.js.map +1 -1
  34. package/es5/components/VSelect/VSelect.js +1 -1
  35. package/es5/components/VSelect/VSelect.js.map +1 -1
  36. package/es5/components/VSlideGroup/VSlideGroup.js +93 -37
  37. package/es5/components/VSlideGroup/VSlideGroup.js.map +1 -1
  38. package/es5/components/VTabs/VTab.js +15 -4
  39. package/es5/components/VTabs/VTab.js.map +1 -1
  40. package/es5/components/VTabs/VTabsBar.js +1 -1
  41. package/es5/components/VTabs/VTabsBar.js.map +1 -1
  42. package/es5/components/VTextarea/VTextarea.js +11 -2
  43. package/es5/components/VTextarea/VTextarea.js.map +1 -1
  44. package/es5/components/VTooltip/VTooltip.js +2 -5
  45. package/es5/components/VTooltip/VTooltip.js.map +1 -1
  46. package/es5/components/VTreeview/VTreeview.js +1 -1
  47. package/es5/components/VTreeview/VTreeview.js.map +1 -1
  48. package/es5/components/transitions/createTransition.js +1 -5
  49. package/es5/components/transitions/createTransition.js.map +1 -1
  50. package/es5/directives/click-outside/index.js +19 -10
  51. package/es5/directives/click-outside/index.js.map +1 -1
  52. package/es5/directives/intersect/index.js +12 -11
  53. package/es5/directives/intersect/index.js.map +1 -1
  54. package/es5/directives/mutate/index.js +7 -6
  55. package/es5/directives/mutate/index.js.map +1 -1
  56. package/es5/directives/resize/index.js +8 -7
  57. package/es5/directives/resize/index.js.map +1 -1
  58. package/es5/directives/ripple/index.js +2 -3
  59. package/es5/directives/ripple/index.js.map +1 -1
  60. package/es5/directives/scroll/index.js +13 -10
  61. package/es5/directives/scroll/index.js.map +1 -1
  62. package/es5/framework.js +1 -1
  63. package/es5/locale/fr.js +1 -1
  64. package/es5/locale/fr.js.map +1 -1
  65. package/es5/mixins/detachable/index.js +32 -14
  66. package/es5/mixins/detachable/index.js.map +1 -1
  67. package/es5/mixins/intersectable/index.js +5 -2
  68. package/es5/mixins/intersectable/index.js.map +1 -1
  69. package/es5/mixins/menuable/index.js +5 -5
  70. package/es5/mixins/menuable/index.js.map +1 -1
  71. package/es5/mixins/overlayable/index.js +22 -35
  72. package/es5/mixins/overlayable/index.js.map +1 -1
  73. package/es5/mixins/routable/index.js +9 -3
  74. package/es5/mixins/routable/index.js.map +1 -1
  75. package/es5/services/goto/index.js +3 -1
  76. package/es5/services/goto/index.js.map +1 -1
  77. package/es5/util/helpers.js +23 -0
  78. package/es5/util/helpers.js.map +1 -1
  79. package/lib/components/VAppBar/VAppBar.js +4 -0
  80. package/lib/components/VAppBar/VAppBar.js.map +1 -1
  81. package/lib/components/VAutocomplete/VAutocomplete.js +18 -2
  82. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  83. package/lib/components/VCalendar/mixins/calendar-with-events.js +4 -2
  84. package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
  85. package/lib/components/VCalendar/mixins/mouse.js +19 -0
  86. package/lib/components/VCalendar/mixins/mouse.js.map +1 -1
  87. package/lib/components/VCalendar/util/timestamp.js +2 -2
  88. package/lib/components/VCalendar/util/timestamp.js.map +1 -1
  89. package/lib/components/VCombobox/VCombobox.js +0 -5
  90. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  91. package/lib/components/VDataTable/VDataTableHeaderMobile.js +2 -2
  92. package/lib/components/VDataTable/VDataTableHeaderMobile.js.map +1 -1
  93. package/lib/components/VDialog/VDialog.js +5 -2
  94. package/lib/components/VDialog/VDialog.js.map +1 -1
  95. package/lib/components/VList/VListItem.js +9 -1
  96. package/lib/components/VList/VListItem.js.map +1 -1
  97. package/lib/components/VOverlay/VOverlay.js +1 -0
  98. package/lib/components/VOverlay/VOverlay.js.map +1 -1
  99. package/lib/components/VRadioGroup/VRadioGroup.js +9 -0
  100. package/lib/components/VRadioGroup/VRadioGroup.js.map +1 -1
  101. package/lib/components/VRangeSlider/VRangeSlider.js +4 -1
  102. package/lib/components/VRangeSlider/VRangeSlider.js.map +1 -1
  103. package/lib/components/VSelect/VSelect.js +1 -1
  104. package/lib/components/VSelect/VSelect.js.map +1 -1
  105. package/lib/components/VSlideGroup/VSlideGroup.js +63 -40
  106. package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
  107. package/lib/components/VTabs/VTab.js +16 -6
  108. package/lib/components/VTabs/VTab.js.map +1 -1
  109. package/lib/components/VTabs/VTabsBar.js +1 -1
  110. package/lib/components/VTabs/VTabsBar.js.map +1 -1
  111. package/lib/components/VTextarea/VTextarea.js +8 -0
  112. package/lib/components/VTextarea/VTextarea.js.map +1 -1
  113. package/lib/components/VTooltip/VTooltip.js +2 -5
  114. package/lib/components/VTooltip/VTooltip.js.map +1 -1
  115. package/lib/components/VTreeview/VTreeview.js +1 -1
  116. package/lib/components/VTreeview/VTreeview.js.map +1 -1
  117. package/lib/components/transitions/createTransition.js +1 -5
  118. package/lib/components/transitions/createTransition.js.map +1 -1
  119. package/lib/directives/click-outside/index.js +20 -10
  120. package/lib/directives/click-outside/index.js.map +1 -1
  121. package/lib/directives/intersect/index.js +12 -10
  122. package/lib/directives/intersect/index.js.map +1 -1
  123. package/lib/directives/mutate/index.js +7 -6
  124. package/lib/directives/mutate/index.js.map +1 -1
  125. package/lib/directives/resize/index.js +6 -5
  126. package/lib/directives/resize/index.js.map +1 -1
  127. package/lib/directives/ripple/index.js +2 -3
  128. package/lib/directives/ripple/index.js.map +1 -1
  129. package/lib/directives/scroll/index.js +9 -6
  130. package/lib/directives/scroll/index.js.map +1 -1
  131. package/lib/framework.js +1 -1
  132. package/lib/locale/fr.js +1 -1
  133. package/lib/locale/fr.js.map +1 -1
  134. package/lib/mixins/detachable/index.js +28 -13
  135. package/lib/mixins/detachable/index.js.map +1 -1
  136. package/lib/mixins/intersectable/index.js +5 -2
  137. package/lib/mixins/intersectable/index.js.map +1 -1
  138. package/lib/mixins/menuable/index.js +4 -4
  139. package/lib/mixins/menuable/index.js.map +1 -1
  140. package/lib/mixins/overlayable/index.js +23 -36
  141. package/lib/mixins/overlayable/index.js.map +1 -1
  142. package/lib/mixins/routable/index.js +12 -3
  143. package/lib/mixins/routable/index.js.map +1 -1
  144. package/lib/services/goto/index.js +3 -1
  145. package/lib/services/goto/index.js.map +1 -1
  146. package/lib/util/helpers.js +21 -0
  147. package/lib/util/helpers.js.map +1 -1
  148. package/package.json +2 -3
  149. package/src/components/VAppBar/VAppBar.ts +3 -0
  150. package/src/components/VAutocomplete/VAutocomplete.ts +15 -2
  151. package/src/components/VCalendar/mixins/calendar-with-events.sass +7 -1
  152. package/src/components/VCalendar/mixins/calendar-with-events.ts +3 -3
  153. package/src/components/VCalendar/mixins/mouse.ts +21 -0
  154. package/src/components/VCalendar/util/__tests__/events.spec.ts +1 -1
  155. package/src/components/VCalendar/util/timestamp.ts +2 -2
  156. package/src/components/VCombobox/VCombobox.ts +0 -5
  157. package/src/components/VCombobox/__tests__/VCombobox-multiple.spec.ts +113 -0
  158. package/src/components/VCombobox/__tests__/VCombobox.spec.ts +30 -0
  159. package/src/components/VDataTable/VDataTableHeaderMobile.ts +3 -1
  160. package/src/components/VDataTable/__tests__/__snapshots__/VDataTable.spec.ts.snap +0 -20
  161. package/src/components/VDialog/VDialog.ts +4 -2
  162. package/src/components/VImg/__tests__/VImg.spec.ts +1 -1
  163. package/src/components/VList/VListItem.sass +2 -1
  164. package/src/components/VList/VListItem.ts +7 -1
  165. package/src/components/VList/__tests__/VListItem.spec.ts +16 -0
  166. package/src/components/VOverlay/VOverlay.ts +1 -0
  167. package/src/components/VRadioGroup/VRadioGroup.ts +8 -0
  168. package/src/components/VRangeSlider/VRangeSlider.ts +3 -1
  169. package/src/components/VSelect/VSelect.ts +1 -1
  170. package/src/components/VSlideGroup/VSlideGroup.ts +75 -35
  171. package/src/components/VSlideGroup/__tests__/VSlideGroup.spec.ts +1 -3
  172. package/src/components/VSnackbar/VSnackbar.sass +2 -0
  173. package/src/components/VStepper/VStepper.sass +5 -1
  174. package/src/components/VStepper/_variables.scss +2 -1
  175. package/src/components/VTabs/VTab.ts +14 -4
  176. package/src/components/VTabs/VTabs.sass +5 -2
  177. package/src/components/VTabs/VTabsBar.ts +2 -2
  178. package/src/components/VTextarea/VTextarea.ts +7 -0
  179. package/src/components/VTooltip/VTooltip.ts +2 -5
  180. package/src/components/VTreeview/VTreeview.ts +1 -1
  181. package/src/components/transitions/createTransition.ts +1 -5
  182. package/src/directives/click-outside/__tests__/click-outside-shadow-dom.spec.ts +9 -6
  183. package/src/directives/click-outside/__tests__/click-outside.spec.ts +7 -4
  184. package/src/directives/click-outside/index.ts +19 -10
  185. package/src/directives/intersect/__tests__/intersect.spec.ts +13 -10
  186. package/src/directives/intersect/index.ts +13 -12
  187. package/src/directives/mutate/__tests__/mutate.spec.ts +36 -17
  188. package/src/directives/mutate/index.ts +8 -7
  189. package/src/directives/resize/__tests__/resize.spec.ts +4 -4
  190. package/src/directives/resize/index.ts +10 -5
  191. package/src/directives/ripple/index.ts +3 -5
  192. package/src/directives/scroll/__tests__/scroll.spec.ts +9 -9
  193. package/src/directives/scroll/index.ts +8 -7
  194. package/src/globals.d.ts +10 -11
  195. package/src/locale/fr.ts +1 -1
  196. package/src/mixins/detachable/index.ts +32 -15
  197. package/src/mixins/intersectable/index.ts +5 -2
  198. package/src/mixins/menuable/index.ts +4 -4
  199. package/src/mixins/overlayable/index.ts +24 -35
  200. package/src/mixins/routable/__tests__/routable.spec.ts +82 -5
  201. package/src/mixins/routable/index.ts +10 -3
  202. package/src/services/goto/index.ts +6 -1
  203. package/src/styles/components/_selection-controls.sass +4 -7
  204. package/src/styles/generic/_transitions.scss +219 -215
  205. package/src/styles/settings/_variables.scss +7 -7
  206. package/src/util/helpers.ts +22 -0
package/dist/vuetify.js CHANGED
@@ -693,6 +693,9 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_8__["default"])(_V
693
693
  },
694
694
  invertedScroll: function invertedScroll(val) {
695
695
  this.isActive = !val || this.currentScroll !== 0;
696
+ },
697
+ hideOnScroll: function hideOnScroll(val) {
698
+ this.isActive = !val || this.currentScroll < this.computedScrollThreshold;
696
699
  }
697
700
  },
698
701
  created: function created() {
@@ -1133,13 +1136,31 @@ var defaultMenuProps = __assign(__assign({}, _VSelect_VSelect__WEBPACK_IMPORTED_
1133
1136
 
1134
1137
 
1135
1138
  if (val === oldVal) return;
1136
- this.setMenuIndex(-1);
1139
+
1140
+ if (!this.autoSelectFirst) {
1141
+ var preSelectedItem_1 = oldVal[this.$refs.menu.listIndex];
1142
+
1143
+ if (preSelectedItem_1) {
1144
+ this.setMenuIndex(val.findIndex(function (i) {
1145
+ return i === preSelectedItem_1;
1146
+ }));
1147
+ } else {
1148
+ this.setMenuIndex(-1);
1149
+ }
1150
+
1151
+ this.$emit('update:list-index', this.$refs.menu.listIndex);
1152
+ }
1153
+
1137
1154
  this.$nextTick(function () {
1138
1155
  if (!_this.internalSearch || val.length !== 1 && !_this.autoSelectFirst) return;
1139
1156
 
1140
1157
  _this.$refs.menu.getTiles();
1141
1158
 
1142
- _this.setMenuIndex(0);
1159
+ if (_this.autoSelectFirst && val.length) {
1160
+ _this.setMenuIndex(0);
1161
+
1162
+ _this.$emit('update:list-index', _this.$refs.menu.listIndex);
1163
+ }
1143
1164
  });
1144
1165
  },
1145
1166
  onInternalSearchChanged: function onInternalSearchChanged() {
@@ -4505,13 +4526,15 @@ var MINUTES_IN_DAY = 1440;
4505
4526
  var name = _this.eventNameFunction(event, timedEvent);
4506
4527
 
4507
4528
  if (event.start.hasTime) {
4529
+ var eventSummaryClass = 'v-event-summary';
4530
+
4508
4531
  if (timedEvent) {
4509
4532
  var time = timeSummary();
4510
4533
  var delimiter = singline ? ', ' : '<br>';
4511
- return "<strong>" + name + "</strong>" + delimiter + time;
4534
+ return "<span class=\"" + eventSummaryClass + "\"><strong>" + name + "</strong>" + delimiter + time + "</span>";
4512
4535
  } else {
4513
4536
  var time = formatTime(event.start, true);
4514
- return "<strong>" + time + "</strong> " + name;
4537
+ return "<span class=\"" + eventSummaryClass + "\"><strong>" + time + "</strong> " + name + "</span>";
4515
4538
  }
4516
4539
  }
4517
4540
 
@@ -4945,6 +4968,8 @@ __webpack_require__.r(__webpack_exports__);
4945
4968
  var key = prefix + eventOptions.event;
4946
4969
 
4947
4970
  var handler = function handler(e) {
4971
+ var _a, _b;
4972
+
4948
4973
  var mouseEvent = e;
4949
4974
 
4950
4975
  if (eventOptions.button === undefined || mouseEvent.buttons > 0 && mouseEvent.button === eventOptions.button) {
@@ -4954,6 +4979,23 @@ __webpack_require__.r(__webpack_exports__);
4954
4979
 
4955
4980
  if (eventOptions.stop) {
4956
4981
  e.stopPropagation();
4982
+ } // Due to TouchEvent target always returns the element that is first placed
4983
+ // Even if touch point has since moved outside the interactive area of that element
4984
+ // Ref: https://developer.mozilla.org/en-US/docs/Web/API/Touch/target
4985
+ // This block of code aims to make sure touchEvent is always dispatched from the element that is being pointed at
4986
+
4987
+
4988
+ if (e && 'touches' in e) {
4989
+ var currentTarget = document.elementFromPoint(e.changedTouches[0].clientX, e.changedTouches[0].clientY);
4990
+
4991
+ if (currentTarget && !((_a = e.target) === null || _a === void 0 ? void 0 : _a.isSameNode(currentTarget)) && ((_b = e.target) === null || _b === void 0 ? void 0 : _b.className) === currentTarget.className) {
4992
+ currentTarget.dispatchEvent(new TouchEvent(e.type, {
4993
+ changedTouches: e.changedTouches,
4994
+ targetTouches: e.targetTouches,
4995
+ touches: e.touches
4996
+ }));
4997
+ return;
4998
+ }
4957
4999
  }
4958
5000
 
4959
5001
  _this.$emit(event, getEvent(e));
@@ -6367,7 +6409,7 @@ function parseTimestamp(input, required, now) {
6367
6409
 
6368
6410
  if (typeof input !== 'string') {
6369
6411
  if (required) {
6370
- throw new Error(input + " is not a valid timestamp. It must be a Date, number of seconds since Epoch, or a string in the format of YYYY-MM-DD or YYYY-MM-DD hh:mm. Zero-padding is optional and seconds are ignored.");
6412
+ throw new Error(input + " is not a valid timestamp. It must be a Date, number of milliseconds since Epoch, or a string in the format of YYYY-MM-DD or YYYY-MM-DD hh:mm. Zero-padding is optional and seconds are ignored.");
6371
6413
  }
6372
6414
 
6373
6415
  return null;
@@ -6378,7 +6420,7 @@ function parseTimestamp(input, required, now) {
6378
6420
 
6379
6421
  if (!parts) {
6380
6422
  if (required) {
6381
- throw new Error(input + " is not a valid timestamp. It must be a Date, number of seconds since Epoch, or a string in the format of YYYY-MM-DD or YYYY-MM-DD hh:mm. Zero-padding is optional and seconds are ignored.");
6423
+ throw new Error(input + " is not a valid timestamp. It must be a Date, number of milliseconds since Epoch, or a string in the format of YYYY-MM-DD or YYYY-MM-DD hh:mm. Zero-padding is optional and seconds are ignored.");
6382
6424
  }
6383
6425
 
6384
6426
  return null;
@@ -9166,10 +9208,6 @@ var __assign = undefined && undefined.__assign || function () {
9166
9208
  if (this.getMenuIndex() > -1) return;
9167
9209
  this.$nextTick(this.updateSelf);
9168
9210
  },
9169
- onFilteredItemsChanged: function onFilteredItemsChanged(val, oldVal) {
9170
- if (!this.autoSelectFirst) return;
9171
- _VAutocomplete_VAutocomplete__WEBPACK_IMPORTED_MODULE_2__["default"].options.methods.onFilteredItemsChanged.call(this, val, oldVal);
9172
- },
9173
9211
  onKeyDown: function onKeyDown(e) {
9174
9212
  var keyCode = e.keyCode;
9175
9213
 
@@ -12090,9 +12128,9 @@ var __spread = undefined && undefined.__spread || function () {
12090
12128
  children.push(this.genSortSelect(sortHeaders));
12091
12129
  }
12092
12130
 
12093
- var th = h('th', [h('div', {
12131
+ var th = children.length ? h('th', [h('div', {
12094
12132
  staticClass: 'v-data-table-header-mobile__wrapper'
12095
- }, children)]);
12133
+ }, children)]) : undefined;
12096
12134
  var tr = h('tr', [th]);
12097
12135
  return h('thead', {
12098
12136
  staticClass: 'v-data-table-header v-data-table-header-mobile'
@@ -14832,9 +14870,11 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_10__["default"])(_
14832
14870
 
14833
14871
  this.$nextTick(function () {
14834
14872
  _this.$nextTick(function () {
14835
- _this.previousActiveElement = document.activeElement;
14873
+ if (!_this.$refs.content.contains(document.activeElement)) {
14874
+ _this.previousActiveElement = document.activeElement;
14836
14875
 
14837
- _this.$refs.content.focus();
14876
+ _this.$refs.content.focus();
14877
+ }
14838
14878
 
14839
14879
  _this.bind();
14840
14880
  });
@@ -19094,6 +19134,13 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_9__["default"])(_m
19094
19134
  }
19095
19135
 
19096
19136
  return attrs;
19137
+ },
19138
+ toggle: function toggle() {
19139
+ if (this.to && this.inputValue === undefined) {
19140
+ this.isActive = !this.isActive;
19141
+ }
19142
+
19143
+ this.$emit('change');
19097
19144
  }
19098
19145
  },
19099
19146
  render: function render(h) {
@@ -19123,7 +19170,7 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_9__["default"])(_m
19123
19170
  active: this.isActive,
19124
19171
  toggle: this.toggle
19125
19172
  }) : this.$slots.default;
19126
- return h(tag, this.setTextColor(this.color, data), children);
19173
+ return h(tag, this.isActive ? this.setTextColor(this.color, data) : data, children);
19127
19174
  }
19128
19175
  }));
19129
19176
 
@@ -20856,6 +20903,7 @@ var __assign = undefined && undefined.__assign || function () {
20856
20903
  if (this.isActive) children.push(this.genContent());
20857
20904
  return h('div', {
20858
20905
  staticClass: 'v-overlay',
20906
+ on: this.$listeners,
20859
20907
  class: this.classes,
20860
20908
  style: this.styles
20861
20909
  }, children);
@@ -22301,6 +22349,13 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_5__["default"])(_m
22301
22349
  return label;
22302
22350
  },
22303
22351
  onClick: _VItemGroup_VItemGroup__WEBPACK_IMPORTED_MODULE_3__["BaseItemGroup"].options.methods.onClick
22352
+ },
22353
+ render: function render(h) {
22354
+ var vnode = _VInput__WEBPACK_IMPORTED_MODULE_2__["default"].options.render.call(this, h);
22355
+
22356
+ this._b(vnode.data, 'div', this.attrs$);
22357
+
22358
+ return vnode;
22304
22359
  }
22305
22360
  }));
22306
22361
 
@@ -22632,7 +22687,10 @@ var __spread = undefined && undefined.__spread || function () {
22632
22687
  this.thumbPressed = true;
22633
22688
  }
22634
22689
 
22635
- this.activeThumb = this.getIndexOfClosestValue(this.internalValue, value);
22690
+ if (this.activeThumb === null) {
22691
+ this.activeThumb = this.getIndexOfClosestValue(this.internalValue, value);
22692
+ }
22693
+
22636
22694
  this.setInternalValue(value);
22637
22695
  },
22638
22696
  onKeyDown: function onKeyDown(e) {
@@ -23725,7 +23783,7 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_14__["default"])(_
23725
23783
  if (!menu) return; // If menu is active, allow default
23726
23784
  // listIndex change from menu
23727
23785
 
23728
- if (this.isMenuActive && keyCode !== _util_helpers__WEBPACK_IMPORTED_MODULE_12__["keyCodes"].tab) {
23786
+ if (this.isMenuActive && [_util_helpers__WEBPACK_IMPORTED_MODULE_12__["keyCodes"].up, _util_helpers__WEBPACK_IMPORTED_MODULE_12__["keyCodes"].down, _util_helpers__WEBPACK_IMPORTED_MODULE_12__["keyCodes"].home, _util_helpers__WEBPACK_IMPORTED_MODULE_12__["keyCodes"].end, _util_helpers__WEBPACK_IMPORTED_MODULE_12__["keyCodes"].enter].includes(keyCode)) {
23729
23787
  this.$nextTick(function () {
23730
23788
  menu.changeListIndex(e);
23731
23789
 
@@ -24651,11 +24709,13 @@ __webpack_require__.r(__webpack_exports__);
24651
24709
  /*!***************************************************!*\
24652
24710
  !*** ./src/components/VSlideGroup/VSlideGroup.ts ***!
24653
24711
  \***************************************************/
24654
- /*! exports provided: BaseSlideGroup, default */
24712
+ /*! exports provided: calculateUpdatedOffset, calculateCenteredOffset, BaseSlideGroup, default */
24655
24713
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
24656
24714
 
24657
24715
  "use strict";
24658
24716
  __webpack_require__.r(__webpack_exports__);
24717
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "calculateUpdatedOffset", function() { return calculateUpdatedOffset; });
24718
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "calculateCenteredOffset", function() { return calculateCenteredOffset; });
24659
24719
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BaseSlideGroup", function() { return BaseSlideGroup; });
24660
24720
  /* harmony import */ var _VSlideGroup_sass__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./VSlideGroup.sass */ "./src/components/VSlideGroup/VSlideGroup.sass");
24661
24721
  /* harmony import */ var _VSlideGroup_sass__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_VSlideGroup_sass__WEBPACK_IMPORTED_MODULE_0__);
@@ -24666,6 +24726,7 @@ __webpack_require__.r(__webpack_exports__);
24666
24726
  /* harmony import */ var _directives_resize__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../directives/resize */ "./src/directives/resize/index.ts");
24667
24727
  /* harmony import */ var _directives_touch__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../directives/touch */ "./src/directives/touch/index.ts");
24668
24728
  /* harmony import */ var _util_mixins__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../util/mixins */ "./src/util/mixins.ts");
24729
+ /* harmony import */ var _util_helpers__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../util/helpers */ "./src/util/helpers.ts");
24669
24730
  var __assign = undefined && undefined.__assign || function () {
24670
24731
  __assign = Object.assign || function (t) {
24671
24732
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -24680,6 +24741,23 @@ var __assign = undefined && undefined.__assign || function () {
24680
24741
  };
24681
24742
 
24682
24743
  return __assign.apply(this, arguments);
24744
+ };
24745
+
24746
+ var __values = undefined && undefined.__values || function (o) {
24747
+ var s = typeof Symbol === "function" && Symbol.iterator,
24748
+ m = s && o[s],
24749
+ i = 0;
24750
+ if (m) return m.call(o);
24751
+ if (o && typeof o.length === "number") return {
24752
+ next: function next() {
24753
+ if (o && i >= o.length) o = void 0;
24754
+ return {
24755
+ value: o && o[i++],
24756
+ done: !o
24757
+ };
24758
+ }
24759
+ };
24760
+ throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
24683
24761
  }; // Styles
24684
24762
 
24685
24763
 
@@ -24696,6 +24774,39 @@ var __assign = undefined && undefined.__assign || function () {
24696
24774
  // Utilities
24697
24775
 
24698
24776
 
24777
+
24778
+ function calculateUpdatedOffset(selectedElement, widths, rtl, currentScrollOffset) {
24779
+ var clientWidth = selectedElement.clientWidth;
24780
+ var offsetLeft = rtl ? widths.content - selectedElement.offsetLeft - clientWidth : selectedElement.offsetLeft;
24781
+
24782
+ if (rtl) {
24783
+ currentScrollOffset = -currentScrollOffset;
24784
+ }
24785
+
24786
+ var totalWidth = widths.wrapper + currentScrollOffset;
24787
+ var itemOffset = clientWidth + offsetLeft;
24788
+ var additionalOffset = clientWidth * 0.4;
24789
+
24790
+ if (offsetLeft <= currentScrollOffset) {
24791
+ currentScrollOffset = Math.max(offsetLeft - additionalOffset, 0);
24792
+ } else if (totalWidth <= itemOffset) {
24793
+ currentScrollOffset = Math.min(currentScrollOffset - (totalWidth - itemOffset - additionalOffset), widths.content - widths.wrapper);
24794
+ }
24795
+
24796
+ return rtl ? -currentScrollOffset : currentScrollOffset;
24797
+ }
24798
+ function calculateCenteredOffset(selectedElement, widths, rtl) {
24799
+ var offsetLeft = selectedElement.offsetLeft,
24800
+ clientWidth = selectedElement.clientWidth;
24801
+
24802
+ if (rtl) {
24803
+ var offsetCentered = widths.content - offsetLeft - clientWidth / 2 - widths.wrapper / 2;
24804
+ return -Math.min(widths.content - widths.wrapper, Math.max(0, offsetCentered));
24805
+ } else {
24806
+ var offsetCentered = offsetLeft + clientWidth / 2 - widths.wrapper / 2;
24807
+ return Math.min(widths.content - widths.wrapper, Math.max(0, offsetCentered));
24808
+ }
24809
+ }
24699
24810
  var BaseSlideGroup = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_7__["default"])(_VItemGroup_VItemGroup__WEBPACK_IMPORTED_MODULE_3__["BaseItemGroup"], _mixins_mobile__WEBPACK_IMPORTED_MODULE_4__["default"]).extend({
24700
24811
  name: 'base-slide-group',
24701
24812
  directives: {
@@ -24811,6 +24922,53 @@ var BaseSlideGroup = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_7__["default"]
24811
24922
  this.setWidths();
24812
24923
  },
24813
24924
  methods: {
24925
+ onScroll: function onScroll() {
24926
+ this.$refs.wrapper.scrollLeft = 0;
24927
+ },
24928
+ onFocusin: function onFocusin(e) {
24929
+ var e_1, _a, e_2, _b;
24930
+
24931
+ if (!this.isOverflowing) return;
24932
+
24933
+ try {
24934
+ // Focused element is likely to be the root of an item, so a
24935
+ // breadth-first search will probably find it in the first iteration
24936
+ for (var _c = __values(Object(_util_helpers__WEBPACK_IMPORTED_MODULE_8__["composedPath"])(e)), _d = _c.next(); !_d.done; _d = _c.next()) {
24937
+ var el = _d.value;
24938
+
24939
+ try {
24940
+ for (var _e = (e_2 = void 0, __values(this.items)), _f = _e.next(); !_f.done; _f = _e.next()) {
24941
+ var vm = _f.value;
24942
+
24943
+ if (vm.$el === el) {
24944
+ this.scrollOffset = calculateUpdatedOffset(vm.$el, this.widths, this.$vuetify.rtl, this.scrollOffset);
24945
+ return;
24946
+ }
24947
+ }
24948
+ } catch (e_2_1) {
24949
+ e_2 = {
24950
+ error: e_2_1
24951
+ };
24952
+ } finally {
24953
+ try {
24954
+ if (_f && !_f.done && (_b = _e.return)) _b.call(_e);
24955
+ } finally {
24956
+ if (e_2) throw e_2.error;
24957
+ }
24958
+ }
24959
+ }
24960
+ } catch (e_1_1) {
24961
+ e_1 = {
24962
+ error: e_1_1
24963
+ };
24964
+ } finally {
24965
+ try {
24966
+ if (_d && !_d.done && (_a = _c.return)) _a.call(_c);
24967
+ } finally {
24968
+ if (e_1) throw e_1.error;
24969
+ }
24970
+ }
24971
+ },
24814
24972
  // Always generate next for scrollable hint
24815
24973
  genNext: function genNext() {
24816
24974
  var _this = this;
@@ -24832,7 +24990,10 @@ var BaseSlideGroup = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_7__["default"]
24832
24990
  genContent: function genContent() {
24833
24991
  return this.$createElement('div', {
24834
24992
  staticClass: 'v-slide-group__content',
24835
- ref: 'content'
24993
+ ref: 'content',
24994
+ on: {
24995
+ focusin: this.onFocusin
24996
+ }
24836
24997
  }, this.$slots.default);
24837
24998
  },
24838
24999
  genData: function genData() {
@@ -24902,7 +25063,10 @@ var BaseSlideGroup = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_7__["default"]
24902
25063
  }
24903
25064
  }
24904
25065
  }],
24905
- ref: 'wrapper'
25066
+ ref: 'wrapper',
25067
+ on: {
25068
+ scroll: this.onScroll
25069
+ }
24906
25070
  }, [this.genContent()]);
24907
25071
  },
24908
25072
  calculateNewOffset: function calculateNewOffset(direction, widths, rtl, currentScrollOffset) {
@@ -24996,41 +25160,9 @@ var BaseSlideGroup = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_7__["default"]
24996
25160
  if (this.selectedIndex === 0 || !this.centerActive && !this.isOverflowing) {
24997
25161
  this.scrollOffset = 0;
24998
25162
  } else if (this.centerActive) {
24999
- this.scrollOffset = this.calculateCenteredOffset(this.selectedItem.$el, this.widths, this.$vuetify.rtl);
25163
+ this.scrollOffset = calculateCenteredOffset(this.selectedItem.$el, this.widths, this.$vuetify.rtl);
25000
25164
  } else if (this.isOverflowing) {
25001
- this.scrollOffset = this.calculateUpdatedOffset(this.selectedItem.$el, this.widths, this.$vuetify.rtl, this.scrollOffset);
25002
- }
25003
- },
25004
- calculateUpdatedOffset: function calculateUpdatedOffset(selectedElement, widths, rtl, currentScrollOffset) {
25005
- var clientWidth = selectedElement.clientWidth;
25006
- var offsetLeft = rtl ? widths.content - selectedElement.offsetLeft - clientWidth : selectedElement.offsetLeft;
25007
-
25008
- if (rtl) {
25009
- currentScrollOffset = -currentScrollOffset;
25010
- }
25011
-
25012
- var totalWidth = widths.wrapper + currentScrollOffset;
25013
- var itemOffset = clientWidth + offsetLeft;
25014
- var additionalOffset = clientWidth * 0.4;
25015
-
25016
- if (offsetLeft <= currentScrollOffset) {
25017
- currentScrollOffset = Math.max(offsetLeft - additionalOffset, 0);
25018
- } else if (totalWidth <= itemOffset) {
25019
- currentScrollOffset = Math.min(currentScrollOffset - (totalWidth - itemOffset - additionalOffset), widths.content - widths.wrapper);
25020
- }
25021
-
25022
- return rtl ? -currentScrollOffset : currentScrollOffset;
25023
- },
25024
- calculateCenteredOffset: function calculateCenteredOffset(selectedElement, widths, rtl) {
25025
- var offsetLeft = selectedElement.offsetLeft,
25026
- clientWidth = selectedElement.clientWidth;
25027
-
25028
- if (rtl) {
25029
- var offsetCentered = widths.content - offsetLeft - clientWidth / 2 - widths.wrapper / 2;
25030
- return -Math.min(widths.content - widths.wrapper, Math.max(0, offsetCentered));
25031
- } else {
25032
- var offsetCentered = offsetLeft + clientWidth / 2 - widths.wrapper / 2;
25033
- return Math.min(widths.content - widths.wrapper, Math.max(0, offsetCentered));
25165
+ this.scrollOffset = calculateUpdatedOffset(this.selectedItem.$el, this.widths, this.$vuetify.rtl, this.scrollOffset);
25034
25166
  }
25035
25167
  },
25036
25168
  scrollTo
@@ -27644,18 +27776,29 @@ Object(_mixins_groupable__WEBPACK_IMPORTED_MODULE_0__["factory"])('tabsBar'), _m
27644
27776
  return to.replace('#', '');
27645
27777
  }
27646
27778
  },
27647
- mounted: function mounted() {
27648
- this.onRouteChange();
27649
- },
27650
27779
  methods: {
27651
27780
  click: function click(e) {
27652
- // If user provides an
27781
+ // Prevent keyboard actions
27782
+ // from children elements
27783
+ // within disabled tabs
27784
+ if (this.disabled) {
27785
+ e.preventDefault();
27786
+ return;
27787
+ } // If user provides an
27653
27788
  // actual link, do not
27654
27789
  // prevent default
27790
+
27791
+
27655
27792
  if (this.href && this.href.indexOf('#') > -1) e.preventDefault();
27656
27793
  if (e.detail) this.$el.blur();
27657
27794
  this.$emit('click', e);
27658
27795
  this.to || this.toggle();
27796
+ },
27797
+ toggle: function toggle() {
27798
+ // VItemGroup treats a change event as a click
27799
+ if (!this.isActive) {
27800
+ this.$emit('change');
27801
+ }
27659
27802
  }
27660
27803
  },
27661
27804
  render: function render(h) {
@@ -28159,7 +28302,7 @@ var __values = undefined && undefined.__values || function (o) {
28159
28302
  try {
28160
28303
  for (var items_1 = __values(items), items_1_1 = items_1.next(); !items_1_1.done; items_1_1 = items_1.next()) {
28161
28304
  var item = items_1_1.value;
28162
- if (item.to === newPath) hasNew = true;else if (item.to === oldPath) hasOld = true;
28305
+ if (item.to === oldPath) hasOld = true;else if (item.to === newPath) hasNew = true;
28163
28306
  if (hasNew && hasOld) break;
28164
28307
  }
28165
28308
  } catch (e_1_1) {
@@ -29009,6 +29152,15 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_2__["default"])(_V
29009
29152
  }
29010
29153
  },
29011
29154
  watch: {
29155
+ autoGrow: function autoGrow(val) {
29156
+ var _this = this;
29157
+
29158
+ this.$nextTick(function () {
29159
+ var _a;
29160
+
29161
+ val ? _this.calculateInputHeight() : (_a = _this.$refs.input) === null || _a === void 0 ? void 0 : _a.style.removeProperty('height');
29162
+ });
29163
+ },
29012
29164
  lazyValue: function lazyValue() {
29013
29165
  this.autoGrow && this.$nextTick(this.calculateInputHeight);
29014
29166
  },
@@ -30511,10 +30663,6 @@ __webpack_require__.r(__webpack_exports__);
30511
30663
  default: 0
30512
30664
  },
30513
30665
  disabled: Boolean,
30514
- fixed: {
30515
- type: Boolean,
30516
- default: true
30517
- },
30518
30666
  openDelay: {
30519
30667
  type: [Number, String],
30520
30668
  default: 0
@@ -30569,7 +30717,8 @@ __webpack_require__.r(__webpack_exports__);
30569
30717
 
30570
30718
  if (this.nudgeTop) top -= parseInt(this.nudgeTop);
30571
30719
  if (this.nudgeBottom) top += parseInt(this.nudgeBottom);
30572
- return this.calcYOverflow(top + this.pageYOffset) + "px";
30720
+ if (this.attach === false) top += this.pageYOffset;
30721
+ return this.calcYOverflow(top) + "px";
30573
30722
  },
30574
30723
  classes: function classes() {
30575
30724
  return {
@@ -31060,7 +31209,7 @@ var __values = undefined && undefined.__values || function (o) {
31060
31209
  node.isOpen = oldNode.isOpen;
31061
31210
  this.nodes[key] = node;
31062
31211
 
31063
- if (children.length) {
31212
+ if (children.length && this.selectionType !== 'independent') {
31064
31213
  var _b = this.calculateState(key, this.nodes),
31065
31214
  isSelected = _b.isSelected,
31066
31215
  isIndeterminate = _b.isIndeterminate;
@@ -33096,11 +33245,7 @@ function createSimpleTransition(name, origin, mode) {
33096
33245
 
33097
33246
  if (context.props.hideOnLeave) {
33098
33247
  data.on.leave = mergeTransitions(data.on.leave, function (el) {
33099
- el._initialDisplay = el.style.display;
33100
- el.style.display = 'none';
33101
- });
33102
- data.on.afterLeave = mergeTransitions(data.on.afterLeave, function (el) {
33103
- if (el) el.style.display = el._initialDisplay || '';
33248
+ el.style.setProperty('display', 'none', 'important');
33104
33249
  });
33105
33250
  }
33106
33251
 
@@ -33364,7 +33509,7 @@ function checkIsActive(e, binding) {
33364
33509
  return isActive(e);
33365
33510
  }
33366
33511
 
33367
- function directive(e, el, binding) {
33512
+ function directive(e, el, binding, vnode) {
33368
33513
  var handler = typeof binding.value === 'function' ? binding.value : binding.value.handler;
33369
33514
  el._clickOutside.lastMousedownWasOutside && checkEvent(e, el, binding) && setTimeout(function () {
33370
33515
  checkIsActive(e, binding) && handler && handler(e);
@@ -33375,7 +33520,7 @@ function handleShadow(el, callback) {
33375
33520
  var root = Object(_util_dom__WEBPACK_IMPORTED_MODULE_0__["attachedRoot"])(el);
33376
33521
  callback(document);
33377
33522
 
33378
- if (root instanceof ShadowRoot) {
33523
+ if (typeof ShadowRoot !== 'undefined' && root instanceof ShadowRoot) {
33379
33524
  callback(root);
33380
33525
  }
33381
33526
  }
@@ -33386,9 +33531,9 @@ var ClickOutside = {
33386
33531
  // sure that the root element is
33387
33532
  // available, iOS does not support
33388
33533
  // clicks on body
33389
- inserted: function inserted(el, binding) {
33534
+ inserted: function inserted(el, binding, vnode) {
33390
33535
  var onClick = function onClick(e) {
33391
- return directive(e, el, binding);
33536
+ return directive(e, el, binding, vnode);
33392
33537
  };
33393
33538
 
33394
33539
  var onMousedown = function onMousedown(e) {
@@ -33399,20 +33544,29 @@ var ClickOutside = {
33399
33544
  app.addEventListener('click', onClick, true);
33400
33545
  app.addEventListener('mousedown', onMousedown, true);
33401
33546
  });
33402
- el._clickOutside = {
33403
- lastMousedownWasOutside: true,
33547
+
33548
+ if (!el._clickOutside) {
33549
+ el._clickOutside = {
33550
+ lastMousedownWasOutside: true
33551
+ };
33552
+ }
33553
+
33554
+ el._clickOutside[vnode.context._uid] = {
33404
33555
  onClick: onClick,
33405
33556
  onMousedown: onMousedown
33406
33557
  };
33407
33558
  },
33408
- unbind: function unbind(el) {
33559
+ unbind: function unbind(el, binding, vnode) {
33409
33560
  if (!el._clickOutside) return;
33410
33561
  handleShadow(el, function (app) {
33411
33562
  if (!app || !el._clickOutside) return;
33412
- app.removeEventListener('click', el._clickOutside.onClick, true);
33413
- app.removeEventListener('mousedown', el._clickOutside.onMousedown, true);
33563
+ var _a = el._clickOutside[vnode.context._uid],
33564
+ onClick = _a.onClick,
33565
+ onMousedown = _a.onMousedown;
33566
+ app.removeEventListener('click', onClick, true);
33567
+ app.removeEventListener('mousedown', onMousedown, true);
33414
33568
  });
33415
- delete el._clickOutside;
33569
+ delete el._clickOutside[vnode.context._uid];
33416
33570
  }
33417
33571
  };
33418
33572
  /* harmony default export */ __webpack_exports__["default"] = (ClickOutside);
@@ -33471,7 +33625,7 @@ __webpack_require__.r(__webpack_exports__);
33471
33625
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Intersect", function() { return Intersect; });
33472
33626
  function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
33473
33627
 
33474
- function inserted(el, binding) {
33628
+ function inserted(el, binding, vnode) {
33475
33629
  if (typeof window === 'undefined' || !('IntersectionObserver' in window)) return;
33476
33630
  var modifiers = binding.modifiers || {};
33477
33631
  var value = binding.value;
@@ -33484,39 +33638,40 @@ function inserted(el, binding) {
33484
33638
  options = _a.options;
33485
33639
 
33486
33640
  var observer = new IntersectionObserver(function (entries, observer) {
33641
+ var _a;
33642
+
33487
33643
  if (entries === void 0) {
33488
33644
  entries = [];
33489
33645
  }
33490
- /* istanbul ignore if */
33491
33646
 
33647
+ if (!((_a = el._observe) === null || _a === void 0 ? void 0 : _a[vnode.context._uid])) return; // Just in case, should never fire
33492
33648
 
33493
- if (!el._observe) return; // Just in case, should never fire
33494
-
33649
+ var _observe = el._observe[vnode.context._uid];
33495
33650
  var isIntersecting = entries.some(function (entry) {
33496
33651
  return entry.isIntersecting;
33497
33652
  }); // If is not quiet or has already been
33498
33653
  // initted, invoke the user callback
33499
33654
 
33500
- if (handler && (!modifiers.quiet || el._observe.init) && (!modifiers.once || isIntersecting || !el._observe.init)) {
33655
+ if (handler && (!modifiers.quiet || _observe.init) && (!modifiers.once || isIntersecting || _observe.init)) {
33501
33656
  handler(entries, observer, isIntersecting);
33502
33657
  }
33503
33658
 
33504
- if (isIntersecting && modifiers.once) unbind(el);else el._observe.init = true;
33659
+ if (isIntersecting && modifiers.once) unbind(el, binding, vnode);else _observe.init = true;
33505
33660
  }, options);
33506
- el._observe = {
33661
+ el._observe = Object(el._observe);
33662
+ el._observe[vnode.context._uid] = {
33507
33663
  init: false,
33508
33664
  observer: observer
33509
33665
  };
33510
33666
  observer.observe(el);
33511
33667
  }
33512
33668
 
33513
- function unbind(el) {
33514
- /* istanbul ignore if */
33669
+ function unbind(el, binding, vnode) {
33515
33670
  if (!el._observe) return;
33516
33671
 
33517
- el._observe.observer.unobserve(el);
33672
+ el._observe[vnode.context._uid].observer.unobserve(el);
33518
33673
 
33519
- delete el._observe;
33674
+ delete el._observe[vnode.context._uid];
33520
33675
  }
33521
33676
 
33522
33677
  var Intersect = {
@@ -33552,7 +33707,7 @@ var __rest = undefined && undefined.__rest || function (s, e) {
33552
33707
  return t;
33553
33708
  };
33554
33709
 
33555
- function inserted(el, binding) {
33710
+ function inserted(el, binding, vnode) {
33556
33711
  var modifiers = binding.modifiers || {};
33557
33712
  var value = binding.value;
33558
33713
  var callback = _typeof(value) === 'object' ? value.handler : value;
@@ -33581,21 +33736,22 @@ function inserted(el, binding) {
33581
33736
 
33582
33737
  callback(mutationsList, observer); // If has the once modifier, unbind
33583
33738
 
33584
- once && unbind(el);
33739
+ once && unbind(el, binding, vnode);
33585
33740
  });
33586
33741
  observer.observe(el, options);
33587
- el._mutate = {
33742
+ el._mutate = Object(el._mutate);
33743
+ el._mutate[vnode.context._uid] = {
33588
33744
  observer: observer
33589
33745
  };
33590
33746
  }
33591
33747
 
33592
- function unbind(el) {
33748
+ function unbind(el, binding, vnode) {
33593
33749
  /* istanbul ignore if */
33594
33750
  if (!el._mutate) return;
33595
33751
 
33596
- el._mutate.observer.disconnect();
33752
+ el._mutate[vnode.context._uid].observer.disconnect();
33597
33753
 
33598
- delete el._mutate;
33754
+ delete el._mutate[vnode.context._uid];
33599
33755
  }
33600
33756
 
33601
33757
  var Mutate = {
@@ -33616,13 +33772,14 @@ var Mutate = {
33616
33772
  "use strict";
33617
33773
  __webpack_require__.r(__webpack_exports__);
33618
33774
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Resize", function() { return Resize; });
33619
- function inserted(el, binding) {
33775
+ function inserted(el, binding, vnode) {
33620
33776
  var callback = binding.value;
33621
33777
  var options = binding.options || {
33622
33778
  passive: true
33623
33779
  };
33624
33780
  window.addEventListener('resize', callback, options);
33625
- el._onResize = {
33781
+ el._onResize = Object(el._onResize);
33782
+ el._onResize[vnode.context._uid] = {
33626
33783
  callback: callback,
33627
33784
  options: options
33628
33785
  };
@@ -33632,13 +33789,13 @@ function inserted(el, binding) {
33632
33789
  }
33633
33790
  }
33634
33791
 
33635
- function unbind(el) {
33792
+ function unbind(el, binding, vnode) {
33636
33793
  if (!el._onResize) return;
33637
- var _a = el._onResize,
33794
+ var _a = el._onResize[vnode.context._uid],
33638
33795
  callback = _a.callback,
33639
33796
  options = _a.options;
33640
33797
  window.removeEventListener('resize', callback, options);
33641
- delete el._onResize;
33798
+ delete el._onResize[vnode.context._uid];
33642
33799
  }
33643
33800
 
33644
33801
  var Resize = {
@@ -33714,7 +33871,6 @@ var __spread = undefined && undefined.__spread || function () {
33714
33871
 
33715
33872
 
33716
33873
 
33717
- var rippleStop = Symbol('rippleStop');
33718
33874
  var DELAY_RIPPLE = 80;
33719
33875
 
33720
33876
  function transform(el, value) {
@@ -33859,9 +34015,9 @@ function isRippleEnabled(value) {
33859
34015
  function rippleShow(e) {
33860
34016
  var value = {};
33861
34017
  var element = e.currentTarget;
33862
- if (!element || !element._ripple || element._ripple.touched || e[rippleStop]) return; // Don't allow the event to trigger ripples on any other elements
34018
+ if (!element || !element._ripple || element._ripple.touched || e.rippleStop) return; // Don't allow the event to trigger ripples on any other elements
33863
34019
 
33864
- e[rippleStop] = true;
34020
+ e.rippleStop = true;
33865
34021
 
33866
34022
  if (isTouchEvent(e)) {
33867
34023
  element._ripple.touched = true;
@@ -34071,7 +34227,7 @@ __webpack_require__.r(__webpack_exports__);
34071
34227
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Scroll", function() { return Scroll; });
34072
34228
  function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
34073
34229
 
34074
- function inserted(el, binding) {
34230
+ function inserted(el, binding, vnode) {
34075
34231
  var _a = (binding.modifiers || {}).self,
34076
34232
  self = _a === void 0 ? false : _a;
34077
34233
  var value = binding.value;
@@ -34082,7 +34238,8 @@ function inserted(el, binding) {
34082
34238
  var target = self ? el : binding.arg ? document.querySelector(binding.arg) : window;
34083
34239
  if (!target) return;
34084
34240
  target.addEventListener('scroll', handler, options);
34085
- el._onScroll = {
34241
+ el._onScroll = Object(el._onScroll);
34242
+ el._onScroll[vnode.context._uid] = {
34086
34243
  handler: handler,
34087
34244
  options: options,
34088
34245
  // Don't reference self
@@ -34090,15 +34247,17 @@ function inserted(el, binding) {
34090
34247
  };
34091
34248
  }
34092
34249
 
34093
- function unbind(el) {
34094
- if (!el._onScroll) return;
34095
- var _a = el._onScroll,
34096
- handler = _a.handler,
34097
- options = _a.options,
34098
- _b = _a.target,
34099
- target = _b === void 0 ? el : _b;
34250
+ function unbind(el, binding, vnode) {
34251
+ var _a;
34252
+
34253
+ if (!((_a = el._onScroll) === null || _a === void 0 ? void 0 : _a[vnode.context._uid])) return;
34254
+ var _b = el._onScroll[vnode.context._uid],
34255
+ handler = _b.handler,
34256
+ options = _b.options,
34257
+ _c = _b.target,
34258
+ target = _c === void 0 ? el : _c;
34100
34259
  target.removeEventListener('scroll', handler, options);
34101
- delete el._onScroll;
34260
+ delete el._onScroll[vnode.context._uid];
34102
34261
  }
34103
34262
 
34104
34263
  var Scroll = {
@@ -34297,7 +34456,7 @@ function () {
34297
34456
 
34298
34457
  Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
34299
34458
  Vuetify.installed = false;
34300
- Vuetify.version = "2.5.9";
34459
+ Vuetify.version = "2.5.13";
34301
34460
  Vuetify.config = {
34302
34461
  silent: false
34303
34462
  };
@@ -35653,7 +35812,7 @@ __webpack_require__.r(__webpack_exports__);
35653
35812
  },
35654
35813
  rating: {
35655
35814
  ariaLabel: {
35656
- icon: 'Rating {0} of {1}'
35815
+ icon: 'Note de {0} sur {1}'
35657
35816
  }
35658
35817
  }
35659
35818
  });
@@ -38803,6 +38962,12 @@ function validateAttachTarget(val) {
38803
38962
  if (type === 'boolean' || type === 'string') return true;
38804
38963
  return val.nodeType === Node.ELEMENT_NODE;
38805
38964
  }
38965
+
38966
+ function removeActivator(activator) {
38967
+ activator.forEach(function (node) {
38968
+ node.elm && node.elm.parentNode && node.elm.parentNode.removeChild(node.elm);
38969
+ });
38970
+ }
38806
38971
  /* @vue/component */
38807
38972
 
38808
38973
 
@@ -38856,23 +39021,35 @@ function validateAttachTarget(val) {
38856
39021
  this.isActive = false;
38857
39022
  },
38858
39023
  beforeDestroy: function beforeDestroy() {
38859
- // IE11 Fix
38860
- try {
38861
- if (this.$refs.content && this.$refs.content.parentNode) {
38862
- this.$refs.content.parentNode.removeChild(this.$refs.content);
38863
- }
39024
+ if (this.$refs.content && this.$refs.content.parentNode) {
39025
+ this.$refs.content.parentNode.removeChild(this.$refs.content);
39026
+ }
39027
+ },
39028
+ destroyed: function destroyed() {
39029
+ var _this = this;
38864
39030
 
38865
- if (this.activatorNode) {
38866
- var activator = Array.isArray(this.activatorNode) ? this.activatorNode : [this.activatorNode];
38867
- activator.forEach(function (node) {
38868
- node.elm && node.elm.parentNode && node.elm.parentNode.removeChild(node.elm);
39031
+ if (this.activatorNode) {
39032
+ var activator_1 = Array.isArray(this.activatorNode) ? this.activatorNode : [this.activatorNode];
39033
+
39034
+ if (this.$el.isConnected) {
39035
+ // Component has been destroyed but the element still exists, we must be in a transition
39036
+ // Wait for the transition to finish before cleaning up the detached activator
39037
+ var observer_1 = new MutationObserver(function (list) {
39038
+ if (list.some(function (record) {
39039
+ return Array.from(record.removedNodes).includes(_this.$el);
39040
+ })) {
39041
+ observer_1.disconnect();
39042
+ removeActivator(activator_1);
39043
+ }
39044
+ });
39045
+ observer_1.observe(this.$el.parentNode, {
39046
+ subtree: false,
39047
+ childList: true
38869
39048
  });
39049
+ } else {
39050
+ removeActivator(activator_1);
38870
39051
  }
38871
- } catch (e) {
38872
- console.log(e);
38873
39052
  }
38874
- /* eslint-disable-line no-console */
38875
-
38876
39053
  },
38877
39054
  methods: {
38878
39055
  getScopeIdAttrs: function getScopeIdAttrs() {
@@ -39060,10 +39237,13 @@ function intersectable(options) {
39060
39237
  _directives_intersect__WEBPACK_IMPORTED_MODULE_0__["default"].inserted(this.$el, {
39061
39238
  name: 'intersect',
39062
39239
  value: this.onObserve
39063
- });
39240
+ }, this.$vnode);
39064
39241
  },
39065
39242
  destroyed: function destroyed() {
39066
- _directives_intersect__WEBPACK_IMPORTED_MODULE_0__["default"].unbind(this.$el);
39243
+ _directives_intersect__WEBPACK_IMPORTED_MODULE_0__["default"].unbind(this.$el, {
39244
+ name: 'intersect',
39245
+ value: this.onObserve
39246
+ }, this.$vnode);
39067
39247
  },
39068
39248
  methods: {
39069
39249
  onObserve: function onObserve(entries, observer, isIntersecting) {
@@ -39224,8 +39404,8 @@ __webpack_require__.r(__webpack_exports__);
39224
39404
 
39225
39405
  "use strict";
39226
39406
  __webpack_require__.r(__webpack_exports__);
39227
- /* harmony import */ var _positionable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../positionable */ "./src/mixins/positionable/index.ts");
39228
- /* harmony import */ var _stackable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../stackable */ "./src/mixins/stackable/index.ts");
39407
+ /* harmony import */ var _stackable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../stackable */ "./src/mixins/stackable/index.ts");
39408
+ /* harmony import */ var _positionable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../positionable */ "./src/mixins/positionable/index.ts");
39229
39409
  /* harmony import */ var _activatable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../activatable */ "./src/mixins/activatable/index.ts");
39230
39410
  /* harmony import */ var _detachable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../detachable */ "./src/mixins/detachable/index.ts");
39231
39411
  /* harmony import */ var _util_mixins__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../util/mixins */ "./src/util/mixins.ts");
@@ -39254,7 +39434,7 @@ var __assign = undefined && undefined.__assign || function () {
39254
39434
 
39255
39435
 
39256
39436
 
39257
- var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_4__["default"])(_stackable__WEBPACK_IMPORTED_MODULE_1__["default"], _positionable__WEBPACK_IMPORTED_MODULE_0__["default"], _activatable__WEBPACK_IMPORTED_MODULE_2__["default"], _detachable__WEBPACK_IMPORTED_MODULE_3__["default"]);
39437
+ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_4__["default"])(_stackable__WEBPACK_IMPORTED_MODULE_0__["default"], Object(_positionable__WEBPACK_IMPORTED_MODULE_1__["factory"])(['top', 'right', 'bottom', 'left', 'absolute']), _activatable__WEBPACK_IMPORTED_MODULE_2__["default"], _detachable__WEBPACK_IMPORTED_MODULE_3__["default"]);
39258
39438
  /* @vue/component */
39259
39439
 
39260
39440
  /* harmony default export */ __webpack_exports__["default"] = (baseMixins.extend().extend({
@@ -39406,8 +39586,8 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_4__["default"])(_s
39406
39586
  methods: {
39407
39587
  absolutePosition: function absolutePosition() {
39408
39588
  return {
39409
- offsetTop: 0,
39410
- offsetLeft: 0,
39589
+ offsetTop: this.positionY || this.absoluteY,
39590
+ offsetLeft: this.positionX || this.absoluteX,
39411
39591
  scrollHeight: 0,
39412
39592
  top: this.positionY || this.absoluteY,
39413
39593
  bottom: this.positionY || this.absoluteY,
@@ -39796,19 +39976,30 @@ __webpack_require__.r(__webpack_exports__);
39796
39976
  hasScrollbar: function hasScrollbar(el) {
39797
39977
  if (!el || el.nodeType !== Node.ELEMENT_NODE) return false;
39798
39978
  var style = window.getComputedStyle(el);
39799
- return ['auto', 'scroll'].includes(style.overflowY) && el.scrollHeight > el.clientHeight;
39979
+ return (['auto', 'scroll'].includes(style.overflowY) || el.tagName === 'SELECT') && el.scrollHeight > el.clientHeight || ['auto', 'scroll'].includes(style.overflowX) && el.scrollWidth > el.clientWidth;
39800
39980
  },
39801
- shouldScroll: function shouldScroll(el, delta) {
39981
+ shouldScroll: function shouldScroll(el, e) {
39802
39982
  if (el.hasAttribute('data-app')) return false;
39803
- var alreadyAtTop = el.scrollTop === 0;
39804
- var alreadyAtBottom = el.scrollTop + el.clientHeight === el.scrollHeight;
39983
+ var dir = e.shiftKey || e.deltaX ? 'x' : 'y';
39984
+ var delta = dir === 'y' ? e.deltaY : e.deltaX || e.deltaY;
39985
+ var alreadyAtStart;
39986
+ var alreadyAtEnd;
39987
+
39988
+ if (dir === 'y') {
39989
+ alreadyAtStart = el.scrollTop === 0;
39990
+ alreadyAtEnd = el.scrollTop + el.clientHeight === el.scrollHeight;
39991
+ } else {
39992
+ alreadyAtStart = el.scrollLeft === 0;
39993
+ alreadyAtEnd = el.scrollLeft + el.clientWidth === el.scrollWidth;
39994
+ }
39995
+
39805
39996
  var scrollingUp = delta < 0;
39806
39997
  var scrollingDown = delta > 0;
39807
- if (!alreadyAtTop && scrollingUp) return true;
39808
- if (!alreadyAtBottom && scrollingDown) return true;
39998
+ if (!alreadyAtStart && scrollingUp) return true;
39999
+ if (!alreadyAtEnd && scrollingDown) return true;
39809
40000
 
39810
- if (alreadyAtTop || alreadyAtBottom) {
39811
- return this.shouldScroll(el.parentNode, delta);
40001
+ if (alreadyAtStart || alreadyAtEnd) {
40002
+ return this.shouldScroll(el.parentNode, e);
39812
40003
  }
39813
40004
 
39814
40005
  return false;
@@ -39823,8 +40014,7 @@ __webpack_require__.r(__webpack_exports__);
39823
40014
  }
39824
40015
  },
39825
40016
  checkPath: function checkPath(e) {
39826
- var path = e.path || this.composedPath(e);
39827
- var delta = e.deltaY;
40017
+ var path = Object(_util_helpers__WEBPACK_IMPORTED_MODULE_1__["composedPath"])(e);
39828
40018
 
39829
40019
  if (e.type === 'keydown' && path[0] === document.body) {
39830
40020
  var dialog = this.$refs.dialog; // getSelection returns null in firefox in some edge cases, can be ignored
@@ -39832,7 +40022,7 @@ __webpack_require__.r(__webpack_exports__);
39832
40022
  var selected = window.getSelection().anchorNode;
39833
40023
 
39834
40024
  if (dialog && this.hasScrollbar(dialog) && this.isInside(selected, dialog)) {
39835
- return !this.shouldScroll(dialog, delta);
40025
+ return !this.shouldScroll(dialog, e);
39836
40026
  }
39837
40027
 
39838
40028
  return true;
@@ -39843,34 +40033,11 @@ __webpack_require__.r(__webpack_exports__);
39843
40033
  if (el === document) return true;
39844
40034
  if (el === document.documentElement) return true;
39845
40035
  if (el === this.$refs.content) return true;
39846
- if (this.hasScrollbar(el)) return !this.shouldScroll(el, delta);
40036
+ if (this.hasScrollbar(el)) return !this.shouldScroll(el, e);
39847
40037
  }
39848
40038
 
39849
40039
  return true;
39850
40040
  },
39851
-
39852
- /**
39853
- * Polyfill for Event.prototype.composedPath
39854
- */
39855
- composedPath: function composedPath(e) {
39856
- if (e.composedPath) return e.composedPath();
39857
- var path = [];
39858
- var el = e.target;
39859
-
39860
- while (el) {
39861
- path.push(el);
39862
-
39863
- if (el.tagName === 'HTML') {
39864
- path.push(document);
39865
- path.push(window);
39866
- return path;
39867
- }
39868
-
39869
- el = el.parentElement;
39870
- }
39871
-
39872
- return path;
39873
- },
39874
40041
  hideScroll: function hideScroll() {
39875
40042
  if (this.$vuetify.breakpoint.smAndDown) {
39876
40043
  document.documentElement.classList.add('overflow-y-hidden');
@@ -40480,6 +40647,9 @@ var __assign = undefined && undefined.__assign || function () {
40480
40647
  watch: {
40481
40648
  $route: 'onRouteChange'
40482
40649
  },
40650
+ mounted: function mounted() {
40651
+ this.onRouteChange();
40652
+ },
40483
40653
  methods: {
40484
40654
  click: function click(e) {
40485
40655
  this.$emit('click', e);
@@ -40545,15 +40715,18 @@ var __assign = undefined && undefined.__assign || function () {
40545
40715
 
40546
40716
  if (!this.to || !this.$refs.link || !this.$route) return;
40547
40717
  var activeClass = (this.activeClass + " " + (this.proxyClass || '')).trim();
40548
- var path = "_vnode.data.class." + activeClass;
40718
+ var exactActiveClass = (this.exactActiveClass + " " + (this.proxyClass || '')).trim() || activeClass;
40719
+ var path = '_vnode.data.class.' + (this.exact ? exactActiveClass : activeClass);
40549
40720
  this.$nextTick(function () {
40550
40721
  /* istanbul ignore else */
40551
- if (Object(_util_helpers__WEBPACK_IMPORTED_MODULE_2__["getObjectValueByPath"])(_this.$refs.link, path)) {
40722
+ if (!Object(_util_helpers__WEBPACK_IMPORTED_MODULE_2__["getObjectValueByPath"])(_this.$refs.link, path) === _this.isActive) {
40552
40723
  _this.toggle();
40553
40724
  }
40554
40725
  });
40555
40726
  },
40556
- toggle: function toggle() {}
40727
+ toggle: function toggle() {
40728
+ this.isActive = !this.isActive;
40729
+ }
40557
40730
  }
40558
40731
  }));
40559
40732
 
@@ -42116,8 +42289,10 @@ function goTo(_target, _settings) {
42116
42289
  var progress = Math.abs(settings.duration ? Math.min(timeElapsed / settings.duration, 1) : 1);
42117
42290
  container.scrollTop = Math.floor(startLocation + (targetLocation - startLocation) * ease(progress));
42118
42291
  var clientHeight = container === document.body ? document.documentElement.clientHeight : container.clientHeight;
42292
+ var reachBottom = clientHeight + container.scrollTop >= container.scrollHeight;
42119
42293
 
42120
- if (progress === 1 || clientHeight + container.scrollTop === container.scrollHeight) {
42294
+ if (progress === 1 || // Need to go lower but reach bottom
42295
+ targetLocation > container.scrollTop && reachBottom) {
42121
42296
  return resolve(targetLocation);
42122
42297
  }
42123
42298
 
@@ -44484,7 +44659,7 @@ function attachedRoot(node) {
44484
44659
  /*!*****************************!*\
44485
44660
  !*** ./src/util/helpers.ts ***!
44486
44661
  \*****************************/
44487
- /*! exports provided: createSimpleFunctional, directiveConfig, addOnceEventListener, passiveSupported, addPassiveEventListener, getNestedValue, deepEqual, getObjectValueByPath, getPropertyFromItem, createRange, getZIndex, escapeHTML, filterObjectOnKeys, convertToUnit, kebabCase, isObject, keyCodes, remapInternalIcon, keys, camelize, arrayDiff, upperFirst, groupItems, wrapInArray, sortItems, defaultFilter, searchItems, getSlotType, debounce, throttle, getPrefixedScopedSlots, getSlot, clamp, padEnd, chunk, humanReadableFileSize, camelizeObjectKeys, mergeDeep, fillArray */
44662
+ /*! exports provided: createSimpleFunctional, directiveConfig, addOnceEventListener, passiveSupported, addPassiveEventListener, getNestedValue, deepEqual, getObjectValueByPath, getPropertyFromItem, createRange, getZIndex, escapeHTML, filterObjectOnKeys, convertToUnit, kebabCase, isObject, keyCodes, remapInternalIcon, keys, camelize, arrayDiff, upperFirst, groupItems, wrapInArray, sortItems, defaultFilter, searchItems, getSlotType, debounce, throttle, getPrefixedScopedSlots, getSlot, clamp, padEnd, chunk, humanReadableFileSize, camelizeObjectKeys, mergeDeep, fillArray, composedPath */
44488
44663
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
44489
44664
 
44490
44665
  "use strict";
@@ -44528,6 +44703,7 @@ __webpack_require__.r(__webpack_exports__);
44528
44703
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "camelizeObjectKeys", function() { return camelizeObjectKeys; });
44529
44704
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mergeDeep", function() { return mergeDeep; });
44530
44705
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fillArray", function() { return fillArray; });
44706
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "composedPath", function() { return composedPath; });
44531
44707
  /* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "vue");
44532
44708
  /* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue__WEBPACK_IMPORTED_MODULE_0__);
44533
44709
  function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
@@ -45084,6 +45260,27 @@ function mergeDeep(source, target) {
45084
45260
  function fillArray(length, obj) {
45085
45261
  return Array(length).fill(obj);
45086
45262
  }
45263
+ /** Polyfill for Event.prototype.composedPath */
45264
+
45265
+ function composedPath(e) {
45266
+ if (e.composedPath) return e.composedPath();
45267
+ var path = [];
45268
+ var el = e.target;
45269
+
45270
+ while (el) {
45271
+ path.push(el);
45272
+
45273
+ if (el.tagName === 'HTML') {
45274
+ path.push(document);
45275
+ path.push(window);
45276
+ return path;
45277
+ }
45278
+
45279
+ el = el.parentElement;
45280
+ }
45281
+
45282
+ return path;
45283
+ }
45087
45284
 
45088
45285
  /***/ }),
45089
45286