vuetify 2.2.14 → 2.2.15
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 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +1 -1
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VAutocomplete/VAutocomplete.js +1 -1
- package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/es5/components/VData/VData.js +6 -1
- package/es5/components/VData/VData.js.map +1 -1
- package/es5/components/VDataIterator/VDataIterator.js +3 -0
- package/es5/components/VDataIterator/VDataIterator.js.map +1 -1
- package/es5/components/VRangeSlider/VRangeSlider.js +1 -0
- package/es5/components/VRangeSlider/VRangeSlider.js.map +1 -1
- package/es5/framework.js +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VData/VData.js +7 -1
- package/lib/components/VData/VData.js.map +1 -1
- package/lib/components/VDataIterator/VDataIterator.js +2 -1
- package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
- package/lib/components/VRangeSlider/VRangeSlider.js +1 -0
- package/lib/components/VRangeSlider/VRangeSlider.js.map +1 -1
- package/lib/framework.js +1 -1
- package/package.json +2 -2
- package/src/components/VAutocomplete/VAutocomplete.ts +1 -1
- package/src/components/VAutocomplete/__tests__/VAutocomplete.spec.ts +11 -0
- package/src/components/VData/VData.ts +6 -1
- package/src/components/VDataIterator/VDataIterator.ts +1 -0
- package/src/components/VDataIterator/__tests__/VDataIterator.spec.ts +24 -0
- package/src/components/VDataTable/__tests__/VDataTable.spec.ts +59 -0
- package/src/components/VRangeSlider/VRangeSlider.ts +1 -0
- package/src/components/VRangeSlider/__tests__/VRangeSlider.spec.ts +8 -0
- package/src/components/VRangeSlider/__tests__/__snapshots__/VRangeSlider.spec.ts.snap +4 -4
package/dist/json/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "vuetify",
|
|
5
|
-
"version": "2.2.
|
|
5
|
+
"version": "2.2.15",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -3822,7 +3822,7 @@
|
|
|
3822
3822
|
},
|
|
3823
3823
|
{
|
|
3824
3824
|
"name": "start",
|
|
3825
|
-
"default": "\"'2020-02-
|
|
3825
|
+
"default": "\"'2020-02-25'\"",
|
|
3826
3826
|
"value": {
|
|
3827
3827
|
"kind": "expression",
|
|
3828
3828
|
"type": "string"
|
|
@@ -4793,7 +4793,7 @@
|
|
|
4793
4793
|
},
|
|
4794
4794
|
{
|
|
4795
4795
|
"name": "start",
|
|
4796
|
-
"default": "\"'2020-02-
|
|
4796
|
+
"default": "\"'2020-02-25'\"",
|
|
4797
4797
|
"value": {
|
|
4798
4798
|
"kind": "expression",
|
|
4799
4799
|
"type": "string"
|
|
@@ -4939,7 +4939,7 @@
|
|
|
4939
4939
|
},
|
|
4940
4940
|
{
|
|
4941
4941
|
"name": "start",
|
|
4942
|
-
"default": "\"'2020-02-
|
|
4942
|
+
"default": "\"'2020-02-25'\"",
|
|
4943
4943
|
"value": {
|
|
4944
4944
|
"kind": "expression",
|
|
4945
4945
|
"type": "string"
|
|
@@ -5085,7 +5085,7 @@
|
|
|
5085
5085
|
},
|
|
5086
5086
|
{
|
|
5087
5087
|
"name": "start",
|
|
5088
|
-
"default": "\"'2020-02-
|
|
5088
|
+
"default": "\"'2020-02-25'\"",
|
|
5089
5089
|
"value": {
|
|
5090
5090
|
"kind": "expression",
|
|
5091
5091
|
"type": "string"
|
package/dist/vuetify.js
CHANGED
|
@@ -1177,7 +1177,7 @@ var defaultMenuProps = __assign({}, _VSelect_VSelect__WEBPACK_IMPORTED_MODULE_1_
|
|
|
1177
1177
|
|
|
1178
1178
|
this.$nextTick(function () {
|
|
1179
1179
|
if (!_this.multiple || !_this.internalSearch || !_this.isMenuActive) {
|
|
1180
|
-
_this.internalSearch = !_this.selectedItems.length || _this.multiple || _this.hasSlot ? null : _this.getText(_this.selectedItem);
|
|
1180
|
+
_this.internalSearch = !_this.selectedItems.length || _this.multiple || _this.hasSlot ? _this.internalSearch || null : _this.getText(_this.selectedItem);
|
|
1181
1181
|
}
|
|
1182
1182
|
});
|
|
1183
1183
|
},
|
|
@@ -8831,7 +8831,6 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
8831
8831
|
handler: function handler(options, old) {
|
|
8832
8832
|
if (Object(_util_helpers__WEBPACK_IMPORTED_MODULE_0__["deepEqual"])(options, old)) return;
|
|
8833
8833
|
this.$emit('update:options', options);
|
|
8834
|
-
this.$emit('pagination', this.pagination);
|
|
8835
8834
|
},
|
|
8836
8835
|
deep: true,
|
|
8837
8836
|
immediate: true
|
|
@@ -8911,6 +8910,12 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
8911
8910
|
this.$emit('current-items', computedItems);
|
|
8912
8911
|
},
|
|
8913
8912
|
immediate: true
|
|
8913
|
+
},
|
|
8914
|
+
pagination: {
|
|
8915
|
+
handler: function handler() {
|
|
8916
|
+
this.$emit('pagination', this.pagination);
|
|
8917
|
+
},
|
|
8918
|
+
immediate: true
|
|
8914
8919
|
}
|
|
8915
8920
|
},
|
|
8916
8921
|
methods: {
|
|
@@ -9658,6 +9663,9 @@ var __read = undefined && undefined.__read || function (o, n) {
|
|
|
9658
9663
|
_this.internalCurrentItems = v;
|
|
9659
9664
|
|
|
9660
9665
|
_this.$emit('current-items', v);
|
|
9666
|
+
},
|
|
9667
|
+
'page-count': function pageCount(v) {
|
|
9668
|
+
return _this.$emit('page-count', v);
|
|
9661
9669
|
}
|
|
9662
9670
|
},
|
|
9663
9671
|
scopedSlots: {
|
|
@@ -20906,6 +20914,7 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
20906
20914
|
input.data = input.data || {};
|
|
20907
20915
|
input.data.attrs = input.data.attrs || {};
|
|
20908
20916
|
input.data.attrs.value = _this.internalValue[i];
|
|
20917
|
+
input.data.attrs.id = "input-" + (i ? 'max' : 'min') + "-" + _this._uid;
|
|
20909
20918
|
return input;
|
|
20910
20919
|
});
|
|
20911
20920
|
},
|
|
@@ -31877,7 +31886,7 @@ function () {
|
|
|
31877
31886
|
|
|
31878
31887
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
31879
31888
|
Vuetify.installed = false;
|
|
31880
|
-
Vuetify.version = "2.2.
|
|
31889
|
+
Vuetify.version = "2.2.15";
|
|
31881
31890
|
return Vuetify;
|
|
31882
31891
|
}();
|
|
31883
31892
|
|