@zeedhi/vuetify 1.45.1 → 1.46.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/zd-vuetify.umd.js
CHANGED
@@ -330,9 +330,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
330
330
|
}
|
331
331
|
|
332
332
|
register(uid, location, size) {
|
333
|
-
this.application[location] =
|
334
|
-
[uid]: size
|
335
|
-
};
|
333
|
+
this.application[location][uid] = size;
|
336
334
|
this.update(location);
|
337
335
|
}
|
338
336
|
|
@@ -657,13 +655,20 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
657
655
|
return Vue__default["default"].extend({
|
658
656
|
name: name || c.replace(/__/g, '-'),
|
659
657
|
functional: true,
|
658
|
+
props: {
|
659
|
+
tag: {
|
660
|
+
type: String,
|
661
|
+
default: el
|
662
|
+
}
|
663
|
+
},
|
660
664
|
|
661
665
|
render(h, {
|
662
666
|
data,
|
667
|
+
props,
|
663
668
|
children
|
664
669
|
}) {
|
665
670
|
data.staticClass = `${c} ${data.staticClass || ''}`.trim();
|
666
|
-
return h(
|
671
|
+
return h(props.tag, data, children);
|
667
672
|
}
|
668
673
|
|
669
674
|
});
|
@@ -962,12 +967,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
962
967
|
*/
|
963
968
|
|
964
969
|
function getSlotType(vm, name, split) {
|
965
|
-
if (vm.$slots
|
970
|
+
if (vm.$slots.hasOwnProperty(name) && vm.$scopedSlots.hasOwnProperty(name) && vm.$scopedSlots[name].name) {
|
966
971
|
return split ? 'v-slot' : 'scoped';
|
967
972
|
}
|
968
973
|
|
969
|
-
if (vm.$slots
|
970
|
-
if (vm.$scopedSlots
|
974
|
+
if (vm.$slots.hasOwnProperty(name)) return 'normal';
|
975
|
+
if (vm.$scopedSlots.hasOwnProperty(name)) return 'scoped';
|
971
976
|
}
|
972
977
|
function debounce(fn, delay) {
|
973
978
|
let timeoutId = 0;
|
@@ -993,9 +998,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
993
998
|
}, {});
|
994
999
|
}
|
995
1000
|
function getSlot(vm, name = 'default', data, optional = false) {
|
996
|
-
if (vm.$scopedSlots
|
1001
|
+
if (vm.$scopedSlots.hasOwnProperty(name)) {
|
997
1002
|
return vm.$scopedSlots[name](data instanceof Function ? data() : data);
|
998
|
-
} else if (vm.$slots
|
1003
|
+
} else if (vm.$slots.hasOwnProperty(name) && (!data || optional)) {
|
999
1004
|
return vm.$slots[name];
|
1000
1005
|
}
|
1001
1006
|
|
@@ -2215,7 +2220,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
2215
2220
|
}
|
2216
2221
|
Vuetify.install = install;
|
2217
2222
|
Vuetify.installed = false;
|
2218
|
-
Vuetify.version = "2.
|
2223
|
+
Vuetify.version = "2.6.4";
|
2219
2224
|
Vuetify.config = {
|
2220
2225
|
silent: false
|
2221
2226
|
};
|
@@ -3477,10 +3482,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3477
3482
|
el.style.webkitTransform = value;
|
3478
3483
|
}
|
3479
3484
|
|
3480
|
-
function opacity(el, value) {
|
3481
|
-
el.style.opacity = value.toString();
|
3482
|
-
}
|
3483
|
-
|
3484
3485
|
function isTouchEvent(e) {
|
3485
3486
|
return e.constructor.name === 'TouchEvent';
|
3486
3487
|
}
|
@@ -3564,13 +3565,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3564
3565
|
animation.classList.add('v-ripple__animation--enter');
|
3565
3566
|
animation.classList.add('v-ripple__animation--visible');
|
3566
3567
|
transform(animation, `translate(${x}, ${y}) scale3d(${scale},${scale},${scale})`);
|
3567
|
-
opacity(animation, 0);
|
3568
3568
|
animation.dataset.activated = String(performance.now());
|
3569
3569
|
setTimeout(() => {
|
3570
3570
|
animation.classList.remove('v-ripple__animation--enter');
|
3571
3571
|
animation.classList.add('v-ripple__animation--in');
|
3572
3572
|
transform(animation, `translate(${centerX}, ${centerY}) scale3d(1,1,1)`);
|
3573
|
-
opacity(animation, 0.25);
|
3574
3573
|
}, 0);
|
3575
3574
|
},
|
3576
3575
|
|
@@ -3585,7 +3584,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3585
3584
|
setTimeout(() => {
|
3586
3585
|
animation.classList.remove('v-ripple__animation--in');
|
3587
3586
|
animation.classList.add('v-ripple__animation--out');
|
3588
|
-
opacity(animation, 0);
|
3589
3587
|
setTimeout(() => {
|
3590
3588
|
const ripples = el.getElementsByClassName('v-ripple__animation');
|
3591
3589
|
|
@@ -4061,10 +4059,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
4061
4059
|
const Toggleable = factory$2();
|
4062
4060
|
|
4063
4061
|
// Styles
|
4064
|
-
const baseMixins$
|
4062
|
+
const baseMixins$u = mixins(VToolbar, Scrollable, SSRBootable, Toggleable, applicationable('top', ['clippedLeft', 'clippedRight', 'computedHeight', 'invertedScroll', 'isExtended', 'isProminent', 'value']));
|
4065
4063
|
/* @vue/component */
|
4066
4064
|
|
4067
|
-
var VAppBar = baseMixins$
|
4065
|
+
var VAppBar = baseMixins$u.extend({
|
4068
4066
|
name: 'v-app-bar',
|
4069
4067
|
directives: {
|
4070
4068
|
Scroll
|
@@ -4846,10 +4844,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
4846
4844
|
},
|
4847
4845
|
|
4848
4846
|
methods: {
|
4849
|
-
click(e) {
|
4850
|
-
this.$emit('click', e);
|
4851
|
-
},
|
4852
|
-
|
4853
4847
|
generateRouteLink() {
|
4854
4848
|
let exact = this.exact;
|
4855
4849
|
let tag;
|
@@ -4865,7 +4859,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
4865
4859
|
value: this.computedRipple
|
4866
4860
|
}],
|
4867
4861
|
[this.to ? 'nativeOn' : 'on']: { ...this.$listeners,
|
4868
|
-
click
|
4862
|
+
...('click' in this ? {
|
4863
|
+
click: this.click
|
4864
|
+
} : undefined)
|
4869
4865
|
},
|
4870
4866
|
ref: 'link'
|
4871
4867
|
};
|
@@ -4909,8 +4905,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
4909
4905
|
|
4910
4906
|
onRouteChange() {
|
4911
4907
|
if (!this.to || !this.$refs.link || !this.$route) return;
|
4912
|
-
const activeClass = `${this.activeClass} ${this.proxyClass || ''}`.trim();
|
4913
|
-
const exactActiveClass = `${this.exactActiveClass} ${this.proxyClass || ''}`.trim() || activeClass;
|
4908
|
+
const activeClass = `${this.activeClass || ''} ${this.proxyClass || ''}`.trim();
|
4909
|
+
const exactActiveClass = `${this.exactActiveClass || ''} ${this.proxyClass || ''}`.trim() || activeClass;
|
4914
4910
|
const path = '_vnode.data.class.' + (this.exact ? exactActiveClass : activeClass);
|
4915
4911
|
this.$nextTick(() => {
|
4916
4912
|
/* istanbul ignore else */
|
@@ -4928,10 +4924,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
4928
4924
|
});
|
4929
4925
|
|
4930
4926
|
// Styles
|
4931
|
-
const baseMixins$
|
4927
|
+
const baseMixins$t = mixins(VSheet, Routable, Positionable, Sizeable, factory$1('btnToggle'), factory$2('inputValue')
|
4932
4928
|
/* @vue/component */
|
4933
4929
|
);
|
4934
|
-
var VBtn = baseMixins$
|
4930
|
+
var VBtn = baseMixins$t.extend().extend({
|
4935
4931
|
name: 'v-btn',
|
4936
4932
|
props: {
|
4937
4933
|
activeClass: {
|
@@ -5830,10 +5826,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
5830
5826
|
});
|
5831
5827
|
|
5832
5828
|
// Mixins
|
5833
|
-
const baseMixins$
|
5829
|
+
const baseMixins$s = mixins(Delayable, Toggleable);
|
5834
5830
|
/* @vue/component */
|
5835
5831
|
|
5836
|
-
var Activatable = baseMixins$
|
5832
|
+
var Activatable = baseMixins$s.extend({
|
5837
5833
|
name: 'activatable',
|
5838
5834
|
props: {
|
5839
5835
|
activator: {
|
@@ -5844,6 +5840,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
5844
5840
|
},
|
5845
5841
|
disabled: Boolean,
|
5846
5842
|
internalActivator: Boolean,
|
5843
|
+
openOnClick: {
|
5844
|
+
type: Boolean,
|
5845
|
+
default: true
|
5846
|
+
},
|
5847
5847
|
openOnHover: Boolean,
|
5848
5848
|
openOnFocus: Boolean
|
5849
5849
|
},
|
@@ -5896,7 +5896,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
5896
5896
|
|
5897
5897
|
genActivatorAttributes() {
|
5898
5898
|
return {
|
5899
|
-
role: 'button',
|
5899
|
+
role: this.openOnClick && !this.openOnHover ? 'button' : undefined,
|
5900
5900
|
'aria-haspopup': true,
|
5901
5901
|
'aria-expanded': String(this.isActive)
|
5902
5902
|
};
|
@@ -5916,7 +5916,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
5916
5916
|
this.getActivator(e);
|
5917
5917
|
this.runDelay('close');
|
5918
5918
|
};
|
5919
|
-
} else {
|
5919
|
+
} else if (this.openOnClick) {
|
5920
5920
|
listeners.click = e => {
|
5921
5921
|
const activator = this.getActivator(e);
|
5922
5922
|
if (activator) activator.focus();
|
@@ -6320,10 +6320,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
6320
6320
|
});
|
6321
6321
|
|
6322
6322
|
// Mixins
|
6323
|
-
const baseMixins$
|
6323
|
+
const baseMixins$r = mixins(Stackable, factory$3(['top', 'right', 'bottom', 'left', 'absolute']), Activatable, Detachable);
|
6324
6324
|
/* @vue/component */
|
6325
6325
|
|
6326
|
-
var Menuable = baseMixins$
|
6326
|
+
var Menuable = baseMixins$r.extend().extend({
|
6327
6327
|
name: 'menuable',
|
6328
6328
|
props: {
|
6329
6329
|
allowOverflow: Boolean,
|
@@ -6355,7 +6355,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
6355
6355
|
default: 0
|
6356
6356
|
},
|
6357
6357
|
offsetOverflow: Boolean,
|
6358
|
-
openOnClick: Boolean,
|
6359
6358
|
positionX: {
|
6360
6359
|
type: Number,
|
6361
6360
|
default: null
|
@@ -6415,7 +6414,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
6415
6414
|
const activatorLeft = (this.attach !== false ? a.offsetLeft : a.left) || 0;
|
6416
6415
|
const minWidth = Math.max(a.width, c.width);
|
6417
6416
|
let left = 0;
|
6418
|
-
left +=
|
6417
|
+
left += activatorLeft;
|
6418
|
+
if (this.left || this.$vuetify.rtl && !this.right) left -= minWidth - a.width;
|
6419
6419
|
|
6420
6420
|
if (this.offsetX) {
|
6421
6421
|
const maxWidth = isNaN(Number(this.maxWidth)) ? a.width : Math.min(a.width, Number(this.maxWidth));
|
@@ -6573,14 +6573,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
6573
6573
|
const listeners = Activatable.options.methods.genActivatorListeners.call(this);
|
6574
6574
|
const onClick = listeners.click;
|
6575
6575
|
|
6576
|
-
|
6577
|
-
|
6578
|
-
|
6579
|
-
|
6576
|
+
if (onClick) {
|
6577
|
+
listeners.click = e => {
|
6578
|
+
if (this.openOnClick) {
|
6579
|
+
onClick && onClick(e);
|
6580
|
+
}
|
6580
6581
|
|
6581
|
-
|
6582
|
-
|
6583
|
-
|
6582
|
+
this.absoluteX = e.clientX;
|
6583
|
+
this.absoluteY = e.clientY;
|
6584
|
+
};
|
6585
|
+
}
|
6584
6586
|
|
6585
6587
|
return listeners;
|
6586
6588
|
},
|
@@ -6729,10 +6731,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
6729
6731
|
});
|
6730
6732
|
|
6731
6733
|
// Styles
|
6732
|
-
const baseMixins$
|
6734
|
+
const baseMixins$q = mixins(Dependent, Delayable, Returnable, Roundable, Themeable, Menuable);
|
6733
6735
|
/* @vue/component */
|
6734
6736
|
|
6735
|
-
var VMenu = baseMixins$
|
6737
|
+
var VMenu = baseMixins$q.extend({
|
6736
6738
|
name: 'v-menu',
|
6737
6739
|
directives: {
|
6738
6740
|
ClickOutside,
|
@@ -6765,10 +6767,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
6765
6767
|
},
|
6766
6768
|
offsetX: Boolean,
|
6767
6769
|
offsetY: Boolean,
|
6768
|
-
openOnClick: {
|
6769
|
-
type: Boolean,
|
6770
|
-
default: true
|
6771
|
-
},
|
6772
6770
|
openOnHover: Boolean,
|
6773
6771
|
origin: {
|
6774
6772
|
type: String,
|
@@ -7082,7 +7080,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7082
7080
|
mouseLeaveHandler(e) {
|
7083
7081
|
// Prevent accidental re-activation
|
7084
7082
|
this.runDelay('close', () => {
|
7085
|
-
|
7083
|
+
var _this$$refs$content;
|
7084
|
+
|
7085
|
+
if ((_this$$refs$content = this.$refs.content) != null && _this$$refs$content.contains(e.relatedTarget)) return;
|
7086
7086
|
requestAnimationFrame(() => {
|
7087
7087
|
this.isActive = false;
|
7088
7088
|
this.callDeactivate();
|
@@ -7411,10 +7411,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7411
7411
|
});
|
7412
7412
|
|
7413
7413
|
// Styles
|
7414
|
-
const baseMixins$
|
7414
|
+
const baseMixins$p = mixins(Colorable, Routable, Themeable, factory$1('listItemGroup'), factory$2('inputValue'));
|
7415
7415
|
/* @vue/component */
|
7416
7416
|
|
7417
|
-
var VListItem = baseMixins$
|
7417
|
+
var VListItem = baseMixins$p.extend().extend({
|
7418
7418
|
name: 'v-list-item',
|
7419
7419
|
directives: {
|
7420
7420
|
Ripple
|
@@ -7575,8 +7575,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7575
7575
|
});
|
7576
7576
|
|
7577
7577
|
// Styles
|
7578
|
-
const baseMixins$
|
7579
|
-
var VListGroup = baseMixins$
|
7578
|
+
const baseMixins$o = mixins(BindsAttrs, Bootable, Colorable, inject('list'), Toggleable);
|
7579
|
+
var VListGroup = baseMixins$o.extend().extend({
|
7580
7580
|
name: 'v-list-group',
|
7581
7581
|
directives: {
|
7582
7582
|
ripple: Ripple
|
@@ -7733,6 +7733,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7733
7733
|
|
7734
7734
|
});
|
7735
7735
|
|
7736
|
+
var Comparable = Vue__default["default"].extend({
|
7737
|
+
name: 'comparable',
|
7738
|
+
props: {
|
7739
|
+
valueComparator: {
|
7740
|
+
type: Function,
|
7741
|
+
default: deepEqual
|
7742
|
+
}
|
7743
|
+
}
|
7744
|
+
});
|
7745
|
+
|
7736
7746
|
function factory(prop = 'value', event = 'change') {
|
7737
7747
|
return Vue__default["default"].extend({
|
7738
7748
|
name: 'proxyable',
|
@@ -7779,7 +7789,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7779
7789
|
const Proxyable = factory();
|
7780
7790
|
|
7781
7791
|
// Styles
|
7782
|
-
const BaseItemGroup = mixins(Proxyable, Themeable).extend({
|
7792
|
+
const BaseItemGroup = mixins(Comparable, Proxyable, Themeable).extend({
|
7783
7793
|
name: 'base-item-group',
|
7784
7794
|
props: {
|
7785
7795
|
activeClass: {
|
@@ -7838,13 +7848,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7838
7848
|
|
7839
7849
|
toggleMethod() {
|
7840
7850
|
if (!this.multiple) {
|
7841
|
-
return v => this.internalValue
|
7851
|
+
return v => this.valueComparator(this.internalValue, v);
|
7842
7852
|
}
|
7843
7853
|
|
7844
7854
|
const internalValue = this.internalValue;
|
7845
7855
|
|
7846
7856
|
if (Array.isArray(internalValue)) {
|
7847
|
-
return v => internalValue.
|
7857
|
+
return v => internalValue.some(intern => this.valueComparator(intern, v));
|
7848
7858
|
}
|
7849
7859
|
|
7850
7860
|
return () => false;
|
@@ -7870,7 +7880,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7870
7880
|
},
|
7871
7881
|
|
7872
7882
|
getValue(item, i) {
|
7873
|
-
return item.value
|
7883
|
+
return item.value === undefined ? i : item.value;
|
7874
7884
|
},
|
7875
7885
|
|
7876
7886
|
onClick(item) {
|
@@ -8457,10 +8467,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
8457
8467
|
});
|
8458
8468
|
|
8459
8469
|
// Mixins
|
8460
|
-
const baseMixins$
|
8470
|
+
const baseMixins$n = mixins(Colorable, inject('form'), Themeable);
|
8461
8471
|
/* @vue/component */
|
8462
8472
|
|
8463
|
-
var Validatable = baseMixins$
|
8473
|
+
var Validatable = baseMixins$n.extend({
|
8464
8474
|
name: 'validatable',
|
8465
8475
|
props: {
|
8466
8476
|
disabled: Boolean,
|
@@ -8709,10 +8719,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
8709
8719
|
});
|
8710
8720
|
|
8711
8721
|
// Styles
|
8712
|
-
const baseMixins$
|
8722
|
+
const baseMixins$m = mixins(BindsAttrs, Validatable);
|
8713
8723
|
/* @vue/component */
|
8714
8724
|
|
8715
|
-
var VInput = baseMixins$
|
8725
|
+
var VInput = baseMixins$m.extend().extend({
|
8716
8726
|
name: 'v-input',
|
8717
8727
|
inheritAttrs: false,
|
8718
8728
|
props: {
|
@@ -8724,6 +8734,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
8724
8734
|
dense: Boolean,
|
8725
8735
|
height: [Number, String],
|
8726
8736
|
hideDetails: [Boolean, String],
|
8737
|
+
hideSpinButtons: Boolean,
|
8727
8738
|
hint: String,
|
8728
8739
|
id: String,
|
8729
8740
|
label: String,
|
@@ -8753,6 +8764,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
8753
8764
|
'v-input--is-loading': this.loading !== false && this.loading != null,
|
8754
8765
|
'v-input--is-readonly': this.isReadonly,
|
8755
8766
|
'v-input--dense': this.dense,
|
8767
|
+
'v-input--hide-spin-buttons': this.hideSpinButtons,
|
8756
8768
|
...this.themeClasses
|
8757
8769
|
};
|
8758
8770
|
},
|
@@ -9060,10 +9072,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
9060
9072
|
});
|
9061
9073
|
}
|
9062
9074
|
|
9063
|
-
const baseMixins$
|
9075
|
+
const baseMixins$l = mixins(Colorable, factory$3(['absolute', 'fixed', 'top', 'bottom']), Proxyable, Themeable);
|
9064
9076
|
/* @vue/component */
|
9065
9077
|
|
9066
|
-
var VProgressLinear = baseMixins$
|
9078
|
+
var VProgressLinear = baseMixins$l.extend({
|
9067
9079
|
name: 'v-progress-linear',
|
9068
9080
|
directives: {
|
9069
9081
|
intersect: Intersect
|
@@ -9338,13 +9350,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
9338
9350
|
});
|
9339
9351
|
|
9340
9352
|
// Styles
|
9341
|
-
const baseMixins$
|
9353
|
+
const baseMixins$k = mixins(VInput, intersectable({
|
9342
9354
|
onVisible: ['onResize', 'tryAutofocus']
|
9343
9355
|
}), Loadable);
|
9344
9356
|
const dirtyTypes = ['color', 'file', 'time', 'date', 'datetime-local', 'week', 'month'];
|
9345
9357
|
/* @vue/component */
|
9346
9358
|
|
9347
|
-
var VTextField = baseMixins$
|
9359
|
+
var VTextField = baseMixins$k.extend().extend({
|
9348
9360
|
name: 'v-text-field',
|
9349
9361
|
directives: {
|
9350
9362
|
resize: Resize,
|
@@ -9849,16 +9861,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
9849
9861
|
}
|
9850
9862
|
});
|
9851
9863
|
|
9852
|
-
var Comparable = Vue__default["default"].extend({
|
9853
|
-
name: 'comparable',
|
9854
|
-
props: {
|
9855
|
-
valueComparator: {
|
9856
|
-
type: Function,
|
9857
|
-
default: deepEqual
|
9858
|
-
}
|
9859
|
-
}
|
9860
|
-
});
|
9861
|
-
|
9862
9864
|
/* @vue/component */
|
9863
9865
|
|
9864
9866
|
var Filterable = Vue__default["default"].extend({
|
@@ -9880,10 +9882,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
9880
9882
|
maxHeight: 304
|
9881
9883
|
}; // Types
|
9882
9884
|
|
9883
|
-
const baseMixins$
|
9885
|
+
const baseMixins$j = mixins(VTextField, Comparable, Dependent, Filterable);
|
9884
9886
|
/* @vue/component */
|
9885
9887
|
|
9886
|
-
var VSelect = baseMixins$
|
9888
|
+
var VSelect = baseMixins$j.extend().extend({
|
9887
9889
|
name: 'v-select',
|
9888
9890
|
directives: {
|
9889
9891
|
ClickOutside
|
@@ -10080,6 +10082,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
10080
10082
|
internalValue(val) {
|
10081
10083
|
this.initialValue = val;
|
10082
10084
|
this.setSelectedItems();
|
10085
|
+
|
10086
|
+
if (this.multiple) {
|
10087
|
+
this.$nextTick(() => {
|
10088
|
+
var _this$$refs$menu;
|
10089
|
+
|
10090
|
+
(_this$$refs$menu = this.$refs.menu) == null ? void 0 : _this$$refs$menu.updateDimensions();
|
10091
|
+
});
|
10092
|
+
}
|
10083
10093
|
},
|
10084
10094
|
|
10085
10095
|
isMenuActive(val) {
|
@@ -10139,7 +10149,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
10139
10149
|
const uniqueValues = new Map();
|
10140
10150
|
|
10141
10151
|
for (let index = 0; index < arr.length; ++index) {
|
10142
|
-
const item = arr[index]; // Do not
|
10152
|
+
const item = arr[index]; // Do not return null values if existant (#14421)
|
10153
|
+
|
10154
|
+
if (item == null) {
|
10155
|
+
continue;
|
10156
|
+
} // Do not deduplicate headers or dividers (#12517)
|
10157
|
+
|
10143
10158
|
|
10144
10159
|
if (item.header || item.divider) {
|
10145
10160
|
uniqueValues.set(item, item);
|
@@ -10599,13 +10614,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
10599
10614
|
i !== -1 ? internalValue.splice(i, 1) : internalValue.push(item);
|
10600
10615
|
this.setValue(internalValue.map(i => {
|
10601
10616
|
return this.returnObject ? i : this.getValue(i);
|
10602
|
-
})); //
|
10603
|
-
// adjust menu after each
|
10604
|
-
// selection
|
10605
|
-
|
10606
|
-
this.$nextTick(() => {
|
10607
|
-
this.$refs.menu && this.$refs.menu.updateDimensions();
|
10608
|
-
}); // There is no item to re-highlight
|
10617
|
+
})); // There is no item to re-highlight
|
10609
10618
|
// when selections are hidden
|
10610
10619
|
|
10611
10620
|
if (this.hideSelected) {
|
@@ -10968,6 +10977,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
10968
10977
|
const value = target.value; // If typing and menu is not currently active
|
10969
10978
|
|
10970
10979
|
if (target.value) this.activateMenu();
|
10980
|
+
if (!this.multiple && value === '') this.deleteCurrentItem();
|
10971
10981
|
this.internalSearch = value;
|
10972
10982
|
this.badInput = target.validity && target.validity.badInput;
|
10973
10983
|
},
|
@@ -11387,7 +11397,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11387
11397
|
},
|
11388
11398
|
|
11389
11399
|
render(h) {
|
11390
|
-
|
11400
|
+
const data = {
|
11391
11401
|
staticClass: 'v-banner',
|
11392
11402
|
attrs: this.attrs$,
|
11393
11403
|
class: this.classes,
|
@@ -11396,7 +11406,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11396
11406
|
name: 'show',
|
11397
11407
|
value: this.isActive
|
11398
11408
|
}]
|
11399
|
-
}
|
11409
|
+
};
|
11410
|
+
return h(VExpandTransition, [h('div', this.outlined ? data : this.setBackgroundColor(this.color, data), [this.genWrapper()])]);
|
11400
11411
|
}
|
11401
11412
|
|
11402
11413
|
});
|
@@ -11483,6 +11494,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11483
11494
|
}
|
11484
11495
|
|
11485
11496
|
},
|
11497
|
+
watch: {
|
11498
|
+
canScroll: 'onScroll'
|
11499
|
+
},
|
11486
11500
|
|
11487
11501
|
created() {
|
11488
11502
|
/* istanbul ignore next */
|
@@ -11493,8 +11507,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11493
11507
|
|
11494
11508
|
methods: {
|
11495
11509
|
thresholdMet() {
|
11496
|
-
this.
|
11497
|
-
|
11510
|
+
if (this.hideOnScroll) {
|
11511
|
+
this.isActive = !this.isScrollingUp || this.currentScroll > this.computedScrollThreshold;
|
11512
|
+
this.$emit('update:input-value', this.isActive);
|
11513
|
+
}
|
11514
|
+
|
11515
|
+
if (this.currentThreshold < this.computedScrollThreshold) return;
|
11516
|
+
this.savedScroll = this.currentScroll;
|
11498
11517
|
},
|
11499
11518
|
|
11500
11519
|
updateApplication() {
|
@@ -11808,10 +11827,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11808
11827
|
});
|
11809
11828
|
|
11810
11829
|
// Styles
|
11811
|
-
const baseMixins$
|
11830
|
+
const baseMixins$i = mixins(Dependent, Detachable, Overlayable, Returnable, Stackable, Activatable);
|
11812
11831
|
/* @vue/component */
|
11813
11832
|
|
11814
|
-
var VDialog = baseMixins$
|
11833
|
+
var VDialog = baseMixins$i.extend({
|
11815
11834
|
name: 'v-dialog',
|
11816
11835
|
directives: {
|
11817
11836
|
ClickOutside
|
@@ -11821,10 +11840,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11821
11840
|
disabled: Boolean,
|
11822
11841
|
fullscreen: Boolean,
|
11823
11842
|
light: Boolean,
|
11824
|
-
maxWidth:
|
11825
|
-
type: [String, Number],
|
11826
|
-
default: 'none'
|
11827
|
-
},
|
11843
|
+
maxWidth: [String, Number],
|
11828
11844
|
noClickAnimation: Boolean,
|
11829
11845
|
origin: {
|
11830
11846
|
type: String,
|
@@ -11840,10 +11856,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11840
11856
|
type: [String, Boolean],
|
11841
11857
|
default: 'dialog-transition'
|
11842
11858
|
},
|
11843
|
-
width:
|
11844
|
-
type: [String, Number],
|
11845
|
-
default: 'auto'
|
11846
|
-
}
|
11859
|
+
width: [String, Number]
|
11847
11860
|
},
|
11848
11861
|
|
11849
11862
|
data() {
|
@@ -11851,7 +11864,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11851
11864
|
activatedBy: null,
|
11852
11865
|
animate: false,
|
11853
11866
|
animateTimeout: -1,
|
11854
|
-
isActive: !!this.value,
|
11855
11867
|
stackMinZIndex: 200,
|
11856
11868
|
previousActiveElement: null
|
11857
11869
|
};
|
@@ -12032,8 +12044,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12032
12044
|
}, [this.$createElement('div', {
|
12033
12045
|
class: this.contentClasses,
|
12034
12046
|
attrs: {
|
12035
|
-
role: '
|
12047
|
+
role: 'dialog',
|
12036
12048
|
tabindex: this.isActive ? 0 : undefined,
|
12049
|
+
'aria-modal': this.hideOverlay ? undefined : 'true',
|
12037
12050
|
...this.getScopeIdAttrs()
|
12038
12051
|
},
|
12039
12052
|
on: {
|
@@ -12080,8 +12093,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12080
12093
|
|
12081
12094
|
if (!this.fullscreen) {
|
12082
12095
|
data.style = { ...data.style,
|
12083
|
-
maxWidth:
|
12084
|
-
width:
|
12096
|
+
maxWidth: convertToUnit(this.maxWidth),
|
12097
|
+
width: convertToUnit(this.width)
|
12085
12098
|
};
|
12086
12099
|
}
|
12087
12100
|
|
@@ -12095,9 +12108,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12095
12108
|
staticClass: 'v-dialog__container',
|
12096
12109
|
class: {
|
12097
12110
|
'v-dialog__container--attached': this.attach === '' || this.attach === true || this.attach === 'attach'
|
12098
|
-
},
|
12099
|
-
attrs: {
|
12100
|
-
role: 'dialog'
|
12101
12111
|
}
|
12102
12112
|
}, [this.genActivator(), this.genContent()]);
|
12103
12113
|
}
|
@@ -12110,10 +12120,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12110
12120
|
name: 'v-bottom-sheet',
|
12111
12121
|
props: {
|
12112
12122
|
inset: Boolean,
|
12113
|
-
maxWidth:
|
12114
|
-
type: [String, Number],
|
12115
|
-
default: 'auto'
|
12116
|
-
},
|
12123
|
+
maxWidth: [String, Number],
|
12117
12124
|
transition: {
|
12118
12125
|
type: String,
|
12119
12126
|
default: 'bottom-sheet-transition'
|
@@ -12354,11 +12361,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12354
12361
|
|
12355
12362
|
|
12356
12363
|
if (e && 'touches' in e) {
|
12357
|
-
var _e$
|
12364
|
+
var _e$currentTarget, _e$target;
|
12365
|
+
|
12366
|
+
const classSeparator = ' ';
|
12367
|
+
const eventTargetClasses = (_e$currentTarget = e.currentTarget) == null ? void 0 : _e$currentTarget.className.split(classSeparator);
|
12368
|
+
const currentTargets = document.elementsFromPoint(e.changedTouches[0].clientX, e.changedTouches[0].clientY); // Get "the same kind" current hovering target by checking
|
12369
|
+
// If element has the same class of initial touch start element (which has touch event listener registered)
|
12358
12370
|
|
12359
|
-
const currentTarget =
|
12371
|
+
const currentTarget = currentTargets.find(t => t.className.split(classSeparator).some(c => eventTargetClasses.includes(c)));
|
12360
12372
|
|
12361
|
-
if (currentTarget && !((_e$target = e.target) != null && _e$target.isSameNode(currentTarget))
|
12373
|
+
if (currentTarget && !((_e$target = e.target) != null && _e$target.isSameNode(currentTarget))) {
|
12362
12374
|
currentTarget.dispatchEvent(new TouchEvent(e.type, {
|
12363
12375
|
changedTouches: e.changedTouches,
|
12364
12376
|
targetTouches: e.targetTouches,
|
@@ -12368,7 +12380,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12368
12380
|
}
|
12369
12381
|
}
|
12370
12382
|
|
12371
|
-
this.$emit(event, getEvent(e));
|
12383
|
+
this.$emit(event, getEvent(e), e);
|
12372
12384
|
}
|
12373
12385
|
|
12374
12386
|
return eventOptions.result;
|
@@ -14048,9 +14060,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14048
14060
|
name: 'ripple',
|
14049
14061
|
value: (_this$eventRipple2 = this.eventRipple) != null ? _this$eventRipple2 : true
|
14050
14062
|
}],
|
14051
|
-
on: {
|
14052
|
-
|
14053
|
-
|
14063
|
+
on: this.getDefaultMouseEventHandlers(':more', nativeEvent => {
|
14064
|
+
return {
|
14065
|
+
nativeEvent,
|
14066
|
+
...day
|
14067
|
+
};
|
14068
|
+
}),
|
14054
14069
|
style: {
|
14055
14070
|
display: 'none',
|
14056
14071
|
height: `${eventHeight}px`,
|
@@ -14303,7 +14318,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14303
14318
|
key: day.date,
|
14304
14319
|
staticClass: 'v-calendar-weekly__day',
|
14305
14320
|
class: this.getRelativeClasses(day, outside),
|
14306
|
-
on: this.getDefaultMouseEventHandlers(':day',
|
14321
|
+
on: this.getDefaultMouseEventHandlers(':day', nativeEvent => {
|
14322
|
+
return {
|
14323
|
+
nativeEvent,
|
14324
|
+
...day
|
14325
|
+
};
|
14326
|
+
})
|
14307
14327
|
}, [this.genDayLabel(day), ...(getSlot(this, 'day', () => ({
|
14308
14328
|
outside,
|
14309
14329
|
index,
|
@@ -14339,7 +14359,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14339
14359
|
prevent: true,
|
14340
14360
|
result: false
|
14341
14361
|
}
|
14342
|
-
},
|
14362
|
+
}, nativeEvent => ({
|
14363
|
+
nativeEvent,
|
14364
|
+
...day
|
14365
|
+
}))
|
14343
14366
|
}, hasMonth ? this.monthFormatter(day, this.shortMonths) + ' ' + this.dayFormatter(day, false) : this.dayFormatter(day, false));
|
14344
14367
|
},
|
14345
14368
|
|
@@ -14612,8 +14635,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14612
14635
|
key: day.date,
|
14613
14636
|
staticClass: 'v-calendar-daily_head-day',
|
14614
14637
|
class: this.getRelativeClasses(day),
|
14615
|
-
on: this.getDefaultMouseEventHandlers(':day',
|
14616
|
-
return
|
14638
|
+
on: this.getDefaultMouseEventHandlers(':day', nativeEvent => {
|
14639
|
+
return {
|
14640
|
+
nativeEvent,
|
14641
|
+
...this.getSlotScope(day)
|
14642
|
+
};
|
14617
14643
|
})
|
14618
14644
|
}, [this.genHeadWeekday(day), this.genHeadDayLabel(day), ...this.genDayHeader(day, index)]);
|
14619
14645
|
},
|
@@ -14658,8 +14684,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14658
14684
|
prevent: true,
|
14659
14685
|
result: false
|
14660
14686
|
}
|
14661
|
-
},
|
14662
|
-
return
|
14687
|
+
}, nativeEvent => {
|
14688
|
+
return {
|
14689
|
+
nativeEvent,
|
14690
|
+
...day
|
14691
|
+
};
|
14663
14692
|
})
|
14664
14693
|
}, this.dayFormatter(day, false));
|
14665
14694
|
},
|
@@ -14702,8 +14731,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14702
14731
|
key: day.date,
|
14703
14732
|
staticClass: 'v-calendar-daily__day',
|
14704
14733
|
class: this.getRelativeClasses(day),
|
14705
|
-
on: this.getDefaultMouseEventHandlers(':time',
|
14706
|
-
return
|
14734
|
+
on: this.getDefaultMouseEventHandlers(':time', nativeEvent => {
|
14735
|
+
return {
|
14736
|
+
nativeEvent,
|
14737
|
+
...this.getSlotScope(this.getTimestampAtEvent(nativeEvent, day))
|
14738
|
+
};
|
14707
14739
|
})
|
14708
14740
|
}, [...this.genDayIntervals(index), ...this.genDayBody(day)]);
|
14709
14741
|
},
|
@@ -14738,8 +14770,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14738
14770
|
style: {
|
14739
14771
|
width
|
14740
14772
|
},
|
14741
|
-
on: this.getDefaultMouseEventHandlers(':interval',
|
14742
|
-
return
|
14773
|
+
on: this.getDefaultMouseEventHandlers(':interval', nativeEvent => {
|
14774
|
+
return {
|
14775
|
+
nativeEvent,
|
14776
|
+
...this.getTimestampAtEvent(nativeEvent, this.parsedStart)
|
14777
|
+
};
|
14743
14778
|
})
|
14744
14779
|
};
|
14745
14780
|
return this.$createElement('div', data, this.genIntervalLabels());
|
@@ -14935,7 +14970,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14935
14970
|
// Styles
|
14936
14971
|
/* @vue/component */
|
14937
14972
|
|
14938
|
-
CalendarWithEvents.extend({
|
14973
|
+
var VCalendar = CalendarWithEvents.extend({
|
14939
14974
|
name: 'v-calendar',
|
14940
14975
|
props: { ...props.calendar,
|
14941
14976
|
...props.weeks,
|
@@ -15306,13 +15341,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
15306
15341
|
value: this.updateEventVisibility
|
15307
15342
|
}],
|
15308
15343
|
on: { ...this.$listeners,
|
15309
|
-
'click:date': day => {
|
15344
|
+
'click:date': (day, e) => {
|
15310
15345
|
if (this.$listeners.input) {
|
15311
15346
|
this.$emit('input', day.date);
|
15312
15347
|
}
|
15313
15348
|
|
15314
15349
|
if (this.$listeners['click:date']) {
|
15315
|
-
this.$emit('click:date', day);
|
15350
|
+
this.$emit('click:date', day, e);
|
15316
15351
|
}
|
15317
15352
|
}
|
15318
15353
|
},
|
@@ -15861,8 +15896,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
15861
15896
|
});
|
15862
15897
|
|
15863
15898
|
// Mixins
|
15864
|
-
const baseMixins$
|
15865
|
-
var VWindowItem = baseMixins$
|
15899
|
+
const baseMixins$h = mixins(Bootable, factory$1('windowGroup', 'v-window-item', 'v-window'));
|
15900
|
+
var VWindowItem = baseMixins$h.extend().extend().extend({
|
15866
15901
|
name: 'v-window-item',
|
15867
15902
|
directives: {
|
15868
15903
|
Touch
|
@@ -15999,10 +16034,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
15999
16034
|
|
16000
16035
|
// Extensions
|
16001
16036
|
|
16002
|
-
const baseMixins$
|
16037
|
+
const baseMixins$g = mixins(VWindowItem, Routable);
|
16003
16038
|
/* @vue/component */
|
16004
16039
|
|
16005
|
-
baseMixins$
|
16040
|
+
baseMixins$g.extend().extend({
|
16006
16041
|
name: 'v-carousel-item',
|
16007
16042
|
inject: {
|
16008
16043
|
parentTheme: {
|
@@ -16338,6 +16373,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
16338
16373
|
});
|
16339
16374
|
|
16340
16375
|
// Styles
|
16376
|
+
|
16377
|
+
function bias(val) {
|
16378
|
+
const c = 0.501;
|
16379
|
+
const x = Math.abs(val);
|
16380
|
+
return Math.sign(val) * (x / ((1 / c - 2) * (1 - x) + 1));
|
16381
|
+
}
|
16382
|
+
|
16341
16383
|
function calculateUpdatedOffset(selectedElement, widths, rtl, currentScrollOffset) {
|
16342
16384
|
const clientWidth = selectedElement.clientWidth;
|
16343
16385
|
const offsetLeft = rtl ? widths.content - selectedElement.offsetLeft - clientWidth : selectedElement.offsetLeft;
|
@@ -16481,7 +16523,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
16481
16523
|
isOverflowing: 'setWidths',
|
16482
16524
|
|
16483
16525
|
scrollOffset(val) {
|
16484
|
-
this.$
|
16526
|
+
if (this.$vuetify.rtl) val = -val;
|
16527
|
+
let scroll = val <= 0 ? bias(-val) : val > this.widths.content - this.widths.wrapper ? -(this.widths.content - this.widths.wrapper) + bias(this.widths.content - this.widths.wrapper - val) : -val;
|
16528
|
+
if (this.$vuetify.rtl) scroll = -scroll;
|
16529
|
+
this.$refs.content.style.transform = `translateX(${scroll}px)`;
|
16485
16530
|
}
|
16486
16531
|
|
16487
16532
|
},
|
@@ -16722,10 +16767,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
16722
16767
|
}, this.$vuetify.rtl, this.scrollOffset);
|
16723
16768
|
},
|
16724
16769
|
|
16725
|
-
setWidths
|
16726
|
-
/* istanbul ignore next */
|
16727
|
-
() {
|
16770
|
+
setWidths() {
|
16728
16771
|
window.requestAnimationFrame(() => {
|
16772
|
+
if (this._isDestroyed) return;
|
16729
16773
|
const {
|
16730
16774
|
content,
|
16731
16775
|
wrapper
|
@@ -18639,7 +18683,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
18639
18683
|
},
|
18640
18684
|
|
18641
18685
|
setValue(value) {
|
18642
|
-
VSelect.options.methods.setValue.call(this, value
|
18686
|
+
VSelect.options.methods.setValue.call(this, value === undefined ? this.internalSearch : value);
|
18643
18687
|
},
|
18644
18688
|
|
18645
18689
|
updateEditing() {
|
@@ -18742,12 +18786,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
18742
18786
|
default: () => ({})
|
18743
18787
|
},
|
18744
18788
|
sortBy: {
|
18745
|
-
type: [String, Array]
|
18746
|
-
default: () => []
|
18789
|
+
type: [String, Array]
|
18747
18790
|
},
|
18748
18791
|
sortDesc: {
|
18749
|
-
type: [Boolean, Array]
|
18750
|
-
default: () => []
|
18792
|
+
type: [Boolean, Array]
|
18751
18793
|
},
|
18752
18794
|
customSort: {
|
18753
18795
|
type: Function,
|
@@ -19911,7 +19953,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
19911
19953
|
return this.$createElement('th', data, [this.genSelectAll()]);
|
19912
19954
|
}
|
19913
19955
|
|
19914
|
-
children.push(this.$scopedSlots
|
19956
|
+
children.push(this.$scopedSlots.hasOwnProperty(header.value) ? this.$scopedSlots[header.value]({
|
19915
19957
|
header
|
19916
19958
|
}) : this.$createElement('span', [header.text]));
|
19917
19959
|
|
@@ -20019,6 +20061,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
20019
20061
|
});
|
20020
20062
|
|
20021
20063
|
// Types
|
20064
|
+
|
20065
|
+
function needsTd(slot) {
|
20066
|
+
var _slot$;
|
20067
|
+
|
20068
|
+
return slot.length !== 1 || !['td', 'th'].includes((_slot$ = slot[0]) == null ? void 0 : _slot$.tag);
|
20069
|
+
}
|
20070
|
+
|
20022
20071
|
var Row = Vue__default["default"].extend({
|
20023
20072
|
name: 'row',
|
20024
20073
|
functional: true,
|
@@ -20039,29 +20088,29 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
20039
20088
|
const children = [];
|
20040
20089
|
const value = getObjectValueByPath(props.item, header.value);
|
20041
20090
|
const slotName = header.value;
|
20042
|
-
const scopedSlot = data.scopedSlots && data.scopedSlots[slotName];
|
20043
|
-
const regularSlot = computedSlots[slotName];
|
20091
|
+
const scopedSlot = data.scopedSlots && data.scopedSlots.hasOwnProperty(slotName) && data.scopedSlots[slotName];
|
20092
|
+
const regularSlot = computedSlots.hasOwnProperty(slotName) && computedSlots[slotName];
|
20044
20093
|
|
20045
20094
|
if (scopedSlot) {
|
20046
|
-
children.push(scopedSlot({
|
20095
|
+
children.push(...wrapInArray(scopedSlot({
|
20047
20096
|
item: props.item,
|
20048
20097
|
isMobile: false,
|
20049
20098
|
header,
|
20050
20099
|
index: props.index,
|
20051
20100
|
value
|
20052
|
-
}));
|
20101
|
+
})));
|
20053
20102
|
} else if (regularSlot) {
|
20054
|
-
children.push(regularSlot);
|
20103
|
+
children.push(...wrapInArray(regularSlot));
|
20055
20104
|
} else {
|
20056
20105
|
children.push(value == null ? value : String(value));
|
20057
20106
|
}
|
20058
20107
|
|
20059
20108
|
const textAlign = `text-${header.align || 'start'}`;
|
20060
|
-
return h('td', {
|
20109
|
+
return needsTd(children) ? h('td', {
|
20061
20110
|
class: [textAlign, header.cellClass, {
|
20062
20111
|
'v-data-table__divider': header.divider
|
20063
20112
|
}]
|
20064
|
-
}, children);
|
20113
|
+
}, children) : children;
|
20065
20114
|
});
|
20066
20115
|
return h('tr', data, columns);
|
20067
20116
|
}
|
@@ -20182,8 +20231,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
20182
20231
|
const children = [];
|
20183
20232
|
const value = getObjectValueByPath(props.item, header.value);
|
20184
20233
|
const slotName = header.value;
|
20185
|
-
const scopedSlot = data.scopedSlots && data.scopedSlots[slotName];
|
20186
|
-
const regularSlot = computedSlots[slotName];
|
20234
|
+
const scopedSlot = data.scopedSlots && data.scopedSlots.hasOwnProperty(slotName) && data.scopedSlots[slotName];
|
20235
|
+
const regularSlot = computedSlots.hasOwnProperty(slotName) && computedSlots[slotName];
|
20187
20236
|
|
20188
20237
|
if (scopedSlot) {
|
20189
20238
|
children.push(scopedSlot({
|
@@ -20946,8 +20995,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
20946
20995
|
|
20947
20996
|
});
|
20948
20997
|
|
20949
|
-
const baseMixins$
|
20950
|
-
baseMixins$
|
20998
|
+
const baseMixins$f = mixins(VSimpleTable);
|
20999
|
+
baseMixins$f.extend().extend({
|
20951
21000
|
name: 'v-virtual-table',
|
20952
21001
|
props: {
|
20953
21002
|
chunkSize: {
|
@@ -21484,7 +21533,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
21484
21533
|
},
|
21485
21534
|
|
21486
21535
|
methods: {
|
21487
|
-
genButtonClasses(isAllowed, isFloating, isSelected, isCurrent) {
|
21536
|
+
genButtonClasses(isAllowed, isFloating, isSelected, isCurrent, isFirst, isLast) {
|
21488
21537
|
return {
|
21489
21538
|
'v-size--default': !isFloating,
|
21490
21539
|
'v-date-picker-table__current': isCurrent,
|
@@ -21494,6 +21543,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
21494
21543
|
'v-btn--rounded': isFloating,
|
21495
21544
|
'v-btn--disabled': !isAllowed || this.disabled,
|
21496
21545
|
'v-btn--outlined': isCurrent && !isSelected,
|
21546
|
+
'v-date-picker--first-in-range': isFirst,
|
21547
|
+
'v-date-picker--last-in-range': isLast,
|
21497
21548
|
...this.themeClasses
|
21498
21549
|
};
|
21499
21550
|
},
|
@@ -21513,9 +21564,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
21513
21564
|
const isCurrent = value === this.current;
|
21514
21565
|
const setColor = isSelected ? this.setBackgroundColor : this.setTextColor;
|
21515
21566
|
const color = (isSelected || isCurrent) && (this.color || 'accent');
|
21567
|
+
let isFirst = false;
|
21568
|
+
let isLast = false;
|
21569
|
+
|
21570
|
+
if (this.range && !!this.value && Array.isArray(this.value)) {
|
21571
|
+
isFirst = value === this.value[0];
|
21572
|
+
isLast = value === this.value[this.value.length - 1];
|
21573
|
+
}
|
21574
|
+
|
21516
21575
|
return this.$createElement('button', setColor(color, {
|
21517
21576
|
staticClass: 'v-btn',
|
21518
|
-
class: this.genButtonClasses(isAllowed && !isOtherMonth, isFloating, isSelected, isCurrent),
|
21577
|
+
class: this.genButtonClasses(isAllowed && !isOtherMonth, isFloating, isSelected, isCurrent, isFirst, isLast),
|
21519
21578
|
attrs: {
|
21520
21579
|
type: 'button'
|
21521
21580
|
},
|
@@ -22714,10 +22773,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
22714
22773
|
|
22715
22774
|
});
|
22716
22775
|
|
22717
|
-
const baseMixins$
|
22776
|
+
const baseMixins$e = mixins(Bootable, Colorable, inject('expansionPanel', 'v-expansion-panel-content', 'v-expansion-panel'));
|
22718
22777
|
/* @vue/component */
|
22719
22778
|
|
22720
|
-
var VExpansionPanelContent = baseMixins$
|
22779
|
+
var VExpansionPanelContent = baseMixins$e.extend().extend({
|
22721
22780
|
name: 'v-expansion-panel-content',
|
22722
22781
|
data: () => ({
|
22723
22782
|
isActive: false
|
@@ -22763,8 +22822,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
22763
22822
|
});
|
22764
22823
|
|
22765
22824
|
// Components
|
22766
|
-
const baseMixins$
|
22767
|
-
var VExpansionPanelHeader = baseMixins$
|
22825
|
+
const baseMixins$d = mixins(Colorable, inject('expansionPanel', 'v-expansion-panel-header', 'v-expansion-panel'));
|
22826
|
+
var VExpansionPanelHeader = baseMixins$d.extend().extend({
|
22768
22827
|
name: 'v-expansion-panel-header',
|
22769
22828
|
directives: {
|
22770
22829
|
ripple: Ripple
|
@@ -23924,10 +23983,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
23924
23983
|
});
|
23925
23984
|
|
23926
23985
|
// Styles
|
23927
|
-
const baseMixins$
|
23986
|
+
const baseMixins$c = mixins(applicationable('left', ['isActive', 'isMobile', 'miniVariant', 'expandOnHover', 'permanent', 'right', 'temporary', 'width']), Colorable, Dependent, Mobile, Overlayable, SSRBootable, Themeable);
|
23928
23987
|
/* @vue/component */
|
23929
23988
|
|
23930
|
-
var VNavigationDrawer = baseMixins$
|
23989
|
+
var VNavigationDrawer = baseMixins$c.extend({
|
23931
23990
|
name: 'v-navigation-drawer',
|
23932
23991
|
directives: {
|
23933
23992
|
ClickOutside,
|
@@ -24204,6 +24263,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24204
24263
|
|
24205
24264
|
genListeners() {
|
24206
24265
|
const on = {
|
24266
|
+
mouseenter: () => this.isMouseover = true,
|
24267
|
+
mouseleave: () => this.isMouseover = false,
|
24207
24268
|
transitionend: e => {
|
24208
24269
|
if (e.target !== e.currentTarget) return;
|
24209
24270
|
this.$emit('transitionend', e); // IE11 does not support new Event('resize')
|
@@ -24218,12 +24279,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24218
24279
|
on.click = () => this.$emit('update:mini-variant', false);
|
24219
24280
|
}
|
24220
24281
|
|
24221
|
-
if (this.expandOnHover) {
|
24222
|
-
on.mouseenter = () => this.isMouseover = true;
|
24223
|
-
|
24224
|
-
on.mouseleave = () => this.isMouseover = false;
|
24225
|
-
}
|
24226
|
-
|
24227
24282
|
return on;
|
24228
24283
|
},
|
24229
24284
|
|
@@ -24286,12 +24341,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24286
24341
|
*/
|
24287
24342
|
updateApplication() {
|
24288
24343
|
if (!this.isActive || this.isMobile || this.temporary || !this.$el) return 0;
|
24289
|
-
const width = Number(this.
|
24344
|
+
const width = Number(this.miniVariant ? this.miniVariantWidth : this.width);
|
24290
24345
|
return isNaN(width) ? this.$el.clientWidth : width;
|
24291
24346
|
},
|
24292
24347
|
|
24293
24348
|
updateMiniVariant(val) {
|
24294
|
-
if (this.miniVariant !== val) this.$emit('update:mini-variant', val);
|
24349
|
+
if (this.expandOnHover && this.miniVariant !== val) this.$emit('update:mini-variant', val);
|
24295
24350
|
}
|
24296
24351
|
|
24297
24352
|
},
|
@@ -24309,6 +24364,338 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24309
24364
|
|
24310
24365
|
});
|
24311
24366
|
|
24367
|
+
// Styles
|
24368
|
+
const baseMixins$b = mixins(VInput);
|
24369
|
+
/* @vue/component */
|
24370
|
+
|
24371
|
+
var VOtpInput = baseMixins$b.extend().extend({
|
24372
|
+
name: 'v-otp-input',
|
24373
|
+
directives: {
|
24374
|
+
ripple: Ripple
|
24375
|
+
},
|
24376
|
+
inheritAttrs: false,
|
24377
|
+
props: {
|
24378
|
+
length: {
|
24379
|
+
type: [Number, String],
|
24380
|
+
default: 6
|
24381
|
+
},
|
24382
|
+
type: {
|
24383
|
+
type: String,
|
24384
|
+
default: 'text'
|
24385
|
+
},
|
24386
|
+
plain: Boolean
|
24387
|
+
},
|
24388
|
+
data: () => ({
|
24389
|
+
badInput: false,
|
24390
|
+
initialValue: null,
|
24391
|
+
isBooted: false,
|
24392
|
+
otp: []
|
24393
|
+
}),
|
24394
|
+
computed: {
|
24395
|
+
outlined() {
|
24396
|
+
return !this.plain;
|
24397
|
+
},
|
24398
|
+
|
24399
|
+
classes() {
|
24400
|
+
return { ...VInput.options.computed.classes.call(this),
|
24401
|
+
...VTextField.options.computed.classes.call(this),
|
24402
|
+
'v-otp-input--plain': this.plain
|
24403
|
+
};
|
24404
|
+
},
|
24405
|
+
|
24406
|
+
isDirty() {
|
24407
|
+
return VInput.options.computed.isDirty.call(this) || this.badInput;
|
24408
|
+
}
|
24409
|
+
|
24410
|
+
},
|
24411
|
+
watch: {
|
24412
|
+
isFocused: 'updateValue',
|
24413
|
+
|
24414
|
+
value(val) {
|
24415
|
+
this.lazyValue = val;
|
24416
|
+
this.otp = (val == null ? void 0 : val.split('')) || [];
|
24417
|
+
}
|
24418
|
+
|
24419
|
+
},
|
24420
|
+
|
24421
|
+
created() {
|
24422
|
+
var _this$internalValue;
|
24423
|
+
|
24424
|
+
/* istanbul ignore next */
|
24425
|
+
if (this.$attrs.hasOwnProperty('browser-autocomplete')) {
|
24426
|
+
breaking('browser-autocomplete', 'autocomplete', this);
|
24427
|
+
}
|
24428
|
+
|
24429
|
+
this.otp = ((_this$internalValue = this.internalValue) == null ? void 0 : _this$internalValue.split('')) || [];
|
24430
|
+
},
|
24431
|
+
|
24432
|
+
mounted() {
|
24433
|
+
requestAnimationFrame(() => this.isBooted = true);
|
24434
|
+
},
|
24435
|
+
|
24436
|
+
methods: {
|
24437
|
+
/** @public */
|
24438
|
+
focus(e, otpIdx) {
|
24439
|
+
this.onFocus(e, otpIdx || 0);
|
24440
|
+
},
|
24441
|
+
|
24442
|
+
genInputSlot(otpIdx) {
|
24443
|
+
return this.$createElement('div', this.setBackgroundColor(this.backgroundColor, {
|
24444
|
+
staticClass: 'v-input__slot',
|
24445
|
+
style: {
|
24446
|
+
height: convertToUnit(this.height)
|
24447
|
+
},
|
24448
|
+
on: {
|
24449
|
+
click: () => this.onClick(otpIdx),
|
24450
|
+
mousedown: e => this.onMouseDown(e, otpIdx),
|
24451
|
+
mouseup: e => this.onMouseUp(e, otpIdx)
|
24452
|
+
}
|
24453
|
+
}), [this.genDefaultSlot(otpIdx)]);
|
24454
|
+
},
|
24455
|
+
|
24456
|
+
genControl(otpIdx) {
|
24457
|
+
return this.$createElement('div', {
|
24458
|
+
staticClass: 'v-input__control'
|
24459
|
+
}, [this.genInputSlot(otpIdx)]);
|
24460
|
+
},
|
24461
|
+
|
24462
|
+
genDefaultSlot(otpIdx) {
|
24463
|
+
return [this.genFieldset(), this.genTextFieldSlot(otpIdx)];
|
24464
|
+
},
|
24465
|
+
|
24466
|
+
genContent() {
|
24467
|
+
return Array.from({
|
24468
|
+
length: +this.length
|
24469
|
+
}, (_, i) => {
|
24470
|
+
return this.$createElement('div', this.setTextColor(this.validationState, {
|
24471
|
+
staticClass: 'v-input',
|
24472
|
+
class: this.classes
|
24473
|
+
}), [this.genControl(i)]);
|
24474
|
+
});
|
24475
|
+
},
|
24476
|
+
|
24477
|
+
genFieldset() {
|
24478
|
+
return this.$createElement('fieldset', {
|
24479
|
+
attrs: {
|
24480
|
+
'aria-hidden': true
|
24481
|
+
}
|
24482
|
+
}, [this.genLegend()]);
|
24483
|
+
},
|
24484
|
+
|
24485
|
+
genLegend() {
|
24486
|
+
const span = this.$createElement('span', {
|
24487
|
+
domProps: {
|
24488
|
+
innerHTML: '​'
|
24489
|
+
}
|
24490
|
+
});
|
24491
|
+
return this.$createElement('legend', {
|
24492
|
+
style: {
|
24493
|
+
width: '0px'
|
24494
|
+
}
|
24495
|
+
}, [span]);
|
24496
|
+
},
|
24497
|
+
|
24498
|
+
genInput(otpIdx) {
|
24499
|
+
const listeners = Object.assign({}, this.listeners$);
|
24500
|
+
delete listeners.change; // Change should not be bound externally
|
24501
|
+
|
24502
|
+
return this.$createElement('input', {
|
24503
|
+
style: {},
|
24504
|
+
domProps: {
|
24505
|
+
value: this.otp[otpIdx],
|
24506
|
+
min: this.type === 'number' ? 0 : null
|
24507
|
+
},
|
24508
|
+
attrs: { ...this.attrs$,
|
24509
|
+
disabled: this.isDisabled,
|
24510
|
+
readonly: this.isReadonly,
|
24511
|
+
type: this.type,
|
24512
|
+
id: `${this.computedId}--${otpIdx}`,
|
24513
|
+
class: `otp-field-box--${otpIdx}`,
|
24514
|
+
maxlength: 1
|
24515
|
+
},
|
24516
|
+
on: Object.assign(listeners, {
|
24517
|
+
blur: this.onBlur,
|
24518
|
+
input: e => this.onInput(e, otpIdx),
|
24519
|
+
focus: e => this.onFocus(e, otpIdx),
|
24520
|
+
paste: e => this.onPaste(e, otpIdx),
|
24521
|
+
keydown: this.onKeyDown,
|
24522
|
+
keyup: e => this.onKeyUp(e, otpIdx)
|
24523
|
+
}),
|
24524
|
+
ref: 'input',
|
24525
|
+
refInFor: true
|
24526
|
+
});
|
24527
|
+
},
|
24528
|
+
|
24529
|
+
genTextFieldSlot(otpIdx) {
|
24530
|
+
return this.$createElement('div', {
|
24531
|
+
staticClass: 'v-text-field__slot'
|
24532
|
+
}, [this.genInput(otpIdx)]);
|
24533
|
+
},
|
24534
|
+
|
24535
|
+
onBlur(e) {
|
24536
|
+
this.isFocused = false;
|
24537
|
+
e && this.$nextTick(() => this.$emit('blur', e));
|
24538
|
+
},
|
24539
|
+
|
24540
|
+
onClick(otpIdx) {
|
24541
|
+
if (this.isFocused || this.isDisabled || !this.$refs.input[otpIdx]) return;
|
24542
|
+
this.onFocus(undefined, otpIdx);
|
24543
|
+
},
|
24544
|
+
|
24545
|
+
onFocus(e, otpIdx) {
|
24546
|
+
e == null ? void 0 : e.preventDefault();
|
24547
|
+
e == null ? void 0 : e.stopPropagation();
|
24548
|
+
const elements = this.$refs.input;
|
24549
|
+
const ref = this.$refs.input && elements[otpIdx || 0];
|
24550
|
+
if (!ref) return;
|
24551
|
+
|
24552
|
+
if (document.activeElement !== ref) {
|
24553
|
+
ref.focus();
|
24554
|
+
return ref.select();
|
24555
|
+
}
|
24556
|
+
|
24557
|
+
if (!this.isFocused) {
|
24558
|
+
this.isFocused = true;
|
24559
|
+
ref.select();
|
24560
|
+
e && this.$emit('focus', e);
|
24561
|
+
}
|
24562
|
+
},
|
24563
|
+
|
24564
|
+
onInput(e, otpIdx) {
|
24565
|
+
const target = e.target;
|
24566
|
+
const value = target.value;
|
24567
|
+
this.applyValue(otpIdx, target.value, () => {
|
24568
|
+
this.internalValue = this.otp.join('');
|
24569
|
+
});
|
24570
|
+
this.badInput = target.validity && target.validity.badInput;
|
24571
|
+
const nextIndex = otpIdx + 1;
|
24572
|
+
|
24573
|
+
if (value) {
|
24574
|
+
if (nextIndex < +this.length) {
|
24575
|
+
this.changeFocus(nextIndex);
|
24576
|
+
} else {
|
24577
|
+
this.clearFocus(otpIdx);
|
24578
|
+
this.onCompleted();
|
24579
|
+
}
|
24580
|
+
}
|
24581
|
+
},
|
24582
|
+
|
24583
|
+
clearFocus(index) {
|
24584
|
+
const input = this.$refs.input[index];
|
24585
|
+
input.blur();
|
24586
|
+
},
|
24587
|
+
|
24588
|
+
onKeyDown(e) {
|
24589
|
+
if (e.keyCode === keyCodes.enter) {
|
24590
|
+
this.$emit('change', this.internalValue);
|
24591
|
+
}
|
24592
|
+
|
24593
|
+
this.$emit('keydown', e);
|
24594
|
+
},
|
24595
|
+
|
24596
|
+
onMouseDown(e, otpIdx) {
|
24597
|
+
// Prevent input from being blurred
|
24598
|
+
if (e.target !== this.$refs.input[otpIdx]) {
|
24599
|
+
e.preventDefault();
|
24600
|
+
e.stopPropagation();
|
24601
|
+
}
|
24602
|
+
|
24603
|
+
VInput.options.methods.onMouseDown.call(this, e);
|
24604
|
+
},
|
24605
|
+
|
24606
|
+
onMouseUp(e, otpIdx) {
|
24607
|
+
if (this.hasMouseDown) this.focus(e, otpIdx);
|
24608
|
+
VInput.options.methods.onMouseUp.call(this, e);
|
24609
|
+
},
|
24610
|
+
|
24611
|
+
onPaste(event, index) {
|
24612
|
+
var _event$clipboardData;
|
24613
|
+
|
24614
|
+
const maxCursor = +this.length - 1;
|
24615
|
+
const inputVal = event == null ? void 0 : (_event$clipboardData = event.clipboardData) == null ? void 0 : _event$clipboardData.getData('Text');
|
24616
|
+
const inputDataArray = (inputVal == null ? void 0 : inputVal.split('')) || [];
|
24617
|
+
event.preventDefault();
|
24618
|
+
const newOtp = [...this.otp];
|
24619
|
+
|
24620
|
+
for (let i = 0; i < inputDataArray.length; i++) {
|
24621
|
+
const appIdx = index + i;
|
24622
|
+
if (appIdx > maxCursor) break;
|
24623
|
+
newOtp[appIdx] = inputDataArray[i].toString();
|
24624
|
+
}
|
24625
|
+
|
24626
|
+
this.otp = newOtp;
|
24627
|
+
this.internalValue = this.otp.join('');
|
24628
|
+
const targetFocus = Math.min(index + inputDataArray.length, maxCursor);
|
24629
|
+
this.changeFocus(targetFocus);
|
24630
|
+
|
24631
|
+
if (newOtp.length === +this.length) {
|
24632
|
+
this.onCompleted();
|
24633
|
+
this.clearFocus(targetFocus);
|
24634
|
+
}
|
24635
|
+
},
|
24636
|
+
|
24637
|
+
applyValue(index, inputVal, next) {
|
24638
|
+
const newOtp = [...this.otp];
|
24639
|
+
newOtp[index] = inputVal;
|
24640
|
+
this.otp = newOtp;
|
24641
|
+
next();
|
24642
|
+
},
|
24643
|
+
|
24644
|
+
changeFocus(index) {
|
24645
|
+
this.onFocus(undefined, index || 0);
|
24646
|
+
},
|
24647
|
+
|
24648
|
+
updateValue(val) {
|
24649
|
+
// Sets validationState from validatable
|
24650
|
+
this.hasColor = val;
|
24651
|
+
|
24652
|
+
if (val) {
|
24653
|
+
this.initialValue = this.lazyValue;
|
24654
|
+
} else if (this.initialValue !== this.lazyValue) {
|
24655
|
+
this.$emit('change', this.lazyValue);
|
24656
|
+
}
|
24657
|
+
},
|
24658
|
+
|
24659
|
+
onKeyUp(event, index) {
|
24660
|
+
event.preventDefault();
|
24661
|
+
const eventKey = event.key;
|
24662
|
+
|
24663
|
+
if (['Tab', 'Shift', 'Meta', 'Control', 'Alt'].includes(eventKey)) {
|
24664
|
+
return;
|
24665
|
+
}
|
24666
|
+
|
24667
|
+
if (['Delete'].includes(eventKey)) {
|
24668
|
+
return;
|
24669
|
+
}
|
24670
|
+
|
24671
|
+
if (eventKey === 'ArrowLeft' || eventKey === 'Backspace' && !this.otp[index]) {
|
24672
|
+
return index > 0 && this.changeFocus(index - 1);
|
24673
|
+
}
|
24674
|
+
|
24675
|
+
if (eventKey === 'ArrowRight') {
|
24676
|
+
return index + 1 < +this.length && this.changeFocus(index + 1);
|
24677
|
+
}
|
24678
|
+
},
|
24679
|
+
|
24680
|
+
onCompleted() {
|
24681
|
+
const rsp = this.otp.join('');
|
24682
|
+
|
24683
|
+
if (rsp.length === +this.length) {
|
24684
|
+
this.$emit('finish', rsp);
|
24685
|
+
}
|
24686
|
+
}
|
24687
|
+
|
24688
|
+
},
|
24689
|
+
|
24690
|
+
render(h) {
|
24691
|
+
return h('div', {
|
24692
|
+
staticClass: 'v-otp-input',
|
24693
|
+
class: this.themeClasses
|
24694
|
+
}, this.genContent());
|
24695
|
+
}
|
24696
|
+
|
24697
|
+
});
|
24698
|
+
|
24312
24699
|
// Styles
|
24313
24700
|
/* @vue/component */
|
24314
24701
|
|
@@ -24514,13 +24901,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24514
24901
|
|
24515
24902
|
},
|
24516
24903
|
|
24517
|
-
|
24904
|
+
beforeMount() {
|
24518
24905
|
this.init();
|
24519
24906
|
},
|
24520
24907
|
|
24521
24908
|
methods: {
|
24522
24909
|
init() {
|
24523
24910
|
this.selected = null;
|
24911
|
+
this.onResize();
|
24524
24912
|
this.$nextTick(this.onResize); // TODO: Change this (f75dee3a, cbdf7caa)
|
24525
24913
|
|
24526
24914
|
setTimeout(() => this.selected = this.value, 100);
|
@@ -24772,7 +25160,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24772
25160
|
});
|
24773
25161
|
|
24774
25162
|
// Styles
|
24775
|
-
const baseMixins$9 = mixins(
|
25163
|
+
const baseMixins$9 = mixins(BaseItemGroup, VInput);
|
24776
25164
|
/* @vue/component */
|
24777
25165
|
|
24778
25166
|
var VRadioGroup = baseMixins$9.extend({
|
@@ -25698,9 +26086,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
25698
26086
|
},
|
25699
26087
|
|
25700
26088
|
styles() {
|
25701
|
-
|
25702
|
-
// using the absolute prop.
|
25703
|
-
if (this.absolute) return {};
|
26089
|
+
if (this.absolute || !this.app) return {};
|
25704
26090
|
const {
|
25705
26091
|
bar,
|
25706
26092
|
bottom,
|
@@ -25709,13 +26095,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
25709
26095
|
left,
|
25710
26096
|
right,
|
25711
26097
|
top
|
25712
|
-
} = this.$vuetify.application;
|
25713
|
-
// applicationable components.
|
25714
|
-
|
26098
|
+
} = this.$vuetify.application;
|
25715
26099
|
return {
|
25716
26100
|
paddingBottom: convertToUnit(bottom + footer + insetFooter),
|
25717
|
-
paddingLeft:
|
25718
|
-
paddingRight:
|
26101
|
+
paddingLeft: convertToUnit(left),
|
26102
|
+
paddingRight: convertToUnit(right),
|
25719
26103
|
paddingTop: convertToUnit(bar + top)
|
25720
26104
|
};
|
25721
26105
|
}
|
@@ -26591,6 +26975,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
26591
26975
|
return children;
|
26592
26976
|
},
|
26593
26977
|
|
26978
|
+
keyboardClick(e) {
|
26979
|
+
if (e.keyCode === keyCodes.space) {
|
26980
|
+
this.click(e);
|
26981
|
+
}
|
26982
|
+
},
|
26983
|
+
|
26594
26984
|
toggle(step) {
|
26595
26985
|
this.isActive = step.toString() === this.step.toString();
|
26596
26986
|
this.isInactive = Number(step) < Number(this.step);
|
@@ -26600,6 +26990,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
26600
26990
|
|
26601
26991
|
render(h) {
|
26602
26992
|
return h('div', {
|
26993
|
+
attrs: {
|
26994
|
+
tabindex: this.editable ? 0 : -1
|
26995
|
+
},
|
26603
26996
|
staticClass: 'v-stepper__step',
|
26604
26997
|
class: this.classes,
|
26605
26998
|
directives: [{
|
@@ -26607,7 +27000,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
26607
27000
|
value: this.editable
|
26608
27001
|
}],
|
26609
27002
|
on: {
|
26610
|
-
click: this.click
|
27003
|
+
click: this.click,
|
27004
|
+
keydown: this.keyboardClick
|
26611
27005
|
}
|
26612
27006
|
}, [this.genStep(), this.genLabel()]);
|
26613
27007
|
}
|
@@ -27339,7 +27733,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
27339
27733
|
},
|
27340
27734
|
|
27341
27735
|
value() {
|
27342
|
-
let to = this.to || this.href
|
27736
|
+
let to = this.to || this.href;
|
27737
|
+
if (to == null) return to;
|
27343
27738
|
|
27344
27739
|
if (this.$router && this.to === Object(this.to)) {
|
27345
27740
|
const resolve = this.$router.resolve(this.to, this.$route, this.append);
|
@@ -27371,7 +27766,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
27371
27766
|
|
27372
27767
|
toggle() {
|
27373
27768
|
// VItemGroup treats a change event as a click
|
27374
|
-
if (!this.isActive) {
|
27769
|
+
if (!this.isActive || !this.tabsBar.mandatory && !this.to) {
|
27375
27770
|
this.$emit('change');
|
27376
27771
|
}
|
27377
27772
|
}
|
@@ -27386,7 +27781,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
27386
27781
|
data.attrs = { ...data.attrs,
|
27387
27782
|
'aria-selected': String(this.isActive),
|
27388
27783
|
role: 'tab',
|
27389
|
-
tabindex: 0
|
27784
|
+
tabindex: this.disabled ? -1 : 0
|
27390
27785
|
};
|
27391
27786
|
data.on = { ...data.on,
|
27392
27787
|
keydown: e => {
|
@@ -28327,11 +28722,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
28327
28722
|
|
28328
28723
|
// Components
|
28329
28724
|
createSimpleFunctional('v-toolbar__title');
|
28330
|
-
createSimpleFunctional('v-toolbar__items');
|
28725
|
+
const VToolbarItems = createSimpleFunctional('v-toolbar__items');
|
28331
28726
|
|
28332
28727
|
/* @vue/component */
|
28333
28728
|
|
28334
|
-
var VTooltip = mixins(Colorable, Delayable, Dependent, Menuable
|
28729
|
+
var VTooltip = mixins(Colorable, Delayable, Dependent, Menuable).extend({
|
28335
28730
|
name: 'v-tooltip',
|
28336
28731
|
props: {
|
28337
28732
|
closeDelay: {
|
@@ -28347,6 +28742,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
28347
28742
|
type: Boolean,
|
28348
28743
|
default: true
|
28349
28744
|
},
|
28745
|
+
openOnFocus: {
|
28746
|
+
type: Boolean,
|
28747
|
+
default: true
|
28748
|
+
},
|
28350
28749
|
tag: {
|
28351
28750
|
type: String,
|
28352
28751
|
default: 'span'
|
@@ -28426,7 +28825,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
28426
28825
|
left: this.calculatedLeft,
|
28427
28826
|
maxWidth: convertToUnit(this.maxWidth),
|
28428
28827
|
minWidth: convertToUnit(this.minWidth),
|
28429
|
-
opacity: this.isActive ? 0.9 : 0,
|
28430
28828
|
top: this.calculatedTop,
|
28431
28829
|
zIndex: this.zIndex || this.activeZIndex
|
28432
28830
|
};
|
@@ -28462,15 +28860,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
28462
28860
|
genActivatorListeners() {
|
28463
28861
|
const listeners = Activatable.options.methods.genActivatorListeners.call(this);
|
28464
28862
|
|
28465
|
-
|
28466
|
-
|
28467
|
-
|
28468
|
-
|
28863
|
+
if (this.openOnFocus) {
|
28864
|
+
listeners.focus = e => {
|
28865
|
+
this.getActivator(e);
|
28866
|
+
this.runDelay('open');
|
28867
|
+
};
|
28469
28868
|
|
28470
|
-
|
28471
|
-
|
28472
|
-
|
28473
|
-
|
28869
|
+
listeners.blur = e => {
|
28870
|
+
this.getActivator(e);
|
28871
|
+
this.runDelay('close');
|
28872
|
+
};
|
28873
|
+
}
|
28474
28874
|
|
28475
28875
|
listeners.keydown = e => {
|
28476
28876
|
if (e.keyCode === keyCodes.esc) {
|
@@ -28540,6 +28940,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
28540
28940
|
type: String,
|
28541
28941
|
default: 'primary'
|
28542
28942
|
},
|
28943
|
+
disablePerNode: Boolean,
|
28543
28944
|
expandIcon: {
|
28544
28945
|
type: String,
|
28545
28946
|
default: '$subgroup'
|
@@ -28620,7 +29021,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
28620
29021
|
}),
|
28621
29022
|
computed: {
|
28622
29023
|
disabled() {
|
28623
|
-
return getObjectValueByPath(this.item, this.itemDisabled) || this.parentIsDisabled && this.selectionType === 'leaf';
|
29024
|
+
return getObjectValueByPath(this.item, this.itemDisabled) || !this.disablePerNode && this.parentIsDisabled && this.selectionType === 'leaf';
|
28624
29025
|
},
|
28625
29026
|
|
28626
29027
|
key() {
|
@@ -28804,6 +29205,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
28804
29205
|
selectable: this.selectable,
|
28805
29206
|
selectedColor: this.selectedColor,
|
28806
29207
|
color: this.color,
|
29208
|
+
disablePerNode: this.disablePerNode,
|
28807
29209
|
expandIcon: this.expandIcon,
|
28808
29210
|
indeterminateIcon: this.indeterminateIcon,
|
28809
29211
|
offIcon: this.offIcon,
|
@@ -28906,6 +29308,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
28906
29308
|
default: () => []
|
28907
29309
|
},
|
28908
29310
|
dense: Boolean,
|
29311
|
+
disabled: Boolean,
|
28909
29312
|
filter: Function,
|
28910
29313
|
hoverable: Boolean,
|
28911
29314
|
items: {
|
@@ -29256,7 +29659,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
29256
29659
|
return !this.isExcluded(getObjectValueByPath(item, this.itemKey));
|
29257
29660
|
}).map(item => {
|
29258
29661
|
const genChild = VTreeviewNode.options.methods.genChild.bind(this);
|
29259
|
-
return genChild(item, getObjectValueByPath(item, this.itemDisabled));
|
29662
|
+
return genChild(item, this.disabled || getObjectValueByPath(item, this.itemDisabled));
|
29260
29663
|
})
|
29261
29664
|
/* istanbul ignore next */
|
29262
29665
|
: this.$slots.default; // TODO: remove type annotation with TS 3.2
|
@@ -31529,8 +31932,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
31529
31932
|
}
|
31530
31933
|
mounted() {
|
31531
31934
|
this.inputRef = this.$refs.instance;
|
31532
|
-
|
31533
|
-
|
31935
|
+
if (this.inputRef) {
|
31936
|
+
this.instance.setViewValidate(this.inputRef.validate);
|
31937
|
+
this.instance.setViewResetValidation(this.inputRef.resetValidation);
|
31938
|
+
}
|
31534
31939
|
}
|
31535
31940
|
input(value) {
|
31536
31941
|
this.$emit('update:value', value);
|
@@ -42149,10 +42554,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42149
42554
|
core.KeyMap.unbind(this.navigationKeyMapping, this);
|
42150
42555
|
}
|
42151
42556
|
showSlotOnHover() {
|
42152
|
-
|
42153
|
-
return this.instance.miniState;
|
42154
|
-
}
|
42155
|
-
return !this.instance.miniState;
|
42557
|
+
return (this.instance.miniState && this.instance.mouseOver) || (!this.instance.miniState || this.instance.mini);
|
42156
42558
|
}
|
42157
42559
|
doSearch({ component }) {
|
42158
42560
|
this.instance.search = component.value;
|
@@ -42405,11 +42807,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42405
42807
|
floating: _vm.instance.floating,
|
42406
42808
|
"mini-variant-width": _vm.instance.miniWidth,
|
42407
42809
|
"mini-variant":
|
42408
|
-
(_vm.instance.mini ||
|
42409
|
-
|
42410
|
-
|
42411
|
-
|
42412
|
-
|
42810
|
+
(!_vm.instance.opened && _vm.instance.mini) ||
|
42811
|
+
(_vm.instance.miniState &&
|
42812
|
+
!_vm.instance.mouseOver &&
|
42813
|
+
_vm.instance.miniState &&
|
42814
|
+
_vm.$refs.ZdMenu &&
|
42815
|
+
!_vm.$refs.ZdMenu.isMobile) ||
|
42816
|
+
(_vm.instance.miniState && _vm.instance.mini),
|
42413
42817
|
"mobile-breakpoint": _vm.instance.mobileBreakpoint,
|
42414
42818
|
temporary: _vm.instance.temporary,
|
42415
42819
|
width: _vm.instance.width,
|
@@ -42512,7 +42916,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42512
42916
|
/* style */
|
42513
42917
|
const __vue_inject_styles__$z = function (inject) {
|
42514
42918
|
if (!inject) return
|
42515
|
-
inject("data-v-
|
42919
|
+
inject("data-v-13b6f89c_0", { source: ".zd-menu .v-list .v-list-item .v-list-item__title {\n font-weight: var(--zd-font-body1-weight);\n font-size: var(--zd-font-body1-size);\n color: var(--zd-font-color);\n text-align: left;\n}\n.zd-menu .v-list .v-list-item .v-list-item__icon .v-icon {\n color: var(--zd-font-color);\n}\n.zd-menu .v-list .v-list-item.selected .v-list-item__title {\n font-weight: var(--zd-font-body2-weight);\n color: var(--v-primary-base);\n}\n.zd-menu .v-list .v-list-item.selected .v-list-item__icon .v-icon {\n color: var(--v-primary-base);\n}\n.zd-menu .v-list .v-list-item.v-list-item--active:not(.focus-visible):not(:focus):not([data-focus-visible-added]):not(:hover):before {\n opacity: 0;\n}\n.zd-menu .v-list .v-list-group.selected > .v-list-group__header .v-list-item__title {\n font-weight: var(--zd-font-body2-weight);\n color: var(--v-primary-base);\n}\n.zd-menu .v-list .v-list-group.selected > .v-list-group__header .v-list-item__icon .v-icon {\n color: var(--v-primary-base);\n}\n.zd-menu .v-list .zd-menu-top-slot {\n margin-bottom: 10px;\n display: block;\n}\n.zd-menu.v-navigation-drawer--mini-variant .v-list-item {\n justify-content: inherit;\n}\n.zd-menu.v-navigation-drawer--is-mobile div > .zd-menu-top-slot {\n display: block !important;\n}\n.zd-menu.theme--dark .v-list .v-list-item .v-list-item__title {\n color: var(--v--grey-lighten5);\n}\n.zd-menu.theme--dark .v-list .v-list-item .v-list-item__icon .v-icon {\n color: var(--v--grey-lighten5);\n}", map: undefined, media: undefined });
|
42516
42920
|
|
42517
42921
|
};
|
42518
42922
|
/* scoped */
|
@@ -48047,26 +48451,30 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48047
48451
|
let ZdTreeCheckbox = class ZdTreeCheckbox extends Vue__default["default"] {
|
48048
48452
|
get childrenCheck() {
|
48049
48453
|
var _a;
|
48050
|
-
return (_a = this.node.children) === null || _a === void 0 ? void 0 : _a.every((child) => child.
|
48454
|
+
return (_a = this.node.children) === null || _a === void 0 ? void 0 : _a.every((child) => child.data && child.data[this.checkedField]);
|
48051
48455
|
}
|
48052
48456
|
check() {
|
48053
|
-
this.node.
|
48457
|
+
if (!this.node.data)
|
48458
|
+
return;
|
48459
|
+
this.node.data[this.checkedField] = this.childrenCheck;
|
48054
48460
|
}
|
48055
48461
|
get isIndeterminate() {
|
48056
48462
|
var _a, _b;
|
48057
48463
|
let count = 0;
|
48058
48464
|
(_a = this.node.children) === null || _a === void 0 ? void 0 : _a.forEach((child) => {
|
48059
|
-
if (child.
|
48465
|
+
if (child.data && child.data[this.checkedField])
|
48060
48466
|
count += 1;
|
48061
48467
|
});
|
48062
48468
|
return (count > 0) && (count < (((_b = this.node.children) === null || _b === void 0 ? void 0 : _b.length) || 0));
|
48063
48469
|
}
|
48064
48470
|
checkboxToggle(node) {
|
48065
|
-
this.toggleChildren([node], !!node.
|
48471
|
+
this.toggleChildren([node], !!(node.data && node.data[this.checkedField]));
|
48066
48472
|
}
|
48067
48473
|
toggleChildren(nodes, value) {
|
48068
48474
|
nodes.forEach((node) => {
|
48069
|
-
node.
|
48475
|
+
if (!node.data)
|
48476
|
+
return;
|
48477
|
+
node.data[this.checkedField] = value;
|
48070
48478
|
if (node.children && node.children.length > 0)
|
48071
48479
|
this.toggleChildren(node.children, value);
|
48072
48480
|
});
|
@@ -48080,6 +48488,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48080
48488
|
vuePropertyDecorator.Prop({ type: [Object], default: () => [] }),
|
48081
48489
|
__metadata("design:type", Object)
|
48082
48490
|
], ZdTreeCheckbox.prototype, "node", void 0);
|
48491
|
+
__decorate([
|
48492
|
+
vuePropertyDecorator.Prop({ type: [String], default: 'checked' }),
|
48493
|
+
__metadata("design:type", String)
|
48494
|
+
], ZdTreeCheckbox.prototype, "checkedField", void 0);
|
48083
48495
|
__decorate([
|
48084
48496
|
vuePropertyDecorator.Watch('childrenCheck'),
|
48085
48497
|
__metadata("design:type", Function),
|
@@ -48107,7 +48519,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48107
48519
|
"on-icon": _vm.$getIcon("checkboxOn"),
|
48108
48520
|
"off-icon": _vm.$getIcon("checkboxOff"),
|
48109
48521
|
"indeterminate-icon": _vm.$getIcon("checkboxIndeterminate"),
|
48110
|
-
"input-value": _vm.node.
|
48522
|
+
"input-value": _vm.node.data[_vm.checkedField],
|
48111
48523
|
indeterminate: _vm.isIndeterminate,
|
48112
48524
|
},
|
48113
48525
|
on: {
|
@@ -48116,11 +48528,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48116
48528
|
},
|
48117
48529
|
},
|
48118
48530
|
model: {
|
48119
|
-
value: _vm.node.
|
48531
|
+
value: _vm.node.data[_vm.checkedField],
|
48120
48532
|
callback: function ($$v) {
|
48121
|
-
_vm.$set(_vm.node,
|
48533
|
+
_vm.$set(_vm.node.data, _vm.checkedField, $$v);
|
48122
48534
|
},
|
48123
|
-
expression: "node.
|
48535
|
+
expression: "node.data[checkedField]",
|
48124
48536
|
},
|
48125
48537
|
})
|
48126
48538
|
};
|
@@ -48130,7 +48542,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48130
48542
|
/* style */
|
48131
48543
|
const __vue_inject_styles__$4 = function (inject) {
|
48132
48544
|
if (!inject) return
|
48133
|
-
inject("data-v-
|
48545
|
+
inject("data-v-130a7c09_0", { source: ".zd-tree-checkbox {\n display: inline-block;\n top: 50%;\n transform: translate(0, -50%);\n}\n.zd-tree-checkbox > .v-input--selection-controls__input {\n margin-right: 0;\n}", map: undefined, media: undefined });
|
48134
48546
|
|
48135
48547
|
};
|
48136
48548
|
/* scoped */
|
@@ -48252,6 +48664,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48252
48664
|
mounted() {
|
48253
48665
|
this.instance.setTree(this.$refs.tree);
|
48254
48666
|
this.setAfterTitleMargin();
|
48667
|
+
this.nodeChange();
|
48255
48668
|
this.$watch('$refs.tree.nodes', this.nodeChange, { deep: true });
|
48256
48669
|
}
|
48257
48670
|
dataChange() {
|
@@ -48382,6 +48795,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48382
48795
|
vuePropertyDecorator.Prop({ type: String, default: '' }),
|
48383
48796
|
__metadata("design:type", String)
|
48384
48797
|
], ZdTree.prototype, "dataField", void 0);
|
48798
|
+
__decorate([
|
48799
|
+
vuePropertyDecorator.Prop({ type: String, default: 'checked' }),
|
48800
|
+
__metadata("design:type", String)
|
48801
|
+
], ZdTree.prototype, "checkedField", void 0);
|
48385
48802
|
__decorate([
|
48386
48803
|
vuePropertyDecorator.Prop({ type: [Boolean, String], default: false }),
|
48387
48804
|
__metadata("design:type", Boolean)
|
@@ -48485,7 +48902,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48485
48902
|
return [
|
48486
48903
|
_vm.instance.checkbox
|
48487
48904
|
? _c("zd-tree-checkbox", {
|
48488
|
-
attrs: {
|
48905
|
+
attrs: {
|
48906
|
+
node: _vm.instanceNode(node),
|
48907
|
+
checkedField: _vm.instance.checkedField,
|
48908
|
+
},
|
48489
48909
|
on: {
|
48490
48910
|
click: function ($event) {
|
48491
48911
|
return _vm.nodeCheck(node, $event)
|
@@ -48687,7 +49107,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48687
49107
|
/* style */
|
48688
49108
|
const __vue_inject_styles__$2 = function (inject) {
|
48689
49109
|
if (!inject) return
|
48690
|
-
inject("data-v-
|
49110
|
+
inject("data-v-58bd8c74_0", { source: ".zd-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-weight: normal;\n}\n.zd-tree.theme--light .sl-vue-tree-title {\n color: var(--zd-font-color);\n}\n.zd-tree.theme--light .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #eee;\n}\n.zd-tree.theme--dark .sl-vue-tree-title {\n color: #fff;\n}\n.zd-tree.theme--dark .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #616161;\n}\n.zd-tree .sl-vue-tree-title {\n display: flex;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node {\n padding-top: 3px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item {\n height: 30px;\n line-height: 30px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item {\n background-color: var(--current-row-color);\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item .sl-vue-tree-toggle .v-icon {\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-toggle span .v-icon {\n margin-right: -6px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-gap {\n width: 32px;\n}\n.zd-tree .item-title {\n padding-left: 6px;\n}\n.zd-tree .item-title.has-children {\n font-weight: 700;\n}\n.zd-tree .item-title.is-clickable {\n cursor: pointer;\n}", map: undefined, media: undefined });
|
48691
49111
|
|
48692
49112
|
};
|
48693
49113
|
/* scoped */
|
@@ -50950,6 +51370,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
50950
51370
|
VBreadcrumbs,
|
50951
51371
|
VBtn,
|
50952
51372
|
VBtnToggle,
|
51373
|
+
VCalendar,
|
50953
51374
|
VCard,
|
50954
51375
|
VCardActions,
|
50955
51376
|
VCardText,
|
@@ -50985,6 +51406,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
50985
51406
|
VMenu,
|
50986
51407
|
VNavigationDrawer,
|
50987
51408
|
VOverlay,
|
51409
|
+
VOtpInput,
|
50988
51410
|
VPagination,
|
50989
51411
|
VProgressCircular,
|
50990
51412
|
VProgressLinear,
|
@@ -51016,6 +51438,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
51016
51438
|
VTextField,
|
51017
51439
|
VTimePicker,
|
51018
51440
|
VTooltip,
|
51441
|
+
VToolbar,
|
51442
|
+
VToolbarItems,
|
51019
51443
|
VSimpleCheckbox,
|
51020
51444
|
},
|
51021
51445
|
});
|