@zeedhi/vuetify 1.38.0 → 1.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/zd-vuetify.umd.js
CHANGED
@@ -2215,7 +2215,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
2215
2215
|
}
|
2216
2216
|
Vuetify.install = install;
|
2217
2217
|
Vuetify.installed = false;
|
2218
|
-
Vuetify.version = "2.5.
|
2218
|
+
Vuetify.version = "2.5.14";
|
2219
2219
|
Vuetify.config = {
|
2220
2220
|
silent: false
|
2221
2221
|
};
|
@@ -2514,7 +2514,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
2514
2514
|
|
2515
2515
|
});
|
2516
2516
|
|
2517
|
-
function inserted$3(el, binding) {
|
2517
|
+
function inserted$3(el, binding, vnode) {
|
2518
2518
|
if (typeof window === 'undefined' || !('IntersectionObserver' in window)) return;
|
2519
2519
|
const modifiers = binding.modifiers || {};
|
2520
2520
|
const value = binding.value;
|
@@ -2526,32 +2526,36 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
2526
2526
|
options: {}
|
2527
2527
|
};
|
2528
2528
|
const observer = new IntersectionObserver((entries = [], observer) => {
|
2529
|
-
|
2530
|
-
|
2529
|
+
var _el$_observe;
|
2530
|
+
|
2531
|
+
const _observe = (_el$_observe = el._observe) == null ? void 0 : _el$_observe[vnode.context._uid];
|
2532
|
+
|
2533
|
+
if (!_observe) return; // Just in case, should never fire
|
2531
2534
|
|
2532
2535
|
const isIntersecting = entries.some(entry => entry.isIntersecting); // If is not quiet or has already been
|
2533
2536
|
// initted, invoke the user callback
|
2534
2537
|
|
2535
|
-
if (handler && (!modifiers.quiet ||
|
2538
|
+
if (handler && (!modifiers.quiet || _observe.init) && (!modifiers.once || isIntersecting || _observe.init)) {
|
2536
2539
|
handler(entries, observer, isIntersecting);
|
2537
2540
|
}
|
2538
2541
|
|
2539
|
-
if (isIntersecting && modifiers.once) unbind$4(el);else
|
2542
|
+
if (isIntersecting && modifiers.once) unbind$4(el, binding, vnode);else _observe.init = true;
|
2540
2543
|
}, options);
|
2541
|
-
el._observe =
|
2544
|
+
el._observe = Object(el._observe);
|
2545
|
+
el._observe[vnode.context._uid] = {
|
2542
2546
|
init: false,
|
2543
2547
|
observer
|
2544
2548
|
};
|
2545
2549
|
observer.observe(el);
|
2546
2550
|
}
|
2547
2551
|
|
2548
|
-
function unbind$4(el) {
|
2549
|
-
|
2550
|
-
if (!el._observe) return;
|
2552
|
+
function unbind$4(el, binding, vnode) {
|
2553
|
+
var _el$_observe2;
|
2551
2554
|
|
2552
|
-
el._observe.
|
2553
|
-
|
2554
|
-
|
2555
|
+
const observe = (_el$_observe2 = el._observe) == null ? void 0 : _el$_observe2[vnode.context._uid];
|
2556
|
+
if (!observe) return;
|
2557
|
+
observe.observer.unobserve(el);
|
2558
|
+
delete el._observe[vnode.context._uid];
|
2555
2559
|
}
|
2556
2560
|
|
2557
2561
|
const Intersect = {
|
@@ -3161,7 +3165,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3161
3165
|
|
3162
3166
|
});
|
3163
3167
|
|
3164
|
-
function inserted$2(el, binding) {
|
3168
|
+
function inserted$2(el, binding, vnode) {
|
3165
3169
|
const {
|
3166
3170
|
self = false
|
3167
3171
|
} = binding.modifiers || {};
|
@@ -3173,7 +3177,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3173
3177
|
const target = self ? el : binding.arg ? document.querySelector(binding.arg) : window;
|
3174
3178
|
if (!target) return;
|
3175
3179
|
target.addEventListener('scroll', handler, options);
|
3176
|
-
el._onScroll =
|
3180
|
+
el._onScroll = Object(el._onScroll);
|
3181
|
+
el._onScroll[vnode.context._uid] = {
|
3177
3182
|
handler,
|
3178
3183
|
options,
|
3179
3184
|
// Don't reference self
|
@@ -3181,15 +3186,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3181
3186
|
};
|
3182
3187
|
}
|
3183
3188
|
|
3184
|
-
function unbind$3(el) {
|
3185
|
-
|
3189
|
+
function unbind$3(el, binding, vnode) {
|
3190
|
+
var _el$_onScroll;
|
3191
|
+
|
3192
|
+
if (!((_el$_onScroll = el._onScroll) != null && _el$_onScroll[vnode.context._uid])) return;
|
3186
3193
|
const {
|
3187
3194
|
handler,
|
3188
3195
|
options,
|
3189
3196
|
target = el
|
3190
|
-
} = el._onScroll;
|
3197
|
+
} = el._onScroll[vnode.context._uid];
|
3191
3198
|
target.removeEventListener('scroll', handler, options);
|
3192
|
-
delete el._onScroll;
|
3199
|
+
delete el._onScroll[vnode.context._uid];
|
3193
3200
|
}
|
3194
3201
|
|
3195
3202
|
const Scroll = {
|
@@ -3364,7 +3371,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3364
3371
|
return isActive(e);
|
3365
3372
|
}
|
3366
3373
|
|
3367
|
-
function directive$1(e, el, binding) {
|
3374
|
+
function directive$1(e, el, binding, vnode) {
|
3368
3375
|
const handler = typeof binding.value === 'function' ? binding.value : binding.value.handler;
|
3369
3376
|
el._clickOutside.lastMousedownWasOutside && checkEvent(e, el, binding) && setTimeout(() => {
|
3370
3377
|
checkIsActive(e, binding) && handler && handler(e);
|
@@ -3386,7 +3393,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3386
3393
|
// sure that the root element is
|
3387
3394
|
// available, iOS does not support
|
3388
3395
|
// clicks on body
|
3389
|
-
inserted(el, binding) {
|
3396
|
+
inserted(el, binding, vnode) {
|
3390
3397
|
const onClick = e => directive$1(e, el, binding);
|
3391
3398
|
|
3392
3399
|
const onMousedown = e => {
|
@@ -3397,32 +3404,45 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3397
3404
|
app.addEventListener('click', onClick, true);
|
3398
3405
|
app.addEventListener('mousedown', onMousedown, true);
|
3399
3406
|
});
|
3400
|
-
|
3401
|
-
|
3407
|
+
|
3408
|
+
if (!el._clickOutside) {
|
3409
|
+
el._clickOutside = {
|
3410
|
+
lastMousedownWasOutside: true
|
3411
|
+
};
|
3412
|
+
}
|
3413
|
+
|
3414
|
+
el._clickOutside[vnode.context._uid] = {
|
3402
3415
|
onClick,
|
3403
3416
|
onMousedown
|
3404
3417
|
};
|
3405
3418
|
},
|
3406
3419
|
|
3407
|
-
unbind(el) {
|
3420
|
+
unbind(el, binding, vnode) {
|
3408
3421
|
if (!el._clickOutside) return;
|
3409
3422
|
handleShadow(el, app => {
|
3410
|
-
|
3411
|
-
|
3412
|
-
app
|
3423
|
+
var _el$_clickOutside;
|
3424
|
+
|
3425
|
+
if (!app || !((_el$_clickOutside = el._clickOutside) != null && _el$_clickOutside[vnode.context._uid])) return;
|
3426
|
+
const {
|
3427
|
+
onClick,
|
3428
|
+
onMousedown
|
3429
|
+
} = el._clickOutside[vnode.context._uid];
|
3430
|
+
app.removeEventListener('click', onClick, true);
|
3431
|
+
app.removeEventListener('mousedown', onMousedown, true);
|
3413
3432
|
});
|
3414
|
-
delete el._clickOutside;
|
3433
|
+
delete el._clickOutside[vnode.context._uid];
|
3415
3434
|
}
|
3416
3435
|
|
3417
3436
|
};
|
3418
3437
|
|
3419
|
-
function inserted$1(el, binding) {
|
3438
|
+
function inserted$1(el, binding, vnode) {
|
3420
3439
|
const callback = binding.value;
|
3421
3440
|
const options = binding.options || {
|
3422
3441
|
passive: true
|
3423
3442
|
};
|
3424
3443
|
window.addEventListener('resize', callback, options);
|
3425
|
-
el._onResize =
|
3444
|
+
el._onResize = Object(el._onResize);
|
3445
|
+
el._onResize[vnode.context._uid] = {
|
3426
3446
|
callback,
|
3427
3447
|
options
|
3428
3448
|
};
|
@@ -3432,14 +3452,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
3432
3452
|
}
|
3433
3453
|
}
|
3434
3454
|
|
3435
|
-
function unbind$2(el) {
|
3436
|
-
|
3455
|
+
function unbind$2(el, binding, vnode) {
|
3456
|
+
var _el$_onResize;
|
3457
|
+
|
3458
|
+
if (!((_el$_onResize = el._onResize) != null && _el$_onResize[vnode.context._uid])) return;
|
3437
3459
|
const {
|
3438
3460
|
callback,
|
3439
3461
|
options
|
3440
|
-
} = el._onResize;
|
3462
|
+
} = el._onResize[vnode.context._uid];
|
3441
3463
|
window.removeEventListener('resize', callback, options);
|
3442
|
-
delete el._onResize;
|
3464
|
+
delete el._onResize[vnode.context._uid];
|
3443
3465
|
}
|
3444
3466
|
|
3445
3467
|
const Resize = {
|
@@ -4818,6 +4840,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
4818
4840
|
watch: {
|
4819
4841
|
$route: 'onRouteChange'
|
4820
4842
|
},
|
4843
|
+
|
4844
|
+
mounted() {
|
4845
|
+
this.onRouteChange();
|
4846
|
+
},
|
4847
|
+
|
4821
4848
|
methods: {
|
4822
4849
|
click(e) {
|
4823
4850
|
this.$emit('click', e);
|
@@ -4883,16 +4910,20 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
4883
4910
|
onRouteChange() {
|
4884
4911
|
if (!this.to || !this.$refs.link || !this.$route) return;
|
4885
4912
|
const activeClass = `${this.activeClass} ${this.proxyClass || ''}`.trim();
|
4886
|
-
const
|
4913
|
+
const exactActiveClass = `${this.exactActiveClass} ${this.proxyClass || ''}`.trim() || activeClass;
|
4914
|
+
const path = '_vnode.data.class.' + (this.exact ? exactActiveClass : activeClass);
|
4887
4915
|
this.$nextTick(() => {
|
4888
4916
|
/* istanbul ignore else */
|
4889
|
-
if (getObjectValueByPath(this.$refs.link, path)) {
|
4917
|
+
if (!getObjectValueByPath(this.$refs.link, path) === this.isActive) {
|
4890
4918
|
this.toggle();
|
4891
4919
|
}
|
4892
4920
|
});
|
4893
4921
|
},
|
4894
4922
|
|
4895
|
-
toggle
|
4923
|
+
toggle() {
|
4924
|
+
this.isActive = !this.isActive;
|
4925
|
+
}
|
4926
|
+
|
4896
4927
|
}
|
4897
4928
|
});
|
4898
4929
|
|
@@ -5455,14 +5486,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
5455
5486
|
|
5456
5487
|
if (context.props.hideOnLeave) {
|
5457
5488
|
data.on.leave = mergeTransitions(data.on.leave, el => {
|
5458
|
-
el._initialDisplay = [el.style.display, el.style.getPropertyPriority('display')];
|
5459
5489
|
el.style.setProperty('display', 'none', 'important');
|
5460
5490
|
});
|
5461
|
-
data.on.afterLeave = mergeTransitions(data.on.afterLeave, el => {
|
5462
|
-
if (el) {
|
5463
|
-
el._initialDisplay ? el.style.setProperty('display', ...el._initialDisplay) : el.style.removeProperty('display');
|
5464
|
-
}
|
5465
|
-
});
|
5466
5491
|
}
|
5467
5492
|
|
5468
5493
|
return h(tag, mergeData(context.data, data), context.children);
|
@@ -6166,6 +6191,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
6166
6191
|
if (type === 'boolean' || type === 'string') return true;
|
6167
6192
|
return val.nodeType === Node.ELEMENT_NODE;
|
6168
6193
|
}
|
6194
|
+
|
6195
|
+
function removeActivator(activator) {
|
6196
|
+
activator.forEach(node => {
|
6197
|
+
node.elm && node.elm.parentNode && node.elm.parentNode.removeChild(node.elm);
|
6198
|
+
});
|
6199
|
+
}
|
6169
6200
|
/* @vue/component */
|
6170
6201
|
|
6171
6202
|
|
@@ -6220,23 +6251,32 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
6220
6251
|
},
|
6221
6252
|
|
6222
6253
|
beforeDestroy() {
|
6223
|
-
|
6224
|
-
|
6225
|
-
|
6226
|
-
|
6227
|
-
}
|
6254
|
+
if (this.$refs.content && this.$refs.content.parentNode) {
|
6255
|
+
this.$refs.content.parentNode.removeChild(this.$refs.content);
|
6256
|
+
}
|
6257
|
+
},
|
6228
6258
|
|
6229
|
-
|
6230
|
-
|
6231
|
-
|
6232
|
-
|
6259
|
+
destroyed() {
|
6260
|
+
if (this.activatorNode) {
|
6261
|
+
const activator = Array.isArray(this.activatorNode) ? this.activatorNode : [this.activatorNode];
|
6262
|
+
|
6263
|
+
if (this.$el.isConnected) {
|
6264
|
+
// Component has been destroyed but the element still exists, we must be in a transition
|
6265
|
+
// Wait for the transition to finish before cleaning up the detached activator
|
6266
|
+
const observer = new MutationObserver(list => {
|
6267
|
+
if (list.some(record => Array.from(record.removedNodes).includes(this.$el))) {
|
6268
|
+
observer.disconnect();
|
6269
|
+
removeActivator(activator);
|
6270
|
+
}
|
6271
|
+
});
|
6272
|
+
observer.observe(this.$el.parentNode, {
|
6273
|
+
subtree: false,
|
6274
|
+
childList: true
|
6233
6275
|
});
|
6276
|
+
} else {
|
6277
|
+
removeActivator(activator);
|
6234
6278
|
}
|
6235
|
-
} catch (e) {
|
6236
|
-
console.log(e);
|
6237
6279
|
}
|
6238
|
-
/* eslint-disable-line no-console */
|
6239
|
-
|
6240
6280
|
},
|
6241
6281
|
|
6242
6282
|
methods: {
|
@@ -7029,7 +7069,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7029
7069
|
|
7030
7070
|
getTiles() {
|
7031
7071
|
if (!this.$refs.content) return;
|
7032
|
-
this.tiles = Array.from(this.$refs.content.querySelectorAll('.v-list-item'));
|
7072
|
+
this.tiles = Array.from(this.$refs.content.querySelectorAll('.v-list-item, .v-divider, .v-subheader'));
|
7033
7073
|
},
|
7034
7074
|
|
7035
7075
|
mouseEnterHandler() {
|
@@ -7474,6 +7514,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7474
7514
|
}
|
7475
7515
|
|
7476
7516
|
return attrs;
|
7517
|
+
},
|
7518
|
+
|
7519
|
+
toggle() {
|
7520
|
+
if (this.to && this.inputValue === undefined) {
|
7521
|
+
this.isActive = !this.isActive;
|
7522
|
+
}
|
7523
|
+
|
7524
|
+
this.$emit('change');
|
7477
7525
|
}
|
7478
7526
|
|
7479
7527
|
},
|
@@ -7504,7 +7552,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
7504
7552
|
active: this.isActive,
|
7505
7553
|
toggle: this.toggle
|
7506
7554
|
}) : this.$slots.default;
|
7507
|
-
return h(tag, this.setTextColor(this.color, data), children);
|
7555
|
+
return h(tag, this.isActive ? this.setTextColor(this.color, data) : data, children);
|
7508
7556
|
}
|
7509
7557
|
|
7510
7558
|
});
|
@@ -8973,20 +9021,27 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
8973
9021
|
function intersectable(options) {
|
8974
9022
|
return Vue__default["default"].extend({
|
8975
9023
|
name: 'intersectable',
|
9024
|
+
data: () => ({
|
9025
|
+
isIntersecting: false
|
9026
|
+
}),
|
8976
9027
|
|
8977
9028
|
mounted() {
|
8978
9029
|
Intersect.inserted(this.$el, {
|
8979
9030
|
name: 'intersect',
|
8980
9031
|
value: this.onObserve
|
8981
|
-
});
|
9032
|
+
}, this.$vnode);
|
8982
9033
|
},
|
8983
9034
|
|
8984
9035
|
destroyed() {
|
8985
|
-
Intersect.unbind(this.$el
|
9036
|
+
Intersect.unbind(this.$el, {
|
9037
|
+
name: 'intersect',
|
9038
|
+
value: this.onObserve
|
9039
|
+
}, this.$vnode);
|
8986
9040
|
},
|
8987
9041
|
|
8988
9042
|
methods: {
|
8989
9043
|
onObserve(entries, observer, isIntersecting) {
|
9044
|
+
this.isIntersecting = isIntersecting;
|
8990
9045
|
if (!isIntersecting) return;
|
8991
9046
|
|
8992
9047
|
for (let i = 0, length = options.onVisible.length; i < length; i++) {
|
@@ -9478,7 +9533,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
9478
9533
|
// #11533
|
9479
9534
|
this.$watch(() => this.labelValue, this.setLabelWidth);
|
9480
9535
|
this.autofocus && this.tryAutofocus();
|
9481
|
-
requestAnimationFrame(() =>
|
9536
|
+
requestAnimationFrame(() => {
|
9537
|
+
this.isBooted = true;
|
9538
|
+
requestAnimationFrame(() => {
|
9539
|
+
if (!this.isIntersecting) {
|
9540
|
+
this.onResize();
|
9541
|
+
}
|
9542
|
+
});
|
9543
|
+
});
|
9482
9544
|
},
|
9483
9545
|
|
9484
9546
|
methods: {
|
@@ -10400,7 +10462,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
10400
10462
|
if (!menu) return; // If menu is active, allow default
|
10401
10463
|
// listIndex change from menu
|
10402
10464
|
|
10403
|
-
if (this.isMenuActive &&
|
10465
|
+
if (this.isMenuActive && [keyCodes.up, keyCodes.down, keyCodes.home, keyCodes.end, keyCodes.enter].includes(keyCode)) {
|
10404
10466
|
this.$nextTick(() => {
|
10405
10467
|
menu.changeListIndex(e);
|
10406
10468
|
this.$emit('update:list-index', menu.listIndex);
|
@@ -10784,11 +10846,27 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
10784
10846
|
// TODO: How is the watcher triggered
|
10785
10847
|
// for duplicate items? no idea
|
10786
10848
|
if (val === oldVal) return;
|
10787
|
-
|
10849
|
+
|
10850
|
+
if (!this.autoSelectFirst) {
|
10851
|
+
const preSelectedItem = oldVal[this.$refs.menu.listIndex];
|
10852
|
+
|
10853
|
+
if (preSelectedItem) {
|
10854
|
+
this.setMenuIndex(val.findIndex(i => i === preSelectedItem));
|
10855
|
+
} else {
|
10856
|
+
this.setMenuIndex(-1);
|
10857
|
+
}
|
10858
|
+
|
10859
|
+
this.$emit('update:list-index', this.$refs.menu.listIndex);
|
10860
|
+
}
|
10861
|
+
|
10788
10862
|
this.$nextTick(() => {
|
10789
10863
|
if (!this.internalSearch || val.length !== 1 && !this.autoSelectFirst) return;
|
10790
10864
|
this.$refs.menu.getTiles();
|
10791
|
-
|
10865
|
+
|
10866
|
+
if (this.autoSelectFirst && val.length) {
|
10867
|
+
this.setMenuIndex(0);
|
10868
|
+
this.$emit('update:list-index', this.$refs.menu.listIndex);
|
10869
|
+
}
|
10792
10870
|
});
|
10793
10871
|
},
|
10794
10872
|
|
@@ -11530,6 +11608,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11530
11608
|
if (this.isActive) children.push(this.genContent());
|
11531
11609
|
return h('div', {
|
11532
11610
|
staticClass: 'v-overlay',
|
11611
|
+
on: this.$listeners,
|
11533
11612
|
class: this.classes,
|
11534
11613
|
style: this.styles
|
11535
11614
|
}, children);
|
@@ -11642,20 +11721,31 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11642
11721
|
hasScrollbar(el) {
|
11643
11722
|
if (!el || el.nodeType !== Node.ELEMENT_NODE) return false;
|
11644
11723
|
const style = window.getComputedStyle(el);
|
11645
|
-
return ['auto', 'scroll'].includes(style.overflowY) && el.scrollHeight > el.clientHeight;
|
11724
|
+
return (['auto', 'scroll'].includes(style.overflowY) || el.tagName === 'SELECT') && el.scrollHeight > el.clientHeight || ['auto', 'scroll'].includes(style.overflowX) && el.scrollWidth > el.clientWidth;
|
11646
11725
|
},
|
11647
11726
|
|
11648
|
-
shouldScroll(el,
|
11727
|
+
shouldScroll(el, e) {
|
11649
11728
|
if (el.hasAttribute('data-app')) return false;
|
11650
|
-
const
|
11651
|
-
const
|
11729
|
+
const dir = e.shiftKey || e.deltaX ? 'x' : 'y';
|
11730
|
+
const delta = dir === 'y' ? e.deltaY : e.deltaX || e.deltaY;
|
11731
|
+
let alreadyAtStart;
|
11732
|
+
let alreadyAtEnd;
|
11733
|
+
|
11734
|
+
if (dir === 'y') {
|
11735
|
+
alreadyAtStart = el.scrollTop === 0;
|
11736
|
+
alreadyAtEnd = el.scrollTop + el.clientHeight === el.scrollHeight;
|
11737
|
+
} else {
|
11738
|
+
alreadyAtStart = el.scrollLeft === 0;
|
11739
|
+
alreadyAtEnd = el.scrollLeft + el.clientWidth === el.scrollWidth;
|
11740
|
+
}
|
11741
|
+
|
11652
11742
|
const scrollingUp = delta < 0;
|
11653
11743
|
const scrollingDown = delta > 0;
|
11654
|
-
if (!
|
11655
|
-
if (!
|
11744
|
+
if (!alreadyAtStart && scrollingUp) return true;
|
11745
|
+
if (!alreadyAtEnd && scrollingDown) return true;
|
11656
11746
|
|
11657
|
-
if (
|
11658
|
-
return this.shouldScroll(el.parentNode,
|
11747
|
+
if (alreadyAtStart || alreadyAtEnd) {
|
11748
|
+
return this.shouldScroll(el.parentNode, e);
|
11659
11749
|
}
|
11660
11750
|
|
11661
11751
|
return false;
|
@@ -11673,7 +11763,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11673
11763
|
|
11674
11764
|
checkPath(e) {
|
11675
11765
|
const path = composedPath(e);
|
11676
|
-
const delta = e.deltaY;
|
11677
11766
|
|
11678
11767
|
if (e.type === 'keydown' && path[0] === document.body) {
|
11679
11768
|
const dialog = this.$refs.dialog; // getSelection returns null in firefox in some edge cases, can be ignored
|
@@ -11681,7 +11770,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11681
11770
|
const selected = window.getSelection().anchorNode;
|
11682
11771
|
|
11683
11772
|
if (dialog && this.hasScrollbar(dialog) && this.isInside(selected, dialog)) {
|
11684
|
-
return !this.shouldScroll(dialog,
|
11773
|
+
return !this.shouldScroll(dialog, e);
|
11685
11774
|
}
|
11686
11775
|
|
11687
11776
|
return true;
|
@@ -11692,7 +11781,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11692
11781
|
if (el === document) return true;
|
11693
11782
|
if (el === document.documentElement) return true;
|
11694
11783
|
if (el === this.$refs.content) return true;
|
11695
|
-
if (this.hasScrollbar(el)) return !this.shouldScroll(el,
|
11784
|
+
if (this.hasScrollbar(el)) return !this.shouldScroll(el, e);
|
11696
11785
|
}
|
11697
11786
|
|
11698
11787
|
return true;
|
@@ -11872,8 +11961,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11872
11961
|
|
11873
11962
|
this.$nextTick(() => {
|
11874
11963
|
this.$nextTick(() => {
|
11875
|
-
this.
|
11876
|
-
|
11964
|
+
if (!this.$refs.content.contains(document.activeElement)) {
|
11965
|
+
this.previousActiveElement = document.activeElement;
|
11966
|
+
this.$refs.content.focus();
|
11967
|
+
}
|
11968
|
+
|
11877
11969
|
this.bind();
|
11878
11970
|
});
|
11879
11971
|
});
|
@@ -12261,7 +12353,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
12261
12353
|
// This block of code aims to make sure touchEvent is always dispatched from the element that is being pointed at
|
12262
12354
|
|
12263
12355
|
|
12264
|
-
if (e
|
12356
|
+
if (e && 'touches' in e) {
|
12265
12357
|
var _e$target, _e$target2;
|
12266
12358
|
|
12267
12359
|
const currentTarget = document.elementFromPoint(e.changedTouches[0].clientX, e.changedTouches[0].clientY);
|
@@ -13879,13 +13971,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
13879
13971
|
const name = this.eventNameFunction(event, timedEvent);
|
13880
13972
|
|
13881
13973
|
if (event.start.hasTime) {
|
13974
|
+
const eventSummaryClass = 'v-event-summary';
|
13975
|
+
|
13882
13976
|
if (timedEvent) {
|
13883
13977
|
const time = timeSummary();
|
13884
13978
|
const delimiter = singline ? ', ' : '<br>';
|
13885
|
-
return `<strong>${name}</strong>${delimiter}${time}
|
13979
|
+
return `<span class="${eventSummaryClass}"><strong>${name}</strong>${delimiter}${time}</span>`;
|
13886
13980
|
} else {
|
13887
13981
|
const time = formatTime(event.start, true);
|
13888
|
-
return `<strong>${time}</strong> ${name}
|
13982
|
+
return `<span class="${eventSummaryClass}"><strong>${time}</strong> ${name}</span>`;
|
13889
13983
|
}
|
13890
13984
|
}
|
13891
13985
|
|
@@ -14607,19 +14701,22 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14607
14701
|
return this.$createElement('div', {
|
14608
14702
|
key: day.date,
|
14609
14703
|
staticClass: 'v-calendar-daily__day',
|
14610
|
-
class: this.getRelativeClasses(day)
|
14611
|
-
|
14704
|
+
class: this.getRelativeClasses(day),
|
14705
|
+
on: this.getDefaultMouseEventHandlers(':time', e => {
|
14706
|
+
return this.getSlotScope(this.getTimestampAtEvent(e, day));
|
14707
|
+
})
|
14708
|
+
}, [...this.genDayIntervals(index), ...this.genDayBody(day)]);
|
14612
14709
|
},
|
14613
14710
|
|
14614
14711
|
genDayBody(day) {
|
14615
14712
|
return getSlot(this, 'day-body', () => this.getSlotScope(day)) || [];
|
14616
14713
|
},
|
14617
14714
|
|
14618
|
-
genDayIntervals(index
|
14619
|
-
return this.intervals[index].map(
|
14715
|
+
genDayIntervals(index) {
|
14716
|
+
return this.intervals[index].map(this.genDayInterval);
|
14620
14717
|
},
|
14621
14718
|
|
14622
|
-
genDayInterval(interval
|
14719
|
+
genDayInterval(interval) {
|
14623
14720
|
const height = convertToUnit(this.intervalHeight);
|
14624
14721
|
const styler = this.intervalStyle || this.intervalStyleDefault;
|
14625
14722
|
const data = {
|
@@ -14628,10 +14725,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
14628
14725
|
style: {
|
14629
14726
|
height,
|
14630
14727
|
...styler(interval)
|
14631
|
-
}
|
14632
|
-
on: this.getDefaultMouseEventHandlers(':time', e => {
|
14633
|
-
return this.getSlotScope(this.getTimestampAtEvent(e, day));
|
14634
|
-
})
|
14728
|
+
}
|
14635
14729
|
};
|
14636
14730
|
const children = getSlot(this, 'interval', () => this.getSlotScope(interval));
|
14637
14731
|
return this.$createElement('div', data, children);
|
@@ -18487,11 +18581,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
18487
18581
|
this.$nextTick(this.updateSelf);
|
18488
18582
|
},
|
18489
18583
|
|
18490
|
-
onFilteredItemsChanged(val, oldVal) {
|
18491
|
-
if (!this.autoSelectFirst) return;
|
18492
|
-
VAutocomplete.options.methods.onFilteredItemsChanged.call(this, val, oldVal);
|
18493
|
-
},
|
18494
|
-
|
18495
18584
|
onKeyDown(e) {
|
18496
18585
|
const keyCode = e.keyCode;
|
18497
18586
|
|
@@ -24750,7 +24839,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
24750
24839
|
},
|
24751
24840
|
|
24752
24841
|
onClick: BaseItemGroup.options.methods.onClick
|
24842
|
+
},
|
24843
|
+
|
24844
|
+
render(h) {
|
24845
|
+
const vnode = VInput.options.render.call(this, h);
|
24846
|
+
|
24847
|
+
this._b(vnode.data, 'div', this.attrs$);
|
24848
|
+
|
24849
|
+
return vnode;
|
24753
24850
|
}
|
24851
|
+
|
24754
24852
|
});
|
24755
24853
|
|
24756
24854
|
// Styles
|
@@ -25111,7 +25209,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
25111
25209
|
this.thumbPressed = true;
|
25112
25210
|
}
|
25113
25211
|
|
25114
|
-
this.activeThumb
|
25212
|
+
if (this.activeThumb === null) {
|
25213
|
+
this.activeThumb = this.getIndexOfClosestValue(this.internalValue, value);
|
25214
|
+
}
|
25215
|
+
|
25115
25216
|
this.setInternalValue(value);
|
25116
25217
|
},
|
25117
25218
|
|
@@ -27249,20 +27350,30 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
27249
27350
|
}
|
27250
27351
|
|
27251
27352
|
},
|
27252
|
-
|
27253
|
-
mounted() {
|
27254
|
-
this.onRouteChange();
|
27255
|
-
},
|
27256
|
-
|
27257
27353
|
methods: {
|
27258
27354
|
click(e) {
|
27259
|
-
//
|
27355
|
+
// Prevent keyboard actions
|
27356
|
+
// from children elements
|
27357
|
+
// within disabled tabs
|
27358
|
+
if (this.disabled) {
|
27359
|
+
e.preventDefault();
|
27360
|
+
return;
|
27361
|
+
} // If user provides an
|
27260
27362
|
// actual link, do not
|
27261
27363
|
// prevent default
|
27364
|
+
|
27365
|
+
|
27262
27366
|
if (this.href && this.href.indexOf('#') > -1) e.preventDefault();
|
27263
27367
|
if (e.detail) this.$el.blur();
|
27264
27368
|
this.$emit('click', e);
|
27265
27369
|
this.to || this.toggle();
|
27370
|
+
},
|
27371
|
+
|
27372
|
+
toggle() {
|
27373
|
+
// VItemGroup treats a change event as a click
|
27374
|
+
if (!this.isActive) {
|
27375
|
+
this.$emit('change');
|
27376
|
+
}
|
27266
27377
|
}
|
27267
27378
|
|
27268
27379
|
},
|
@@ -32543,7 +32654,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
32543
32654
|
},
|
32544
32655
|
scopedSlots: _vm._u(
|
32545
32656
|
[
|
32546
|
-
_vm.instance.expandButton &&
|
32657
|
+
_vm.instance.expandButton && !_vm.$slots.expandButton
|
32547
32658
|
? {
|
32548
32659
|
key: "actions",
|
32549
32660
|
fn: function () {
|
@@ -32564,9 +32675,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
32564
32675
|
},
|
32565
32676
|
proxy: true,
|
32566
32677
|
}
|
32567
|
-
: !_vm.instance.expandButton &&
|
32568
|
-
this &&
|
32569
|
-
!this.$slots.expandButton
|
32678
|
+
: !_vm.instance.expandButton && !_vm.$slots.expandButton
|
32570
32679
|
? {
|
32571
32680
|
key: "actions",
|
32572
32681
|
fn: function () {
|
@@ -32600,7 +32709,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
32600
32709
|
_c(
|
32601
32710
|
"div",
|
32602
32711
|
[
|
32603
|
-
|
32712
|
+
!_vm.$slots.header
|
32604
32713
|
? _vm._l(_vm.instance.header, function (item) {
|
32605
32714
|
return _c(
|
32606
32715
|
item.component,
|
@@ -32662,7 +32771,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
32662
32771
|
/* style */
|
32663
32772
|
const __vue_inject_styles__$17 = function (inject) {
|
32664
32773
|
if (!inject) return
|
32665
|
-
inject("data-v-
|
32774
|
+
inject("data-v-c3d045c2_0", { source: ".v-expansion-panels.tile, .v-expansion-panels.tile:not(.v-expansion-panels--accordion) > .v-expansion-panel--active, .v-expansion-panels.tile:not(.v-expansion-panels--accordion) > .v-expansion-panel--next-active {\n border-radius: var(--border-tile);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active {\n box-shadow: var(--shadow-3);\n border-radius: var(--border);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel::before, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active::before, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active::before {\n box-shadow: none;\n}\n.v-expansion-panels > div:first-child.v-expansion-panel.outlined, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active.outlined, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active.outlined {\n box-shadow: none;\n border: var(--regular) solid var(--v-secondary-base);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel.raised, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active.raised, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active.raised {\n box-shadow: var(--shadow-9);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel .v-expansion-panel-content__wrap, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-content__wrap, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active .v-expansion-panel-content__wrap {\n padding: 0 var(--spacing-4) var(--spacing-4) var(--spacing-4);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel .v-expansion-panel-header, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-header, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active .v-expansion-panel-header {\n border-bottom-left-radius: inherit;\n border-bottom-right-radius: inherit;\n min-height: 0;\n padding: var(--spacing-4);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel .v-expansion-panel-header .v-expansion-panel-header__icon .v-btn .v-icon, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-header .v-expansion-panel-header__icon .v-btn .v-icon, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active .v-expansion-panel-header .v-expansion-panel-header__icon .v-btn .v-icon {\n color: currentColor;\n}\n.v-expansion-panels > div:first-child.v-expansion-panel .v-expansion-panel-header > :not(.v-expansion-panel-header__icon), .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-header > :not(.v-expansion-panel-header__icon), .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active .v-expansion-panel-header > :not(.v-expansion-panel-header__icon) {\n padding-right: var(--spacing-4);\n}\n.v-expansion-panels--flat > div:first-child.v-expansion-panel, .v-expansion-panels--flat > div:first-child.v-expansion-panel.v-expansion-panel--active, .v-expansion-panels--flat > div:first-child.v-expansion-panel.v-expansion-panel--next-active {\n box-shadow: none;\n}\n.v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel:hover, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel:focus, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel.v-expansion-panel--active:hover, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel.v-expansion-panel--active:focus, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel.v-expansion-panel--next-active:hover, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel.v-expansion-panel--next-active:focus {\n box-shadow: var(--shadow-5);\n}", map: undefined, media: undefined });
|
32666
32775
|
|
32667
32776
|
};
|
32668
32777
|
/* scoped */
|
@@ -35163,9 +35272,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
35163
35272
|
accept: _vm.instance.accept,
|
35164
35273
|
autofocus: _vm.instance.autofocus,
|
35165
35274
|
chips: _vm.instance.chips,
|
35166
|
-
counter: !!
|
35167
|
-
?
|
35168
|
-
:
|
35275
|
+
counter: !!_vm.instance.maxFiles
|
35276
|
+
? _vm.instance.maxFiles
|
35277
|
+
: _vm.instance.showCounter,
|
35169
35278
|
"counter-string":
|
35170
35279
|
_vm.$t(_vm.instance.counterString) || "$vuetify.fileInput.counter",
|
35171
35280
|
"counter-size-string":
|
@@ -35221,7 +35330,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
35221
35330
|
/* style */
|
35222
35331
|
const __vue_inject_styles__$Y = function (inject) {
|
35223
35332
|
if (!inject) return
|
35224
|
-
inject("data-v-
|
35333
|
+
inject("data-v-7cbc0c35_0", { source: ".zd-file-input > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-1);\n}\n.zd-file-input > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text:not(.v-file-input__text--placeholder) {\n color: var(--zd-font-color);\n}\n.zd-file-input > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text .v-chip {\n border-radius: var(--border);\n padding: 0 var(--spacing-2);\n}\n.zd-file-input > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text .v-chip .chip-remove-icon {\n font-size: var(--icon-size-small);\n margin-left: var(--spacing-2);\n}\n.zd-file-input > .v-input__control > .v-input__slot > .v-text-field__slot input {\n padding: 0;\n}\n.zd-file-input.zd-dense > .v-input__control > .v-input__slot > .v-text-field__slot {\n min-height: 24px;\n}\n.zd-file-input.zd-dense > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text .v-chip {\n height: 16px;\n line-height: 15px;\n font-size: 11px;\n}\n.zd-file-input.zd-dense > .v-input__control > .v-input__slot > .v-text-field__slot input {\n padding: 0;\n}\n.zd-file-input.with-drag-area {\n padding-top: calc(var(--drag-area-height) + 17px);\n}\n.zd-file-input.with-drag-area.zd-no-label {\n padding-top: calc(var(--drag-area-height) + 5px);\n}\n.zd-file-input.with-drag-area.zd-no-label > .v-input__control > .v-input__slot > .v-text-field__slot .v-label {\n height: calc(var(--drag-area-height) + 5px);\n top: calc(-5px - var(--drag-area-height));\n}\n.zd-file-input.with-drag-area.v-text-field--reverse > .v-input__control > .v-input__slot > .v-text-field__slot .v-label {\n text-align: right;\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label {\n height: calc(var(--drag-area-height) + 25px);\n top: calc(-25px - var(--drag-area-height));\n right: 0 !important;\n left: 0 !important;\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-label {\n height: 20px;\n display: block;\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-drag-area {\n width: 100%;\n height: var(--drag-area-height);\n border: dashed var(--regular) #c4c4c4;\n background: #f8f8f8;\n position: relative;\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-drag-area.dragging {\n background: #f0f0f0;\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-drag-area .zd-file-input-drag-content {\n text-align: center;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-drag-area .zd-file-input-drag-content > span {\n display: block;\n}\n.zd-file-input.v-input--is-disabled > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text {\n opacity: 0.5;\n}\n.zd-file-input.v-text-field--reverse > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text {\n flex-direction: row-reverse;\n}", map: undefined, media: undefined });
|
35225
35334
|
|
35226
35335
|
};
|
35227
35336
|
/* scoped */
|
@@ -35392,9 +35501,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
35392
35501
|
},
|
35393
35502
|
[
|
35394
35503
|
_vm.instance.namedSlotsIsVisible ||
|
35395
|
-
!!
|
35396
|
-
!!
|
35397
|
-
!!
|
35504
|
+
!!_vm.$slots.leftSlot ||
|
35505
|
+
!!_vm.$slots.centerSlot ||
|
35506
|
+
!!_vm.$slots.rightSlot
|
35398
35507
|
? _c(
|
35399
35508
|
"v-col",
|
35400
35509
|
{
|
@@ -35402,18 +35511,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
35402
35511
|
"zd-footer-slot",
|
35403
35512
|
{
|
35404
35513
|
"zd-footer-slot-children":
|
35405
|
-
_vm.instance.children.length || !!
|
35514
|
+
_vm.instance.children.length || !!_vm.$slots.leftSlot,
|
35406
35515
|
},
|
35407
35516
|
],
|
35408
35517
|
attrs: { cols: "12" },
|
35409
35518
|
},
|
35410
35519
|
[
|
35411
|
-
_vm.instance.leftSlot.length || !!
|
35520
|
+
_vm.instance.leftSlot.length || !!_vm.$slots.leftSlot
|
35412
35521
|
? _c(
|
35413
35522
|
"span",
|
35414
35523
|
{ staticClass: "zd-footer-slot-left" },
|
35415
35524
|
[
|
35416
|
-
!
|
35525
|
+
!_vm.$slots.leftSlot
|
35417
35526
|
? _vm._l(
|
35418
35527
|
_vm.instance.leftSlot,
|
35419
35528
|
function (child, index) {
|
@@ -35436,12 +35545,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
35436
35545
|
)
|
35437
35546
|
: _vm._e(),
|
35438
35547
|
_vm._v(" "),
|
35439
|
-
_vm.instance.centerSlot.length || !!
|
35548
|
+
_vm.instance.centerSlot.length || !!_vm.$slots.centerSlot
|
35440
35549
|
? _c(
|
35441
35550
|
"span",
|
35442
35551
|
{ ref: "centerSlot", staticClass: "zd-footer-slot-center" },
|
35443
35552
|
[
|
35444
|
-
!
|
35553
|
+
!_vm.$slots.centerSlot
|
35445
35554
|
? _vm._l(
|
35446
35555
|
_vm.instance.centerSlot,
|
35447
35556
|
function (child, index) {
|
@@ -35464,12 +35573,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
35464
35573
|
)
|
35465
35574
|
: _vm._e(),
|
35466
35575
|
_vm._v(" "),
|
35467
|
-
_vm.instance.rightSlot.length || !!
|
35576
|
+
_vm.instance.rightSlot.length || !!_vm.$slots.rightSlot
|
35468
35577
|
? _c(
|
35469
35578
|
"span",
|
35470
35579
|
{ staticClass: "zd-footer-slot-right" },
|
35471
35580
|
[
|
35472
|
-
!
|
35581
|
+
!_vm.$slots.rightSlot
|
35473
35582
|
? _vm._l(
|
35474
35583
|
_vm.instance.rightSlot,
|
35475
35584
|
function (child, index) {
|
@@ -35529,11 +35638,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
35529
35638
|
/* style */
|
35530
35639
|
const __vue_inject_styles__$X = function (inject) {
|
35531
35640
|
if (!inject) return
|
35532
|
-
inject("data-v-
|
35641
|
+
inject("data-v-0e463e42_0", { source: ".zd-footer-slot[data-v-0e463e42] {\n display: flex;\n padding: 0;\n}\n.zd-footer-slot-children[data-v-0e463e42] {\n padding-bottom: var(--spacing-2);\n}\n.zd-footer-slot-left > *[data-v-0e463e42], .zd-footer-slot-center > *[data-v-0e463e42], .zd-footer-slot-right > *[data-v-0e463e42] {\n margin: 0 var(--spacing-1);\n}\n.zd-footer-slot-left > *[data-v-0e463e42]:first-child, .zd-footer-slot-center > *[data-v-0e463e42]:first-child, .zd-footer-slot-right > *[data-v-0e463e42]:first-child {\n margin-left: 0;\n}\n.zd-footer-slot-left > *[data-v-0e463e42]:last-child, .zd-footer-slot-center > *[data-v-0e463e42]:last-child, .zd-footer-slot-right > *[data-v-0e463e42]:last-child {\n margin-right: 0;\n}\n.zd-footer-slot-center[data-v-0e463e42] {\n position: absolute;\n left: 50%;\n transform: translateX(-50%);\n}\n.zd-footer-slot-right[data-v-0e463e42] {\n margin-left: auto;\n}", map: undefined, media: undefined });
|
35533
35642
|
|
35534
35643
|
};
|
35535
35644
|
/* scoped */
|
35536
|
-
const __vue_scope_id__$X = "data-v-
|
35645
|
+
const __vue_scope_id__$X = "data-v-0e463e42";
|
35537
35646
|
/* module identifier */
|
35538
35647
|
const __vue_module_identifier__$X = undefined;
|
35539
35648
|
/* functional template */
|
@@ -36442,7 +36551,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
36442
36551
|
_vm.instance.cssClass,
|
36443
36552
|
{ "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
|
36444
36553
|
],
|
36445
|
-
style: [
|
36554
|
+
style: [
|
36555
|
+
_vm.cssColorVars,
|
36556
|
+
_vm.instance.cssStyle,
|
36557
|
+
_vm.instance.gridHeight
|
36558
|
+
? { height: _vm.$formatSize(_vm.instance.gridHeight) }
|
36559
|
+
: {},
|
36560
|
+
],
|
36446
36561
|
attrs: {
|
36447
36562
|
"fixed-header": "",
|
36448
36563
|
"disable-pagination": "",
|
@@ -37198,7 +37313,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
37198
37313
|
/* style */
|
37199
37314
|
const __vue_inject_styles__$T = function (inject) {
|
37200
37315
|
if (!inject) return
|
37201
|
-
inject("data-v-
|
37316
|
+
inject("data-v-cb9ca06e_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: nowrap;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\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: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: unset;\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: nowrap;\n text-overflow: ellipsis;\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: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: unset;\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}\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}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n}", map: undefined, media: undefined });
|
37202
37317
|
|
37203
37318
|
};
|
37204
37319
|
/* scoped */
|
@@ -38328,7 +38443,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38328
38443
|
/* style */
|
38329
38444
|
const __vue_inject_styles__$S = function (inject) {
|
38330
38445
|
if (!inject) return
|
38331
|
-
inject("data-v-be9c362e_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}\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}\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}\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: nowrap;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\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: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: unset;\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: nowrap;\n text-overflow: ellipsis;\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: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: unset;\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}\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}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n}", map: undefined, media: undefined })
|
38446
|
+
inject("data-v-be9c362e_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: nowrap;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\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: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: unset;\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: nowrap;\n text-overflow: ellipsis;\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: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: unset;\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}\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}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n}", map: undefined, media: undefined })
|
38332
38447
|
,inject("data-v-be9c362e_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 });
|
38333
38448
|
|
38334
38449
|
};
|
@@ -38531,12 +38646,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38531
38646
|
attrs: { cols: "12" },
|
38532
38647
|
},
|
38533
38648
|
[
|
38534
|
-
_vm.instance.leftSlot.length || !!
|
38649
|
+
_vm.instance.leftSlot.length || !!_vm.$slots.leftSlot
|
38535
38650
|
? _c(
|
38536
38651
|
"span",
|
38537
38652
|
{ staticClass: "zd-header-slot-left" },
|
38538
38653
|
[
|
38539
|
-
!
|
38654
|
+
!_vm.$slots.leftSlot
|
38540
38655
|
? _vm._l(
|
38541
38656
|
_vm.instance.leftSlot,
|
38542
38657
|
function (child, index) {
|
@@ -38572,12 +38687,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38572
38687
|
)
|
38573
38688
|
: _vm._e(),
|
38574
38689
|
_vm._v(" "),
|
38575
|
-
_vm.instance.centerSlot.length || !!
|
38690
|
+
_vm.instance.centerSlot.length || !!_vm.$slots.centerSlot
|
38576
38691
|
? _c(
|
38577
38692
|
"span",
|
38578
38693
|
{ ref: "centerSlot", staticClass: "zd-header-slot-center" },
|
38579
38694
|
[
|
38580
|
-
!
|
38695
|
+
!_vm.$slots.centerSlot
|
38581
38696
|
? _vm._l(
|
38582
38697
|
_vm.instance.centerSlot,
|
38583
38698
|
function (child, index) {
|
@@ -38613,12 +38728,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38613
38728
|
)
|
38614
38729
|
: _vm._e(),
|
38615
38730
|
_vm._v(" "),
|
38616
|
-
_vm.instance.rightSlot.length || !!
|
38731
|
+
_vm.instance.rightSlot.length || !!_vm.$slots.rightSlot
|
38617
38732
|
? _c(
|
38618
38733
|
"span",
|
38619
38734
|
{ staticClass: "zd-header-slot-right" },
|
38620
38735
|
[
|
38621
|
-
!
|
38736
|
+
!_vm.$slots.rightSlot
|
38622
38737
|
? _vm._l(
|
38623
38738
|
_vm.instance.rightSlot,
|
38624
38739
|
function (child, index) {
|
@@ -38691,7 +38806,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38691
38806
|
/* style */
|
38692
38807
|
const __vue_inject_styles__$R = function (inject) {
|
38693
38808
|
if (!inject) return
|
38694
|
-
inject("data-v-
|
38809
|
+
inject("data-v-489cc01b_0", { source: ".zd-header-slot {\n display: flex;\n padding: 0;\n align-items: center;\n}\n.zd-header-slot-children {\n padding-bottom: var(--spacing-2);\n}\n.zd-header-slot-left > *, .zd-header-slot-center > *, .zd-header-slot-right > * {\n margin: 0 var(--spacing-1);\n display: inline-flex;\n vertical-align: middle;\n}\n.zd-header-slot-center {\n position: absolute;\n left: 50%;\n transform: translateX(-50%);\n}\n.zd-header-slot-right {\n margin-left: auto;\n}\n.zd-header.padless > .v-toolbar__content {\n padding: 0;\n}", map: undefined, media: undefined });
|
38695
38810
|
|
38696
38811
|
};
|
38697
38812
|
/* scoped */
|
@@ -38866,7 +38981,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38866
38981
|
? [
|
38867
38982
|
_vm._t("errorSlot"),
|
38868
38983
|
_vm._v(" "),
|
38869
|
-
!
|
38984
|
+
!_vm.$slots.errorSlot
|
38870
38985
|
? _vm._l(_vm.instance.errorSlot, function (child, index) {
|
38871
38986
|
return _c(
|
38872
38987
|
child.component,
|
@@ -38896,7 +39011,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38896
39011
|
? [
|
38897
39012
|
_vm._t("noResultSlot"),
|
38898
39013
|
_vm._v(" "),
|
38899
|
-
!
|
39014
|
+
!_vm.$slots.noResultSlot
|
38900
39015
|
? _vm._l(
|
38901
39016
|
_vm.instance.noResultSlot,
|
38902
39017
|
function (child, index) {
|
@@ -38920,7 +39035,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38920
39035
|
: [
|
38921
39036
|
_vm._t("noDataSlot"),
|
38922
39037
|
_vm._v(" "),
|
38923
|
-
!
|
39038
|
+
!_vm.$slots.noDataSlot
|
38924
39039
|
? _vm._l(_vm.instance.noDataSlot, function (child, index) {
|
38925
39040
|
return _c(
|
38926
39041
|
child.component,
|
@@ -40205,7 +40320,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40205
40320
|
},
|
40206
40321
|
scopedSlots: _vm._u(
|
40207
40322
|
[
|
40208
|
-
_vm.instance.itemBeforeSlot.length || !!
|
40323
|
+
_vm.instance.itemBeforeSlot.length || !!_vm.$slots.itemBeforeSlot
|
40209
40324
|
? {
|
40210
40325
|
key: "prepend-item",
|
40211
40326
|
fn: function () {
|
@@ -40376,7 +40491,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40376
40491
|
/* style */
|
40377
40492
|
const __vue_inject_styles__$H = function (inject) {
|
40378
40493
|
if (!inject) return
|
40379
|
-
inject("data-v-
|
40494
|
+
inject("data-v-1ab70aec_0", { source: ".zd-select .v-input__control .v-input__slot .v-select__slot {\n position: static;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer {\n margin-right: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-left: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-top: 5px;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-inner, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-inner {\n padding-left: 0;\n padding-right: 0;\n}\n.zd-select.zd-select-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.zd-select.zd-select-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.zd-select.zd-select-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}\n.zd-select .v-select__selections {\n padding: 0;\n width: 172px;\n overflow: hidden;\n white-space: nowrap;\n flex-wrap: nowrap;\n text-overflow: ellipsis;\n}\n.zd-select .v-select__selections .v-select__selection {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n margin: 0;\n max-width: none;\n}\n.zd-select .v-select__selections .v-select__selection--disabled {\n opacity: 0.5;\n}\n.zd-select.zd-dense .v-input__append-inner, .zd-select.zd-dense .v-input__prepend-inner {\n margin-top: 0;\n}\n.zd-select-append-item .v-list-item__content {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-size);\n color: var(--v-primary-base);\n}\n.v-menu__content.zd-select-menu {\n box-shadow: var(--shadow-2);\n}\n.v-menu__content.zd-select-menu .v-select-list {\n padding: 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item {\n height: auto;\n min-height: 40px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__content {\n padding: var(--spacing-2) 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__title {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n height: auto;\n line-height: unset;\n white-space: unset;\n overflow: auto;\n text-overflow: unset;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled .v-list-item__title {\n opacity: 0.5;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled.primary--text .v-list-item__title {\n color: inherit;\n}\n.v-menu__content.zd-select-menu.zd-dense .v-list-item {\n height: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu.zd-select-align-left .v-list-item__content .v-list-item__title {\n text-align: left;\n}\n.v-menu__content.zd-select-menu.zd-select-align-center .v-list-item__content .v-list-item__title {\n text-align: center;\n}\n.v-menu__content.zd-select-menu.zd-select-align-right .v-list-item__content .v-list-item__title {\n text-align: right;\n}", map: undefined, media: undefined });
|
40380
40495
|
|
40381
40496
|
};
|
40382
40497
|
/* scoped */
|
@@ -40681,7 +40796,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40681
40796
|
},
|
40682
40797
|
},
|
40683
40798
|
[
|
40684
|
-
!
|
40799
|
+
!_vm.$slots.items
|
40685
40800
|
? [
|
40686
40801
|
_vm._l(_vm.instance.items, function (item, index) {
|
40687
40802
|
return [
|
@@ -40718,7 +40833,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40718
40833
|
/* style */
|
40719
40834
|
const __vue_inject_styles__$E = function (inject) {
|
40720
40835
|
if (!inject) return
|
40721
|
-
inject("data-v-
|
40836
|
+
inject("data-v-13d9c4d2_0", { source: ".zd-list.v-list--dense .zd-list-group.v-list-item--three-line {\n min-height: 76px;\n}\n.zd-list .v-list-item .v-list-item__icon {\n flex-direction: column;\n justify-content: center;\n align-self: center;\n height: auto;\n}\n.zd-list .v-list-item .v-list-item__icon.v-list-group__header__prepend-icon {\n margin: 4px 16px 4px 0;\n}\n.zd-list .v-list-item .v-list-item__icon.v-list-group__header__append-icon {\n margin: 4px 0 4px 16px;\n}\n.zd-list .zd-list-item-title {\n font-size: var(--zd-font-body4-size);\n font-weight: var(--zd-font-body4-weight);\n}\n.zd-list .zd-list-item-subtitle {\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n}", map: undefined, media: undefined });
|
40722
40837
|
|
40723
40838
|
};
|
40724
40839
|
/* scoped */
|
@@ -40915,7 +41030,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40915
41030
|
},
|
40916
41031
|
[
|
40917
41032
|
(_vm.instance.leftField || _vm.instance.prependIcon) &&
|
40918
|
-
!
|
41033
|
+
!_vm.$slots.leftField
|
40919
41034
|
? _c(
|
40920
41035
|
"div",
|
40921
41036
|
{
|
@@ -40954,7 +41069,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40954
41069
|
}),
|
40955
41070
|
_vm._v(" "),
|
40956
41071
|
(_vm.instance.rightField || _vm.instance.appendIcon) &&
|
40957
|
-
!
|
41072
|
+
!_vm.$slots.rightField
|
40958
41073
|
? _c(
|
40959
41074
|
"div",
|
40960
41075
|
{
|
@@ -41093,7 +41208,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41093
41208
|
return [
|
41094
41209
|
_vm._t("leftField"),
|
41095
41210
|
_vm._v(" "),
|
41096
|
-
_vm.instance.leftField && !
|
41211
|
+
_vm.instance.leftField && !_vm.$slots.leftField
|
41097
41212
|
? _c(
|
41098
41213
|
_vm.instance.leftField.component,
|
41099
41214
|
_vm._b(
|
@@ -41136,7 +41251,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41136
41251
|
return [
|
41137
41252
|
_vm._t("rightField"),
|
41138
41253
|
_vm._v(" "),
|
41139
|
-
_vm.instance.rightField && !
|
41254
|
+
_vm.instance.rightField && !_vm.$slots.rightField
|
41140
41255
|
? _c(
|
41141
41256
|
_vm.instance.rightField.component,
|
41142
41257
|
_vm._b(
|
@@ -41179,7 +41294,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41179
41294
|
"v-list",
|
41180
41295
|
{ class: ["zd-list zd-pl-4 zd-py-0 group-list"] },
|
41181
41296
|
[
|
41182
|
-
!
|
41297
|
+
!_vm.$slots.items
|
41183
41298
|
? _vm._l(_vm.instance.items, function (item) {
|
41184
41299
|
return _c(
|
41185
41300
|
item.component,
|
@@ -41211,7 +41326,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41211
41326
|
/* style */
|
41212
41327
|
const __vue_inject_styles__$B = function (inject) {
|
41213
41328
|
if (!inject) return
|
41214
|
-
inject("data-v-
|
41329
|
+
inject("data-v-1ebcd268_0", { source: ".zd-list-group .group-list {\n background-color: inherit;\n}\n.zd-list-group.v-list-item--two-line > .v-list-item, .zd-list-group.v-list-item--three-line > .v-list-item {\n min-height: inherit;\n}", map: undefined, media: undefined });
|
41215
41330
|
|
41216
41331
|
};
|
41217
41332
|
/* scoped */
|
@@ -41528,7 +41643,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41528
41643
|
)
|
41529
41644
|
: _vm._e(),
|
41530
41645
|
_vm._v(" "),
|
41531
|
-
_vm.instance.bottomLink.length && !
|
41646
|
+
_vm.instance.bottomLink.length && !_vm.$slots.bottomLink
|
41532
41647
|
? _c(
|
41533
41648
|
"div",
|
41534
41649
|
{ staticClass: "zd-login-sign-in" },
|
@@ -41586,7 +41701,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41586
41701
|
/* style */
|
41587
41702
|
const __vue_inject_styles__$z = function (inject) {
|
41588
41703
|
if (!inject) return
|
41589
|
-
inject("data-v-
|
41704
|
+
inject("data-v-e2615f22_0", { source: ".zd-login {\n background-size: cover !important;\n height: 100%;\n}\n@media only screen and (max-width: 730px) {\n.zd-login .zd-login div.zd-login-card {\n height: 100%;\n border-radius: unset;\n width: 100%;\n}\n.zd-login .zd-login .flex {\n height: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.zd-login .zd-login .zd-login-powered-by {\n display: none;\n}\n.zd-login .zd-login .zd-login-powered-by-card {\n display: block;\n}\n}\n.zd-login .zd-login-button {\n width: 100%;\n}\n.zd-login .zd-login-powered-by-card-always-visible {\n display: block !important;\n}\n.zd-login .v-card {\n box-shadow: none;\n margin: 20px;\n}\n.zd-login .position-left {\n justify-content: flex-start;\n}\n.zd-login .position-left .zd-login-powered-by {\n position: absolute;\n bottom: 48px;\n right: 48px;\n}\n.zd-login .position-left .v-sheet {\n border-radius: 0px;\n}\n.zd-login .position-right {\n width: unset;\n justify-content: flex-end;\n}\n.zd-login .position-right .zd-login-powered-by {\n position: absolute;\n bottom: 48px;\n left: 48px;\n}\n.zd-login .position-right .v-sheet {\n border-radius: 0px;\n}\n.zd-login .position-center {\n justify-content: center;\n}\n.zd-login .position-center .zd-login-powered-by {\n position: absolute;\n bottom: 48px;\n left: 48px;\n}\n.zd-login .zd-login-powered-by-card {\n padding: 10px;\n display: none;\n margin-left: auto;\n margin-right: auto;\n}\n.zd-login-card {\n height: 100%;\n padding: 40px;\n background-color: #fff;\n}\n.zd-login-card .zd-login-message {\n font-size: var(--zd-font-headline-size);\n font-weight: var(--zd-font-headline-weight);\n color: var(--zd-font-default-color);\n line-height: 24px;\n margin-bottom: 20px;\n}\n.zd-login-card .zd-login-logo {\n margin-bottom: 20px;\n}\n.zd-login-card .zd-login-toolbar .v-card__title {\n padding: 0;\n align-items: center;\n display: flex;\n flex-wrap: wrap;\n}\n.zd-login-card .zd-login-card-content {\n width: 100%;\n}\n.zd-login-card .zd-login-card-actions {\n display: flex;\n justify-content: center;\n flex-wrap: wrap;\n margin-top: 20px;\n margin-bottom: 20px;\n}\n.zd-login-card .zd-login-sign-in {\n display: flex;\n align-items: center;\n justify-content: center;\n border-top: solid var(--regular) #f5f5f5;\n padding-top: 10px;\n text-align: center;\n font-size: var(--zd-font-body1-size);\n}\n.zd-login-card .zd-login-social-buttons {\n padding: 10px;\n}\n.zd-login-card .zd-login-social-buttons > img {\n border: solid var(--regular) #e0e0e0;\n border-radius: 50%;\n vertical-align: top;\n position: relative;\n cursor: pointer;\n align-items: center;\n align-content: center;\n}", map: undefined, media: undefined });
|
41590
41705
|
|
41591
41706
|
};
|
41592
41707
|
/* scoped */
|
@@ -41985,7 +42100,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41985
42100
|
[
|
41986
42101
|
_vm.instance.topSlot.length ||
|
41987
42102
|
_vm.instance.showSearch ||
|
41988
|
-
!!
|
42103
|
+
!!_vm.$slots.topSlot
|
41989
42104
|
? _c(
|
41990
42105
|
"span",
|
41991
42106
|
{
|
@@ -42012,18 +42127,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42012
42127
|
)
|
42013
42128
|
: _vm._e(),
|
42014
42129
|
_vm._v(" "),
|
42015
|
-
!
|
42130
|
+
!_vm.$slots.topSlot
|
42016
42131
|
? _vm._l(_vm.instance.topSlot, function (item) {
|
42017
42132
|
return _c(
|
42018
42133
|
item.component,
|
42019
|
-
_vm.
|
42020
|
-
|
42021
|
-
|
42022
|
-
|
42023
|
-
|
42024
|
-
false
|
42025
|
-
),
|
42026
|
-
item.events
|
42134
|
+
_vm._b(
|
42135
|
+
{ key: item.name, tag: "component" },
|
42136
|
+
"component",
|
42137
|
+
item,
|
42138
|
+
false
|
42027
42139
|
)
|
42028
42140
|
)
|
42029
42141
|
})
|
@@ -42070,7 +42182,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42070
42182
|
/* style */
|
42071
42183
|
const __vue_inject_styles__$w = function (inject) {
|
42072
42184
|
if (!inject) return
|
42073
|
-
inject("data-v-
|
42185
|
+
inject("data-v-417d785a_0", { source: ".zd-menu .v-list .v-list-item .v-list-item__title {\n font-weight: var(--zd-font-body1-weight);\n font-size: var(--zd-font-body1-size);\n color: var(--zd-font-color);\n text-align: left;\n}\n.zd-menu .v-list .v-list-item .v-list-item__icon .v-icon {\n color: var(--zd-font-color);\n}\n.zd-menu .v-list .v-list-item.selected .v-list-item__title {\n font-weight: var(--zd-font-body2-weight);\n color: var(--v-primary-base);\n}\n.zd-menu .v-list .v-list-item.selected .v-list-item__icon .v-icon {\n color: var(--v-primary-base);\n}\n.zd-menu .v-list .v-list-item.v-list-item--active:not(.focus-visible):not(:focus):not([data-focus-visible-added]):not(:hover):before {\n opacity: 0;\n}\n.zd-menu .v-list .v-list-group.selected > .v-list-group__header .v-list-item__title {\n font-weight: var(--zd-font-body2-weight);\n color: var(--v-primary-base);\n}\n.zd-menu .v-list .v-list-group.selected > .v-list-group__header .v-list-item__icon .v-icon {\n color: var(--v-primary-base);\n}\n.zd-menu .v-list .zd-menu-top-slot {\n margin-bottom: 10px;\n display: block;\n}\n.zd-menu.v-navigation-drawer--mini-variant .v-list-item {\n justify-content: inherit;\n}\n.zd-menu.theme--dark .v-list .v-list-item .v-list-item__title {\n color: var(--v--grey-lighten5);\n}\n.zd-menu.theme--dark .v-list .v-list-item .v-list-item__icon .v-icon {\n color: var(--v--grey-lighten5);\n}", map: undefined, media: undefined });
|
42074
42186
|
|
42075
42187
|
};
|
42076
42188
|
/* scoped */
|
@@ -43008,11 +43120,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
43008
43120
|
false
|
43009
43121
|
),
|
43010
43122
|
[
|
43011
|
-
_vm.instance.centerSlot.length || !!
|
43123
|
+
_vm.instance.centerSlot.length || !!_vm.$slots.centerSlot
|
43012
43124
|
? _c(
|
43013
43125
|
"div",
|
43014
43126
|
[
|
43015
|
-
!
|
43127
|
+
!_vm.$slots.centerSlot
|
43016
43128
|
? _vm._l(_vm.instance.centerSlot, function (child, index) {
|
43017
43129
|
return _c(
|
43018
43130
|
child.component,
|
@@ -44620,11 +44732,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44620
44732
|
},
|
44621
44733
|
},
|
44622
44734
|
model: {
|
44623
|
-
value: _vm.instance.
|
44735
|
+
value: _vm.instance.selectValue,
|
44624
44736
|
callback: function ($$v) {
|
44625
|
-
_vm.$set(_vm.instance, "
|
44737
|
+
_vm.$set(_vm.instance, "selectValue", $$v);
|
44626
44738
|
},
|
44627
|
-
expression: "instance.
|
44739
|
+
expression: "instance.selectValue",
|
44628
44740
|
},
|
44629
44741
|
}),
|
44630
44742
|
_vm._v(" "),
|
@@ -44690,7 +44802,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44690
44802
|
/* style */
|
44691
44803
|
const __vue_inject_styles__$h = function (inject) {
|
44692
44804
|
if (!inject) return
|
44693
|
-
inject("data-v-
|
44805
|
+
inject("data-v-5483e419_0", { source: ".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 .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--single .vue-treeselect__option--selected {\n background: #7725831a;\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n}\n.vue-treeselect--single .vue-treeselect__option--selected:hover {\n background: #7725831a;\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\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 {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\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}", map: undefined, media: undefined });
|
44694
44806
|
|
44695
44807
|
};
|
44696
44808
|
/* scoped */
|
@@ -44860,11 +44972,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44860
44972
|
"search-change": _vm.onSearchChange,
|
44861
44973
|
},
|
44862
44974
|
model: {
|
44863
|
-
value: _vm.instance.
|
44975
|
+
value: _vm.instance.selectValue,
|
44864
44976
|
callback: function ($$v) {
|
44865
|
-
_vm.$set(_vm.instance, "
|
44977
|
+
_vm.$set(_vm.instance, "selectValue", $$v);
|
44866
44978
|
},
|
44867
|
-
expression: "instance.
|
44979
|
+
expression: "instance.selectValue",
|
44868
44980
|
},
|
44869
44981
|
}),
|
44870
44982
|
_vm._v(" "),
|
@@ -44930,7 +45042,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44930
45042
|
/* style */
|
44931
45043
|
const __vue_inject_styles__$g = function (inject) {
|
44932
45044
|
if (!inject) return
|
44933
|
-
inject("data-v-
|
45045
|
+
inject("data-v-5a70508b_0", { 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: 2px;\n padding-bottom: 2px;\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}", map: undefined, media: undefined });
|
44934
45046
|
|
44935
45047
|
};
|
44936
45048
|
/* scoped */
|
@@ -48193,7 +48305,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48193
48305
|
],
|
48194
48306
|
},
|
48195
48307
|
[
|
48196
|
-
item.tree__children
|
48308
|
+
(item.tree__children || [])
|
48309
|
+
.length > 0
|
48197
48310
|
? _c(
|
48198
48311
|
"v-icon",
|
48199
48312
|
{
|
@@ -48413,8 +48526,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48413
48526
|
/* style */
|
48414
48527
|
const __vue_inject_styles__$1 = function (inject) {
|
48415
48528
|
if (!inject) return
|
48416
|
-
inject("data-v-
|
48417
|
-
,inject("data-v-
|
48529
|
+
inject("data-v-1689b892_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: nowrap;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\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: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: unset;\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: nowrap;\n text-overflow: ellipsis;\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: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: unset;\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}\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}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n}", map: undefined, media: undefined })
|
48530
|
+
,inject("data-v-1689b892_1", { source: ".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 });
|
48418
48531
|
|
48419
48532
|
};
|
48420
48533
|
/* scoped */
|
@@ -48465,18 +48578,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48465
48578
|
},
|
48466
48579
|
};
|
48467
48580
|
}
|
48468
|
-
formatSearchResult(text) {
|
48469
|
-
if (this.instance.datasource.search) {
|
48470
|
-
const reg = new RegExp(this.instance.datasource.search, 'gi');
|
48471
|
-
return text.replace(reg, (value) => `<span class="search-result">${value}</span>`);
|
48472
|
-
}
|
48473
|
-
return text;
|
48474
|
-
}
|
48475
|
-
selectClick(index, isSelected, event) {
|
48476
|
-
const row = this.instance.datasource.data[index];
|
48477
|
-
this.instance.selectRow(row, isSelected);
|
48478
|
-
this.selectRowClick(row, isSelected, event);
|
48479
|
-
}
|
48480
48581
|
getEditableComponent(column, row, cellProps) {
|
48481
48582
|
const key = row[this.instance.datasource.uniqueKey];
|
48482
48583
|
const elementName = `column-${column.name}-${key}`;
|
@@ -49584,7 +49685,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
49584
49685
|
/* style */
|
49585
49686
|
const __vue_inject_styles__ = function (inject) {
|
49586
49687
|
if (!inject) return
|
49587
|
-
inject("data-v-a1b8604a_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}\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}\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}\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: nowrap;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\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: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: unset;\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: nowrap;\n text-overflow: ellipsis;\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: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: unset;\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}\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}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n}", map: undefined, media: undefined })
|
49688
|
+
inject("data-v-a1b8604a_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: nowrap;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\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: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: unset;\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: nowrap;\n text-overflow: ellipsis;\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: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: unset;\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}\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}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n}", map: undefined, media: undefined })
|
49588
49689
|
,inject("data-v-a1b8604a_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 });
|
49589
49690
|
|
49590
49691
|
};
|