vuetify 1.5.11 → 1.5.16
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/LICENSE.md +21 -0
- package/dist/vuetify.css +9 -4
- package/dist/vuetify.css.map +1 -1
- package/dist/vuetify.js +12 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VCounter/VCounter.js +1 -1
- package/es5/components/VCounter/VCounter.js.map +1 -1
- package/es5/components/VDialog/VDialog.js +2 -3
- package/es5/components/VDialog/VDialog.js.map +1 -1
- package/es5/components/VLabel/VLabel.js +1 -1
- package/es5/components/VLabel/VLabel.js.map +1 -1
- package/es5/components/VList/VListTile.js +1 -1
- package/es5/components/VList/VListTile.js.map +1 -1
- package/es5/components/VRadioGroup/VRadio.js +1 -1
- package/es5/components/VRadioGroup/VRadio.js.map +1 -1
- package/es5/components/VSelect/VSelectList.js +2 -1
- package/es5/components/VSelect/VSelectList.js.map +1 -1
- package/es5/components/VSpeedDial/VSpeedDial.js +1 -1
- package/es5/components/VSpeedDial/VSpeedDial.js.map +1 -1
- package/es5/components/Vuetify/index.js +1 -1
- package/es5/index.js +1 -1
- package/es5/locale/sl.js +2 -2
- package/es5/locale/sl.js.map +1 -1
- package/es5/util/helpers.js +1 -1
- package/es5/util/helpers.js.map +1 -1
- package/lib/components/VCounter/VCounter.js +1 -1
- package/lib/components/VCounter/VCounter.js.map +1 -1
- package/lib/components/VDialog/VDialog.js +2 -3
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VLabel/VLabel.js +1 -1
- package/lib/components/VLabel/VLabel.js.map +1 -1
- package/lib/components/VList/VListTile.js +1 -1
- package/lib/components/VList/VListTile.js.map +1 -1
- package/lib/components/VRadioGroup/VRadio.js +1 -1
- package/lib/components/VRadioGroup/VRadio.js.map +1 -1
- package/lib/components/VSelect/VSelectList.js +2 -1
- package/lib/components/VSelect/VSelectList.js.map +1 -1
- package/lib/components/VSpeedDial/VSpeedDial.js +1 -1
- package/lib/components/VSpeedDial/VSpeedDial.js.map +1 -1
- package/lib/components/Vuetify/index.js +1 -1
- package/lib/locale/sl.js +2 -2
- package/lib/locale/sl.js.map +1 -1
- package/lib/util/helpers.js +1 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +16 -5
- package/src/components/VCounter/VCounter.ts +3 -3
- package/src/components/VDialog/VDialog.js +2 -2
- package/src/components/VLabel/VLabel.ts +3 -3
- package/src/components/VList/VListTile.ts +1 -2
- package/src/components/VRadioGroup/VRadio.js +1 -1
- package/src/components/VSelect/VSelectList.js +2 -1
- package/src/components/VSpeedDial/VSpeedDial.js +1 -1
- package/src/locale/sl.ts +2 -2
- package/src/stylus/components/_overflow-buttons.styl +7 -1
- package/src/stylus/components/_text-fields.styl +1 -0
- package/src/stylus/elements/_typography.styl +0 -4
- package/src/stylus/settings/_variables.styl +0 -1
- package/src/util/helpers.ts +1 -1
package/dist/vuetify.js
CHANGED
|
@@ -4055,7 +4055,7 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
4055
4055
|
var props = ctx.props;
|
|
4056
4056
|
var max = parseInt(props.max, 10);
|
|
4057
4057
|
var value = parseInt(props.value, 10);
|
|
4058
|
-
var content = max ? value + " / " + max : props.value;
|
|
4058
|
+
var content = max ? value + " / " + max : String(props.value);
|
|
4059
4059
|
var isGreater = max && value > max;
|
|
4060
4060
|
return h('div', {
|
|
4061
4061
|
staticClass: 'v-counter',
|
|
@@ -6489,7 +6489,7 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
6489
6489
|
this.$emit('keydown', e);
|
|
6490
6490
|
},
|
|
6491
6491
|
onFocusin: function onFocusin(e) {
|
|
6492
|
-
var target =
|
|
6492
|
+
var target = e.target;
|
|
6493
6493
|
if (
|
|
6494
6494
|
// It isn't the document or the dialog body
|
|
6495
6495
|
![document, this.$refs.content].includes(target) &&
|
|
@@ -6521,7 +6521,7 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
6521
6521
|
var el = activator && activator.elm;
|
|
6522
6522
|
if (el) return el;
|
|
6523
6523
|
}
|
|
6524
|
-
|
|
6524
|
+
return null;
|
|
6525
6525
|
},
|
|
6526
6526
|
genActivator: function genActivator() {
|
|
6527
6527
|
var _this = this;
|
|
@@ -8728,7 +8728,7 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
8728
8728
|
props: {
|
|
8729
8729
|
absolute: Boolean,
|
|
8730
8730
|
color: {
|
|
8731
|
-
type:
|
|
8731
|
+
type: String,
|
|
8732
8732
|
default: 'primary'
|
|
8733
8733
|
},
|
|
8734
8734
|
disabled: Boolean,
|
|
@@ -9148,7 +9148,7 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
9148
9148
|
tag = _a.tag,
|
|
9149
9149
|
data = _a.data;
|
|
9150
9150
|
data.attrs = Object.assign({}, data.attrs, this.$attrs);
|
|
9151
|
-
return h('div', this.setTextColor(!this.disabled && this.color, {
|
|
9151
|
+
return h('div', this.setTextColor(!this.disabled && this.isActive && this.color, {
|
|
9152
9152
|
class: this.listClasses,
|
|
9153
9153
|
attrs: {
|
|
9154
9154
|
disabled: this.disabled,
|
|
@@ -11349,7 +11349,7 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
11349
11349
|
for: this.id
|
|
11350
11350
|
},
|
|
11351
11351
|
props: {
|
|
11352
|
-
color: this.radio.validationState ||
|
|
11352
|
+
color: this.radio.validationState || '',
|
|
11353
11353
|
dark: this.dark,
|
|
11354
11354
|
focused: this.hasState,
|
|
11355
11355
|
light: this.light
|
|
@@ -12907,7 +12907,8 @@ var __values = undefined && undefined.__values || function (o) {
|
|
|
12907
12907
|
avatar: avatar,
|
|
12908
12908
|
disabled: disabled,
|
|
12909
12909
|
ripple: true,
|
|
12910
|
-
value: value
|
|
12910
|
+
value: value,
|
|
12911
|
+
color: this.color
|
|
12911
12912
|
}
|
|
12912
12913
|
};
|
|
12913
12914
|
if (!this.$scopedSlots.item) {
|
|
@@ -14351,7 +14352,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14351
14352
|
if (this.isActive) {
|
|
14352
14353
|
var btnCount_1 = 0;
|
|
14353
14354
|
children = (this.$slots.default || []).map(function (b, i) {
|
|
14354
|
-
if (b.tag && b.componentOptions.Ctor.options.name === 'v-btn') {
|
|
14355
|
+
if (b.tag && typeof b.componentOptions !== 'undefined' && b.componentOptions.Ctor.options.name === 'v-btn') {
|
|
14355
14356
|
btnCount_1++;
|
|
14356
14357
|
return h('div', {
|
|
14357
14358
|
style: {
|
|
@@ -19251,7 +19252,7 @@ var Vuetify = {
|
|
|
19251
19252
|
return false;
|
|
19252
19253
|
})(opts.components);
|
|
19253
19254
|
},
|
|
19254
|
-
version: '1.5.
|
|
19255
|
+
version: '1.5.15'
|
|
19255
19256
|
};
|
|
19256
19257
|
function checkVueVersion(Vue, requiredVue) {
|
|
19257
19258
|
var vueDep = requiredVue || '^2.5.18';
|
|
@@ -20937,7 +20938,7 @@ var Vuetify = {
|
|
|
20937
20938
|
Vue.use(_components_Vuetify__WEBPACK_IMPORTED_MODULE_1__["default"], __assign({ components: _components__WEBPACK_IMPORTED_MODULE_2__,
|
|
20938
20939
|
directives: _directives__WEBPACK_IMPORTED_MODULE_3__["default"] }, args));
|
|
20939
20940
|
},
|
|
20940
|
-
version: '1.5.
|
|
20941
|
+
version: '1.5.15'
|
|
20941
20942
|
};
|
|
20942
20943
|
if (typeof window !== 'undefined' && window.Vue) {
|
|
20943
20944
|
window.Vue.use(Vuetify);
|
|
@@ -25533,7 +25534,7 @@ function createRange(length) {
|
|
|
25533
25534
|
function getZIndex(el) {
|
|
25534
25535
|
if (!el || el.nodeType !== Node.ELEMENT_NODE) return 0;
|
|
25535
25536
|
var index = +window.getComputedStyle(el).getPropertyValue('z-index');
|
|
25536
|
-
if (
|
|
25537
|
+
if (!index) return getZIndex(el.parentNode);
|
|
25537
25538
|
return index;
|
|
25538
25539
|
}
|
|
25539
25540
|
var tagsToReplace = {
|