@zeedhi/vuetify 1.56.0 → 1.58.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.esm.js +478 -325
- package/dist/zd-vuetify.umd.js +477 -324
- package/package.json +3 -3
- package/types/components/zd-grid/ZdGrid.d.ts +3 -2
- package/types/components/zd-iterable/ZdIterable.d.ts +1 -0
- package/types/components/zd-number/ZdNumber.d.ts +0 -1
- package/types/components/zd-select-multiple/ZdSelectMultiple.d.ts +5 -7
- package/types/components/zd-time/ZdTime.d.ts +0 -1
- package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +1 -0
package/dist/zd-vuetify.umd.js
CHANGED
@@ -894,7 +894,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
894
894
|
if (current !== val) {
|
895
895
|
current = val;
|
896
896
|
groups.push({
|
897
|
-
name: val
|
897
|
+
name: val !== null && val !== void 0 ? val : '',
|
898
898
|
items: []
|
899
899
|
});
|
900
900
|
}
|
@@ -2220,7 +2220,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
2220
2220
|
}
|
2221
2221
|
Vuetify.install = install$1;
|
2222
2222
|
Vuetify.installed = false;
|
2223
|
-
Vuetify.version = "2.6.
|
2223
|
+
Vuetify.version = "2.6.9";
|
2224
2224
|
Vuetify.config = {
|
2225
2225
|
silent: false
|
2226
2226
|
};
|
@@ -2531,9 +2531,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
2531
2531
|
options: {}
|
2532
2532
|
};
|
2533
2533
|
const observer = new IntersectionObserver((entries = [], observer) => {
|
2534
|
-
var
|
2534
|
+
var _a;
|
2535
2535
|
|
2536
|
-
const _observe = (
|
2536
|
+
const _observe = (_a = el._observe) === null || _a === void 0 ? void 0 : _a[vnode.context._uid];
|
2537
2537
|
|
2538
2538
|
if (!_observe) return; // Just in case, should never fire
|
2539
2539
|
|
@@ -2555,9 +2555,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
2555
2555
|
}
|
2556
2556
|
|
2557
2557
|
function unbind$4(el, binding, vnode) {
|
2558
|
-
var
|
2558
|
+
var _a;
|
2559
2559
|
|
2560
|
-
const observe = (
|
2560
|
+
const observe = (_a = el._observe) === null || _a === void 0 ? void 0 : _a[vnode.context._uid];
|
2561
2561
|
if (!observe) return;
|
2562
2562
|
observe.observer.unobserve(el);
|
2563
2563
|
delete el._observe[vnode.context._uid];
|
@@ -3194,9 +3194,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3194
3194
|
}
|
3195
3195
|
|
3196
3196
|
function unbind$3(el, binding, vnode) {
|
3197
|
-
var
|
3197
|
+
var _a;
|
3198
3198
|
|
3199
|
-
if (!((
|
3199
|
+
if (!((_a = el._onScroll) === null || _a === void 0 ? void 0 : _a[vnode.context._uid])) return;
|
3200
3200
|
const {
|
3201
3201
|
handler,
|
3202
3202
|
options,
|
@@ -3427,9 +3427,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3427
3427
|
unbind(el, binding, vnode) {
|
3428
3428
|
if (!el._clickOutside) return;
|
3429
3429
|
handleShadow(el, app => {
|
3430
|
-
var
|
3430
|
+
var _a;
|
3431
3431
|
|
3432
|
-
if (!app || !((
|
3432
|
+
if (!app || !((_a = el._clickOutside) === null || _a === void 0 ? void 0 : _a[vnode.context._uid])) return;
|
3433
3433
|
const {
|
3434
3434
|
onClick,
|
3435
3435
|
onMousedown
|
@@ -3460,9 +3460,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3460
3460
|
}
|
3461
3461
|
|
3462
3462
|
function unbind$2(el, binding, vnode) {
|
3463
|
-
var
|
3463
|
+
var _a;
|
3464
3464
|
|
3465
|
-
if (!((
|
3465
|
+
if (!((_a = el._onResize) === null || _a === void 0 ? void 0 : _a[vnode.context._uid])) return;
|
3466
3466
|
const {
|
3467
3467
|
callback,
|
3468
3468
|
options
|
@@ -4821,9 +4821,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
4821
4821
|
},
|
4822
4822
|
|
4823
4823
|
computedRipple() {
|
4824
|
-
var
|
4824
|
+
var _a;
|
4825
4825
|
|
4826
|
-
return (
|
4826
|
+
return (_a = this.ripple) !== null && _a !== void 0 ? _a : !this.disabled && this.isClickable;
|
4827
4827
|
},
|
4828
4828
|
|
4829
4829
|
isClickable() {
|
@@ -4863,7 +4863,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
4863
4863
|
[this.to ? 'nativeOn' : 'on']: { ...this.$listeners,
|
4864
4864
|
...('click' in this ? {
|
4865
4865
|
click: this.click
|
4866
|
-
} : undefined)
|
4866
|
+
} : undefined) // #14447
|
4867
|
+
|
4867
4868
|
},
|
4868
4869
|
ref: 'link'
|
4869
4870
|
};
|
@@ -5003,12 +5004,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
5003
5004
|
},
|
5004
5005
|
|
5005
5006
|
computedRipple() {
|
5006
|
-
var
|
5007
|
+
var _a;
|
5007
5008
|
|
5008
5009
|
const defaultRipple = this.icon || this.fab ? {
|
5009
5010
|
circle: true
|
5010
5011
|
} : true;
|
5011
|
-
if (this.disabled) return false;else return (
|
5012
|
+
if (this.disabled) return false;else return (_a = this.ripple) !== null && _a !== void 0 ? _a : defaultRipple;
|
5012
5013
|
},
|
5013
5014
|
|
5014
5015
|
hasBg() {
|
@@ -5939,8 +5940,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
5939
5940
|
},
|
5940
5941
|
|
5941
5942
|
getActivator(e) {
|
5942
|
-
var _activator;
|
5943
|
-
|
5944
5943
|
// If we've already fetched the activator, re-use
|
5945
5944
|
if (this.activatorElement) return this.activatorElement;
|
5946
5945
|
let activator = null;
|
@@ -5977,7 +5976,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
5977
5976
|
} // The activator should only be a valid element (Ignore comments and text nodes)
|
5978
5977
|
|
5979
5978
|
|
5980
|
-
this.activatorElement = (
|
5979
|
+
this.activatorElement = (activator === null || activator === void 0 ? void 0 : activator.nodeType) === Node.ELEMENT_NODE ? activator : null;
|
5981
5980
|
return this.activatorElement;
|
5982
5981
|
},
|
5983
5982
|
|
@@ -7082,9 +7081,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7082
7081
|
mouseLeaveHandler(e) {
|
7083
7082
|
// Prevent accidental re-activation
|
7084
7083
|
this.runDelay('close', () => {
|
7085
|
-
var
|
7084
|
+
var _a;
|
7086
7085
|
|
7087
|
-
if ((
|
7086
|
+
if ((_a = this.$refs.content) === null || _a === void 0 ? void 0 : _a.contains(e.relatedTarget)) return;
|
7088
7087
|
requestAnimationFrame(() => {
|
7089
7088
|
this.isActive = false;
|
7090
7089
|
this.callDeactivate();
|
@@ -7195,7 +7194,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7195
7194
|
name: 'v-simple-checkbox',
|
7196
7195
|
functional: true,
|
7197
7196
|
directives: {
|
7198
|
-
|
7197
|
+
Ripple
|
7199
7198
|
},
|
7200
7199
|
props: { ...Colorable.options.props,
|
7201
7200
|
...Themeable.options.props,
|
@@ -7240,6 +7239,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7240
7239
|
const ripple = h('div', Colorable.options.methods.setTextColor(props.color, {
|
7241
7240
|
staticClass: 'v-input--selection-controls__ripple',
|
7242
7241
|
directives: [{
|
7242
|
+
def: Ripple,
|
7243
7243
|
name: 'ripple',
|
7244
7244
|
value: {
|
7245
7245
|
center: true
|
@@ -7970,7 +7970,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7970
7970
|
updateMultiple(value) {
|
7971
7971
|
const defaultValue = Array.isArray(this.internalValue) ? this.internalValue : [];
|
7972
7972
|
const internalValue = defaultValue.slice();
|
7973
|
-
const index = internalValue.findIndex(val => val
|
7973
|
+
const index = internalValue.findIndex(val => this.valueComparator(val, value));
|
7974
7974
|
if (this.mandatory && // Item already exists
|
7975
7975
|
index > -1 && // value would be reduced below min
|
7976
7976
|
internalValue.length - 1 < 1) return;
|
@@ -7983,7 +7983,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7983
7983
|
},
|
7984
7984
|
|
7985
7985
|
updateSingle(value) {
|
7986
|
-
const isSame =
|
7986
|
+
const isSame = this.valueComparator(this.internalValue, value);
|
7987
7987
|
if (this.mandatory && isSame) return;
|
7988
7988
|
this.internalValue = isSame ? undefined : value;
|
7989
7989
|
}
|
@@ -8189,7 +8189,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
8189
8189
|
role: undefined
|
8190
8190
|
},
|
8191
8191
|
on: {
|
8192
|
-
mousedown: e => e.preventDefault()
|
8192
|
+
mousedown: e => e.preventDefault() // Prevent onBlur from being called
|
8193
|
+
|
8193
8194
|
}
|
8194
8195
|
};
|
8195
8196
|
return this.$createElement(VListItem, tile, [this.genTileContent(this.noDataText)]);
|
@@ -9463,9 +9464,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
9463
9464
|
},
|
9464
9465
|
|
9465
9466
|
isDirty() {
|
9466
|
-
var
|
9467
|
+
var _a;
|
9467
9468
|
|
9468
|
-
return ((
|
9469
|
+
return ((_a = this.lazyValue) === null || _a === void 0 ? void 0 : _a.toString().length) > 0 || this.badInput;
|
9469
9470
|
},
|
9470
9471
|
|
9471
9472
|
isEnclosed() {
|
@@ -9639,7 +9640,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
9639
9640
|
},
|
9640
9641
|
|
9641
9642
|
genCounter() {
|
9642
|
-
var
|
9643
|
+
var _a, _b, _c;
|
9643
9644
|
|
9644
9645
|
if (!this.hasCounter) return null;
|
9645
9646
|
const max = this.counter === true ? this.attrs$.maxlength : this.counter;
|
@@ -9649,9 +9650,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
9649
9650
|
max,
|
9650
9651
|
value: this.computedCounterValue
|
9651
9652
|
};
|
9652
|
-
return (
|
9653
|
+
return (_c = (_b = (_a = this.$scopedSlots).counter) === null || _b === void 0 ? void 0 : _b.call(_a, {
|
9653
9654
|
props
|
9654
|
-
}))
|
9655
|
+
})) !== null && _c !== void 0 ? _c : this.$createElement(VCounter, {
|
9655
9656
|
props
|
9656
9657
|
});
|
9657
9658
|
},
|
@@ -9983,9 +9984,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
9983
9984
|
},
|
9984
9985
|
|
9985
9986
|
computedCounterValue() {
|
9986
|
-
var
|
9987
|
+
var _a;
|
9987
9988
|
|
9988
|
-
const value = this.multiple ? this.selectedItems : ((
|
9989
|
+
const value = this.multiple ? this.selectedItems : ((_a = this.getText(this.selectedItems[0])) !== null && _a !== void 0 ? _a : '').toString();
|
9989
9990
|
|
9990
9991
|
if (typeof this.counterValue === 'function') {
|
9991
9992
|
return this.counterValue(value);
|
@@ -10091,9 +10092,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
10091
10092
|
|
10092
10093
|
if (this.multiple) {
|
10093
10094
|
this.$nextTick(() => {
|
10094
|
-
var
|
10095
|
+
var _a;
|
10095
10096
|
|
10096
|
-
(
|
10097
|
+
(_a = this.$refs.menu) === null || _a === void 0 ? void 0 : _a.updateDimensions();
|
10097
10098
|
});
|
10098
10099
|
}
|
10099
10100
|
},
|
@@ -10332,8 +10333,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
10332
10333
|
this.attach === true || // If bound to a boolean (<v-menu :attach="true">)
|
10333
10334
|
this.attach === 'attach' // If bound as boolean prop in pug (v-menu(attach))
|
10334
10335
|
) {
|
10335
|
-
|
10336
|
-
|
10336
|
+
props.attach = this.$el;
|
10337
|
+
} else {
|
10337
10338
|
props.attach = this.attach;
|
10338
10339
|
}
|
10339
10340
|
|
@@ -10462,9 +10463,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
10462
10463
|
this.keyboardLookupPrefix += e.key.toLowerCase();
|
10463
10464
|
this.keyboardLookupLastTime = now;
|
10464
10465
|
const index = this.allItems.findIndex(item => {
|
10465
|
-
var
|
10466
|
+
var _a;
|
10466
10467
|
|
10467
|
-
const text = ((
|
10468
|
+
const text = ((_a = this.getText(item)) !== null && _a !== void 0 ? _a : '').toString();
|
10468
10469
|
return text.toLowerCase().startsWith(this.keyboardLookupPrefix);
|
10469
10470
|
});
|
10470
10471
|
const item = this.allItems[index];
|
@@ -11055,13 +11056,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11055
11056
|
},
|
11056
11057
|
|
11057
11058
|
onCopy(event) {
|
11058
|
-
var
|
11059
|
+
var _a, _b;
|
11059
11060
|
|
11060
11061
|
if (this.selectedIndex === -1) return;
|
11061
11062
|
const currentItem = this.selectedItems[this.selectedIndex];
|
11062
11063
|
const currentItemText = this.getText(currentItem);
|
11063
|
-
(
|
11064
|
-
(
|
11064
|
+
(_a = event.clipboardData) === null || _a === void 0 ? void 0 : _a.setData('text/plain', currentItemText);
|
11065
|
+
(_b = event.clipboardData) === null || _b === void 0 ? void 0 : _b.setData('text/vnd.vuetify.autocomplete.item+plain', currentItemText);
|
11065
11066
|
event.preventDefault();
|
11066
11067
|
}
|
11067
11068
|
|
@@ -11727,7 +11728,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11727
11728
|
},
|
11728
11729
|
|
11729
11730
|
scrollListener(e) {
|
11730
|
-
if (
|
11731
|
+
if ('key' in e) {
|
11731
11732
|
if (['INPUT', 'TEXTAREA', 'SELECT'].includes(e.target.tagName) || // https://github.com/vuetifyjs/vuetify/issues/4715
|
11732
11733
|
e.target.isContentEditable) return;
|
11733
11734
|
const up = [keyCodes.up, keyCodes.pageup];
|
@@ -11903,15 +11904,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11903
11904
|
},
|
11904
11905
|
watch: {
|
11905
11906
|
isActive(val) {
|
11907
|
+
var _a;
|
11908
|
+
|
11906
11909
|
if (val) {
|
11907
11910
|
this.show();
|
11908
11911
|
this.hideScroll();
|
11909
11912
|
} else {
|
11910
|
-
var _this$previousActiveE;
|
11911
|
-
|
11912
11913
|
this.removeOverlay();
|
11913
11914
|
this.unbind();
|
11914
|
-
(
|
11915
|
+
(_a = this.previousActiveElement) === null || _a === void 0 ? void 0 : _a.focus();
|
11915
11916
|
}
|
11916
11917
|
},
|
11917
11918
|
|
@@ -11981,13 +11982,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11981
11982
|
|
11982
11983
|
this.$nextTick(() => {
|
11983
11984
|
this.$nextTick(() => {
|
11984
|
-
var
|
11985
|
-
|
11986
|
-
if (!((_this$$refs$dialog = this.$refs.dialog) != null && _this$$refs$dialog.contains(document.activeElement))) {
|
11987
|
-
var _this$$refs$dialog2;
|
11985
|
+
var _a, _b;
|
11988
11986
|
|
11987
|
+
if (!((_a = this.$refs.dialog) === null || _a === void 0 ? void 0 : _a.contains(document.activeElement))) {
|
11989
11988
|
this.previousActiveElement = document.activeElement;
|
11990
|
-
(
|
11989
|
+
(_b = this.$refs.dialog) === null || _b === void 0 ? void 0 : _b.focus();
|
11991
11990
|
}
|
11992
11991
|
|
11993
11992
|
this.bind();
|
@@ -12039,11 +12038,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12039
12038
|
this.activeZIndex >= this.getMaxZIndex() && // It isn't inside a dependent element (like a menu)
|
12040
12039
|
!this.getOpenDependentElements().some(el => el.contains(target)) // So we must have focused something outside the dialog and its children
|
12041
12040
|
) {
|
12042
|
-
|
12043
|
-
|
12044
|
-
|
12045
|
-
|
12046
|
-
|
12041
|
+
// Find and focus the first available element inside the dialog
|
12042
|
+
const focusable = this.$refs.dialog.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])');
|
12043
|
+
const el = [...focusable].find(el => !el.hasAttribute('disabled'));
|
12044
|
+
el && el.focus();
|
12045
|
+
}
|
12047
12046
|
},
|
12048
12047
|
|
12049
12048
|
genContent() {
|
@@ -12312,38 +12311,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12312
12311
|
name: 'mouse',
|
12313
12312
|
methods: {
|
12314
12313
|
getDefaultMouseEventHandlers(suffix, getEvent) {
|
12315
|
-
|
12316
|
-
[
|
12317
|
-
event:
|
12318
|
-
}
|
12314
|
+
const listeners = Object.keys(this.$listeners).filter(key => key.endsWith(suffix)).reduce((acc, key) => {
|
12315
|
+
acc[key] = {
|
12316
|
+
event: key.slice(0, -suffix.length)
|
12317
|
+
};
|
12318
|
+
return acc;
|
12319
|
+
}, {});
|
12320
|
+
return this.getMouseEventHandlers({ ...listeners,
|
12319
12321
|
['contextmenu' + suffix]: {
|
12320
12322
|
event: 'contextmenu',
|
12321
12323
|
prevent: true,
|
12322
12324
|
result: false
|
12323
|
-
},
|
12324
|
-
['mousedown' + suffix]: {
|
12325
|
-
event: 'mousedown'
|
12326
|
-
},
|
12327
|
-
['mousemove' + suffix]: {
|
12328
|
-
event: 'mousemove'
|
12329
|
-
},
|
12330
|
-
['mouseup' + suffix]: {
|
12331
|
-
event: 'mouseup'
|
12332
|
-
},
|
12333
|
-
['mouseenter' + suffix]: {
|
12334
|
-
event: 'mouseenter'
|
12335
|
-
},
|
12336
|
-
['mouseleave' + suffix]: {
|
12337
|
-
event: 'mouseleave'
|
12338
|
-
},
|
12339
|
-
['touchstart' + suffix]: {
|
12340
|
-
event: 'touchstart'
|
12341
|
-
},
|
12342
|
-
['touchmove' + suffix]: {
|
12343
|
-
event: 'touchmove'
|
12344
|
-
},
|
12345
|
-
['touchend' + suffix]: {
|
12346
|
-
event: 'touchend'
|
12347
12325
|
}
|
12348
12326
|
}, getEvent);
|
12349
12327
|
},
|
@@ -12359,6 +12337,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12359
12337
|
const key = prefix + eventOptions.event;
|
12360
12338
|
|
12361
12339
|
const handler = e => {
|
12340
|
+
var _a, _b;
|
12341
|
+
|
12362
12342
|
const mouseEvent = e;
|
12363
12343
|
|
12364
12344
|
if (eventOptions.button === undefined || mouseEvent.buttons > 0 && mouseEvent.button === eventOptions.button) {
|
@@ -12375,16 +12355,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12375
12355
|
|
12376
12356
|
|
12377
12357
|
if (e && 'touches' in e) {
|
12378
|
-
var _e$currentTarget, _e$target;
|
12379
|
-
|
12380
12358
|
const classSeparator = ' ';
|
12381
|
-
const eventTargetClasses = (
|
12359
|
+
const eventTargetClasses = (_a = e.currentTarget) === null || _a === void 0 ? void 0 : _a.className.split(classSeparator);
|
12382
12360
|
const currentTargets = document.elementsFromPoint(e.changedTouches[0].clientX, e.changedTouches[0].clientY); // Get "the same kind" current hovering target by checking
|
12383
12361
|
// If element has the same class of initial touch start element (which has touch event listener registered)
|
12384
12362
|
|
12385
12363
|
const currentTarget = currentTargets.find(t => t.className.split(classSeparator).some(c => eventTargetClasses.includes(c)));
|
12386
12364
|
|
12387
|
-
if (currentTarget && !((
|
12365
|
+
if (currentTarget && !((_b = e.target) === null || _b === void 0 ? void 0 : _b.isSameNode(currentTarget))) {
|
12388
12366
|
currentTarget.dispatchEvent(new TouchEvent(e.type, {
|
12389
12367
|
changedTouches: e.changedTouches,
|
12390
12368
|
targetTouches: e.targetTouches,
|
@@ -13982,7 +13960,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
13982
13960
|
},
|
13983
13961
|
|
13984
13962
|
genEvent(event, scopeInput, timedEvent, data) {
|
13985
|
-
var
|
13963
|
+
var _a;
|
13986
13964
|
|
13987
13965
|
const slot = this.$scopedSlots.event;
|
13988
13966
|
const text = this.eventTextColorFunction(event.input);
|
@@ -14027,7 +14005,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14027
14005
|
})),
|
14028
14006
|
directives: [{
|
14029
14007
|
name: 'ripple',
|
14030
|
-
value: (
|
14008
|
+
value: (_a = this.eventRipple) !== null && _a !== void 0 ? _a : true
|
14031
14009
|
}],
|
14032
14010
|
...data
|
14033
14011
|
})), slot ? slot(scope) : [this.genName(eventSummary)]);
|
@@ -14057,7 +14035,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14057
14035
|
},
|
14058
14036
|
|
14059
14037
|
genMore(day) {
|
14060
|
-
var
|
14038
|
+
var _a;
|
14061
14039
|
|
14062
14040
|
const eventHeight = this.eventHeight;
|
14063
14041
|
const eventMarginBottom = this.eventMarginBottom;
|
@@ -14072,7 +14050,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14072
14050
|
},
|
14073
14051
|
directives: [{
|
14074
14052
|
name: 'ripple',
|
14075
|
-
value: (
|
14053
|
+
value: (_a = this.eventRipple) !== null && _a !== void 0 ? _a : true
|
14076
14054
|
}],
|
14077
14055
|
on: this.getDefaultMouseEventHandlers(':more', nativeEvent => {
|
14078
14056
|
return {
|
@@ -14265,7 +14243,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14265
14243
|
|
14266
14244
|
genHead() {
|
14267
14245
|
return this.$createElement('div', {
|
14268
|
-
staticClass: 'v-calendar-weekly__head'
|
14246
|
+
staticClass: 'v-calendar-weekly__head',
|
14247
|
+
attrs: {
|
14248
|
+
role: 'row'
|
14249
|
+
}
|
14269
14250
|
}, this.genHeadDays());
|
14270
14251
|
},
|
14271
14252
|
|
@@ -14287,7 +14268,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14287
14268
|
return this.$createElement('div', this.setTextColor(color, {
|
14288
14269
|
key: day.date,
|
14289
14270
|
staticClass: 'v-calendar-weekly__head-weekday',
|
14290
|
-
class: this.getRelativeClasses(day, outside)
|
14271
|
+
class: this.getRelativeClasses(day, outside),
|
14272
|
+
attrs: {
|
14273
|
+
role: 'columnheader'
|
14274
|
+
}
|
14291
14275
|
}), this.weekdayFormatter(day, this.shortWeekdays));
|
14292
14276
|
},
|
14293
14277
|
|
@@ -14312,7 +14296,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14312
14296
|
|
14313
14297
|
return this.$createElement('div', {
|
14314
14298
|
key: week[0].date,
|
14315
|
-
staticClass: 'v-calendar-weekly__week'
|
14299
|
+
staticClass: 'v-calendar-weekly__week',
|
14300
|
+
attrs: {
|
14301
|
+
role: 'row'
|
14302
|
+
}
|
14316
14303
|
}, weekNodes);
|
14317
14304
|
},
|
14318
14305
|
|
@@ -14332,6 +14319,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14332
14319
|
key: day.date,
|
14333
14320
|
staticClass: 'v-calendar-weekly__day',
|
14334
14321
|
class: this.getRelativeClasses(day, outside),
|
14322
|
+
attrs: {
|
14323
|
+
role: 'cell'
|
14324
|
+
},
|
14335
14325
|
on: this.getDefaultMouseEventHandlers(':day', nativeEvent => {
|
14336
14326
|
return {
|
14337
14327
|
nativeEvent,
|
@@ -15347,6 +15337,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
15347
15337
|
weekdays,
|
15348
15338
|
categories
|
15349
15339
|
},
|
15340
|
+
attrs: {
|
15341
|
+
role: 'grid'
|
15342
|
+
},
|
15350
15343
|
directives: [{
|
15351
15344
|
modifiers: {
|
15352
15345
|
quiet: true
|
@@ -15580,7 +15573,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
15580
15573
|
},
|
15581
15574
|
|
15582
15575
|
genIcon(direction, icon, click) {
|
15583
|
-
var
|
15576
|
+
var _a, _b, _c;
|
15584
15577
|
|
15585
15578
|
const on = {
|
15586
15579
|
click: e => {
|
@@ -15592,10 +15585,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
15592
15585
|
const attrs = {
|
15593
15586
|
'aria-label': this.$vuetify.lang.t(`$vuetify.carousel.${direction}`)
|
15594
15587
|
};
|
15595
|
-
const children = (
|
15588
|
+
const children = (_c = (_b = (_a = this.$scopedSlots)[direction]) === null || _b === void 0 ? void 0 : _b.call(_a, {
|
15596
15589
|
on,
|
15597
15590
|
attrs
|
15598
|
-
}))
|
15591
|
+
})) !== null && _c !== void 0 ? _c : [this.$createElement(VBtn, {
|
15599
15592
|
props: {
|
15600
15593
|
icon: true
|
15601
15594
|
},
|
@@ -15844,7 +15837,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
15844
15837
|
icon: true,
|
15845
15838
|
small: true,
|
15846
15839
|
value: this.getValue(this.items[i], i)
|
15847
|
-
}
|
15840
|
+
},
|
15841
|
+
key: i
|
15848
15842
|
}, [this.$createElement(VIcon$1, {
|
15849
15843
|
props: {
|
15850
15844
|
size: 18
|
@@ -16559,14 +16553,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
16559
16553
|
} else {
|
16560
16554
|
let itemsLength = 0;
|
16561
16555
|
this.$on('hook:beforeUpdate', () => {
|
16562
|
-
var
|
16556
|
+
var _a;
|
16563
16557
|
|
16564
|
-
itemsLength = (((
|
16558
|
+
itemsLength = (((_a = this.$refs.content) === null || _a === void 0 ? void 0 : _a.children) || []).length;
|
16565
16559
|
});
|
16566
16560
|
this.$on('hook:updated', () => {
|
16567
|
-
var
|
16561
|
+
var _a;
|
16568
16562
|
|
16569
|
-
if (itemsLength === (((
|
16563
|
+
if (itemsLength === (((_a = this.$refs.content) === null || _a === void 0 ? void 0 : _a.children) || []).length) return;
|
16570
16564
|
this.setWidths();
|
16571
16565
|
});
|
16572
16566
|
}
|
@@ -17057,18 +17051,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
17057
17051
|
value: {
|
17058
17052
|
handler(v) {
|
17059
17053
|
this.internalValue = v;
|
17060
|
-
}
|
17054
|
+
},
|
17061
17055
|
|
17056
|
+
immediate: true
|
17062
17057
|
}
|
17063
17058
|
},
|
17064
17059
|
|
17065
|
-
// If done in as immediate in
|
17066
|
-
// value watcher, causes issues
|
17067
|
-
// with vue-test-utils
|
17068
|
-
beforeMount() {
|
17069
|
-
this.internalValue = this.value;
|
17070
|
-
},
|
17071
|
-
|
17072
17060
|
mounted() {
|
17073
17061
|
// Without a v-app, iOS does not work with body selectors
|
17074
17062
|
this.app = document.querySelector('[data-app]') || consoleWarn$1('Missing v-app or a non-body wrapping element with the [data-app] attribute', this);
|
@@ -17120,7 +17108,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
17120
17108
|
readonly: true,
|
17121
17109
|
tabindex: -1,
|
17122
17110
|
...this.$attrs
|
17123
|
-
}
|
17111
|
+
} // on: this.genListeners(), // TODO: do we need to attach the listeners to input?
|
17112
|
+
|
17124
17113
|
});
|
17125
17114
|
},
|
17126
17115
|
|
@@ -17256,13 +17245,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
17256
17245
|
},
|
17257
17246
|
|
17258
17247
|
onSliderMouseDown(e) {
|
17259
|
-
var
|
17248
|
+
var _a;
|
17260
17249
|
|
17261
17250
|
e.preventDefault();
|
17262
17251
|
this.oldValue = this.internalValue;
|
17263
17252
|
this.isActive = true;
|
17264
17253
|
|
17265
|
-
if ((
|
17254
|
+
if ((_a = e.target) === null || _a === void 0 ? void 0 : _a.matches('.v-slider__thumb-container, .v-slider__thumb-container *')) {
|
17266
17255
|
this.thumbPressed = true;
|
17267
17256
|
const domRect = e.target.getBoundingClientRect();
|
17268
17257
|
const touch = 'touches' in e ? e.touches[0] : e;
|
@@ -18785,10 +18774,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
18785
18774
|
},
|
18786
18775
|
|
18787
18776
|
onPaste(event) {
|
18788
|
-
var
|
18777
|
+
var _a;
|
18789
18778
|
|
18790
18779
|
if (!this.multiple || this.searchIsDirty) return;
|
18791
|
-
const pastedItemText = (
|
18780
|
+
const pastedItemText = (_a = event.clipboardData) === null || _a === void 0 ? void 0 : _a.getData('text/vnd.vuetify.autocomplete.item+plain');
|
18792
18781
|
|
18793
18782
|
if (pastedItemText && this.findExistingIndex(pastedItemText) === -1) {
|
18794
18783
|
event.preventDefault();
|
@@ -19390,13 +19379,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
19390
19379
|
props: {
|
19391
19380
|
disabled: disabled || this.disablePagination,
|
19392
19381
|
icon: true,
|
19393
|
-
text: true
|
19382
|
+
text: true // dark: this.dark, // TODO: add mixin
|
19383
|
+
// light: this.light // TODO: add mixin
|
19384
|
+
|
19394
19385
|
},
|
19395
19386
|
on: {
|
19396
19387
|
click
|
19397
19388
|
},
|
19398
19389
|
attrs: {
|
19399
|
-
'aria-label': label
|
19390
|
+
'aria-label': label // TODO: Localization
|
19391
|
+
|
19400
19392
|
}
|
19401
19393
|
}, [this.$createElement(VIcon$1, icon)]);
|
19402
19394
|
},
|
@@ -19799,13 +19791,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
19799
19791
|
},
|
19800
19792
|
methods: {
|
19801
19793
|
genSelectAll() {
|
19802
|
-
var
|
19794
|
+
var _a;
|
19803
19795
|
|
19804
19796
|
const data = {
|
19805
19797
|
props: {
|
19806
19798
|
value: this.everyItem,
|
19807
19799
|
indeterminate: !this.everyItem && this.someItems,
|
19808
|
-
color: (
|
19800
|
+
color: (_a = this.checkboxColor) !== null && _a !== void 0 ? _a : ''
|
19809
19801
|
},
|
19810
19802
|
on: {
|
19811
19803
|
input: v => this.$emit('toggle-select-all', v)
|
@@ -20095,9 +20087,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
20095
20087
|
// Types
|
20096
20088
|
|
20097
20089
|
function needsTd(slot) {
|
20098
|
-
var
|
20090
|
+
var _a;
|
20099
20091
|
|
20100
|
-
return slot.length !== 1 || !['td', 'th'].includes((
|
20092
|
+
return slot.length !== 1 || !['td', 'th'].includes((_a = slot[0]) === null || _a === void 0 ? void 0 : _a.tag);
|
20101
20093
|
}
|
20102
20094
|
|
20103
20095
|
var Row = Vue__default["default"].extend({
|
@@ -20440,6 +20432,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
20440
20432
|
}
|
20441
20433
|
|
20442
20434
|
return itemsPerPage;
|
20435
|
+
},
|
20436
|
+
|
20437
|
+
groupByText() {
|
20438
|
+
var _a, _b, _c;
|
20439
|
+
|
20440
|
+
return (_c = (_b = (_a = this.headers) === null || _a === void 0 ? void 0 : _a.find(header => {
|
20441
|
+
var _a;
|
20442
|
+
|
20443
|
+
return header.value === ((_a = this.internalGroupBy) === null || _a === void 0 ? void 0 : _a[0]);
|
20444
|
+
})) === null || _b === void 0 ? void 0 : _b.text) !== null && _c !== void 0 ? _c : '';
|
20443
20445
|
}
|
20444
20446
|
|
20445
20447
|
},
|
@@ -20633,7 +20635,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
20633
20635
|
const column = this.$createElement('td', {
|
20634
20636
|
staticClass: 'text-start',
|
20635
20637
|
attrs: this.colspanAttrs
|
20636
|
-
}, [toggle, `${
|
20638
|
+
}, [toggle, `${this.groupByText}: ${group}`, remove]);
|
20637
20639
|
children.unshift(this.$createElement('template', {
|
20638
20640
|
slot: 'column.header'
|
20639
20641
|
}, [column]));
|
@@ -20724,14 +20726,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
20724
20726
|
scopedSlots['data-table-select'] = slot ? () => slot({ ...data,
|
20725
20727
|
isMobile: this.isMobile
|
20726
20728
|
}) : () => {
|
20727
|
-
var
|
20729
|
+
var _a;
|
20728
20730
|
|
20729
20731
|
return this.$createElement(VSimpleCheckbox, {
|
20730
20732
|
staticClass: 'v-data-table__checkbox',
|
20731
20733
|
props: {
|
20732
20734
|
value: data.isSelected,
|
20733
20735
|
disabled: !this.isSelectable(item),
|
20734
|
-
color: (
|
20736
|
+
color: (_a = this.checkboxColor) !== null && _a !== void 0 ? _a : ''
|
20735
20737
|
},
|
20736
20738
|
on: {
|
20737
20739
|
input: val => data.select(val)
|
@@ -20797,9 +20799,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
20797
20799
|
},
|
20798
20800
|
|
20799
20801
|
genFoot(props) {
|
20800
|
-
var
|
20802
|
+
var _a, _b;
|
20801
20803
|
|
20802
|
-
return (
|
20804
|
+
return (_b = (_a = this.$scopedSlots).foot) === null || _b === void 0 ? void 0 : _b.call(_a, props);
|
20803
20805
|
},
|
20804
20806
|
|
20805
20807
|
genFooters(props) {
|
@@ -22221,7 +22223,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
22221
22223
|
type: {
|
22222
22224
|
type: String,
|
22223
22225
|
default: 'date',
|
22224
|
-
validator: type => ['date', 'month'].includes(type)
|
22226
|
+
validator: type => ['date', 'month'].includes(type) // TODO: year
|
22227
|
+
|
22225
22228
|
},
|
22226
22229
|
value: [Array, String],
|
22227
22230
|
weekdayFormat: Function,
|
@@ -24442,20 +24445,21 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24442
24445
|
|
24443
24446
|
value(val) {
|
24444
24447
|
this.lazyValue = val;
|
24445
|
-
this.otp = (val
|
24448
|
+
this.otp = (val === null || val === void 0 ? void 0 : val.split('')) || [];
|
24446
24449
|
}
|
24447
24450
|
|
24448
24451
|
},
|
24449
24452
|
|
24450
24453
|
created() {
|
24451
|
-
var
|
24452
|
-
|
24454
|
+
var _a;
|
24453
24455
|
/* istanbul ignore next */
|
24456
|
+
|
24457
|
+
|
24454
24458
|
if (this.$attrs.hasOwnProperty('browser-autocomplete')) {
|
24455
24459
|
breaking$1('browser-autocomplete', 'autocomplete', this);
|
24456
24460
|
}
|
24457
24461
|
|
24458
|
-
this.otp = ((
|
24462
|
+
this.otp = ((_a = this.internalValue) === null || _a === void 0 ? void 0 : _a.split('')) || [];
|
24459
24463
|
},
|
24460
24464
|
|
24461
24465
|
mounted() {
|
@@ -24571,8 +24575,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24571
24575
|
},
|
24572
24576
|
|
24573
24577
|
onFocus(e, otpIdx) {
|
24574
|
-
e
|
24575
|
-
e
|
24578
|
+
e === null || e === void 0 ? void 0 : e.preventDefault();
|
24579
|
+
e === null || e === void 0 ? void 0 : e.stopPropagation();
|
24576
24580
|
const elements = this.$refs.input;
|
24577
24581
|
const ref = this.$refs.input && elements[otpIdx || 0];
|
24578
24582
|
if (!ref) return;
|
@@ -24593,7 +24597,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24593
24597
|
const maxCursor = +this.length - 1;
|
24594
24598
|
const target = e.target;
|
24595
24599
|
const value = target.value;
|
24596
|
-
const inputDataArray = (value
|
24600
|
+
const inputDataArray = (value === null || value === void 0 ? void 0 : value.split('')) || [];
|
24597
24601
|
const newOtp = [...this.otp];
|
24598
24602
|
|
24599
24603
|
for (let i = 0; i < inputDataArray.length; i++) {
|
@@ -24868,7 +24872,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24868
24872
|
items() {
|
24869
24873
|
const totalVisible = parseInt(this.totalVisible, 10);
|
24870
24874
|
|
24871
|
-
if (totalVisible === 0) {
|
24875
|
+
if (totalVisible === 0 || isNaN(this.length) || this.length > Number.MAX_SAFE_INTEGER) {
|
24872
24876
|
return [];
|
24873
24877
|
}
|
24874
24878
|
|
@@ -25286,6 +25290,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
25286
25290
|
},
|
25287
25291
|
|
25288
25292
|
computedColor() {
|
25293
|
+
if (this.isDisabled) return undefined;
|
25289
25294
|
return Selectable.options.computed.computedColor.call(this);
|
25290
25295
|
},
|
25291
25296
|
|
@@ -25386,7 +25391,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
25386
25391
|
this.toggle();
|
25387
25392
|
},
|
25388
25393
|
|
25389
|
-
onKeydown: () => {}
|
25394
|
+
onKeydown: () => {} // Override default with noop
|
25395
|
+
|
25390
25396
|
},
|
25391
25397
|
|
25392
25398
|
render(h) {
|
@@ -25550,14 +25556,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
25550
25556
|
},
|
25551
25557
|
|
25552
25558
|
onSliderMouseDown(e) {
|
25553
|
-
var
|
25559
|
+
var _a;
|
25554
25560
|
|
25555
25561
|
const value = this.parseMouseMove(e);
|
25556
25562
|
this.reevaluateSelected(value);
|
25557
25563
|
this.oldValue = this.internalValue;
|
25558
25564
|
this.isActive = true;
|
25559
25565
|
|
25560
|
-
if ((
|
25566
|
+
if ((_a = e.target) === null || _a === void 0 ? void 0 : _a.matches('.v-slider__thumb-container, .v-slider__thumb-container *')) {
|
25561
25567
|
this.thumbPressed = true;
|
25562
25568
|
const domRect = e.target.getBoundingClientRect();
|
25563
25569
|
const touch = 'touches' in e ? e.touches[0] : e;
|
@@ -25958,10 +25964,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
25958
25964
|
|
25959
25965
|
if (type === bone) ; // Array of values - e.g. 'heading, paragraph, text@2'
|
25960
25966
|
else if (type.indexOf(',') > -1) return this.mapBones(type); // Array of values - e.g. 'paragraph@4'
|
25961
|
-
|
25962
|
-
|
25963
|
-
|
25964
|
-
|
25967
|
+
else if (type.indexOf('@') > -1) return this.genBones(type); // Array of values - e.g. 'card@2'
|
25968
|
+
else if (bone.indexOf(',') > -1) children = this.mapBones(bone); // Array of values - e.g. 'list-item@2'
|
25969
|
+
else if (bone.indexOf('@') > -1) children = this.genBones(bone); // Single value - e.g. 'card-heading'
|
25970
|
+
else if (bone) children.push(this.genStructure(bone));
|
25965
25971
|
|
25966
25972
|
return [this.genBone(type, children)];
|
25967
25973
|
},
|
@@ -26560,7 +26566,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
26560
26566
|
textAnchor: 'middle',
|
26561
26567
|
dominantBaseline: 'mathematical',
|
26562
26568
|
fill: 'currentColor'
|
26563
|
-
}
|
26569
|
+
} // TODO: TS 3.5 is too eager with the array type here
|
26570
|
+
|
26564
26571
|
}, children);
|
26565
26572
|
},
|
26566
26573
|
|
@@ -27869,9 +27876,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
27869
27876
|
watch: {
|
27870
27877
|
autoGrow(val) {
|
27871
27878
|
this.$nextTick(() => {
|
27872
|
-
var
|
27879
|
+
var _a;
|
27873
27880
|
|
27874
|
-
val ? this.calculateInputHeight() : (
|
27881
|
+
val ? this.calculateInputHeight() : (_a = this.$refs.input) === null || _a === void 0 ? void 0 : _a.style.removeProperty('height');
|
27875
27882
|
});
|
27876
27883
|
},
|
27877
27884
|
|
@@ -29035,7 +29042,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
29035
29042
|
isIndeterminate: false,
|
29036
29043
|
isLoading: false,
|
29037
29044
|
isOpen: false,
|
29038
|
-
isSelected: false
|
29045
|
+
isSelected: false // Node is selected (checkbox)
|
29046
|
+
|
29039
29047
|
}),
|
29040
29048
|
computed: {
|
29041
29049
|
disabled() {
|
@@ -29341,7 +29349,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
29341
29349
|
openAll: Boolean,
|
29342
29350
|
returnObject: {
|
29343
29351
|
type: Boolean,
|
29344
|
-
default: false
|
29352
|
+
default: false // TODO: Should be true in next major
|
29353
|
+
|
29345
29354
|
},
|
29346
29355
|
search: String,
|
29347
29356
|
value: {
|
@@ -29459,12 +29468,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
29459
29468
|
},
|
29460
29469
|
|
29461
29470
|
buildTree(items, parent = null) {
|
29462
|
-
|
29463
|
-
var _getObjectValueByPath;
|
29471
|
+
var _a;
|
29464
29472
|
|
29473
|
+
for (let i = 0; i < items.length; i++) {
|
29465
29474
|
const item = items[i];
|
29466
29475
|
const key = getObjectValueByPath(item, this.itemKey);
|
29467
|
-
const children = (
|
29476
|
+
const children = (_a = getObjectValueByPath(item, this.itemChildren)) !== null && _a !== void 0 ? _a : [];
|
29468
29477
|
const oldNode = this.nodes.hasOwnProperty(key) ? this.nodes[key] : {
|
29469
29478
|
isSelected: false,
|
29470
29479
|
isIndeterminate: false,
|
@@ -29943,9 +29952,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
29943
29952
|
unbind: function unbind(el, binding, vnode) {
|
29944
29953
|
if (!el._clickOutside) return;
|
29945
29954
|
handleShadow(el, function (app) {
|
29946
|
-
var
|
29955
|
+
var _a;
|
29947
29956
|
|
29948
|
-
if (!app || !((
|
29957
|
+
if (!app || !((_a = el._clickOutside) === null || _a === void 0 ? void 0 : _a[vnode.context._uid])) return;
|
29949
29958
|
var _el$_clickOutside$vno = el._clickOutside[vnode.context._uid],
|
29950
29959
|
onClick = _el$_clickOutside$vno.onClick,
|
29951
29960
|
onMousedown = _el$_clickOutside$vno.onMousedown;
|
@@ -29983,12 +29992,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
29983
29992
|
options = _ref.options;
|
29984
29993
|
|
29985
29994
|
var observer = new IntersectionObserver(function () {
|
29986
|
-
var _el$_observe;
|
29987
|
-
|
29988
29995
|
var entries = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
29989
29996
|
var observer = arguments.length > 1 ? arguments[1] : undefined;
|
29990
29997
|
|
29991
|
-
var
|
29998
|
+
var _a;
|
29999
|
+
|
30000
|
+
var _observe = (_a = el._observe) === null || _a === void 0 ? void 0 : _a[vnode.context._uid];
|
29992
30001
|
|
29993
30002
|
if (!_observe) return; // Just in case, should never fire
|
29994
30003
|
|
@@ -30012,9 +30021,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
30012
30021
|
}
|
30013
30022
|
|
30014
30023
|
function unbind(el, binding, vnode) {
|
30015
|
-
var
|
30024
|
+
var _a;
|
30016
30025
|
|
30017
|
-
var observe = (
|
30026
|
+
var observe = (_a = el._observe) === null || _a === void 0 ? void 0 : _a[vnode.context._uid];
|
30018
30027
|
if (!observe) return;
|
30019
30028
|
observe.observer.unobserve(el);
|
30020
30029
|
delete el._observe[vnode.context._uid];
|
@@ -30082,9 +30091,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
30082
30091
|
}
|
30083
30092
|
|
30084
30093
|
function unbind(el, binding, vnode) {
|
30085
|
-
var
|
30094
|
+
var _a;
|
30086
30095
|
|
30087
|
-
if (!((
|
30096
|
+
if (!((_a = el._mutate) === null || _a === void 0 ? void 0 : _a[vnode.context._uid])) return;
|
30088
30097
|
|
30089
30098
|
el._mutate[vnode.context._uid].observer.disconnect();
|
30090
30099
|
|
@@ -30126,9 +30135,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
30126
30135
|
}
|
30127
30136
|
|
30128
30137
|
function unbind(el, binding, vnode) {
|
30129
|
-
var
|
30138
|
+
var _a;
|
30130
30139
|
|
30131
|
-
if (!((
|
30140
|
+
if (!((_a = el._onResize) === null || _a === void 0 ? void 0 : _a[vnode.context._uid])) return;
|
30132
30141
|
var _el$_onResize$vnode$c = el._onResize[vnode.context._uid],
|
30133
30142
|
callback = _el$_onResize$vnode$c.callback,
|
30134
30143
|
options = _el$_onResize$vnode$c.options;
|
@@ -31191,7 +31200,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
31191
31200
|
if (current !== val) {
|
31192
31201
|
current = val;
|
31193
31202
|
groups.push({
|
31194
|
-
name: val
|
31203
|
+
name: val !== null && val !== void 0 ? val : '',
|
31195
31204
|
items: []
|
31196
31205
|
});
|
31197
31206
|
}
|
@@ -36844,7 +36853,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
36844
36853
|
exports.default = Vuetify;
|
36845
36854
|
Vuetify.install = install_1.install;
|
36846
36855
|
Vuetify.installed = false;
|
36847
|
-
Vuetify.version = "2.6.
|
36856
|
+
Vuetify.version = "2.6.9";
|
36848
36857
|
Vuetify.config = {
|
36849
36858
|
silent: false
|
36850
36859
|
};
|
@@ -37363,9 +37372,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
37363
37372
|
}
|
37364
37373
|
|
37365
37374
|
function unbind(el, binding, vnode) {
|
37366
|
-
var
|
37375
|
+
var _a;
|
37367
37376
|
|
37368
|
-
if (!((
|
37377
|
+
if (!((_a = el._onScroll) === null || _a === void 0 ? void 0 : _a[vnode.context._uid])) return;
|
37369
37378
|
var _el$_onScroll$vnode$c = el._onScroll[vnode.context._uid],
|
37370
37379
|
handler = _el$_onScroll$vnode$c.handler,
|
37371
37380
|
options = _el$_onScroll$vnode$c.options,
|
@@ -40437,9 +40446,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40437
40446
|
|
40438
40447
|
Prism.languages.jsonp=Prism.languages.extend("json",{punctuation:/[{}[\]();,.]/}),Prism.languages.insertBefore("jsonp","punctuation",{function:/(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*\()/});
|
40439
40448
|
|
40440
|
-
!function(e){var t="\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|GDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HOSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHONE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OSTYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRENT_DESKTOP|XDG_DATA_DIRS|XDG_GREETER_DATA_DIR|XDG_MENU_PREFIX|XDG_RUNTIME_DIR|XDG_SEAT|XDG_SEAT_PATH|XDG_SESSION_DESKTOP|XDG_SESSION_ID|XDG_SESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\b",
|
40449
|
+
!function(e){var t="\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|GDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HOSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHONE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OSTYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRENT_DESKTOP|XDG_DATA_DIRS|XDG_GREETER_DATA_DIR|XDG_MENU_PREFIX|XDG_RUNTIME_DIR|XDG_SEAT|XDG_SEAT_PATH|XDG_SESSION_DESKTOP|XDG_SESSION_ID|XDG_SESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\b",a={pattern:/(^(["']?)\w+\2)[ \t]+\S.*/,lookbehind:!0,alias:"punctuation",inside:null},n={bash:a,environment:{pattern:RegExp("\\$"+t),alias:"constant"},variable:[{pattern:/\$?\(\([\s\S]+?\)\)/,greedy:!0,inside:{variable:[{pattern:/(^\$\(\([\s\S]+)\)\)/,lookbehind:!0},/^\$\(\(/],number:/\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,operator:/--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,punctuation:/\(\(?|\)\)?|,|;/}},{pattern:/\$\((?:\([^)]+\)|[^()])+\)|`[^`]+`/,greedy:!0,inside:{variable:/^\$\(|^`|\)$|`$/}},{pattern:/\$\{[^}]+\}/,greedy:!0,inside:{operator:/:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,punctuation:/[\[\]]/,environment:{pattern:RegExp("(\\{)"+t),lookbehind:!0,alias:"constant"}}},/\$(?:\w+|[#?*!@$])/],entity:/\\(?:[abceEfnrtv\\"]|O?[0-7]{1,3}|U[0-9a-fA-F]{8}|u[0-9a-fA-F]{4}|x[0-9a-fA-F]{1,2})/};e.languages.bash={shebang:{pattern:/^#!\s*\/.*/,alias:"important"},comment:{pattern:/(^|[^"{\\$])#.*/,lookbehind:!0},"function-name":[{pattern:/(\bfunction\s+)[\w-]+(?=(?:\s*\(?:\s*\))?\s*\{)/,lookbehind:!0,alias:"function"},{pattern:/\b[\w-]+(?=\s*\(\s*\)\s*\{)/,alias:"function"}],"for-or-select":{pattern:/(\b(?:for|select)\s+)\w+(?=\s+in\s)/,alias:"variable",lookbehind:!0},"assign-left":{pattern:/(^|[\s;|&]|[<>]\()\w+(?:\.\w+)*(?=\+?=)/,inside:{environment:{pattern:RegExp("(^|[\\s;|&]|[<>]\\()"+t),lookbehind:!0,alias:"constant"}},alias:"variable",lookbehind:!0},parameter:{pattern:/(^|\s)-{1,2}(?:\w+:[+-]?)?\w+(?:\.\w+)*(?=[=\s]|$)/,alias:"variable",lookbehind:!0},string:[{pattern:/((?:^|[^<])<<-?\s*)(\w+)\s[\s\S]*?(?:\r?\n|\r)\2/,lookbehind:!0,greedy:!0,inside:n},{pattern:/((?:^|[^<])<<-?\s*)(["'])(\w+)\2\s[\s\S]*?(?:\r?\n|\r)\3/,lookbehind:!0,greedy:!0,inside:{bash:a}},{pattern:/(^|[^\\](?:\\\\)*)"(?:\\[\s\S]|\$\([^)]+\)|\$(?!\()|`[^`]+`|[^"\\`$])*"/,lookbehind:!0,greedy:!0,inside:n},{pattern:/(^|[^$\\])'[^']*'/,lookbehind:!0,greedy:!0},{pattern:/\$'(?:[^'\\]|\\[\s\S])*'/,greedy:!0,inside:{entity:n.entity}}],environment:{pattern:RegExp("\\$?"+t),alias:"constant"},variable:n.variable,function:{pattern:/(^|[\s;|&]|[<>]\()(?:add|apropos|apt|apt-cache|apt-get|aptitude|aspell|automysqlbackup|awk|basename|bash|bc|bconsole|bg|bzip2|cal|cargo|cat|cfdisk|chgrp|chkconfig|chmod|chown|chroot|cksum|clear|cmp|column|comm|composer|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|debootstrap|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|docker|docker-compose|du|egrep|eject|env|ethtool|expand|expect|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|git|gparted|grep|groupadd|groupdel|groupmod|groups|grub-mkconfig|gzip|halt|head|hg|history|host|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|ip|java|jobs|join|kill|killall|less|link|ln|locate|logname|logrotate|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|lynx|make|man|mc|mdadm|mkconfig|mkdir|mke2fs|mkfifo|mkfs|mkisofs|mknod|mkswap|mmv|more|most|mount|mtools|mtr|mutt|mv|nano|nc|netstat|nice|nl|node|nohup|notify-send|npm|nslookup|op|open|parted|passwd|paste|pathchk|ping|pkill|pnpm|podman|podman-compose|popd|pr|printcap|printenv|ps|pushd|pv|quota|quotacheck|quotactl|ram|rar|rcp|reboot|remsync|rename|renice|rev|rm|rmdir|rpm|rsync|scp|screen|sdiff|sed|sendmail|seq|service|sftp|sh|shellcheck|shuf|shutdown|sleep|slocate|sort|split|ssh|stat|strace|su|sudo|sum|suspend|swapon|sync|sysctl|tac|tail|tar|tee|time|timeout|top|touch|tr|traceroute|tsort|tty|umount|uname|unexpand|uniq|units|unrar|unshar|unzip|update-grub|uptime|useradd|userdel|usermod|users|uudecode|uuencode|v|vcpkg|vdir|vi|vim|virsh|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yarn|yes|zenity|zip|zsh|zypper)(?=$|[)\s;|&])/,lookbehind:!0},keyword:{pattern:/(^|[\s;|&]|[<>]\()(?:case|do|done|elif|else|esac|fi|for|function|if|in|select|then|until|while)(?=$|[)\s;|&])/,lookbehind:!0},builtin:{pattern:/(^|[\s;|&]|[<>]\()(?:\.|:|alias|bind|break|builtin|caller|cd|command|continue|declare|echo|enable|eval|exec|exit|export|getopts|hash|help|let|local|logout|mapfile|printf|pwd|read|readarray|readonly|return|set|shift|shopt|source|test|times|trap|type|typeset|ulimit|umask|unalias|unset)(?=$|[)\s;|&])/,lookbehind:!0,alias:"class-name"},boolean:{pattern:/(^|[\s;|&]|[<>]\()(?:false|true)(?=$|[)\s;|&])/,lookbehind:!0},"file-descriptor":{pattern:/\B&\d\b/,alias:"important"},operator:{pattern:/\d?<>|>\||\+=|=[=~]?|!=?|<<[<-]?|[&\d]?>>|\d[<>]&?|[<>][&=]?|&[>&]?|\|[&|]?/,inside:{"file-descriptor":{pattern:/^\d/,alias:"important"}}},punctuation:/\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,number:{pattern:/(^|\s)(?:[1-9]\d*|0)(?:[.,]\d+)?\b/,lookbehind:!0}},a.inside=e.languages.bash;for(var s=["comment","function-name","for-or-select","assign-left","parameter","string","environment","function","keyword","builtin","boolean","file-descriptor","operator","punctuation","number"],o=n.variable[1].inside,i=0;i<s.length;i++)o[s[i]]=e.languages.bash[s[i]];e.languages.sh=e.languages.bash,e.languages.shell=e.languages.bash;}(Prism);
|
40441
40450
|
|
40442
|
-
!function(e){var n=/\b(?:abstract|assert|boolean|break|byte|case|catch|char|class|const|continue|default|do|double|else|enum|exports|extends|final|finally|float|for|goto|if|implements|import|instanceof|int|interface|long|module|native|new|non-sealed|null|open|opens|package|permits|private|protected|provides|public|record(?!\s*[(){}[\]<>=%~.:,;?+\-*/&|^])|requires|return|sealed|short|static|strictfp|super|switch|synchronized|this|throw|throws|to|transient|transitive|try|uses|var|void|volatile|while|with|yield)\b/,t="(?:[a-z]\\w*\\s*\\.\\s*)*(?:[A-Z]\\w*\\s*\\.\\s*)*",s={pattern:RegExp("(^|[^\\w.])"+t+"[A-Z](?:[\\d_A-Z]*[a-z]\\w*)?\\b"),lookbehind:!0,inside:{namespace:{pattern:/^[a-z]\w*(?:\s*\.\s*[a-z]\w*)*(?:\s*\.)?/,inside:{punctuation:/\./}},punctuation:/\./}};e.languages.java=e.languages.extend("clike",{string:{pattern:/(^|[^\\])"(?:\\.|[^"\\\r\n])*"/,lookbehind:!0,greedy:!0},"class-name":[s,{pattern:RegExp("(^|[^\\w.])"+t+"[A-Z]\\w*(?=\\s+\\w+\\s*[;,=()]|\\s*(?:\\[[\\s,]*\\]\\s*)?::\\s*new\\b)"),lookbehind:!0,inside:s.inside},{pattern:RegExp("(\\b(?:class|enum|extends|implements|instanceof|interface|new|record|throws)\\s+)"+t+"[A-Z]\\w*\\b"),lookbehind:!0,inside:s.inside}],keyword:n,function:[e.languages.clike.function,{pattern:/(::\s*)[a-z_]\w*/,lookbehind:!0}],number:/\b0b[01][01_]*L?\b|\b0x(?:\.[\da-f_p+-]+|[\da-f_]+(?:\.[\da-f_p+-]+)?)\b|(?:\b\d[\d_]*(?:\.[\d_]*)?|\B\.\d[\d_]*)(?:e[+-]?\d[\d_]*)?[dfl]?/i,operator:{pattern:/(^|[^.])(?:<<=?|>>>?=?|->|--|\+\+|&&|\|\||::|[?:~]|[-+*/%&|^!=<>]=?)/m,lookbehind:!0}}),e.languages.insertBefore("java","string",{"triple-quoted-string":{pattern:/"""[ \t]*[\r\n](?:(?:"|"")?(?:\\.|[^"\\]))*"""/,greedy:!0,alias:"string"},char:{pattern:/'(?:\\.|[^'\\\r\n]){1,6}'/,greedy:!0}}),e.languages.insertBefore("java","class-name",{annotation:{pattern:/(^|[^.])@\w+(?:\s*\.\s*\w+)*/,lookbehind:!0,alias:"punctuation"},generics:{pattern:/<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&))*>)*>)*>)*>/,inside:{"class-name":s,keyword:n,punctuation:/[<>(),.:]/,operator:/[?&|]/}},import:[{pattern:RegExp("(\\bimport\\s+)"+t+"(?:[A-Z]\\w*|\\*)(?=\\s*;)"),lookbehind:!0,inside:{namespace:s.inside.namespace,punctuation:/\./,operator:/\*/,"class-name":/\w+/}},{pattern:RegExp("(\\bimport\\s+static\\s+)"+t+"(?:\\w+|\\*)(?=\\s*;)"),lookbehind:!0,alias:"static",inside:{namespace:s.inside.namespace,static:/\b\w+$/,punctuation:/\./,operator:/\*/,"class-name":/\w+/}}],namespace:{pattern:RegExp("(\\b(?:exports|import(?:\\s+static)?|module|open|opens|package|provides|requires|to|transitive|uses|with)\\s+)(?!<keyword>)[a-z]\\w*(?:\\.[a-z]\\w*)*\\.?".replace(/<keyword>/g,(function(){return n.source}))),lookbehind:!0,inside:{punctuation:/\./}}});}(Prism);
|
40451
|
+
!function(e){var n=/\b(?:abstract|assert|boolean|break|byte|case|catch|char|class|const|continue|default|do|double|else|enum|exports|extends|final|finally|float|for|goto|if|implements|import|instanceof|int|interface|long|module|native|new|non-sealed|null|open|opens|package|permits|private|protected|provides|public|record(?!\s*[(){}[\]<>=%~.:,;?+\-*/&|^])|requires|return|sealed|short|static|strictfp|super|switch|synchronized|this|throw|throws|to|transient|transitive|try|uses|var|void|volatile|while|with|yield)\b/,t="(?:[a-z]\\w*\\s*\\.\\s*)*(?:[A-Z]\\w*\\s*\\.\\s*)*",s={pattern:RegExp("(^|[^\\w.])"+t+"[A-Z](?:[\\d_A-Z]*[a-z]\\w*)?\\b"),lookbehind:!0,inside:{namespace:{pattern:/^[a-z]\w*(?:\s*\.\s*[a-z]\w*)*(?:\s*\.)?/,inside:{punctuation:/\./}},punctuation:/\./}};e.languages.java=e.languages.extend("clike",{string:{pattern:/(^|[^\\])"(?:\\.|[^"\\\r\n])*"/,lookbehind:!0,greedy:!0},"class-name":[s,{pattern:RegExp("(^|[^\\w.])"+t+"[A-Z]\\w*(?=\\s+\\w+\\s*[;,=()]|\\s*(?:\\[[\\s,]*\\]\\s*)?::\\s*new\\b)"),lookbehind:!0,inside:s.inside},{pattern:RegExp("(\\b(?:class|enum|extends|implements|instanceof|interface|new|record|throws)\\s+)"+t+"[A-Z]\\w*\\b"),lookbehind:!0,inside:s.inside}],keyword:n,function:[e.languages.clike.function,{pattern:/(::\s*)[a-z_]\w*/,lookbehind:!0}],number:/\b0b[01][01_]*L?\b|\b0x(?:\.[\da-f_p+-]+|[\da-f_]+(?:\.[\da-f_p+-]+)?)\b|(?:\b\d[\d_]*(?:\.[\d_]*)?|\B\.\d[\d_]*)(?:e[+-]?\d[\d_]*)?[dfl]?/i,operator:{pattern:/(^|[^.])(?:<<=?|>>>?=?|->|--|\+\+|&&|\|\||::|[?:~]|[-+*/%&|^!=<>]=?)/m,lookbehind:!0},constant:/\b[A-Z][A-Z_\d]+\b/}),e.languages.insertBefore("java","string",{"triple-quoted-string":{pattern:/"""[ \t]*[\r\n](?:(?:"|"")?(?:\\.|[^"\\]))*"""/,greedy:!0,alias:"string"},char:{pattern:/'(?:\\.|[^'\\\r\n]){1,6}'/,greedy:!0}}),e.languages.insertBefore("java","class-name",{annotation:{pattern:/(^|[^.])@\w+(?:\s*\.\s*\w+)*/,lookbehind:!0,alias:"punctuation"},generics:{pattern:/<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&))*>)*>)*>)*>/,inside:{"class-name":s,keyword:n,punctuation:/[<>(),.:]/,operator:/[?&|]/}},import:[{pattern:RegExp("(\\bimport\\s+)"+t+"(?:[A-Z]\\w*|\\*)(?=\\s*;)"),lookbehind:!0,inside:{namespace:s.inside.namespace,punctuation:/\./,operator:/\*/,"class-name":/\w+/}},{pattern:RegExp("(\\bimport\\s+static\\s+)"+t+"(?:\\w+|\\*)(?=\\s*;)"),lookbehind:!0,alias:"static",inside:{namespace:s.inside.namespace,static:/\b\w+$/,punctuation:/\./,operator:/\*/,"class-name":/\w+/}}],namespace:{pattern:RegExp("(\\b(?:exports|import(?:\\s+static)?|module|open|opens|package|provides|requires|to|transitive|uses|with)\\s+)(?!<keyword>)[a-z]\\w*(?:\\.[a-z]\\w*)*\\.?".replace(/<keyword>/g,(function(){return n.source}))),lookbehind:!0,inside:{punctuation:/\./}}});}(Prism);
|
40443
40452
|
|
40444
40453
|
!function(n){n.languages.kotlin=n.languages.extend("clike",{keyword:{pattern:/(^|[^.])\b(?:abstract|actual|annotation|as|break|by|catch|class|companion|const|constructor|continue|crossinline|data|do|dynamic|else|enum|expect|external|final|finally|for|fun|get|if|import|in|infix|init|inline|inner|interface|internal|is|lateinit|noinline|null|object|open|operator|out|override|package|private|protected|public|reified|return|sealed|set|super|suspend|tailrec|this|throw|to|try|typealias|val|var|vararg|when|where|while)\b/,lookbehind:!0},function:[{pattern:/(?:`[^\r\n`]+`|\b\w+)(?=\s*\()/,greedy:!0},{pattern:/(\.)(?:`[^\r\n`]+`|\w+)(?=\s*\{)/,lookbehind:!0,greedy:!0}],number:/\b(?:0[xX][\da-fA-F]+(?:_[\da-fA-F]+)*|0[bB][01]+(?:_[01]+)*|\d+(?:_\d+)*(?:\.\d+(?:_\d+)*)?(?:[eE][+-]?\d+(?:_\d+)*)?[fFL]?)\b/,operator:/\+[+=]?|-[-=>]?|==?=?|!(?:!|==?)?|[\/*%<>]=?|[?:]:?|\.\.|&&|\|\||\b(?:and|inv|or|shl|shr|ushr|xor)\b/}),delete n.languages.kotlin["class-name"];var e={"interpolation-punctuation":{pattern:/^\$\{?|\}$/,alias:"punctuation"},expression:{pattern:/[\s\S]+/,inside:n.languages.kotlin}};n.languages.insertBefore("kotlin","string",{"string-literal":[{pattern:/"""(?:[^$]|\$(?:(?!\{)|\{[^{}]*\}))*?"""/,alias:"multiline",inside:{interpolation:{pattern:/\$(?:[a-z_]\w*|\{[^{}]*\})/i,inside:e},string:/[\s\S]+/}},{pattern:/"(?:[^"\\\r\n$]|\\.|\$(?:(?!\{)|\{[^{}]*\}))*"/,alias:"singleline",inside:{interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$(?:[a-z_]\w*|\{[^{}]*\})/i,lookbehind:!0,inside:e},string:/[\s\S]+/}}],char:{pattern:/'(?:[^'\\\r\n]|\\(?:.|u[a-fA-F0-9]{0,4}))'/,greedy:!0}}),delete n.languages.kotlin.string,n.languages.insertBefore("kotlin","keyword",{annotation:{pattern:/\B@(?:\w+:)?(?:[A-Z]\w*|\[[^\]]+\])/,alias:"builtin"}}),n.languages.insertBefore("kotlin","function",{label:{pattern:/\b\w+@|@\w+\b/,alias:"symbol"}}),n.languages.kt=n.languages.kotlin,n.languages.kts=n.languages.kotlin;}(Prism);
|
40445
40454
|
|
@@ -41310,12 +41319,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41310
41319
|
return events;
|
41311
41320
|
}
|
41312
41321
|
setPlaceholder() {
|
41313
|
-
|
41322
|
+
const placeholder = this.$t(this.instance.placeholder);
|
41323
|
+
if (placeholder !== '') {
|
41314
41324
|
setTimeout(() => {
|
41315
|
-
|
41316
|
-
|
41317
|
-
input.setAttribute('placeholder', this.$refs.instance.$props.placeholder);
|
41318
|
-
}
|
41325
|
+
const input = this.$el.getElementsByTagName('input')[0];
|
41326
|
+
input.setAttribute('placeholder', placeholder);
|
41319
41327
|
}, 0);
|
41320
41328
|
}
|
41321
41329
|
}
|
@@ -41531,7 +41539,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41531
41539
|
/* style */
|
41532
41540
|
const __vue_inject_styles__$18 = function (inject) {
|
41533
41541
|
if (!inject) return
|
41534
|
-
inject("data-v-
|
41542
|
+
inject("data-v-b3892e98_0", { source: ".zd-text-input__affix, .v-input.zd-text-input.zd-text-input--suffix .v-input__append-inner > .zd-text-input__append .zd-text-input__append__suffix, .v-input.zd-text-input > .v-input__control > .v-input__slot .v-text-field__prefix {\n font-weight: var(--zd-font-body2-weight);\n color: var(--v-grey-lighten2);\n font-size: var(--zd-font-body2-size);\n line-height: 15px;\n padding: 3px 0 4px 0;\n}\n.zd-input.v-input.v-input--is-readonly > .v-input__control > .v-input__slot {\n background-color: var(--v-grey-lighten5);\n}\n.zd-input.v-input.v-input--is-readonly.theme--dark > .v-input__control > .v-input__slot {\n background-color: var(--v-grey-darken2);\n}\n.v-input.zd-text-input {\n padding-top: var(--spacing-4);\n}\n.v-input.zd-text-input .v-input__prepend-outer {\n margin-right: var(--spacing-1);\n}\n.v-input.zd-text-input .v-input__append-outer {\n margin-left: var(--spacing-1);\n}\n.v-input.zd-text-input .v-input__prepend-outer, .v-input.zd-text-input .v-input__append-outer {\n margin-top: calc(var(--spacing-7) / 2 - var(--icon-size) / 2);\n margin-bottom: calc(var(--spacing-7) / 2 - var(--icon-size) / 2);\n}\n.v-input.zd-text-input .v-input__append-inner, .v-input.zd-text-input .v-input__prepend-inner {\n padding: 0;\n margin: 0;\n align-self: unset;\n}\n.v-input.zd-text-input .v-input__prepend-outer .v-icon, .v-input.zd-text-input .v-input__append-outer .v-icon, .v-input.zd-text-input .v-input__append-inner .v-icon, .v-input.zd-text-input .v-input__prepend-inner .v-icon {\n font-size: var(--icon-size);\n}\n.v-input.zd-text-input > .v-input__control > .v-input__slot .v-text-field__prefix {\n padding-left: var(--spacing-2);\n}\n.v-input.zd-text-input > .v-input__control > .v-input__slot .v-text-field__slot {\n position: static;\n}\n.v-input.zd-text-input.v-text-field--reverse > .v-input__control > .v-input__slot label {\n left: auto !important;\n}\n.v-input.zd-text-input.zd-text-input--suffix .v-input__append-inner > .zd-text-input__append {\n align-items: center;\n display: inline-flex;\n flex: 1 0 auto;\n justify-content: center;\n}\n.v-input.zd-text-input.zd-text-input--suffix .v-input__append-inner > .zd-text-input__append .zd-text-input__append__suffix {\n padding-right: var(--spacing-2);\n}\n.v-input.zd-text-input.zd-text-input--prepend-icon > .v-input__control > .v-input__slot > .v-input__prepend-inner {\n padding: 0;\n}\n.v-input.zd-text-input.zd-text-input--append-icon > .v-input__control > .v-input__slot > .v-input__append-inner {\n padding: 0;\n}\n.v-input.zd-text-input.zd-dense .v-input__prepend-outer, .v-input.zd-text-input.zd-dense .v-input__append-outer {\n margin-top: calc(var(--icon-size) / 2 - var(--icon-size) / 2);\n margin-bottom: calc(var(--icon-size) / 2 - var(--icon-size) / 2);\n}\n.v-input.zd-text-input.zd-dense .v-input__prepend-outer .v-icon, .v-input.zd-text-input.zd-dense .v-input__append-outer .v-icon, .v-input.zd-text-input.zd-dense .v-input__append-inner .v-icon, .v-input.zd-text-input.zd-dense .v-input__prepend-inner .v-icon {\n font-size: var(--icon-size-small);\n}\n.v-input.zd-text-input.zd-dense .v-input__slot .v-text-field__prefix {\n height: auto;\n}\n.v-input.zd-text-input.zd-no-border:not(.error--text) .v-input__append-inner:last-child,\n.v-input.zd-text-input.zd-no-border:not(.error--text) .v-input__prepend-inner:first-child {\n margin: 0;\n}\n.v-input.zd-text-input.zd-no-border:not(.error--text) > .v-input__control > .v-input__slot input {\n padding: 0;\n}\n.v-input.zd-text-input.zd-text-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.v-input.zd-text-input.zd-color-type > .v-input__control > .v-input__slot input {\n padding: 0;\n cursor: pointer;\n max-height: 22px;\n}\n.v-input.zd-text-input.zd-color-type:not(.zd-dense) > .v-input__control > .v-input__slot input {\n max-height: 34px;\n}\n.v-input.zd-text-input.zd-text-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.v-input.zd-text-input.zd-text-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}", map: undefined, media: undefined });
|
41535
41543
|
|
41536
41544
|
};
|
41537
41545
|
/* scoped */
|
@@ -41569,13 +41577,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41569
41577
|
this.autoNumericInit = false;
|
41570
41578
|
}
|
41571
41579
|
mounted() {
|
41572
|
-
|
41573
|
-
|
41574
|
-
|
41575
|
-
|
41576
|
-
|
41577
|
-
this.instanceRef.lazyValue = inputRef.value;
|
41578
|
-
}
|
41580
|
+
if (this.createdFromObject)
|
41581
|
+
return;
|
41582
|
+
this.autoNumericInit = true;
|
41583
|
+
const inputRef = this.$el.getElementsByTagName('input')[0];
|
41584
|
+
this.instance.autoNumericObj = new common.AutoNumeric(inputRef, Object.assign(Object.assign({}, this.instance.mask), { emptyInputBehavior: 'null' }));
|
41579
41585
|
}
|
41580
41586
|
beforeDestroy() {
|
41581
41587
|
if (this.autoNumericInit) {
|
@@ -41632,7 +41638,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41632
41638
|
expression: "instance.isVisible",
|
41633
41639
|
},
|
41634
41640
|
],
|
41635
|
-
ref: "instance",
|
41636
41641
|
class: ["zd-number"],
|
41637
41642
|
attrs: {
|
41638
41643
|
id: _vm.instance.name,
|
@@ -41709,7 +41714,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41709
41714
|
var _h = _vm.$createElement;
|
41710
41715
|
var _c = _vm._self._c || _h;
|
41711
41716
|
return _c("zd-number", {
|
41712
|
-
ref: "instance",
|
41713
41717
|
attrs: {
|
41714
41718
|
id: _vm.instance.name,
|
41715
41719
|
name: "currency",
|
@@ -42229,17 +42233,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42229
42233
|
return !!key && key.length === 1;
|
42230
42234
|
}
|
42231
42235
|
onChangeDatePicker() {
|
42232
|
-
const textInput = this.$refs.
|
42236
|
+
const textInput = this.$refs.textInputInstance.$children[0];
|
42233
42237
|
this.instance.showDatePicker = false;
|
42234
42238
|
textInput.validate(false);
|
42235
42239
|
}
|
42236
42240
|
setFocus(selectAll = false) {
|
42237
|
-
const {
|
42241
|
+
const { textInputInstance } = this.$refs;
|
42238
42242
|
Vue__default["default"].nextTick(() => {
|
42239
|
-
|
42243
|
+
textInputInstance.focus();
|
42240
42244
|
if (selectAll) {
|
42241
42245
|
this.$nextTick(() => {
|
42242
|
-
|
42246
|
+
textInputInstance.$vnode.elm.getElementsByTagName('input')[0].select();
|
42243
42247
|
});
|
42244
42248
|
}
|
42245
42249
|
});
|
@@ -42429,7 +42433,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42429
42433
|
var on = ref.on;
|
42430
42434
|
return [
|
42431
42435
|
_c("zd-text-input", {
|
42432
|
-
ref: "
|
42436
|
+
ref: "textInputInstance",
|
42433
42437
|
attrs: {
|
42434
42438
|
name: _vm.instance.name + "_text-input",
|
42435
42439
|
mask: _vm.getDateMask,
|
@@ -42549,7 +42553,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42549
42553
|
/* style */
|
42550
42554
|
const __vue_inject_styles__$14 = function (inject) {
|
42551
42555
|
if (!inject) return
|
42552
|
-
inject("data-v-
|
42556
|
+
inject("data-v-18d527e8_0", { source: "div.v-picker--date .v-picker__body {\n background: transparent;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header {\n padding: var(--spacing-2) var(--spacing-4) var(--spacing-1) var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div button:not(:hover):not(:focus) {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-btn--icon {\n height: var(--icon-size);\n width: var(--icon-size);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value button {\n padding: 0;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table {\n margin-bottom: 12px;\n padding: 0 var(--spacing-4);\n height: 200px;\n margin-bottom: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table .v-btn.v-btn--active {\n color: var(--v-secondary-lighten4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--date .v-btn {\n width: 24px;\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month {\n padding-top: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month .v-btn {\n padding: 4px 0 7px 0;\n height: 24px;\n width: 56px;\n min-width: 56px;\n border-radius: var(--border);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month td {\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month tr:not(:last-child) td {\n padding-bottom: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table thead th {\n color: var(--zd-font-disabled-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent--text {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent {\n background: var(--zd-primary-base) !important;\n color: white !important;\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {\n color: var(--zd-primary-base) !important;\n}\n.zd-date-menu-activator .v-menu__activator.v-menu__activator--disabled {\n cursor: default;\n}\n.date-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.date-helper-values-button.with-label {\n margin-top: 20px;\n}\n.date-helper-values-option {\n cursor: pointer;\n}\n.date-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
|
42553
42557
|
|
42554
42558
|
};
|
42555
42559
|
/* scoped */
|
@@ -42654,17 +42658,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42654
42658
|
return !!key && key.length === 1;
|
42655
42659
|
}
|
42656
42660
|
onChangeDatePicker() {
|
42657
|
-
const textInput = this.$refs.
|
42661
|
+
const textInput = this.$refs.textInputInstance.$children[0];
|
42658
42662
|
textInput.validate(false);
|
42659
42663
|
this.instance.showDatePicker = false;
|
42660
42664
|
}
|
42661
42665
|
setFocus(selectAll = false) {
|
42662
|
-
const {
|
42666
|
+
const { textInputInstance } = this.$refs;
|
42663
42667
|
Vue__default["default"].nextTick(() => {
|
42664
|
-
|
42668
|
+
textInputInstance.focus();
|
42665
42669
|
if (selectAll) {
|
42666
42670
|
this.$nextTick(() => {
|
42667
|
-
|
42671
|
+
textInputInstance.$vnode.elm.getElementsByTagName('input')[0].select();
|
42668
42672
|
});
|
42669
42673
|
}
|
42670
42674
|
});
|
@@ -42852,7 +42856,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42852
42856
|
var on = ref.on;
|
42853
42857
|
return [
|
42854
42858
|
_c("zd-text-input", {
|
42855
|
-
ref: "
|
42859
|
+
ref: "textInputInstance",
|
42856
42860
|
attrs: {
|
42857
42861
|
name: _vm.instance.name + "_text-input",
|
42858
42862
|
mask: _vm.getDateMask,
|
@@ -42971,7 +42975,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42971
42975
|
/* style */
|
42972
42976
|
const __vue_inject_styles__$13 = function (inject) {
|
42973
42977
|
if (!inject) return
|
42974
|
-
inject("data-v-
|
42978
|
+
inject("data-v-6dab8268_0", { source: "div.v-picker--date .v-picker__body {\n background: transparent;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header {\n padding: var(--spacing-2) var(--spacing-4) var(--spacing-1) var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div button:not(:hover):not(:focus) {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-btn--icon {\n height: var(--icon-size);\n width: var(--icon-size);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value button {\n padding: 0;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table {\n margin-bottom: 12px;\n padding: 0 var(--spacing-4);\n height: 200px;\n margin-bottom: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table .v-btn.v-btn--active {\n color: var(--v-secondary-lighten4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--date .v-btn {\n width: 24px;\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month {\n padding-top: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month .v-btn {\n padding: 4px 0 7px 0;\n height: 24px;\n width: 56px;\n min-width: 56px;\n border-radius: var(--border);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month td {\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month tr:not(:last-child) td {\n padding-bottom: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table thead th {\n color: var(--zd-font-disabled-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent--text {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent {\n background: var(--zd-primary-base) !important;\n color: white !important;\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {\n color: var(--zd-primary-base) !important;\n}\n.zd-date-menu-activator .v-menu__activator.v-menu__activator--disabled {\n cursor: default;\n}\n.date-range-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.date-range-helper-values-button.with-label {\n margin-top: 20px;\n}\n.date-range-helper-values-option {\n cursor: pointer;\n}\n.date-range-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
|
42975
42979
|
|
42976
42980
|
};
|
42977
42981
|
/* scoped */
|
@@ -44684,6 +44688,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44684
44688
|
vuePropertyDecorator.Prop({ type: [Array, Boolean], default: false }),
|
44685
44689
|
__metadata("design:type", Object)
|
44686
44690
|
], ZdIterable.prototype, "virtualScroll", void 0);
|
44691
|
+
__decorate([
|
44692
|
+
vuePropertyDecorator.Prop({ type: [String, Boolean], default: () => { var _a; return ((_a = core.Config.iterableSearchVisibleOnly) !== null && _a !== void 0 ? _a : true); } }),
|
44693
|
+
__metadata("design:type", Object)
|
44694
|
+
], ZdIterable.prototype, "searchVisibleOnly", void 0);
|
44687
44695
|
ZdIterable = __decorate([
|
44688
44696
|
vuePropertyDecorator.Component
|
44689
44697
|
], ZdIterable);
|
@@ -44727,11 +44735,20 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44727
44735
|
const { scrollTop } = event.target;
|
44728
44736
|
const rows = Math.floor(scrollTop / grid.scrollData.rowHeight);
|
44729
44737
|
const data = grid.getVisibleData();
|
44730
|
-
const start = rows + grid.scrollData.perPage > data.length ? Math
|
44738
|
+
const start = rows + grid.scrollData.perPage > data.length ? Math
|
44739
|
+
.max(0, data.length - grid.scrollData.perPage) : rows;
|
44731
44740
|
grid.scrollData.start = start;
|
44732
44741
|
this.updateScrollData(data);
|
44733
44742
|
}), 5);
|
44734
44743
|
}
|
44744
|
+
update(value) {
|
44745
|
+
if (value) {
|
44746
|
+
this.initDragColumns();
|
44747
|
+
}
|
44748
|
+
else {
|
44749
|
+
this.destroyDragColumns();
|
44750
|
+
}
|
44751
|
+
}
|
44735
44752
|
mounted() {
|
44736
44753
|
this.setHeight();
|
44737
44754
|
if (this.instance.dragColumns) {
|
@@ -44752,24 +44769,29 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44752
44769
|
this.instance.height = `${window.innerHeight - padding}px`;
|
44753
44770
|
}
|
44754
44771
|
if (this.instance.height) {
|
44755
|
-
if (typeof this.instance.height === 'string'
|
44772
|
+
if (typeof this.instance.height === 'string'
|
44773
|
+
&& this.instance.height.slice(-1) === '%') {
|
44756
44774
|
const totalHeight = window.innerHeight - (headerHeight + footerHeight + padding);
|
44757
44775
|
this.instance.height = (parseFloat(this.instance.height) / 100) * totalHeight;
|
44758
44776
|
}
|
44759
44777
|
else {
|
44760
|
-
this.instance.height = parseFloat(this.instance.height)
|
44778
|
+
this.instance.height = parseFloat(this.instance.height)
|
44779
|
+
- (headerHeight + footerHeight);
|
44761
44780
|
}
|
44762
44781
|
}
|
44763
44782
|
if (this.instance.maxHeight) {
|
44764
|
-
const gridWrapper = grid.$el
|
44783
|
+
const gridWrapper = grid.$el
|
44784
|
+
.getElementsByClassName('v-data-table__wrapper');
|
44765
44785
|
if (gridWrapper.length) {
|
44766
|
-
if (typeof this.instance.maxHeight === 'string'
|
44786
|
+
if (typeof this.instance.maxHeight === 'string'
|
44787
|
+
&& this.instance.maxHeight.slice(-1) === '%') {
|
44767
44788
|
const totalHeight = window.innerHeight - (headerHeight + footerHeight + padding);
|
44768
44789
|
const maxHeight = `${(parseFloat(this.instance.maxHeight) / 100) * totalHeight}px`;
|
44769
44790
|
gridWrapper[0].style.maxHeight = maxHeight;
|
44770
44791
|
}
|
44771
44792
|
else {
|
44772
|
-
const maxHeight = `${parseFloat(this.instance.maxHeight)
|
44793
|
+
const maxHeight = `${parseFloat(this.instance.maxHeight)
|
44794
|
+
- (headerHeight + footerHeight)}px`;
|
44773
44795
|
gridWrapper[0].style.maxHeight = maxHeight;
|
44774
44796
|
}
|
44775
44797
|
}
|
@@ -44784,26 +44806,25 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44784
44806
|
setViewGetWidth() {
|
44785
44807
|
this.instance.columns.forEach((column) => {
|
44786
44808
|
column.setViewGetWidth(() => {
|
44787
|
-
const index = this.instance.columns
|
44809
|
+
const index = this.instance.columns
|
44810
|
+
.findIndex((col) => col.name === column.name);
|
44788
44811
|
const el = this.$el;
|
44789
|
-
const colEl = el.querySelector(
|
44812
|
+
const colEl = el.querySelector(`
|
44813
|
+
.zd-grid-table-header .zd-table-cell[index='${index}']
|
44814
|
+
`);
|
44790
44815
|
return (colEl === null || colEl === void 0 ? void 0 : colEl.clientWidth) || 0;
|
44791
44816
|
});
|
44792
44817
|
});
|
44793
44818
|
}
|
44794
44819
|
calcWidth(column, width) {
|
44795
|
-
if (width.indexOf('%') !== -1 && this.$el) {
|
44796
|
-
const percent = Number(width.replace('%', '')) / 100;
|
44820
|
+
if ((width === null || width === void 0 ? void 0 : width.indexOf('%')) !== -1 && this.$el) {
|
44821
|
+
const percent = Number(width === null || width === void 0 ? void 0 : width.replace('%', '')) / 100;
|
44797
44822
|
const tableWidth = this.$el.clientWidth;
|
44798
|
-
return `${Math
|
44823
|
+
return `${Math
|
44824
|
+
.max(this.minimumColumnWidth(column), Math
|
44825
|
+
.trunc(Number(tableWidth) * percent))}px`;
|
44799
44826
|
}
|
44800
|
-
return width;
|
44801
|
-
}
|
44802
|
-
calcHeaderCellWidth(column) {
|
44803
|
-
if (column.maxWidth || column.minWidth) {
|
44804
|
-
return this.calcWidth(column, column.maxWidth) || this.calcWidth(column, column.minWidth);
|
44805
|
-
}
|
44806
|
-
return 'unset';
|
44827
|
+
return width || '';
|
44807
44828
|
}
|
44808
44829
|
sortColumns(event) {
|
44809
44830
|
const { originalEvent } = event;
|
@@ -44826,7 +44847,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44826
44847
|
}
|
44827
44848
|
}
|
44828
44849
|
columnsTmp.splice(newIndex, 0, columnsTmp.splice(oldIndex, 1)[0]);
|
44829
|
-
this.instance.columns = columnsTmp
|
44850
|
+
this.instance.columns = columnsTmp
|
44851
|
+
.concat(this.instance.columns.filter((a) => !a.isVisible));
|
44830
44852
|
this.instance.changeLayout(event, this.$el);
|
44831
44853
|
}
|
44832
44854
|
getColumnsDOMOrder() {
|
@@ -44852,6 +44874,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44852
44874
|
});
|
44853
44875
|
}
|
44854
44876
|
}
|
44877
|
+
destroyDragColumns() {
|
44878
|
+
const tr = this.$el.querySelector('thead tr');
|
44879
|
+
if (tr) {
|
44880
|
+
Sortable__default["default"].create(tr, {
|
44881
|
+
onEnd: this.sortColumns,
|
44882
|
+
onMove: this.checkMove,
|
44883
|
+
handle: '.sortHandle',
|
44884
|
+
scroll: false,
|
44885
|
+
}).destroy();
|
44886
|
+
}
|
44887
|
+
}
|
44855
44888
|
resizeMouseDownHandler(column, event) {
|
44856
44889
|
this.resizeX = event.clientX;
|
44857
44890
|
this.resizeColumn = column;
|
@@ -44875,7 +44908,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44875
44908
|
event.preventDefault();
|
44876
44909
|
}
|
44877
44910
|
minimumColumnWidth(column) {
|
44878
|
-
|
44911
|
+
const MIN_WIDTH_WITH_SORTABLE_TRUE = 50;
|
44912
|
+
const MIN_WIDTH_WITH_SORTABLE_FALSE = 34;
|
44913
|
+
return (column && column.sortable)
|
44914
|
+
? MIN_WIDTH_WITH_SORTABLE_TRUE
|
44915
|
+
: MIN_WIDTH_WITH_SORTABLE_FALSE;
|
44879
44916
|
}
|
44880
44917
|
resizeMouseMoveHandler(event) {
|
44881
44918
|
// Determine how far the mouse has been moved
|
@@ -44884,8 +44921,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44884
44921
|
const width = Math.max(minimumColumnWidth, this.resizeWidth + dx);
|
44885
44922
|
if (this.resizeColumn) {
|
44886
44923
|
// Update the width of column
|
44887
|
-
this.resizeColumn.
|
44888
|
-
this.resizeColumn.maxWidth = this.resizeColumn.
|
44924
|
+
this.resizeColumn.width = `${width}px`;
|
44925
|
+
this.resizeColumn.maxWidth = this.resizeColumn.width;
|
44889
44926
|
}
|
44890
44927
|
if (this.resizeWidth + dx >= minimumColumnWidth) {
|
44891
44928
|
// Update the width of the table
|
@@ -44925,7 +44962,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44925
44962
|
}
|
44926
44963
|
selectRowClick(row, isSelected, event) {
|
44927
44964
|
this.$nextTick(() => {
|
44928
|
-
this.instance
|
44965
|
+
this.instance
|
44966
|
+
.selectClick(row, isSelected, event, this.$el);
|
44929
44967
|
});
|
44930
44968
|
}
|
44931
44969
|
selectAllClick(isSelected, event) {
|
@@ -44938,7 +44976,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44938
44976
|
}
|
44939
44977
|
isCurrentRow(row) {
|
44940
44978
|
const { uniqueKey } = this.instance.datasource;
|
44941
|
-
return row[uniqueKey]
|
44979
|
+
return row[uniqueKey]
|
44980
|
+
&& row[uniqueKey] === this.instance.datasource.currentRow[uniqueKey];
|
44942
44981
|
}
|
44943
44982
|
changeData() {
|
44944
44983
|
const visibleData = this.getData();
|
@@ -44949,7 +44988,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44949
44988
|
const searchableData = [...datasource.data];
|
44950
44989
|
const { uniqueKey } = this.instance.datasource;
|
44951
44990
|
this.instance.selectedRows = selectedRows.map((row) => {
|
44952
|
-
const index = searchableData
|
44991
|
+
const index = searchableData
|
44992
|
+
.findIndex((dataRow) => dataRow[uniqueKey] === row[uniqueKey]);
|
44953
44993
|
return index !== -1 ? searchableData.splice(index, 1)[0] : row;
|
44954
44994
|
});
|
44955
44995
|
if (this.instance.virtualScroll && !this.scrollData.initialized) {
|
@@ -44987,7 +45027,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44987
45027
|
const tableWrapperHeight = this.scrollData.tableWrapper.clientHeight;
|
44988
45028
|
const tableHeader = this.$el.querySelector('thead');
|
44989
45029
|
const tableHeaderHeight = tableHeader.clientHeight;
|
44990
|
-
this.scrollData.perPage = 10 + Math
|
45030
|
+
this.scrollData.perPage = 10 + Math
|
45031
|
+
.ceil((tableWrapperHeight - tableHeaderHeight)
|
45032
|
+
/ this.scrollData.rowHeight);
|
44991
45033
|
const data = this.getVisibleData();
|
44992
45034
|
this.updateScrollData(data);
|
44993
45035
|
}
|
@@ -44995,8 +45037,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44995
45037
|
return this.instance.datasource.data;
|
44996
45038
|
}
|
44997
45039
|
getData() {
|
44998
|
-
if (!this.instance.virtualScroll || !this.scrollData.initialized)
|
45040
|
+
if (!this.instance.virtualScroll || !this.scrollData.initialized) {
|
44999
45041
|
return this.instance.datasource.data;
|
45042
|
+
}
|
45000
45043
|
return this.renderedData;
|
45001
45044
|
}
|
45002
45045
|
get renderedData() {
|
@@ -45039,15 +45082,24 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45039
45082
|
}
|
45040
45083
|
};
|
45041
45084
|
__decorate([
|
45042
|
-
PropWatch({
|
45085
|
+
PropWatch({
|
45086
|
+
type: [Boolean, String],
|
45087
|
+
default: true,
|
45088
|
+
}),
|
45043
45089
|
__metadata("design:type", Object)
|
45044
45090
|
], ZdGrid.prototype, "dense", void 0);
|
45045
45091
|
__decorate([
|
45046
|
-
vuePropertyDecorator.Prop({
|
45092
|
+
vuePropertyDecorator.Prop({
|
45093
|
+
type: Array,
|
45094
|
+
default: () => ([]),
|
45095
|
+
}),
|
45047
45096
|
__metadata("design:type", Array)
|
45048
45097
|
], ZdGrid.prototype, "errorSlot", void 0);
|
45049
45098
|
__decorate([
|
45050
|
-
PropWatch({
|
45099
|
+
PropWatch({
|
45100
|
+
type: [Boolean, String],
|
45101
|
+
default: false,
|
45102
|
+
}),
|
45051
45103
|
__metadata("design:type", Object)
|
45052
45104
|
], ZdGrid.prototype, "fillHeight", void 0);
|
45053
45105
|
__decorate([
|
@@ -45055,8 +45107,24 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45055
45107
|
type: Array,
|
45056
45108
|
default: () => ([
|
45057
45109
|
{ name: '<<NAME>>_iterablePagination', component: 'ZdIterablePagination' },
|
45058
|
-
{
|
45059
|
-
|
45110
|
+
{
|
45111
|
+
name: '<<NAME>>_iterableInfoDiv',
|
45112
|
+
component: 'ZdTag',
|
45113
|
+
cssClass: 'zd-grid-div-footer',
|
45114
|
+
tag: 'div',
|
45115
|
+
children: [
|
45116
|
+
{
|
45117
|
+
name: '<<NAME>>_iterablePageSize',
|
45118
|
+
component: 'ZdIterablePageSize',
|
45119
|
+
iterableComponentName: '<<NAME>>',
|
45120
|
+
},
|
45121
|
+
{
|
45122
|
+
name: '<<NAME>>_iterablePageInfo',
|
45123
|
+
component: 'ZdIterablePageInfo',
|
45124
|
+
iterableComponentName: '<<NAME>>',
|
45125
|
+
},
|
45126
|
+
],
|
45127
|
+
},
|
45060
45128
|
]),
|
45061
45129
|
}),
|
45062
45130
|
__metadata("design:type", Array)
|
@@ -45066,27 +45134,45 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45066
45134
|
__metadata("design:type", String)
|
45067
45135
|
], ZdGrid.prototype, "headerBackground", void 0);
|
45068
45136
|
__decorate([
|
45069
|
-
PropWatch({
|
45137
|
+
PropWatch({
|
45138
|
+
type: String,
|
45139
|
+
default: '',
|
45140
|
+
}),
|
45070
45141
|
__metadata("design:type", String)
|
45071
45142
|
], ZdGrid.prototype, "headerCellTextColor", void 0);
|
45072
45143
|
__decorate([
|
45073
|
-
PropWatch({
|
45144
|
+
PropWatch({
|
45145
|
+
type: [Number, String],
|
45146
|
+
default: undefined,
|
45147
|
+
}),
|
45074
45148
|
__metadata("design:type", Object)
|
45075
45149
|
], ZdGrid.prototype, "height", void 0);
|
45076
45150
|
__decorate([
|
45077
|
-
PropWatch({
|
45151
|
+
PropWatch({
|
45152
|
+
type: [Number, String],
|
45153
|
+
default: undefined,
|
45154
|
+
}),
|
45078
45155
|
__metadata("design:type", Object)
|
45079
45156
|
], ZdGrid.prototype, "maxHeight", void 0);
|
45080
45157
|
__decorate([
|
45081
|
-
PropWatch({
|
45158
|
+
PropWatch({
|
45159
|
+
type: [Number, String],
|
45160
|
+
default: undefined,
|
45161
|
+
}),
|
45082
45162
|
__metadata("design:type", Object)
|
45083
45163
|
], ZdGrid.prototype, "gridHeight", void 0);
|
45084
45164
|
__decorate([
|
45085
|
-
PropWatch({
|
45165
|
+
PropWatch({
|
45166
|
+
type: [Number, String],
|
45167
|
+
default: undefined,
|
45168
|
+
}),
|
45086
45169
|
__metadata("design:type", Object)
|
45087
45170
|
], ZdGrid.prototype, "gridMaxHeight", void 0);
|
45088
45171
|
__decorate([
|
45089
|
-
vuePropertyDecorator.Prop({
|
45172
|
+
vuePropertyDecorator.Prop({
|
45173
|
+
type: [String, Function],
|
45174
|
+
default: undefined,
|
45175
|
+
}),
|
45090
45176
|
__metadata("design:type", Object)
|
45091
45177
|
], ZdGrid.prototype, "disableSelection", void 0);
|
45092
45178
|
__decorate([
|
@@ -45118,27 +45204,45 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45118
45204
|
__metadata("design:type", Array)
|
45119
45205
|
], ZdGrid.prototype, "noResultSlot", void 0);
|
45120
45206
|
__decorate([
|
45121
|
-
PropWatch({
|
45207
|
+
PropWatch({
|
45208
|
+
type: [Boolean, String],
|
45209
|
+
default: false,
|
45210
|
+
}),
|
45122
45211
|
__metadata("design:type", Object)
|
45123
45212
|
], ZdGrid.prototype, "selectable", void 0);
|
45124
45213
|
__decorate([
|
45125
|
-
PropWatch({
|
45214
|
+
PropWatch({
|
45215
|
+
type: [Boolean, String],
|
45216
|
+
default: true,
|
45217
|
+
}),
|
45126
45218
|
__metadata("design:type", Object)
|
45127
45219
|
], ZdGrid.prototype, "showFooter", void 0);
|
45128
45220
|
__decorate([
|
45129
|
-
PropWatch({
|
45221
|
+
PropWatch({
|
45222
|
+
type: [Boolean, String],
|
45223
|
+
default: true,
|
45224
|
+
}),
|
45130
45225
|
__metadata("design:type", Object)
|
45131
45226
|
], ZdGrid.prototype, "showHeader", void 0);
|
45132
45227
|
__decorate([
|
45133
|
-
PropWatch({
|
45228
|
+
PropWatch({
|
45229
|
+
type: [Boolean, String],
|
45230
|
+
default: false,
|
45231
|
+
}),
|
45134
45232
|
__metadata("design:type", Object)
|
45135
45233
|
], ZdGrid.prototype, "dragColumns", void 0);
|
45136
45234
|
__decorate([
|
45137
|
-
PropWatch({
|
45235
|
+
PropWatch({
|
45236
|
+
type: [Boolean, String],
|
45237
|
+
default: false,
|
45238
|
+
}),
|
45138
45239
|
__metadata("design:type", Object)
|
45139
45240
|
], ZdGrid.prototype, "resizeColumns", void 0);
|
45140
45241
|
__decorate([
|
45141
|
-
PropWatch({
|
45242
|
+
PropWatch({
|
45243
|
+
type: [Boolean, String],
|
45244
|
+
default: true,
|
45245
|
+
}),
|
45142
45246
|
__metadata("design:type", Object)
|
45143
45247
|
], ZdGrid.prototype, "showSelectAll", void 0);
|
45144
45248
|
__decorate([
|
@@ -45148,6 +45252,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45148
45252
|
}),
|
45149
45253
|
__metadata("design:type", Array)
|
45150
45254
|
], ZdGrid.prototype, "toolbarSlot", void 0);
|
45255
|
+
__decorate([
|
45256
|
+
vuePropertyDecorator.Watch('instance.dragColumns'),
|
45257
|
+
__metadata("design:type", Function),
|
45258
|
+
__metadata("design:paramtypes", [Boolean]),
|
45259
|
+
__metadata("design:returntype", void 0)
|
45260
|
+
], ZdGrid.prototype, "update", null);
|
45151
45261
|
ZdGrid = __decorate([
|
45152
45262
|
Component__default["default"]
|
45153
45263
|
], ZdGrid);
|
@@ -45338,7 +45448,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45338
45448
|
staticClass: "zd-table-header-cell",
|
45339
45449
|
style: {
|
45340
45450
|
width:
|
45341
|
-
_vm.
|
45451
|
+
_vm.calcWidth(
|
45452
|
+
column,
|
45453
|
+
column.maxWidth || column.minWidth
|
45454
|
+
) || "unset",
|
45342
45455
|
color:
|
45343
45456
|
_vm.instance.headerCellTextColor,
|
45344
45457
|
},
|
@@ -45754,6 +45867,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45754
45867
|
: "",
|
45755
45868
|
],
|
45756
45869
|
style: {
|
45870
|
+
width:
|
45871
|
+
_vm.calcWidth(
|
45872
|
+
column,
|
45873
|
+
column.width
|
45874
|
+
) || "unset",
|
45757
45875
|
"min-width":
|
45758
45876
|
_vm.calcWidth(
|
45759
45877
|
column,
|
@@ -45828,6 +45946,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45828
45946
|
_vm._b(
|
45829
45947
|
{
|
45830
45948
|
key:
|
45949
|
+
"" +
|
45831
45950
|
child.name +
|
45832
45951
|
_vm.rowKey(item),
|
45833
45952
|
tag: "component",
|
@@ -45948,7 +46067,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45948
46067
|
/* style */
|
45949
46068
|
const __vue_inject_styles__$W = function (inject) {
|
45950
46069
|
if (!inject) return
|
45951
|
-
inject("data-v-
|
46070
|
+
inject("data-v-5e41fd76_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined });
|
45952
46071
|
|
45953
46072
|
};
|
45954
46073
|
/* scoped */
|
@@ -46037,10 +46156,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
46037
46156
|
return;
|
46038
46157
|
}
|
46039
46158
|
if (col.maxWidth) {
|
46040
|
-
element.style.width = this.calcWidth(col, col.maxWidth);
|
46159
|
+
element.style.width = this.calcWidth(col, col.maxWidth || '');
|
46041
46160
|
}
|
46042
46161
|
else if (col.minWidth) {
|
46043
|
-
element.style.width = this.calcWidth(col, col.minWidth);
|
46162
|
+
element.style.width = this.calcWidth(col, col.minWidth || '');
|
46044
46163
|
}
|
46045
46164
|
else {
|
46046
46165
|
element.style.width = `${element.clientWidth}px`;
|
@@ -46311,7 +46430,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
46311
46430
|
staticClass: "zd-table-header-cell",
|
46312
46431
|
style: {
|
46313
46432
|
width:
|
46314
|
-
_vm.
|
46433
|
+
_vm.calcWidth(
|
46434
|
+
column,
|
46435
|
+
column.maxWidth || column.minWidth
|
46436
|
+
) || "unset",
|
46315
46437
|
},
|
46316
46438
|
},
|
46317
46439
|
[
|
@@ -47100,8 +47222,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
47100
47222
|
/* style */
|
47101
47223
|
const __vue_inject_styles__$V = function (inject) {
|
47102
47224
|
if (!inject) return
|
47103
|
-
inject("data-v-
|
47104
|
-
,inject("data-v-
|
47225
|
+
inject("data-v-3833beae_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
47226
|
+
,inject("data-v-3833beae_1", { source: ".zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-inline-edit {\n justify-content: flex-end;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-inline-edit {\n justify-content: center;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon {\n display: flex;\n font-size: 18px;\n margin-right: var(--spacing-1);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
|
47105
47227
|
|
47106
47228
|
};
|
47107
47229
|
/* scoped */
|
@@ -47491,8 +47613,24 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
47491
47613
|
type: Array,
|
47492
47614
|
default: () => ([
|
47493
47615
|
{ name: '<<NAME>>_iterablePagination', component: 'ZdIterablePagination' },
|
47494
|
-
{
|
47495
|
-
|
47616
|
+
{
|
47617
|
+
name: '<<NAME>>_iterableInfoDiv',
|
47618
|
+
component: 'ZdTag',
|
47619
|
+
cssClass: 'zd-grid-div-footer',
|
47620
|
+
tag: 'div',
|
47621
|
+
children: [
|
47622
|
+
{
|
47623
|
+
name: '<<NAME>>_iterablePageSize',
|
47624
|
+
component: 'ZdIterablePageSize',
|
47625
|
+
iterableComponentName: '<<NAME>>',
|
47626
|
+
},
|
47627
|
+
{
|
47628
|
+
name: '<<NAME>>_iterablePageInfo',
|
47629
|
+
component: 'ZdIterablePageInfo',
|
47630
|
+
iterableComponentName: '<<NAME>>',
|
47631
|
+
},
|
47632
|
+
],
|
47633
|
+
},
|
47496
47634
|
]),
|
47497
47635
|
}),
|
47498
47636
|
__metadata("design:type", Array)
|
@@ -48198,7 +48336,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48198
48336
|
var _h = _vm.$createElement;
|
48199
48337
|
var _c = _vm._self._c || _h;
|
48200
48338
|
return _c("zd-number", {
|
48201
|
-
ref: "instance",
|
48202
48339
|
class: ["zd-increment"],
|
48203
48340
|
attrs: {
|
48204
48341
|
id: _vm.instance.name,
|
@@ -48213,7 +48350,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48213
48350
|
/* style */
|
48214
48351
|
const __vue_inject_styles__$O = function (inject) {
|
48215
48352
|
if (!inject) return
|
48216
|
-
inject("data-v-
|
48353
|
+
inject("data-v-30a77ca4_0", { source: ".zd-increment.align-right > .v-input__control > .v-input__slot {\n width: 120px;\n}\n.zd-increment.align-right > .v-input__control > .v-input__slot input {\n text-align: center;\n}", map: undefined, media: undefined });
|
48217
48354
|
|
48218
48355
|
};
|
48219
48356
|
/* scoped */
|
@@ -48553,7 +48690,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48553
48690
|
}
|
48554
48691
|
lengthChange(newLength) {
|
48555
48692
|
if (this.instance.maxButtons && newLength > 0) {
|
48556
|
-
if ((this.lastLength || this.lastLength === 0)
|
48693
|
+
if ((this.lastLength || this.lastLength === 0)
|
48694
|
+
&& newLength > this.lastLength) {
|
48557
48695
|
// allow pagination to grow before updating width
|
48558
48696
|
this.growPagination();
|
48559
48697
|
}
|
@@ -48577,7 +48715,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48577
48715
|
this.$nextTick(() => {
|
48578
48716
|
let maxWidth = this.paginationComponent.$el.clientWidth + 17;
|
48579
48717
|
// if parent element isn't using 100% of width, makes actual width the maxWidth
|
48580
|
-
maxWidth = this.element.clientWidth < maxWidth
|
48718
|
+
maxWidth = this.element.clientWidth < maxWidth
|
48719
|
+
? this.element.clientWidth : maxWidth;
|
48581
48720
|
this.element.style.maxWidth = `${maxWidth}px`;
|
48582
48721
|
this.paginationComponent.onResize();
|
48583
48722
|
});
|
@@ -48661,7 +48800,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48661
48800
|
/* style */
|
48662
48801
|
const __vue_inject_styles__$L = function (inject) {
|
48663
48802
|
if (!inject) return
|
48664
|
-
inject("data-v-
|
48803
|
+
inject("data-v-1c1dc78c_0", { source: ".zd-iterable-pagination {\n padding: 0;\n max-width: 100%;\n margin-left: 0;\n display: flex;\n gap: 0;\n align-items: center;\n}\n.zd-iterable-pagination .v-pagination {\n width: auto;\n}\n.zd-iterable-pagination .v-pagination.theme--dark .v-pagination__item--active {\n color: #fff;\n background: #282828 !important;\n border-color: #282828 !important;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__item, .zd-iterable-pagination .v-pagination .v-pagination__navigation {\n box-shadow: none;\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n background-color: transparent;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__item, .zd-iterable-pagination .v-pagination .v-pagination__navigation, .zd-iterable-pagination .v-pagination .v-pagination__more {\n margin: 0 var(--spacing-1);\n height: 2rem;\n width: 2rem;\n white-space: nowrap;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__navigation {\n border: solid var(--regular) var(--v-grey-lighten3);\n}\n.zd-iterable-pagination .v-pagination .v-pagination__navigation .v-icon {\n font-size: var(--icon-size);\n}\n.zd-iterable-pagination .v-pagination li:first-child .v-pagination__navigation {\n margin: 0 var(--spacing-1) 0 0;\n}\n.zd-iterable-pagination .v-pagination li:last-child .v-pagination__navigation {\n margin: 0 0 0 var(--spacing-1);\n}", map: undefined, media: undefined });
|
48665
48804
|
|
48666
48805
|
};
|
48667
48806
|
/* scoped */
|
@@ -48703,12 +48842,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48703
48842
|
}
|
48704
48843
|
mounted() {
|
48705
48844
|
this.componentRef = this.$refs.instance;
|
48845
|
+
if (!this.componentRef)
|
48846
|
+
return;
|
48706
48847
|
this.originalOnScroll = this.componentRef.onScroll;
|
48707
48848
|
this.componentRef.onScroll = this.onScroll;
|
48708
48849
|
this.applyAutofocus();
|
48709
48850
|
}
|
48710
48851
|
applyAutofocus() {
|
48711
|
-
if (this.instance.autofocus) {
|
48852
|
+
if (this.instance.autofocus && this.componentRef) {
|
48712
48853
|
this.componentRef.focus();
|
48713
48854
|
}
|
48714
48855
|
}
|
@@ -48739,6 +48880,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48739
48880
|
return this.inputWidth || 'auto';
|
48740
48881
|
}
|
48741
48882
|
toggle() {
|
48883
|
+
if (!this.componentRef)
|
48884
|
+
return;
|
48742
48885
|
const { input, menu } = this.componentRef.$refs;
|
48743
48886
|
input.focus();
|
48744
48887
|
this.click();
|
@@ -48759,6 +48902,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48759
48902
|
this.blur(event);
|
48760
48903
|
}
|
48761
48904
|
selectFocus(event) {
|
48905
|
+
if (!this.componentRef)
|
48906
|
+
return;
|
48762
48907
|
this.inputWidth = this.componentRef.$el.offsetWidth;
|
48763
48908
|
this.componentRef.isFocused = true;
|
48764
48909
|
this.componentRef.isMenuActive = !this.instance.readonly && !this.instance.disabled;
|
@@ -49260,7 +49405,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
49260
49405
|
var _h = _vm.$createElement;
|
49261
49406
|
var _c = _vm._self._c || _h;
|
49262
49407
|
return _c("zd-select", {
|
49263
|
-
ref: "instance",
|
49264
49408
|
class: ["zd-iterable-page-size", _vm.instance.cssClass],
|
49265
49409
|
style: _vm.instance.cssStyle,
|
49266
49410
|
attrs: {
|
@@ -49276,7 +49420,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
49276
49420
|
/* style */
|
49277
49421
|
const __vue_inject_styles__$J = function (inject) {
|
49278
49422
|
if (!inject) return
|
49279
|
-
inject("data-v-
|
49423
|
+
inject("data-v-15c517aa_0", { source: ".zd-iterable-page-size {\n max-width: 80px;\n}\n.zd-iterable-page-size.theme--light {\n background: white;\n}\n.zd-iterable-page-size.theme--dark {\n background: #121212;\n}\n.zd-iterable-page-size.v-input {\n align-items: center;\n}", map: undefined, media: undefined });
|
49280
49424
|
|
49281
49425
|
};
|
49282
49426
|
/* scoped */
|
@@ -51879,7 +52023,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
51879
52023
|
var _h = _vm.$createElement;
|
51880
52024
|
var _c = _vm._self._c || _h;
|
51881
52025
|
return _c("zd-date", {
|
51882
|
-
ref: "instance",
|
51883
52026
|
attrs: {
|
51884
52027
|
id: _vm.instance.name,
|
51885
52028
|
name: "month-picker",
|
@@ -51942,7 +52085,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
51942
52085
|
var _h = _vm.$createElement;
|
51943
52086
|
var _c = _vm._self._c || _h;
|
51944
52087
|
return _c("zd-text-input", {
|
51945
|
-
ref: "instance",
|
51946
52088
|
attrs: {
|
51947
52089
|
id: _vm.instance.name,
|
51948
52090
|
name: "password",
|
@@ -52748,7 +52890,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
52748
52890
|
var _h = _vm.$createElement;
|
52749
52891
|
var _c = _vm._self._c || _h;
|
52750
52892
|
return _c("zd-text-input", {
|
52751
|
-
ref: "instance",
|
52752
52893
|
staticClass: "zd-grid-search",
|
52753
52894
|
attrs: {
|
52754
52895
|
id: _vm.instance.name,
|
@@ -52969,7 +53110,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
52969
53110
|
this.expandedMode = false;
|
52970
53111
|
this.rows = 1;
|
52971
53112
|
this.lastDisplayedChip = 0;
|
52972
|
-
this.allSelected = false;
|
52973
53113
|
this.hasHiddenRows = false;
|
52974
53114
|
}
|
52975
53115
|
get maxRowsNumber() {
|
@@ -52990,23 +53130,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
52990
53130
|
beforeDestroy() {
|
52991
53131
|
window.removeEventListener('resize', this.listener);
|
52992
53132
|
}
|
52993
|
-
initChipConfig() {
|
52994
|
-
this.refreshDisplay(() => {
|
52995
|
-
this.$nextTick(() => {
|
52996
|
-
this.initialHeight = this.element.offsetHeight;
|
52997
|
-
});
|
52998
|
-
if (this.componentRef.isFocused) {
|
52999
|
-
this.updateMenu();
|
53000
|
-
}
|
53001
|
-
});
|
53002
|
-
}
|
53003
53133
|
calcDisplay(force = false) {
|
53004
53134
|
var _a;
|
53005
53135
|
const chips = this.getChips();
|
53006
53136
|
if (chips.length === 0)
|
53007
53137
|
return;
|
53008
53138
|
if (this.element.offsetHeight > this.initialHeight || force) {
|
53139
|
+
this.instance.datasource.loading = true;
|
53009
53140
|
this.lastDisplayedChip = this.getLastChipIndex(chips);
|
53141
|
+
this.instance.datasource.loading = false;
|
53010
53142
|
return;
|
53011
53143
|
}
|
53012
53144
|
this.lastDisplayedChip = ((_a = this.instance.value) === null || _a === void 0 ? void 0 : _a.length) || 0;
|
@@ -53090,7 +53222,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53090
53222
|
}
|
53091
53223
|
selectClick(event) {
|
53092
53224
|
const { menu } = this.componentRef.$refs;
|
53093
|
-
if (!menu.isActive) {
|
53225
|
+
if (!this.instance.limit && !menu.isActive) {
|
53094
53226
|
this.rows = this.maxRowsNumber;
|
53095
53227
|
if (this.instance.maxRows) {
|
53096
53228
|
this.$nextTick(() => {
|
@@ -53104,21 +53236,31 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53104
53236
|
this.refreshDisplay();
|
53105
53237
|
}
|
53106
53238
|
get moreItemsText() {
|
53107
|
-
|
53239
|
+
if (this.instance.limit) {
|
53240
|
+
this.instance.moreChip = this.instance.value.length - this.limitValue;
|
53241
|
+
}
|
53242
|
+
else {
|
53243
|
+
this.instance.moreChip = this.instance.value.length - this.lastDisplayedChip - 1;
|
53244
|
+
}
|
53108
53245
|
return this.instance.getMoreChipText();
|
53109
53246
|
}
|
53110
53247
|
selectChange(value, event) {
|
53248
|
+
const input = this.$el.querySelector('input');
|
53249
|
+
input === null || input === void 0 ? void 0 : input.select();
|
53111
53250
|
this.instance.selectChange(value.map((item) => item.originalRow), event, this.$el);
|
53112
|
-
this.changeSelectAllItemsValue();
|
53113
53251
|
const { menu } = this.componentRef.$refs;
|
53114
53252
|
if (menu.isActive && this.instance.maxRows) {
|
53115
53253
|
this.refreshDisplay();
|
53116
53254
|
}
|
53117
53255
|
}
|
53118
53256
|
selectBlur(event) {
|
53257
|
+
if ((event.relatedTarget && event.relatedTarget.parentElement.className === 'zd-select-append-item')) {
|
53258
|
+
event.target.focus();
|
53259
|
+
return;
|
53260
|
+
}
|
53119
53261
|
if (this.$el.contains(document.activeElement))
|
53120
53262
|
return;
|
53121
|
-
if (this.rows !== 1) {
|
53263
|
+
if (!this.instance.limit && this.rows !== 1) {
|
53122
53264
|
this.rows = 1;
|
53123
53265
|
this.calcDisplay();
|
53124
53266
|
this.$nextTick(() => this.checkOverflow());
|
@@ -53131,6 +53273,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53131
53273
|
this.superMethods(__vue_component__$K).selectFocus.call(this, event);
|
53132
53274
|
}
|
53133
53275
|
refreshDisplay(cb) {
|
53276
|
+
if (this.instance.limit)
|
53277
|
+
return;
|
53134
53278
|
const prevMode = this.expandedMode;
|
53135
53279
|
this.expandedMode = true;
|
53136
53280
|
this.$nextTick(() => {
|
@@ -53143,9 +53287,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53143
53287
|
});
|
53144
53288
|
}
|
53145
53289
|
onSelectAll(event) {
|
53146
|
-
|
53290
|
+
const input = this.$el.querySelector('input');
|
53291
|
+
input === null || input === void 0 ? void 0 : input.select();
|
53147
53292
|
this.$nextTick(() => {
|
53148
|
-
this.instance.onSelectAll(this.allSelected, event, this.$el);
|
53293
|
+
this.instance.onSelectAll(!this.allSelected, event, this.$el);
|
53149
53294
|
});
|
53150
53295
|
}
|
53151
53296
|
removeItem(item) {
|
@@ -53171,17 +53316,24 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53171
53316
|
set formattedValue(value) {
|
53172
53317
|
this.instance.selectValue = value.map((row) => row.originalRow);
|
53173
53318
|
}
|
53174
|
-
|
53175
|
-
|
53176
|
-
|
53177
|
-
|
53178
|
-
|
53179
|
-
|
53319
|
+
get allSelected() {
|
53320
|
+
const dataLength = this.formattedValue.length - this.instance.insertedValues.length;
|
53321
|
+
return dataLength && dataLength === this.instance.datasource.total;
|
53322
|
+
}
|
53323
|
+
get limitValue() {
|
53324
|
+
return this.componentRef.isFocused ? this.instance.limit || Infinity : 1;
|
53325
|
+
}
|
53326
|
+
isChipVisible(index) {
|
53327
|
+
if (this.instance.limit) {
|
53328
|
+
return index < this.limitValue;
|
53329
|
+
}
|
53330
|
+
return this.expandedMode || !this.hasHiddenRows || index <= this.lastDisplayedChip;
|
53180
53331
|
}
|
53181
|
-
|
53182
|
-
if (this.instance.
|
53183
|
-
|
53332
|
+
isMoreVisible(index) {
|
53333
|
+
if (this.instance.limit) {
|
53334
|
+
return index === this.limitValue;
|
53184
53335
|
}
|
53336
|
+
return !this.expandedMode && this.hasHiddenRows && index === this.lastDisplayedChip + 1;
|
53185
53337
|
}
|
53186
53338
|
};
|
53187
53339
|
__decorate([
|
@@ -53196,6 +53348,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53196
53348
|
PropWatch({ type: [String, Number], default: undefined }),
|
53197
53349
|
__metadata("design:type", Object)
|
53198
53350
|
], ZdSelectMultiple.prototype, "maxRows", void 0);
|
53351
|
+
__decorate([
|
53352
|
+
PropWatch({ type: [String, Number], default: null }),
|
53353
|
+
__metadata("design:type", Object)
|
53354
|
+
], ZdSelectMultiple.prototype, "limit", void 0);
|
53199
53355
|
__decorate([
|
53200
53356
|
vuePropertyDecorator.Watch('instance.value'),
|
53201
53357
|
__metadata("design:type", Function),
|
@@ -53469,9 +53625,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53469
53625
|
key: "selection",
|
53470
53626
|
fn: function (props) {
|
53471
53627
|
return [
|
53472
|
-
_vm.
|
53473
|
-
!_vm.hasHiddenRows ||
|
53474
|
-
props.index <= _vm.lastDisplayedChip
|
53628
|
+
_vm.isChipVisible(props.index)
|
53475
53629
|
? _c(
|
53476
53630
|
"v-chip",
|
53477
53631
|
{
|
@@ -53495,9 +53649,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53495
53649
|
)
|
53496
53650
|
: _vm._e(),
|
53497
53651
|
_vm._v(" "),
|
53498
|
-
|
53499
|
-
_vm.hasHiddenRows &&
|
53500
|
-
props.index === _vm.lastDisplayedChip + 1
|
53652
|
+
_vm.isMoreVisible(props.index)
|
53501
53653
|
? _c("span", { staticClass: "more-items grey--text caption" }, [
|
53502
53654
|
_vm._v(_vm._s(_vm.moreItemsText)),
|
53503
53655
|
])
|
@@ -53612,7 +53764,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53612
53764
|
/* style */
|
53613
53765
|
const __vue_inject_styles__$k = function (inject) {
|
53614
53766
|
if (!inject) return
|
53615
|
-
inject("data-v-
|
53767
|
+
inject("data-v-36f268ee_0", { source: ".zd-select-multiple .v-select__slot .v-select__selections {\n flex-wrap: wrap;\n padding-bottom: 0 !important;\n}\n.zd-select-multiple .v-select__slot .v-select__selections .v-chip {\n margin-bottom: 0.2rem;\n margin-top: 0.2rem;\n}\n.zd-select-multiple .v-select__slot .v-select__selections input {\n position: relative;\n}\n.zd-select-multiple .v-select__slot .v-select__selections {\n padding: 0px 7px 0px 7px;\n}\n.zd-select-multiple .v-select__slot .v-select__selections .v-chip {\n margin: 5px var(--spacing-1) 5px 0;\n}\n.zd-select-multiple .v-select__slot .v-select__selections .v-chip.v-size--x-small {\n height: 15px;\n}\n.zd-select-multiple .v-select__slot .v-select__selections .v-chip.v-size--x-small .chip-text {\n font-size: 12px;\n}\n.zd-select-multiple .v-select__slot .v-select__selections .v-chip--removable.v-size--x-small .v-chip__content .v-chip__close {\n font-size: 14px !important;\n margin-left: var(--spacing-2);\n margin-right: -6px;\n}\n.zd-select-multiple .v-select__slot .v-select__selections .more-items {\n line-height: 15px;\n}\n.zd-select-multiple .v-input__slot {\n min-height: 24px;\n}\n.zd-select-multiple.zd-dense .v-input__slot {\n min-height: 24px;\n}\n.zd-select-multiple.zd-dense .v-select__slot .v-select__selections {\n padding: 0 var(--spacing-1);\n}\n.zd-select-multiple.zd-dense .v-select__slot .v-select__selections input, .zd-select-multiple.zd-dense .v-select__slot .v-select__selections .v-chip {\n margin-bottom: 0.2rem;\n margin-top: 0.2rem;\n}\n.zd-select-multiple.zd-dense.zd-input.v-input > .v-input__control > .v-input__slot input {\n padding: 0 4px;\n}\n.zd-select-multiple.zd-dense.zd-select-multiple-autocomplete.v-input:not(.v-input--is-focused) > .v-input__control > .v-input__slot > .v-select__slot input {\n padding: 0;\n}\n.zd-select-multiple.zd-dense.zd-select-multiple-autocomplete.v-input > .v-input__control > .v-input__slot > .v-select__slot input {\n padding: 0 var(--spacing-1);\n}\n.zd-select-multiple.v-input--is-focused .v-select__slot .v-select__selections .v-chip .v-chip__content .chip-text {\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.v-menu__content.zd-select-menu .v-select-list div.v-list-item__action {\n margin: 0 var(--zd-default-padding) 0 0;\n}\n.v-menu__content.zd-select-menu .v-select-list > .v-list-item .v-input--selection-controls__ripple {\n margin: 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item--disabled .v-simple-checkbox .v-icon {\n opacity: 0.5;\n}", map: undefined, media: undefined });
|
53616
53768
|
|
53617
53769
|
};
|
53618
53770
|
/* scoped */
|
@@ -54055,9 +54207,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
54055
54207
|
this.instanceType = common.SelectTreeMultiple;
|
54056
54208
|
}
|
54057
54209
|
onChangeSelectedNodes(selectedNodes) {
|
54210
|
+
const input = this.$el.querySelector('input');
|
54211
|
+
input === null || input === void 0 ? void 0 : input.select();
|
54058
54212
|
this.instance.changeSelectedNodes(selectedNodes, this.$el);
|
54059
54213
|
}
|
54060
54214
|
onDeselect(node) {
|
54215
|
+
const input = this.$el.querySelector('input');
|
54216
|
+
input === null || input === void 0 ? void 0 : input.select();
|
54061
54217
|
this.instance.deselect(node, this.$el);
|
54062
54218
|
}
|
54063
54219
|
};
|
@@ -54184,7 +54340,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
54184
54340
|
flattenSearchResults: _vm.instance.flattenSearchResults,
|
54185
54341
|
disabled: _vm.instance.disabled,
|
54186
54342
|
flat: _vm.instance.flat,
|
54187
|
-
limit: _vm.instance.limit,
|
54343
|
+
limit: _vm.focused ? _vm.instance.limit : 1,
|
54188
54344
|
maxHeight: _vm.instance.maxHeight,
|
54189
54345
|
openDirection: _vm.instance.openDirection,
|
54190
54346
|
searchable: _vm.instance.autocomplete,
|
@@ -54288,8 +54444,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
54288
54444
|
/* style */
|
54289
54445
|
const __vue_inject_styles__$i = function (inject) {
|
54290
54446
|
if (!inject) return
|
54291
|
-
inject("data-v-
|
54292
|
-
,inject("data-v-
|
54447
|
+
inject("data-v-1ad08424_0", { source: ".zd-select-tree-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.zd-select-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n margin-top: var(--spacing-1);\n}\n.zd-select-tree.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item {\n background: #555;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item, .zd-select-tree.theme--dark .vue-treeselect__multi-value-item .vue-treeselect__value-remove {\n color: #fff;\n}\n.zd-select-tree .vue-treeselect__control {\n border-radius: var(--border);\n height: 34px;\n}\n.zd-select-tree .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 32px;\n}\n.zd-select-tree .vue-treeselect__control-arrow-container svg {\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\n}\n.zd-select-tree .zd-select-tree-label {\n font-weight: var(--zd-font-body1-weight);\n pointer-events: none;\n line-height: 1rem;\n position: relative;\n top: -1px;\n}\n.zd-select-tree .zd-select-tree-label p {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-select-tree.zd-select-tree-disabled {\n opacity: 0.5;\n}\n.zd-select-tree .vue-treeselect__single-value, .zd-select-tree input {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n cursor: text;\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-label {\n color: var(--v-error-base) !important;\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-details {\n color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control {\n border-color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control-arrow-container svg, .zd-select-tree.zd-select-tree-error .vue-treeselect__x-container svg {\n color: var(--v-error-base);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-select-tree-error .zd-select-tree-append-outer-icon {\n color: var(--v-error-base);\n}\n.zd-select-tree .vue-treeselect--focused .vue-treeselect__control-arrow-container svg, .zd-select-tree .vue-treeselect--focused .vue-treeselect__x-container svg {\n color: var(--v-primary-base);\n}\n.zd-select-tree .zd-select-tree-details {\n min-height: 13px;\n font-size: 11px;\n display: flex;\n flex: 1 0 auto;\n max-width: 100%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.6);\n line-height: 1;\n position: relative;\n top: 1px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-details {\n min-height: 11px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control {\n height: 24px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 22px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense .zd-select-tree-append-outer-icon {\n margin-top: 20px;\n}\n.zd-select-tree.zd-dense.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 4px;\n}\n.zd-select-tree.zd-no-helper .zd-select-tree-details {\n display: none;\n}\n.zd-select-tree.zd-no-border .vue-treeselect__control {\n border: none !important;\n}\n.zd-select-tree .zd-select-tree-container {\n display: flex;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon, .zd-select-tree .zd-select-tree-append-outer-icon {\n font-size: var(--icon-size-small);\n margin-top: 25px;\n height: 16px;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon {\n margin-right: 8px;\n}\n.zd-select-tree.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 10px;\n}\n.zd-select-tree .zd-select-tree-append-outer-icon {\n margin-left: 8px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__label {\n padding-left: 10px;\n}\n.vue-treeselect__menu-container .vue-treeselect__icon-warning {\n display: none;\n}\n.vue-treeselect__menu-container .vue-treeselect__option--disabled {\n opacity: 0.5;\n}\n.vue-treeselect__menu > * {\n color: var(--zd-font-color) !important;\n font-size: var(--zd-font-body1-size) !important;\n font-family: var(--font-family) !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option {\n display: flex !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option-arrow-container {\n display: flex !important;\n}\n.vue-treeselect__menu-container .vue-treeselect__option::before {\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 0;\n box-sizing: inherit;\n height: inherit;\n}\n.vue-treeselect__menu-container .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n background: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__label {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n font-family: var(--font-family);\n color: var(--zd-font-color);\n}\n.vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__label-container .vue-treeselect__label, .vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__option-arrow {\n color: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__option:not(.vue-treeselect__option--hide) {\n position: relative;\n display: flex;\n}\n.vue-treeselect__menu-container .vue-treeselect__option-arrow-container:not(.vue-treeselect__option--hide) {\n align-items: center;\n display: flex;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option::before {\n background-color: #000;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option:hover::before {\n opacity: 0.04;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.1;\n}\n.vue-treeselect__menu-container.theme--dark > div {\n background-color: #1e1e1e;\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__label {\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--highlight {\n background-color: transparent;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option::before {\n background-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option:hover::before {\n opacity: 0.08;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.2;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__checkbox:not(.vue-treeselect__checkbox--checked):not(.vue-treeselect__checkbox--indeterminate) {\n background-color: transparent;\n border-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--selected .vue-treeselect__count {\n opacity: 0.8;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__menu {\n border-color: #1e1e1e;\n}", map: undefined, media: undefined })
|
54448
|
+
,inject("data-v-1ad08424_1", { source: ".zd-select-tree-multiple .vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 1px 0;\n line-height: 16px;\n}\n.zd-select-tree-multiple .vue-treeselect--multi .vue-treeselect__input {\n padding-top: 0;\n padding-bottom: 0;\n line-height: 15px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__limit-tip {\n padding-top: 0;\n}\n.vue-treeselect__limit-tip-text {\n padding: 0;\n margin: 0;\n}", map: undefined, media: undefined });
|
54293
54449
|
|
54294
54450
|
};
|
54295
54451
|
/* scoped */
|
@@ -56102,11 +56258,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56102
56258
|
this.instanceType = common.Time;
|
56103
56259
|
}
|
56104
56260
|
onChangeTimePicker() {
|
56105
|
-
const textInput = this.$refs.
|
56261
|
+
const textInput = this.$refs.textInputInstance.$children[0];
|
56106
56262
|
textInput.validate(false);
|
56107
56263
|
}
|
56108
56264
|
mounted() {
|
56109
|
-
const textInput = this.$refs.
|
56265
|
+
const textInput = this.$refs.textInputInstance.$children[0].$el.getElementsByTagName('input')[0];
|
56110
56266
|
textInput.addEventListener('blur', () => {
|
56111
56267
|
this.instance.showTimePicker = false;
|
56112
56268
|
});
|
@@ -56127,12 +56283,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56127
56283
|
this.$watch('instance.useSeconds', setStep);
|
56128
56284
|
}
|
56129
56285
|
setFocus(selectAll = false) {
|
56130
|
-
const {
|
56286
|
+
const { textInputInstance } = this.$refs;
|
56131
56287
|
Vue__default["default"].nextTick(() => {
|
56132
|
-
|
56288
|
+
textInputInstance.focus();
|
56133
56289
|
if (selectAll) {
|
56134
56290
|
this.$nextTick(() => {
|
56135
|
-
|
56291
|
+
textInputInstance.$vnode.elm.getElementsByTagName('input')[0].select();
|
56136
56292
|
});
|
56137
56293
|
}
|
56138
56294
|
});
|
@@ -56149,9 +56305,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56149
56305
|
});
|
56150
56306
|
return events;
|
56151
56307
|
}
|
56152
|
-
input() {
|
56153
|
-
this.instance.showTimePicker = false;
|
56154
|
-
}
|
56155
56308
|
convert(value, toPicker = true) {
|
56156
56309
|
if (!value)
|
56157
56310
|
return null;
|
@@ -56322,7 +56475,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56322
56475
|
var on = ref.on;
|
56323
56476
|
return [
|
56324
56477
|
_c("zd-text-input", {
|
56325
|
-
ref: "
|
56478
|
+
ref: "textInputInstance",
|
56326
56479
|
attrs: {
|
56327
56480
|
name: _vm.instance.name + "_text-input",
|
56328
56481
|
mask: _vm.getTimeMask,
|
@@ -56338,7 +56491,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56338
56491
|
],
|
56339
56492
|
null,
|
56340
56493
|
false,
|
56341
|
-
|
56494
|
+
386348313
|
56342
56495
|
),
|
56343
56496
|
model: {
|
56344
56497
|
value: _vm.instance.showTimePicker,
|
@@ -56407,7 +56560,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56407
56560
|
]
|
56408
56561
|
: [
|
56409
56562
|
_c("zd-text-input", {
|
56410
|
-
ref: "
|
56563
|
+
ref: "textInputInstance",
|
56411
56564
|
attrs: {
|
56412
56565
|
name: _vm.instance.name + "_text-input",
|
56413
56566
|
"instance-object": _vm.instance,
|
@@ -56427,7 +56580,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56427
56580
|
/* style */
|
56428
56581
|
const __vue_inject_styles__$6 = function (inject) {
|
56429
56582
|
if (!inject) return
|
56430
|
-
inject("data-v-
|
56583
|
+
inject("data-v-21cfb8e4_0", { source: ".zd-time input[type=time] {\n -webkit-appearance: none;\n}\n.zd-time input[type=time]::-webkit-inner-spin-button, .zd-time input[type=time]::-webkit-calendar-picker-indicator {\n display: none;\n -webkit-appearance: none;\n}", map: undefined, media: undefined });
|
56431
56584
|
|
56432
56585
|
};
|
56433
56586
|
/* scoped */
|
@@ -57355,6 +57508,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
57355
57508
|
return text;
|
57356
57509
|
}
|
57357
57510
|
checkSome(row) {
|
57511
|
+
if (this.instance.flat)
|
57512
|
+
return false;
|
57358
57513
|
let some = false;
|
57359
57514
|
if (row.tree__children) {
|
57360
57515
|
some = row.tree__children.some((item) => {
|
@@ -57405,6 +57560,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
57405
57560
|
PropWatch({ type: [String, Boolean], default: true }),
|
57406
57561
|
__metadata("design:type", Object)
|
57407
57562
|
], ZdTreeGrid.prototype, "fetchOnDemand", void 0);
|
57563
|
+
__decorate([
|
57564
|
+
PropWatch({ type: [String, Boolean], default: false }),
|
57565
|
+
__metadata("design:type", Object)
|
57566
|
+
], ZdTreeGrid.prototype, "flat", void 0);
|
57408
57567
|
__decorate([
|
57409
57568
|
vuePropertyDecorator.Prop({
|
57410
57569
|
type: Array,
|
@@ -58006,13 +58165,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58006
58165
|
{
|
58007
58166
|
name: "show",
|
58008
58167
|
rawName: "v-show",
|
58009
|
-
value:
|
58010
|
-
headerIndex === 0 ||
|
58011
|
-
(headerIndex === 1 &&
|
58012
|
-
_vm.instance
|
58013
|
-
.selectable),
|
58168
|
+
value: headerIndex === 0,
|
58014
58169
|
expression:
|
58015
|
-
"headerIndex === 0
|
58170
|
+
"headerIndex === 0",
|
58016
58171
|
},
|
58017
58172
|
],
|
58018
58173
|
class: [
|
@@ -58241,8 +58396,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58241
58396
|
/* style */
|
58242
58397
|
const __vue_inject_styles__$1 = function (inject) {
|
58243
58398
|
if (!inject) return
|
58244
|
-
inject("data-v-
|
58245
|
-
,inject("data-v-
|
58399
|
+
inject("data-v-34a8a2e4_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
58400
|
+
,inject("data-v-34a8a2e4_1", { source: ".zd-tree-grid.theme--light tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-tree-grid.theme--dark tbody td.zd-table-cell {\n color: #fff;\n}\n.zd-tree-grid tbody td.zd-table-cell.first {\n padding-left: 5px !important;\n}\n.zd-tree-grid tbody td.zd-table-cell .zd-table-cell-text .search-result {\n background: var(--v-grey-lighten4);\n}\n.zd-tree-grid .zd-tree-grid-expand {\n display: inline-block;\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid .zd-tree-grid-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level10 {\n width: 200px;\n}", map: undefined, media: undefined });
|
58246
58401
|
|
58247
58402
|
};
|
58248
58403
|
/* scoped */
|
@@ -59189,13 +59344,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
59189
59344
|
name: "show",
|
59190
59345
|
rawName: "v-show",
|
59191
59346
|
value:
|
59192
|
-
headerIndex === 0
|
59193
|
-
(headerIndex ===
|
59194
|
-
1 &&
|
59195
|
-
_vm.instance
|
59196
|
-
.selectable),
|
59347
|
+
headerIndex === 0,
|
59197
59348
|
expression:
|
59198
|
-
"headerIndex === 0
|
59349
|
+
"headerIndex === 0",
|
59199
59350
|
},
|
59200
59351
|
],
|
59201
59352
|
class: [
|
@@ -59427,8 +59578,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
59427
59578
|
/* style */
|
59428
59579
|
const __vue_inject_styles__ = function (inject) {
|
59429
59580
|
if (!inject) return
|
59430
|
-
inject("data-v-
|
59431
|
-
,inject("data-v-
|
59581
|
+
inject("data-v-3cea1c94_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
59582
|
+
,inject("data-v-3cea1c94_1", { source: ".zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-inline-edit {\n justify-content: flex-end;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-inline-edit {\n justify-content: center;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon {\n display: flex;\n font-size: 18px;\n margin-right: var(--spacing-1);\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand {\n display: inline-block;\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level10 {\n width: 200px;\n}\n.zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
|
59432
59583
|
|
59433
59584
|
};
|
59434
59585
|
/* scoped */
|
@@ -59754,7 +59905,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
59754
59905
|
// styleObject
|
59755
59906
|
Vue.prototype.$styleObject = styleObjectPlugin;
|
59756
59907
|
},
|
59757
|
-
};
|
59908
|
+
};
|
59909
|
+
const packageContent = require('../package.json');
|
59910
|
+
core.VersionService.addPackageVersion(packageContent.name, packageContent.version);
|
59758
59911
|
|
59759
59912
|
exports.IconRenderer = IconRenderer;
|
59760
59913
|
exports.PropWatch = PropWatch;
|