vuetify 2.5.11 → 2.5.12
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/dist/json/web-types.json +5 -5
- package/dist/vuetify.js +27 -33
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +1 -1
- package/dist/vuetify.min.js +2 -2
- package/es5/framework.js +1 -1
- package/es5/mixins/detachable/index.js +25 -31
- package/es5/mixins/detachable/index.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/mixins/detachable/index.js +24 -29
- package/lib/mixins/detachable/index.js.map +1 -1
- package/package.json +2 -2
- package/src/mixins/detachable/index.ts +26 -27
package/dist/json/web-types.json
CHANGED
|
@@ -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.
|
|
5
|
+
"version": "2.5.12",
|
|
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-
|
|
5100
|
+
"default": "2021-11-05",
|
|
5101
5101
|
"value": {
|
|
5102
5102
|
"kind": "expression",
|
|
5103
5103
|
"type": [
|
|
@@ -6726,7 +6726,7 @@
|
|
|
6726
6726
|
"name": "start",
|
|
6727
6727
|
"description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
|
|
6728
6728
|
"doc-url": "https://www.vuetifyjs.com/api/v-calendar-daily#props",
|
|
6729
|
-
"default": "2021-11-
|
|
6729
|
+
"default": "2021-11-05",
|
|
6730
6730
|
"value": {
|
|
6731
6731
|
"kind": "expression",
|
|
6732
6732
|
"type": [
|
|
@@ -6944,7 +6944,7 @@
|
|
|
6944
6944
|
"name": "start",
|
|
6945
6945
|
"description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
|
|
6946
6946
|
"doc-url": "https://www.vuetifyjs.com/api/v-calendar-weekly#props",
|
|
6947
|
-
"default": "2021-11-
|
|
6947
|
+
"default": "2021-11-05",
|
|
6948
6948
|
"value": {
|
|
6949
6949
|
"kind": "expression",
|
|
6950
6950
|
"type": [
|
|
@@ -7162,7 +7162,7 @@
|
|
|
7162
7162
|
"name": "start",
|
|
7163
7163
|
"description": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar.",
|
|
7164
7164
|
"doc-url": "https://www.vuetifyjs.com/api/v-calendar-monthly#props",
|
|
7165
|
-
"default": "2021-11-
|
|
7165
|
+
"default": "2021-11-05",
|
|
7166
7166
|
"value": {
|
|
7167
7167
|
"kind": "expression",
|
|
7168
7168
|
"type": [
|
package/dist/vuetify.js
CHANGED
|
@@ -34433,7 +34433,7 @@ function () {
|
|
|
34433
34433
|
|
|
34434
34434
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
34435
34435
|
Vuetify.installed = false;
|
|
34436
|
-
Vuetify.version = "2.5.
|
|
34436
|
+
Vuetify.version = "2.5.12";
|
|
34437
34437
|
Vuetify.config = {
|
|
34438
34438
|
silent: false
|
|
34439
34439
|
};
|
|
@@ -38997,42 +38997,36 @@ function removeActivator(activator) {
|
|
|
38997
38997
|
deactivated: function deactivated() {
|
|
38998
38998
|
this.isActive = false;
|
|
38999
38999
|
},
|
|
39000
|
+
beforeDestroy: function beforeDestroy() {
|
|
39001
|
+
if (this.$refs.content && this.$refs.content.parentNode) {
|
|
39002
|
+
this.$refs.content.parentNode.removeChild(this.$refs.content);
|
|
39003
|
+
}
|
|
39004
|
+
},
|
|
39000
39005
|
destroyed: function destroyed() {
|
|
39001
|
-
var _this = this;
|
|
39002
|
-
|
|
39006
|
+
var _this = this;
|
|
39003
39007
|
|
|
39004
|
-
|
|
39005
|
-
|
|
39006
|
-
|
|
39007
|
-
|
|
39008
|
-
|
|
39009
|
-
|
|
39010
|
-
var
|
|
39011
|
-
|
|
39012
|
-
|
|
39013
|
-
|
|
39014
|
-
|
|
39015
|
-
|
|
39016
|
-
|
|
39017
|
-
|
|
39018
|
-
|
|
39019
|
-
|
|
39020
|
-
|
|
39021
|
-
|
|
39022
|
-
|
|
39023
|
-
|
|
39024
|
-
subtree: false,
|
|
39025
|
-
childList: true
|
|
39026
|
-
});
|
|
39027
|
-
} else {
|
|
39028
|
-
removeActivator(activator_1);
|
|
39029
|
-
}
|
|
39008
|
+
if (this.activatorNode) {
|
|
39009
|
+
var activator_1 = Array.isArray(this.activatorNode) ? this.activatorNode : [this.activatorNode];
|
|
39010
|
+
|
|
39011
|
+
if (this.$el.isConnected) {
|
|
39012
|
+
// Component has been destroyed but the element still exists, we must be in a transition
|
|
39013
|
+
// Wait for the transition to finish before cleaning up the detached activator
|
|
39014
|
+
var observer_1 = new MutationObserver(function (list) {
|
|
39015
|
+
if (list.some(function (record) {
|
|
39016
|
+
return Array.from(record.removedNodes).includes(_this.$el);
|
|
39017
|
+
})) {
|
|
39018
|
+
observer_1.disconnect();
|
|
39019
|
+
removeActivator(activator_1);
|
|
39020
|
+
}
|
|
39021
|
+
});
|
|
39022
|
+
observer_1.observe(this.$el.parentNode, {
|
|
39023
|
+
subtree: false,
|
|
39024
|
+
childList: true
|
|
39025
|
+
});
|
|
39026
|
+
} else {
|
|
39027
|
+
removeActivator(activator_1);
|
|
39030
39028
|
}
|
|
39031
|
-
} catch (e) {
|
|
39032
|
-
console.log(e);
|
|
39033
39029
|
}
|
|
39034
|
-
/* eslint-disable-line no-console */
|
|
39035
|
-
|
|
39036
39030
|
},
|
|
39037
39031
|
methods: {
|
|
39038
39032
|
getScopeIdAttrs: function getScopeIdAttrs() {
|