vuetify 1.5.23 → 1.5.24
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/vuetify.js +6 -2
- 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 +4 -0
- package/es5/components/VSelect/VSelect.js.map +1 -1
- package/es5/components/Vuetify/index.js +1 -1
- package/es5/index.js +1 -1
- package/lib/components/VSelect/VSelect.js +4 -0
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/Vuetify/index.js +1 -1
- package/package.json +2 -2
- package/src/components/VSelect/VSelect.js +4 -0
package/dist/vuetify.js
CHANGED
|
@@ -12300,6 +12300,7 @@ var defaultMenuProps = {
|
|
|
12300
12300
|
blur: function blur(e) {
|
|
12301
12301
|
_VTextField_VTextField__WEBPACK_IMPORTED_MODULE_5__["default"].options.methods.blur.call(this, e);
|
|
12302
12302
|
this.isMenuActive = false;
|
|
12303
|
+
this.isFocused = false;
|
|
12303
12304
|
this.selectedIndex = -1;
|
|
12304
12305
|
},
|
|
12305
12306
|
/** @public */
|
|
@@ -12536,6 +12537,9 @@ var defaultMenuProps = {
|
|
|
12536
12537
|
getValue: function getValue(item) {
|
|
12537
12538
|
return Object(_util_helpers__WEBPACK_IMPORTED_MODULE_9__["getPropertyFromItem"])(item, this.itemValue, this.getText(item));
|
|
12538
12539
|
},
|
|
12540
|
+
onBlur: function onBlur(e) {
|
|
12541
|
+
e && this.$emit('blur', e);
|
|
12542
|
+
},
|
|
12539
12543
|
onChipInput: function onChipInput(item) {
|
|
12540
12544
|
if (this.multiple) this.selectItem(item);else this.setValue(null);
|
|
12541
12545
|
// If all items have been deleted,
|
|
@@ -19241,7 +19245,7 @@ var Vuetify = {
|
|
|
19241
19245
|
return false;
|
|
19242
19246
|
})(opts.components);
|
|
19243
19247
|
},
|
|
19244
|
-
version: '1.5.
|
|
19248
|
+
version: '1.5.24'
|
|
19245
19249
|
};
|
|
19246
19250
|
function checkVueVersion(Vue, requiredVue) {
|
|
19247
19251
|
var vueDep = requiredVue || '^2.5.18';
|
|
@@ -20927,7 +20931,7 @@ var Vuetify = {
|
|
|
20927
20931
|
Vue.use(_components_Vuetify__WEBPACK_IMPORTED_MODULE_1__["default"], __assign({ components: _components__WEBPACK_IMPORTED_MODULE_2__,
|
|
20928
20932
|
directives: _directives__WEBPACK_IMPORTED_MODULE_3__["default"] }, args));
|
|
20929
20933
|
},
|
|
20930
|
-
version: '1.5.
|
|
20934
|
+
version: '1.5.24'
|
|
20931
20935
|
};
|
|
20932
20936
|
if (typeof window !== 'undefined' && window.Vue) {
|
|
20933
20937
|
window.Vue.use(Vuetify);
|