@vuetify/nightly 2.6.3 → 2.6.4-master-20220204.0
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 +12 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +1 -1
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VSelect/VSelect.js +53 -49
- package/es5/components/VSelect/VSelect.js.map +1 -1
- package/es5/framework.js +1 -1
- package/lib/components/VSelect/VSelect.js +9 -7
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/framework.js +1 -1
- package/package.json +1 -1
- package/src/components/VSelect/VSelect.ts +6 -8
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.4-master-20220204.0",
|
|
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-02-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-02-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-02-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-02-04",
|
|
7209
7209
|
"value": {
|
|
7210
7210
|
"kind": "expression",
|
|
7211
7211
|
"type": [
|
package/dist/vuetify.js
CHANGED
|
@@ -23903,8 +23903,18 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_14__["default"])(_
|
|
|
23903
23903
|
},
|
|
23904
23904
|
watch: {
|
|
23905
23905
|
internalValue: function internalValue(val) {
|
|
23906
|
+
var _this = this;
|
|
23907
|
+
|
|
23906
23908
|
this.initialValue = val;
|
|
23907
23909
|
this.setSelectedItems();
|
|
23910
|
+
|
|
23911
|
+
if (this.multiple) {
|
|
23912
|
+
this.$nextTick(function () {
|
|
23913
|
+
var _a;
|
|
23914
|
+
|
|
23915
|
+
(_a = _this.$refs.menu) === null || _a === void 0 ? void 0 : _a.updateDimensions();
|
|
23916
|
+
});
|
|
23917
|
+
}
|
|
23908
23918
|
},
|
|
23909
23919
|
isMenuActive: function isMenuActive(val) {
|
|
23910
23920
|
var _this = this;
|
|
@@ -24439,13 +24449,7 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_14__["default"])(_
|
|
|
24439
24449
|
i !== -1 ? internalValue.splice(i, 1) : internalValue.push(item);
|
|
24440
24450
|
this.setValue(internalValue.map(function (i) {
|
|
24441
24451
|
return _this.returnObject ? i : _this.getValue(i);
|
|
24442
|
-
})); //
|
|
24443
|
-
// adjust menu after each
|
|
24444
|
-
// selection
|
|
24445
|
-
|
|
24446
|
-
this.$nextTick(function () {
|
|
24447
|
-
_this.$refs.menu && _this.$refs.menu.updateDimensions();
|
|
24448
|
-
}); // There is no item to re-highlight
|
|
24452
|
+
})); // There is no item to re-highlight
|
|
24449
24453
|
// when selections are hidden
|
|
24450
24454
|
|
|
24451
24455
|
if (this.hideSelected) {
|
|
@@ -35003,7 +35007,7 @@ function () {
|
|
|
35003
35007
|
|
|
35004
35008
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
35005
35009
|
Vuetify.installed = false;
|
|
35006
|
-
Vuetify.version = "2.6.
|
|
35010
|
+
Vuetify.version = "2.6.4-master-20220204.0";
|
|
35007
35011
|
Vuetify.config = {
|
|
35008
35012
|
silent: false
|
|
35009
35013
|
};
|