@vuetify/nightly 2.6.13-master-20221212.0 → 2.6.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.
package/CHANGELOG.md CHANGED
@@ -1,12 +1,13 @@
1
- # [](https://github.com/vuetifyjs/vuetify/compare/v2.6.13-master-20221212.0...v) (2022-12-12)
1
+ # [](https://github.com/vuetifyjs/vuetify/compare/v2.6.13...v) (2022-12-14)
2
2
 
3
3
 
4
4
 
5
- ## [2.6.13-master-20221212.0](https://github.com/vuetifyjs/vuetify/compare/v2.6.12...v2.6.13-master-20221212.0) (2022-12-12)
5
+ ## [2.6.13](https://github.com/vuetifyjs/vuetify/compare/v2.6.12...v2.6.13) (2022-12-13)
6
6
 
7
7
 
8
8
  ### Bug Fixes
9
9
 
10
+ * **ripple:** check parent before calling removeChild ([#14573](https://github.com/vuetifyjs/vuetify/issues/14573)) ([63c2267](https://github.com/vuetifyjs/vuetify/commit/63c2267ddba48b74d1b43d776370f65f592258e9)), closes [#13457](https://github.com/vuetifyjs/vuetify/issues/13457)
10
11
  * **VAutocomplete:** remove unused allowOverflow prop ([f16c2c5](https://github.com/vuetifyjs/vuetify/commit/f16c2c506bc73074866859cbd798086801a9b1da)), closes [#16008](https://github.com/vuetifyjs/vuetify/issues/16008)
11
12
  * **VDataTable:** native event as argument to click:row ([#15864](https://github.com/vuetifyjs/vuetify/issues/15864)) ([17dd133](https://github.com/vuetifyjs/vuetify/commit/17dd1334eed3352d51da6bf66a560d6943f613ea)), closes [#10302](https://github.com/vuetifyjs/vuetify/issues/10302)
12
13
 
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "2.6.13-master-20221212.0",
5
+ "version": "2.6.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": "2022-12-12",
5100
+ "default": "2022-12-14",
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": "2022-12-12",
6729
+ "default": "2022-12-14",
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": "2022-12-12",
6947
+ "default": "2022-12-14",
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": "2022-12-12",
7165
+ "default": "2022-12-14",
7166
7166
  "value": {
7167
7167
  "kind": "expression",
7168
7168
  "type": [
package/dist/vuetify.js CHANGED
@@ -34674,6 +34674,8 @@ var ripples = {
34674
34674
  animation.classList.remove('v-ripple__animation--in');
34675
34675
  animation.classList.add('v-ripple__animation--out');
34676
34676
  setTimeout(function () {
34677
+ var _a;
34678
+
34677
34679
  var ripples = el.getElementsByClassName('v-ripple__animation');
34678
34680
 
34679
34681
  if (ripples.length === 1 && el.dataset.previousPosition) {
@@ -34681,7 +34683,7 @@ var ripples = {
34681
34683
  delete el.dataset.previousPosition;
34682
34684
  }
34683
34685
 
34684
- animation.parentNode && el.removeChild(animation.parentNode);
34686
+ if (((_a = animation.parentNode) === null || _a === void 0 ? void 0 : _a.parentNode) === el) el.removeChild(animation.parentNode);
34685
34687
  }, 300);
34686
34688
  }, delay);
34687
34689
  }
@@ -35135,7 +35137,7 @@ function () {
35135
35137
 
35136
35138
  Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
35137
35139
  Vuetify.installed = false;
35138
- Vuetify.version = "2.6.13-master-20221212.0";
35140
+ Vuetify.version = "2.6.13";
35139
35141
  Vuetify.config = {
35140
35142
  silent: false
35141
35143
  };