vuetify 2.6.10 → 2.6.11
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 -10
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +1 -1
- package/dist/vuetify.min.js +2 -2
- package/es5/directives/click-outside/index.js +2 -2
- package/es5/directives/click-outside/index.js.map +1 -1
- package/es5/framework.js +1 -1
- package/lib/directives/click-outside/index.js +2 -2
- package/lib/directives/click-outside/index.js.map +1 -1
- package/lib/framework.js +1 -1
- package/package.json +2 -2
- package/src/directives/click-outside/index.ts +2 -2
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.6.
|
|
5
|
+
"version": "2.6.11",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -5140,7 +5140,7 @@
|
|
|
5140
5140
|
"name": "start",
|
|
5141
5141
|
"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.",
|
|
5142
5142
|
"doc-url": "https://www.vuetifyjs.com/api/v-calendar#props",
|
|
5143
|
-
"default": "2022-
|
|
5143
|
+
"default": "2022-10-04",
|
|
5144
5144
|
"value": {
|
|
5145
5145
|
"kind": "expression",
|
|
5146
5146
|
"type": [
|
|
@@ -6769,7 +6769,7 @@
|
|
|
6769
6769
|
"name": "start",
|
|
6770
6770
|
"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.",
|
|
6771
6771
|
"doc-url": "https://www.vuetifyjs.com/api/v-calendar-daily#props",
|
|
6772
|
-
"default": "2022-
|
|
6772
|
+
"default": "2022-10-04",
|
|
6773
6773
|
"value": {
|
|
6774
6774
|
"kind": "expression",
|
|
6775
6775
|
"type": [
|
|
@@ -6987,7 +6987,7 @@
|
|
|
6987
6987
|
"name": "start",
|
|
6988
6988
|
"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.",
|
|
6989
6989
|
"doc-url": "https://www.vuetifyjs.com/api/v-calendar-weekly#props",
|
|
6990
|
-
"default": "2022-
|
|
6990
|
+
"default": "2022-10-04",
|
|
6991
6991
|
"value": {
|
|
6992
6992
|
"kind": "expression",
|
|
6993
6993
|
"type": [
|
|
@@ -7205,7 +7205,7 @@
|
|
|
7205
7205
|
"name": "start",
|
|
7206
7206
|
"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.",
|
|
7207
7207
|
"doc-url": "https://www.vuetifyjs.com/api/v-calendar-monthly#props",
|
|
7208
|
-
"default": "2022-
|
|
7208
|
+
"default": "2022-10-04",
|
|
7209
7209
|
"value": {
|
|
7210
7210
|
"kind": "expression",
|
|
7211
7211
|
"type": [
|
|
@@ -11694,11 +11694,6 @@
|
|
|
11694
11694
|
}
|
|
11695
11695
|
],
|
|
11696
11696
|
"slots": [
|
|
11697
|
-
{
|
|
11698
|
-
"name": "default",
|
|
11699
|
-
"description": "The default slot. Use this to render your items",
|
|
11700
|
-
"doc-url": "https://www.vuetifyjs.com/api/v-data-iterator#slots"
|
|
11701
|
-
},
|
|
11702
11697
|
{
|
|
11703
11698
|
"name": "default",
|
|
11704
11699
|
"description": "The default slot. Use this to render your items",
|
package/dist/vuetify.js
CHANGED
|
@@ -34184,7 +34184,7 @@ function checkIsActive(e, binding) {
|
|
|
34184
34184
|
return isActive(e);
|
|
34185
34185
|
}
|
|
34186
34186
|
|
|
34187
|
-
function directive(e, el, binding
|
|
34187
|
+
function directive(e, el, binding) {
|
|
34188
34188
|
var handler = typeof binding.value === 'function' ? binding.value : binding.value.handler;
|
|
34189
34189
|
el._clickOutside.lastMousedownWasOutside && checkEvent(e, el, binding) && setTimeout(function () {
|
|
34190
34190
|
checkIsActive(e, binding) && handler && handler(e);
|
|
@@ -34208,7 +34208,7 @@ var ClickOutside = {
|
|
|
34208
34208
|
// clicks on body
|
|
34209
34209
|
inserted: function inserted(el, binding, vnode) {
|
|
34210
34210
|
var onClick = function onClick(e) {
|
|
34211
|
-
return directive(e, el, binding
|
|
34211
|
+
return directive(e, el, binding);
|
|
34212
34212
|
};
|
|
34213
34213
|
|
|
34214
34214
|
var onMousedown = function onMousedown(e) {
|
|
@@ -35133,7 +35133,7 @@ function () {
|
|
|
35133
35133
|
|
|
35134
35134
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
35135
35135
|
Vuetify.installed = false;
|
|
35136
|
-
Vuetify.version = "2.6.
|
|
35136
|
+
Vuetify.version = "2.6.11";
|
|
35137
35137
|
Vuetify.config = {
|
|
35138
35138
|
silent: false
|
|
35139
35139
|
};
|