@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.esm.js
CHANGED
@@ -2216,7 +2216,7 @@ class Vuetify {
|
|
2216
2216
|
}
|
2217
2217
|
Vuetify.install = install;
|
2218
2218
|
Vuetify.installed = false;
|
2219
|
-
Vuetify.version = "2.5.
|
2219
|
+
Vuetify.version = "2.5.14";
|
2220
2220
|
Vuetify.config = {
|
2221
2221
|
silent: false
|
2222
2222
|
};
|
@@ -2515,7 +2515,7 @@ var VSheet = mixins(BindsAttrs, Colorable, Elevatable, Measurable, Roundable, Th
|
|
2515
2515
|
|
2516
2516
|
});
|
2517
2517
|
|
2518
|
-
function inserted$3(el, binding) {
|
2518
|
+
function inserted$3(el, binding, vnode) {
|
2519
2519
|
if (typeof window === 'undefined' || !('IntersectionObserver' in window)) return;
|
2520
2520
|
const modifiers = binding.modifiers || {};
|
2521
2521
|
const value = binding.value;
|
@@ -2527,32 +2527,36 @@ function inserted$3(el, binding) {
|
|
2527
2527
|
options: {}
|
2528
2528
|
};
|
2529
2529
|
const observer = new IntersectionObserver((entries = [], observer) => {
|
2530
|
-
|
2531
|
-
|
2530
|
+
var _el$_observe;
|
2531
|
+
|
2532
|
+
const _observe = (_el$_observe = el._observe) == null ? void 0 : _el$_observe[vnode.context._uid];
|
2533
|
+
|
2534
|
+
if (!_observe) return; // Just in case, should never fire
|
2532
2535
|
|
2533
2536
|
const isIntersecting = entries.some(entry => entry.isIntersecting); // If is not quiet or has already been
|
2534
2537
|
// initted, invoke the user callback
|
2535
2538
|
|
2536
|
-
if (handler && (!modifiers.quiet ||
|
2539
|
+
if (handler && (!modifiers.quiet || _observe.init) && (!modifiers.once || isIntersecting || _observe.init)) {
|
2537
2540
|
handler(entries, observer, isIntersecting);
|
2538
2541
|
}
|
2539
2542
|
|
2540
|
-
if (isIntersecting && modifiers.once) unbind$4(el);else
|
2543
|
+
if (isIntersecting && modifiers.once) unbind$4(el, binding, vnode);else _observe.init = true;
|
2541
2544
|
}, options);
|
2542
|
-
el._observe =
|
2545
|
+
el._observe = Object(el._observe);
|
2546
|
+
el._observe[vnode.context._uid] = {
|
2543
2547
|
init: false,
|
2544
2548
|
observer
|
2545
2549
|
};
|
2546
2550
|
observer.observe(el);
|
2547
2551
|
}
|
2548
2552
|
|
2549
|
-
function unbind$4(el) {
|
2550
|
-
|
2551
|
-
if (!el._observe) return;
|
2553
|
+
function unbind$4(el, binding, vnode) {
|
2554
|
+
var _el$_observe2;
|
2552
2555
|
|
2553
|
-
el._observe.
|
2554
|
-
|
2555
|
-
|
2556
|
+
const observe = (_el$_observe2 = el._observe) == null ? void 0 : _el$_observe2[vnode.context._uid];
|
2557
|
+
if (!observe) return;
|
2558
|
+
observe.observer.unobserve(el);
|
2559
|
+
delete el._observe[vnode.context._uid];
|
2556
2560
|
}
|
2557
2561
|
|
2558
2562
|
const Intersect = {
|
@@ -3162,7 +3166,7 @@ var VToolbar = VSheet.extend({
|
|
3162
3166
|
|
3163
3167
|
});
|
3164
3168
|
|
3165
|
-
function inserted$2(el, binding) {
|
3169
|
+
function inserted$2(el, binding, vnode) {
|
3166
3170
|
const {
|
3167
3171
|
self = false
|
3168
3172
|
} = binding.modifiers || {};
|
@@ -3174,7 +3178,8 @@ function inserted$2(el, binding) {
|
|
3174
3178
|
const target = self ? el : binding.arg ? document.querySelector(binding.arg) : window;
|
3175
3179
|
if (!target) return;
|
3176
3180
|
target.addEventListener('scroll', handler, options);
|
3177
|
-
el._onScroll =
|
3181
|
+
el._onScroll = Object(el._onScroll);
|
3182
|
+
el._onScroll[vnode.context._uid] = {
|
3178
3183
|
handler,
|
3179
3184
|
options,
|
3180
3185
|
// Don't reference self
|
@@ -3182,15 +3187,17 @@ function inserted$2(el, binding) {
|
|
3182
3187
|
};
|
3183
3188
|
}
|
3184
3189
|
|
3185
|
-
function unbind$3(el) {
|
3186
|
-
|
3190
|
+
function unbind$3(el, binding, vnode) {
|
3191
|
+
var _el$_onScroll;
|
3192
|
+
|
3193
|
+
if (!((_el$_onScroll = el._onScroll) != null && _el$_onScroll[vnode.context._uid])) return;
|
3187
3194
|
const {
|
3188
3195
|
handler,
|
3189
3196
|
options,
|
3190
3197
|
target = el
|
3191
|
-
} = el._onScroll;
|
3198
|
+
} = el._onScroll[vnode.context._uid];
|
3192
3199
|
target.removeEventListener('scroll', handler, options);
|
3193
|
-
delete el._onScroll;
|
3200
|
+
delete el._onScroll[vnode.context._uid];
|
3194
3201
|
}
|
3195
3202
|
|
3196
3203
|
const Scroll = {
|
@@ -3365,7 +3372,7 @@ function checkIsActive(e, binding) {
|
|
3365
3372
|
return isActive(e);
|
3366
3373
|
}
|
3367
3374
|
|
3368
|
-
function directive$1(e, el, binding) {
|
3375
|
+
function directive$1(e, el, binding, vnode) {
|
3369
3376
|
const handler = typeof binding.value === 'function' ? binding.value : binding.value.handler;
|
3370
3377
|
el._clickOutside.lastMousedownWasOutside && checkEvent(e, el, binding) && setTimeout(() => {
|
3371
3378
|
checkIsActive(e, binding) && handler && handler(e);
|
@@ -3387,7 +3394,7 @@ const ClickOutside = {
|
|
3387
3394
|
// sure that the root element is
|
3388
3395
|
// available, iOS does not support
|
3389
3396
|
// clicks on body
|
3390
|
-
inserted(el, binding) {
|
3397
|
+
inserted(el, binding, vnode) {
|
3391
3398
|
const onClick = e => directive$1(e, el, binding);
|
3392
3399
|
|
3393
3400
|
const onMousedown = e => {
|
@@ -3398,32 +3405,45 @@ const ClickOutside = {
|
|
3398
3405
|
app.addEventListener('click', onClick, true);
|
3399
3406
|
app.addEventListener('mousedown', onMousedown, true);
|
3400
3407
|
});
|
3401
|
-
|
3402
|
-
|
3408
|
+
|
3409
|
+
if (!el._clickOutside) {
|
3410
|
+
el._clickOutside = {
|
3411
|
+
lastMousedownWasOutside: true
|
3412
|
+
};
|
3413
|
+
}
|
3414
|
+
|
3415
|
+
el._clickOutside[vnode.context._uid] = {
|
3403
3416
|
onClick,
|
3404
3417
|
onMousedown
|
3405
3418
|
};
|
3406
3419
|
},
|
3407
3420
|
|
3408
|
-
unbind(el) {
|
3421
|
+
unbind(el, binding, vnode) {
|
3409
3422
|
if (!el._clickOutside) return;
|
3410
3423
|
handleShadow(el, app => {
|
3411
|
-
|
3412
|
-
|
3413
|
-
app
|
3424
|
+
var _el$_clickOutside;
|
3425
|
+
|
3426
|
+
if (!app || !((_el$_clickOutside = el._clickOutside) != null && _el$_clickOutside[vnode.context._uid])) return;
|
3427
|
+
const {
|
3428
|
+
onClick,
|
3429
|
+
onMousedown
|
3430
|
+
} = el._clickOutside[vnode.context._uid];
|
3431
|
+
app.removeEventListener('click', onClick, true);
|
3432
|
+
app.removeEventListener('mousedown', onMousedown, true);
|
3414
3433
|
});
|
3415
|
-
delete el._clickOutside;
|
3434
|
+
delete el._clickOutside[vnode.context._uid];
|
3416
3435
|
}
|
3417
3436
|
|
3418
3437
|
};
|
3419
3438
|
|
3420
|
-
function inserted$1(el, binding) {
|
3439
|
+
function inserted$1(el, binding, vnode) {
|
3421
3440
|
const callback = binding.value;
|
3422
3441
|
const options = binding.options || {
|
3423
3442
|
passive: true
|
3424
3443
|
};
|
3425
3444
|
window.addEventListener('resize', callback, options);
|
3426
|
-
el._onResize =
|
3445
|
+
el._onResize = Object(el._onResize);
|
3446
|
+
el._onResize[vnode.context._uid] = {
|
3427
3447
|
callback,
|
3428
3448
|
options
|
3429
3449
|
};
|
@@ -3433,14 +3453,16 @@ function inserted$1(el, binding) {
|
|
3433
3453
|
}
|
3434
3454
|
}
|
3435
3455
|
|
3436
|
-
function unbind$2(el) {
|
3437
|
-
|
3456
|
+
function unbind$2(el, binding, vnode) {
|
3457
|
+
var _el$_onResize;
|
3458
|
+
|
3459
|
+
if (!((_el$_onResize = el._onResize) != null && _el$_onResize[vnode.context._uid])) return;
|
3438
3460
|
const {
|
3439
3461
|
callback,
|
3440
3462
|
options
|
3441
|
-
} = el._onResize;
|
3463
|
+
} = el._onResize[vnode.context._uid];
|
3442
3464
|
window.removeEventListener('resize', callback, options);
|
3443
|
-
delete el._onResize;
|
3465
|
+
delete el._onResize[vnode.context._uid];
|
3444
3466
|
}
|
3445
3467
|
|
3446
3468
|
const Resize = {
|
@@ -4819,6 +4841,11 @@ var Routable = Vue.extend({
|
|
4819
4841
|
watch: {
|
4820
4842
|
$route: 'onRouteChange'
|
4821
4843
|
},
|
4844
|
+
|
4845
|
+
mounted() {
|
4846
|
+
this.onRouteChange();
|
4847
|
+
},
|
4848
|
+
|
4822
4849
|
methods: {
|
4823
4850
|
click(e) {
|
4824
4851
|
this.$emit('click', e);
|
@@ -4884,16 +4911,20 @@ var Routable = Vue.extend({
|
|
4884
4911
|
onRouteChange() {
|
4885
4912
|
if (!this.to || !this.$refs.link || !this.$route) return;
|
4886
4913
|
const activeClass = `${this.activeClass} ${this.proxyClass || ''}`.trim();
|
4887
|
-
const
|
4914
|
+
const exactActiveClass = `${this.exactActiveClass} ${this.proxyClass || ''}`.trim() || activeClass;
|
4915
|
+
const path = '_vnode.data.class.' + (this.exact ? exactActiveClass : activeClass);
|
4888
4916
|
this.$nextTick(() => {
|
4889
4917
|
/* istanbul ignore else */
|
4890
|
-
if (getObjectValueByPath(this.$refs.link, path)) {
|
4918
|
+
if (!getObjectValueByPath(this.$refs.link, path) === this.isActive) {
|
4891
4919
|
this.toggle();
|
4892
4920
|
}
|
4893
4921
|
});
|
4894
4922
|
},
|
4895
4923
|
|
4896
|
-
toggle
|
4924
|
+
toggle() {
|
4925
|
+
this.isActive = !this.isActive;
|
4926
|
+
}
|
4927
|
+
|
4897
4928
|
}
|
4898
4929
|
});
|
4899
4930
|
|
@@ -5456,14 +5487,8 @@ function createSimpleTransition(name, origin = 'top center 0', mode) {
|
|
5456
5487
|
|
5457
5488
|
if (context.props.hideOnLeave) {
|
5458
5489
|
data.on.leave = mergeTransitions(data.on.leave, el => {
|
5459
|
-
el._initialDisplay = [el.style.display, el.style.getPropertyPriority('display')];
|
5460
5490
|
el.style.setProperty('display', 'none', 'important');
|
5461
5491
|
});
|
5462
|
-
data.on.afterLeave = mergeTransitions(data.on.afterLeave, el => {
|
5463
|
-
if (el) {
|
5464
|
-
el._initialDisplay ? el.style.setProperty('display', ...el._initialDisplay) : el.style.removeProperty('display');
|
5465
|
-
}
|
5466
|
-
});
|
5467
5492
|
}
|
5468
5493
|
|
5469
5494
|
return h(tag, mergeData(context.data, data), context.children);
|
@@ -6167,6 +6192,12 @@ function validateAttachTarget(val) {
|
|
6167
6192
|
if (type === 'boolean' || type === 'string') return true;
|
6168
6193
|
return val.nodeType === Node.ELEMENT_NODE;
|
6169
6194
|
}
|
6195
|
+
|
6196
|
+
function removeActivator(activator) {
|
6197
|
+
activator.forEach(node => {
|
6198
|
+
node.elm && node.elm.parentNode && node.elm.parentNode.removeChild(node.elm);
|
6199
|
+
});
|
6200
|
+
}
|
6170
6201
|
/* @vue/component */
|
6171
6202
|
|
6172
6203
|
|
@@ -6221,23 +6252,32 @@ var Detachable = mixins(Bootable).extend({
|
|
6221
6252
|
},
|
6222
6253
|
|
6223
6254
|
beforeDestroy() {
|
6224
|
-
|
6225
|
-
|
6226
|
-
|
6227
|
-
|
6228
|
-
}
|
6255
|
+
if (this.$refs.content && this.$refs.content.parentNode) {
|
6256
|
+
this.$refs.content.parentNode.removeChild(this.$refs.content);
|
6257
|
+
}
|
6258
|
+
},
|
6229
6259
|
|
6230
|
-
|
6231
|
-
|
6232
|
-
|
6233
|
-
|
6260
|
+
destroyed() {
|
6261
|
+
if (this.activatorNode) {
|
6262
|
+
const activator = Array.isArray(this.activatorNode) ? this.activatorNode : [this.activatorNode];
|
6263
|
+
|
6264
|
+
if (this.$el.isConnected) {
|
6265
|
+
// Component has been destroyed but the element still exists, we must be in a transition
|
6266
|
+
// Wait for the transition to finish before cleaning up the detached activator
|
6267
|
+
const observer = new MutationObserver(list => {
|
6268
|
+
if (list.some(record => Array.from(record.removedNodes).includes(this.$el))) {
|
6269
|
+
observer.disconnect();
|
6270
|
+
removeActivator(activator);
|
6271
|
+
}
|
6272
|
+
});
|
6273
|
+
observer.observe(this.$el.parentNode, {
|
6274
|
+
subtree: false,
|
6275
|
+
childList: true
|
6234
6276
|
});
|
6277
|
+
} else {
|
6278
|
+
removeActivator(activator);
|
6235
6279
|
}
|
6236
|
-
} catch (e) {
|
6237
|
-
console.log(e);
|
6238
6280
|
}
|
6239
|
-
/* eslint-disable-line no-console */
|
6240
|
-
|
6241
6281
|
},
|
6242
6282
|
|
6243
6283
|
methods: {
|
@@ -7030,7 +7070,7 @@ var VMenu = baseMixins$p.extend({
|
|
7030
7070
|
|
7031
7071
|
getTiles() {
|
7032
7072
|
if (!this.$refs.content) return;
|
7033
|
-
this.tiles = Array.from(this.$refs.content.querySelectorAll('.v-list-item'));
|
7073
|
+
this.tiles = Array.from(this.$refs.content.querySelectorAll('.v-list-item, .v-divider, .v-subheader'));
|
7034
7074
|
},
|
7035
7075
|
|
7036
7076
|
mouseEnterHandler() {
|
@@ -7475,6 +7515,14 @@ var VListItem = baseMixins$o.extend().extend({
|
|
7475
7515
|
}
|
7476
7516
|
|
7477
7517
|
return attrs;
|
7518
|
+
},
|
7519
|
+
|
7520
|
+
toggle() {
|
7521
|
+
if (this.to && this.inputValue === undefined) {
|
7522
|
+
this.isActive = !this.isActive;
|
7523
|
+
}
|
7524
|
+
|
7525
|
+
this.$emit('change');
|
7478
7526
|
}
|
7479
7527
|
|
7480
7528
|
},
|
@@ -7505,7 +7553,7 @@ var VListItem = baseMixins$o.extend().extend({
|
|
7505
7553
|
active: this.isActive,
|
7506
7554
|
toggle: this.toggle
|
7507
7555
|
}) : this.$slots.default;
|
7508
|
-
return h(tag, this.setTextColor(this.color, data), children);
|
7556
|
+
return h(tag, this.isActive ? this.setTextColor(this.color, data) : data, children);
|
7509
7557
|
}
|
7510
7558
|
|
7511
7559
|
});
|
@@ -8974,20 +9022,27 @@ var VCounter = mixins(Themeable).extend({
|
|
8974
9022
|
function intersectable(options) {
|
8975
9023
|
return Vue.extend({
|
8976
9024
|
name: 'intersectable',
|
9025
|
+
data: () => ({
|
9026
|
+
isIntersecting: false
|
9027
|
+
}),
|
8977
9028
|
|
8978
9029
|
mounted() {
|
8979
9030
|
Intersect.inserted(this.$el, {
|
8980
9031
|
name: 'intersect',
|
8981
9032
|
value: this.onObserve
|
8982
|
-
});
|
9033
|
+
}, this.$vnode);
|
8983
9034
|
},
|
8984
9035
|
|
8985
9036
|
destroyed() {
|
8986
|
-
Intersect.unbind(this.$el
|
9037
|
+
Intersect.unbind(this.$el, {
|
9038
|
+
name: 'intersect',
|
9039
|
+
value: this.onObserve
|
9040
|
+
}, this.$vnode);
|
8987
9041
|
},
|
8988
9042
|
|
8989
9043
|
methods: {
|
8990
9044
|
onObserve(entries, observer, isIntersecting) {
|
9045
|
+
this.isIntersecting = isIntersecting;
|
8991
9046
|
if (!isIntersecting) return;
|
8992
9047
|
|
8993
9048
|
for (let i = 0, length = options.onVisible.length; i < length; i++) {
|
@@ -9479,7 +9534,14 @@ var VTextField = baseMixins$j.extend().extend({
|
|
9479
9534
|
// #11533
|
9480
9535
|
this.$watch(() => this.labelValue, this.setLabelWidth);
|
9481
9536
|
this.autofocus && this.tryAutofocus();
|
9482
|
-
requestAnimationFrame(() =>
|
9537
|
+
requestAnimationFrame(() => {
|
9538
|
+
this.isBooted = true;
|
9539
|
+
requestAnimationFrame(() => {
|
9540
|
+
if (!this.isIntersecting) {
|
9541
|
+
this.onResize();
|
9542
|
+
}
|
9543
|
+
});
|
9544
|
+
});
|
9483
9545
|
},
|
9484
9546
|
|
9485
9547
|
methods: {
|
@@ -10401,7 +10463,7 @@ var VSelect = baseMixins$i.extend().extend({
|
|
10401
10463
|
if (!menu) return; // If menu is active, allow default
|
10402
10464
|
// listIndex change from menu
|
10403
10465
|
|
10404
|
-
if (this.isMenuActive &&
|
10466
|
+
if (this.isMenuActive && [keyCodes.up, keyCodes.down, keyCodes.home, keyCodes.end, keyCodes.enter].includes(keyCode)) {
|
10405
10467
|
this.$nextTick(() => {
|
10406
10468
|
menu.changeListIndex(e);
|
10407
10469
|
this.$emit('update:list-index', menu.listIndex);
|
@@ -10785,11 +10847,27 @@ var VAutocomplete = VSelect.extend({
|
|
10785
10847
|
// TODO: How is the watcher triggered
|
10786
10848
|
// for duplicate items? no idea
|
10787
10849
|
if (val === oldVal) return;
|
10788
|
-
|
10850
|
+
|
10851
|
+
if (!this.autoSelectFirst) {
|
10852
|
+
const preSelectedItem = oldVal[this.$refs.menu.listIndex];
|
10853
|
+
|
10854
|
+
if (preSelectedItem) {
|
10855
|
+
this.setMenuIndex(val.findIndex(i => i === preSelectedItem));
|
10856
|
+
} else {
|
10857
|
+
this.setMenuIndex(-1);
|
10858
|
+
}
|
10859
|
+
|
10860
|
+
this.$emit('update:list-index', this.$refs.menu.listIndex);
|
10861
|
+
}
|
10862
|
+
|
10789
10863
|
this.$nextTick(() => {
|
10790
10864
|
if (!this.internalSearch || val.length !== 1 && !this.autoSelectFirst) return;
|
10791
10865
|
this.$refs.menu.getTiles();
|
10792
|
-
|
10866
|
+
|
10867
|
+
if (this.autoSelectFirst && val.length) {
|
10868
|
+
this.setMenuIndex(0);
|
10869
|
+
this.$emit('update:list-index', this.$refs.menu.listIndex);
|
10870
|
+
}
|
10793
10871
|
});
|
10794
10872
|
},
|
10795
10873
|
|
@@ -11531,6 +11609,7 @@ var VOverlay = mixins(Colorable, Themeable, Toggleable).extend({
|
|
11531
11609
|
if (this.isActive) children.push(this.genContent());
|
11532
11610
|
return h('div', {
|
11533
11611
|
staticClass: 'v-overlay',
|
11612
|
+
on: this.$listeners,
|
11534
11613
|
class: this.classes,
|
11535
11614
|
style: this.styles
|
11536
11615
|
}, children);
|
@@ -11643,20 +11722,31 @@ var Overlayable = Vue.extend().extend({
|
|
11643
11722
|
hasScrollbar(el) {
|
11644
11723
|
if (!el || el.nodeType !== Node.ELEMENT_NODE) return false;
|
11645
11724
|
const style = window.getComputedStyle(el);
|
11646
|
-
return ['auto', 'scroll'].includes(style.overflowY) && el.scrollHeight > el.clientHeight;
|
11725
|
+
return (['auto', 'scroll'].includes(style.overflowY) || el.tagName === 'SELECT') && el.scrollHeight > el.clientHeight || ['auto', 'scroll'].includes(style.overflowX) && el.scrollWidth > el.clientWidth;
|
11647
11726
|
},
|
11648
11727
|
|
11649
|
-
shouldScroll(el,
|
11728
|
+
shouldScroll(el, e) {
|
11650
11729
|
if (el.hasAttribute('data-app')) return false;
|
11651
|
-
const
|
11652
|
-
const
|
11730
|
+
const dir = e.shiftKey || e.deltaX ? 'x' : 'y';
|
11731
|
+
const delta = dir === 'y' ? e.deltaY : e.deltaX || e.deltaY;
|
11732
|
+
let alreadyAtStart;
|
11733
|
+
let alreadyAtEnd;
|
11734
|
+
|
11735
|
+
if (dir === 'y') {
|
11736
|
+
alreadyAtStart = el.scrollTop === 0;
|
11737
|
+
alreadyAtEnd = el.scrollTop + el.clientHeight === el.scrollHeight;
|
11738
|
+
} else {
|
11739
|
+
alreadyAtStart = el.scrollLeft === 0;
|
11740
|
+
alreadyAtEnd = el.scrollLeft + el.clientWidth === el.scrollWidth;
|
11741
|
+
}
|
11742
|
+
|
11653
11743
|
const scrollingUp = delta < 0;
|
11654
11744
|
const scrollingDown = delta > 0;
|
11655
|
-
if (!
|
11656
|
-
if (!
|
11745
|
+
if (!alreadyAtStart && scrollingUp) return true;
|
11746
|
+
if (!alreadyAtEnd && scrollingDown) return true;
|
11657
11747
|
|
11658
|
-
if (
|
11659
|
-
return this.shouldScroll(el.parentNode,
|
11748
|
+
if (alreadyAtStart || alreadyAtEnd) {
|
11749
|
+
return this.shouldScroll(el.parentNode, e);
|
11660
11750
|
}
|
11661
11751
|
|
11662
11752
|
return false;
|
@@ -11674,7 +11764,6 @@ var Overlayable = Vue.extend().extend({
|
|
11674
11764
|
|
11675
11765
|
checkPath(e) {
|
11676
11766
|
const path = composedPath(e);
|
11677
|
-
const delta = e.deltaY;
|
11678
11767
|
|
11679
11768
|
if (e.type === 'keydown' && path[0] === document.body) {
|
11680
11769
|
const dialog = this.$refs.dialog; // getSelection returns null in firefox in some edge cases, can be ignored
|
@@ -11682,7 +11771,7 @@ var Overlayable = Vue.extend().extend({
|
|
11682
11771
|
const selected = window.getSelection().anchorNode;
|
11683
11772
|
|
11684
11773
|
if (dialog && this.hasScrollbar(dialog) && this.isInside(selected, dialog)) {
|
11685
|
-
return !this.shouldScroll(dialog,
|
11774
|
+
return !this.shouldScroll(dialog, e);
|
11686
11775
|
}
|
11687
11776
|
|
11688
11777
|
return true;
|
@@ -11693,7 +11782,7 @@ var Overlayable = Vue.extend().extend({
|
|
11693
11782
|
if (el === document) return true;
|
11694
11783
|
if (el === document.documentElement) return true;
|
11695
11784
|
if (el === this.$refs.content) return true;
|
11696
|
-
if (this.hasScrollbar(el)) return !this.shouldScroll(el,
|
11785
|
+
if (this.hasScrollbar(el)) return !this.shouldScroll(el, e);
|
11697
11786
|
}
|
11698
11787
|
|
11699
11788
|
return true;
|
@@ -11873,8 +11962,11 @@ var VDialog = baseMixins$h.extend({
|
|
11873
11962
|
|
11874
11963
|
this.$nextTick(() => {
|
11875
11964
|
this.$nextTick(() => {
|
11876
|
-
this.
|
11877
|
-
|
11965
|
+
if (!this.$refs.content.contains(document.activeElement)) {
|
11966
|
+
this.previousActiveElement = document.activeElement;
|
11967
|
+
this.$refs.content.focus();
|
11968
|
+
}
|
11969
|
+
|
11878
11970
|
this.bind();
|
11879
11971
|
});
|
11880
11972
|
});
|
@@ -12262,7 +12354,7 @@ var Mouse = Vue.extend({
|
|
12262
12354
|
// This block of code aims to make sure touchEvent is always dispatched from the element that is being pointed at
|
12263
12355
|
|
12264
12356
|
|
12265
|
-
if (e
|
12357
|
+
if (e && 'touches' in e) {
|
12266
12358
|
var _e$target, _e$target2;
|
12267
12359
|
|
12268
12360
|
const currentTarget = document.elementFromPoint(e.changedTouches[0].clientX, e.changedTouches[0].clientY);
|
@@ -13880,13 +13972,15 @@ var CalendarWithEvents = CalendarBase.extend({
|
|
13880
13972
|
const name = this.eventNameFunction(event, timedEvent);
|
13881
13973
|
|
13882
13974
|
if (event.start.hasTime) {
|
13975
|
+
const eventSummaryClass = 'v-event-summary';
|
13976
|
+
|
13883
13977
|
if (timedEvent) {
|
13884
13978
|
const time = timeSummary();
|
13885
13979
|
const delimiter = singline ? ', ' : '<br>';
|
13886
|
-
return `<strong>${name}</strong>${delimiter}${time}
|
13980
|
+
return `<span class="${eventSummaryClass}"><strong>${name}</strong>${delimiter}${time}</span>`;
|
13887
13981
|
} else {
|
13888
13982
|
const time = formatTime(event.start, true);
|
13889
|
-
return `<strong>${time}</strong> ${name}
|
13983
|
+
return `<span class="${eventSummaryClass}"><strong>${time}</strong> ${name}</span>`;
|
13890
13984
|
}
|
13891
13985
|
}
|
13892
13986
|
|
@@ -14608,19 +14702,22 @@ var VCalendarDaily = CalendarWithIntervals.extend({
|
|
14608
14702
|
return this.$createElement('div', {
|
14609
14703
|
key: day.date,
|
14610
14704
|
staticClass: 'v-calendar-daily__day',
|
14611
|
-
class: this.getRelativeClasses(day)
|
14612
|
-
|
14705
|
+
class: this.getRelativeClasses(day),
|
14706
|
+
on: this.getDefaultMouseEventHandlers(':time', e => {
|
14707
|
+
return this.getSlotScope(this.getTimestampAtEvent(e, day));
|
14708
|
+
})
|
14709
|
+
}, [...this.genDayIntervals(index), ...this.genDayBody(day)]);
|
14613
14710
|
},
|
14614
14711
|
|
14615
14712
|
genDayBody(day) {
|
14616
14713
|
return getSlot(this, 'day-body', () => this.getSlotScope(day)) || [];
|
14617
14714
|
},
|
14618
14715
|
|
14619
|
-
genDayIntervals(index
|
14620
|
-
return this.intervals[index].map(
|
14716
|
+
genDayIntervals(index) {
|
14717
|
+
return this.intervals[index].map(this.genDayInterval);
|
14621
14718
|
},
|
14622
14719
|
|
14623
|
-
genDayInterval(interval
|
14720
|
+
genDayInterval(interval) {
|
14624
14721
|
const height = convertToUnit(this.intervalHeight);
|
14625
14722
|
const styler = this.intervalStyle || this.intervalStyleDefault;
|
14626
14723
|
const data = {
|
@@ -14629,10 +14726,7 @@ var VCalendarDaily = CalendarWithIntervals.extend({
|
|
14629
14726
|
style: {
|
14630
14727
|
height,
|
14631
14728
|
...styler(interval)
|
14632
|
-
}
|
14633
|
-
on: this.getDefaultMouseEventHandlers(':time', e => {
|
14634
|
-
return this.getSlotScope(this.getTimestampAtEvent(e, day));
|
14635
|
-
})
|
14729
|
+
}
|
14636
14730
|
};
|
14637
14731
|
const children = getSlot(this, 'interval', () => this.getSlotScope(interval));
|
14638
14732
|
return this.$createElement('div', data, children);
|
@@ -18488,11 +18582,6 @@ VAutocomplete.extend({
|
|
18488
18582
|
this.$nextTick(this.updateSelf);
|
18489
18583
|
},
|
18490
18584
|
|
18491
|
-
onFilteredItemsChanged(val, oldVal) {
|
18492
|
-
if (!this.autoSelectFirst) return;
|
18493
|
-
VAutocomplete.options.methods.onFilteredItemsChanged.call(this, val, oldVal);
|
18494
|
-
},
|
18495
|
-
|
18496
18585
|
onKeyDown(e) {
|
18497
18586
|
const keyCode = e.keyCode;
|
18498
18587
|
|
@@ -24751,7 +24840,16 @@ var VRadioGroup = baseMixins$9.extend({
|
|
24751
24840
|
},
|
24752
24841
|
|
24753
24842
|
onClick: BaseItemGroup.options.methods.onClick
|
24843
|
+
},
|
24844
|
+
|
24845
|
+
render(h) {
|
24846
|
+
const vnode = VInput.options.render.call(this, h);
|
24847
|
+
|
24848
|
+
this._b(vnode.data, 'div', this.attrs$);
|
24849
|
+
|
24850
|
+
return vnode;
|
24754
24851
|
}
|
24852
|
+
|
24755
24853
|
});
|
24756
24854
|
|
24757
24855
|
// Styles
|
@@ -25112,7 +25210,10 @@ var VRangeSlider = VSlider.extend({
|
|
25112
25210
|
this.thumbPressed = true;
|
25113
25211
|
}
|
25114
25212
|
|
25115
|
-
this.activeThumb
|
25213
|
+
if (this.activeThumb === null) {
|
25214
|
+
this.activeThumb = this.getIndexOfClosestValue(this.internalValue, value);
|
25215
|
+
}
|
25216
|
+
|
25116
25217
|
this.setInternalValue(value);
|
25117
25218
|
},
|
25118
25219
|
|
@@ -27250,20 +27351,30 @@ var VTab = baseMixins$3.extend().extend().extend({
|
|
27250
27351
|
}
|
27251
27352
|
|
27252
27353
|
},
|
27253
|
-
|
27254
|
-
mounted() {
|
27255
|
-
this.onRouteChange();
|
27256
|
-
},
|
27257
|
-
|
27258
27354
|
methods: {
|
27259
27355
|
click(e) {
|
27260
|
-
//
|
27356
|
+
// Prevent keyboard actions
|
27357
|
+
// from children elements
|
27358
|
+
// within disabled tabs
|
27359
|
+
if (this.disabled) {
|
27360
|
+
e.preventDefault();
|
27361
|
+
return;
|
27362
|
+
} // If user provides an
|
27261
27363
|
// actual link, do not
|
27262
27364
|
// prevent default
|
27365
|
+
|
27366
|
+
|
27263
27367
|
if (this.href && this.href.indexOf('#') > -1) e.preventDefault();
|
27264
27368
|
if (e.detail) this.$el.blur();
|
27265
27369
|
this.$emit('click', e);
|
27266
27370
|
this.to || this.toggle();
|
27371
|
+
},
|
27372
|
+
|
27373
|
+
toggle() {
|
27374
|
+
// VItemGroup treats a change event as a click
|
27375
|
+
if (!this.isActive) {
|
27376
|
+
this.$emit('change');
|
27377
|
+
}
|
27267
27378
|
}
|
27268
27379
|
|
27269
27380
|
},
|
@@ -32544,7 +32655,7 @@ var __vue_render__$17 = function () {
|
|
32544
32655
|
},
|
32545
32656
|
scopedSlots: _vm._u(
|
32546
32657
|
[
|
32547
|
-
_vm.instance.expandButton &&
|
32658
|
+
_vm.instance.expandButton && !_vm.$slots.expandButton
|
32548
32659
|
? {
|
32549
32660
|
key: "actions",
|
32550
32661
|
fn: function () {
|
@@ -32565,9 +32676,7 @@ var __vue_render__$17 = function () {
|
|
32565
32676
|
},
|
32566
32677
|
proxy: true,
|
32567
32678
|
}
|
32568
|
-
: !_vm.instance.expandButton &&
|
32569
|
-
this &&
|
32570
|
-
!this.$slots.expandButton
|
32679
|
+
: !_vm.instance.expandButton && !_vm.$slots.expandButton
|
32571
32680
|
? {
|
32572
32681
|
key: "actions",
|
32573
32682
|
fn: function () {
|
@@ -32601,7 +32710,7 @@ var __vue_render__$17 = function () {
|
|
32601
32710
|
_c(
|
32602
32711
|
"div",
|
32603
32712
|
[
|
32604
|
-
|
32713
|
+
!_vm.$slots.header
|
32605
32714
|
? _vm._l(_vm.instance.header, function (item) {
|
32606
32715
|
return _c(
|
32607
32716
|
item.component,
|
@@ -32663,7 +32772,7 @@ __vue_render__$17._withStripped = true;
|
|
32663
32772
|
/* style */
|
32664
32773
|
const __vue_inject_styles__$17 = function (inject) {
|
32665
32774
|
if (!inject) return
|
32666
|
-
inject("data-v-
|
32775
|
+
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 });
|
32667
32776
|
|
32668
32777
|
};
|
32669
32778
|
/* scoped */
|
@@ -35164,9 +35273,9 @@ var __vue_render__$Y = function () {
|
|
35164
35273
|
accept: _vm.instance.accept,
|
35165
35274
|
autofocus: _vm.instance.autofocus,
|
35166
35275
|
chips: _vm.instance.chips,
|
35167
|
-
counter: !!
|
35168
|
-
?
|
35169
|
-
:
|
35276
|
+
counter: !!_vm.instance.maxFiles
|
35277
|
+
? _vm.instance.maxFiles
|
35278
|
+
: _vm.instance.showCounter,
|
35170
35279
|
"counter-string":
|
35171
35280
|
_vm.$t(_vm.instance.counterString) || "$vuetify.fileInput.counter",
|
35172
35281
|
"counter-size-string":
|
@@ -35222,7 +35331,7 @@ __vue_render__$Y._withStripped = true;
|
|
35222
35331
|
/* style */
|
35223
35332
|
const __vue_inject_styles__$Y = function (inject) {
|
35224
35333
|
if (!inject) return
|
35225
|
-
inject("data-v-
|
35334
|
+
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 });
|
35226
35335
|
|
35227
35336
|
};
|
35228
35337
|
/* scoped */
|
@@ -35393,9 +35502,9 @@ var __vue_render__$X = function () {
|
|
35393
35502
|
},
|
35394
35503
|
[
|
35395
35504
|
_vm.instance.namedSlotsIsVisible ||
|
35396
|
-
!!
|
35397
|
-
!!
|
35398
|
-
!!
|
35505
|
+
!!_vm.$slots.leftSlot ||
|
35506
|
+
!!_vm.$slots.centerSlot ||
|
35507
|
+
!!_vm.$slots.rightSlot
|
35399
35508
|
? _c(
|
35400
35509
|
"v-col",
|
35401
35510
|
{
|
@@ -35403,18 +35512,18 @@ var __vue_render__$X = function () {
|
|
35403
35512
|
"zd-footer-slot",
|
35404
35513
|
{
|
35405
35514
|
"zd-footer-slot-children":
|
35406
|
-
_vm.instance.children.length || !!
|
35515
|
+
_vm.instance.children.length || !!_vm.$slots.leftSlot,
|
35407
35516
|
},
|
35408
35517
|
],
|
35409
35518
|
attrs: { cols: "12" },
|
35410
35519
|
},
|
35411
35520
|
[
|
35412
|
-
_vm.instance.leftSlot.length || !!
|
35521
|
+
_vm.instance.leftSlot.length || !!_vm.$slots.leftSlot
|
35413
35522
|
? _c(
|
35414
35523
|
"span",
|
35415
35524
|
{ staticClass: "zd-footer-slot-left" },
|
35416
35525
|
[
|
35417
|
-
!
|
35526
|
+
!_vm.$slots.leftSlot
|
35418
35527
|
? _vm._l(
|
35419
35528
|
_vm.instance.leftSlot,
|
35420
35529
|
function (child, index) {
|
@@ -35437,12 +35546,12 @@ var __vue_render__$X = function () {
|
|
35437
35546
|
)
|
35438
35547
|
: _vm._e(),
|
35439
35548
|
_vm._v(" "),
|
35440
|
-
_vm.instance.centerSlot.length || !!
|
35549
|
+
_vm.instance.centerSlot.length || !!_vm.$slots.centerSlot
|
35441
35550
|
? _c(
|
35442
35551
|
"span",
|
35443
35552
|
{ ref: "centerSlot", staticClass: "zd-footer-slot-center" },
|
35444
35553
|
[
|
35445
|
-
!
|
35554
|
+
!_vm.$slots.centerSlot
|
35446
35555
|
? _vm._l(
|
35447
35556
|
_vm.instance.centerSlot,
|
35448
35557
|
function (child, index) {
|
@@ -35465,12 +35574,12 @@ var __vue_render__$X = function () {
|
|
35465
35574
|
)
|
35466
35575
|
: _vm._e(),
|
35467
35576
|
_vm._v(" "),
|
35468
|
-
_vm.instance.rightSlot.length || !!
|
35577
|
+
_vm.instance.rightSlot.length || !!_vm.$slots.rightSlot
|
35469
35578
|
? _c(
|
35470
35579
|
"span",
|
35471
35580
|
{ staticClass: "zd-footer-slot-right" },
|
35472
35581
|
[
|
35473
|
-
!
|
35582
|
+
!_vm.$slots.rightSlot
|
35474
35583
|
? _vm._l(
|
35475
35584
|
_vm.instance.rightSlot,
|
35476
35585
|
function (child, index) {
|
@@ -35530,11 +35639,11 @@ __vue_render__$X._withStripped = true;
|
|
35530
35639
|
/* style */
|
35531
35640
|
const __vue_inject_styles__$X = function (inject) {
|
35532
35641
|
if (!inject) return
|
35533
|
-
inject("data-v-
|
35642
|
+
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 });
|
35534
35643
|
|
35535
35644
|
};
|
35536
35645
|
/* scoped */
|
35537
|
-
const __vue_scope_id__$X = "data-v-
|
35646
|
+
const __vue_scope_id__$X = "data-v-0e463e42";
|
35538
35647
|
/* module identifier */
|
35539
35648
|
const __vue_module_identifier__$X = undefined;
|
35540
35649
|
/* functional template */
|
@@ -36443,7 +36552,13 @@ var __vue_render__$T = function () {
|
|
36443
36552
|
_vm.instance.cssClass,
|
36444
36553
|
{ "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
|
36445
36554
|
],
|
36446
|
-
style: [
|
36555
|
+
style: [
|
36556
|
+
_vm.cssColorVars,
|
36557
|
+
_vm.instance.cssStyle,
|
36558
|
+
_vm.instance.gridHeight
|
36559
|
+
? { height: _vm.$formatSize(_vm.instance.gridHeight) }
|
36560
|
+
: {},
|
36561
|
+
],
|
36447
36562
|
attrs: {
|
36448
36563
|
"fixed-header": "",
|
36449
36564
|
"disable-pagination": "",
|
@@ -37199,7 +37314,7 @@ __vue_render__$T._withStripped = true;
|
|
37199
37314
|
/* style */
|
37200
37315
|
const __vue_inject_styles__$T = function (inject) {
|
37201
37316
|
if (!inject) return
|
37202
|
-
inject("data-v-
|
37317
|
+
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 });
|
37203
37318
|
|
37204
37319
|
};
|
37205
37320
|
/* scoped */
|
@@ -38329,7 +38444,7 @@ __vue_render__$S._withStripped = true;
|
|
38329
38444
|
/* style */
|
38330
38445
|
const __vue_inject_styles__$S = function (inject) {
|
38331
38446
|
if (!inject) return
|
38332
|
-
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 })
|
38447
|
+
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 })
|
38333
38448
|
,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 });
|
38334
38449
|
|
38335
38450
|
};
|
@@ -38532,12 +38647,12 @@ var __vue_render__$R = function () {
|
|
38532
38647
|
attrs: { cols: "12" },
|
38533
38648
|
},
|
38534
38649
|
[
|
38535
|
-
_vm.instance.leftSlot.length || !!
|
38650
|
+
_vm.instance.leftSlot.length || !!_vm.$slots.leftSlot
|
38536
38651
|
? _c(
|
38537
38652
|
"span",
|
38538
38653
|
{ staticClass: "zd-header-slot-left" },
|
38539
38654
|
[
|
38540
|
-
!
|
38655
|
+
!_vm.$slots.leftSlot
|
38541
38656
|
? _vm._l(
|
38542
38657
|
_vm.instance.leftSlot,
|
38543
38658
|
function (child, index) {
|
@@ -38573,12 +38688,12 @@ var __vue_render__$R = function () {
|
|
38573
38688
|
)
|
38574
38689
|
: _vm._e(),
|
38575
38690
|
_vm._v(" "),
|
38576
|
-
_vm.instance.centerSlot.length || !!
|
38691
|
+
_vm.instance.centerSlot.length || !!_vm.$slots.centerSlot
|
38577
38692
|
? _c(
|
38578
38693
|
"span",
|
38579
38694
|
{ ref: "centerSlot", staticClass: "zd-header-slot-center" },
|
38580
38695
|
[
|
38581
|
-
!
|
38696
|
+
!_vm.$slots.centerSlot
|
38582
38697
|
? _vm._l(
|
38583
38698
|
_vm.instance.centerSlot,
|
38584
38699
|
function (child, index) {
|
@@ -38614,12 +38729,12 @@ var __vue_render__$R = function () {
|
|
38614
38729
|
)
|
38615
38730
|
: _vm._e(),
|
38616
38731
|
_vm._v(" "),
|
38617
|
-
_vm.instance.rightSlot.length || !!
|
38732
|
+
_vm.instance.rightSlot.length || !!_vm.$slots.rightSlot
|
38618
38733
|
? _c(
|
38619
38734
|
"span",
|
38620
38735
|
{ staticClass: "zd-header-slot-right" },
|
38621
38736
|
[
|
38622
|
-
!
|
38737
|
+
!_vm.$slots.rightSlot
|
38623
38738
|
? _vm._l(
|
38624
38739
|
_vm.instance.rightSlot,
|
38625
38740
|
function (child, index) {
|
@@ -38692,7 +38807,7 @@ __vue_render__$R._withStripped = true;
|
|
38692
38807
|
/* style */
|
38693
38808
|
const __vue_inject_styles__$R = function (inject) {
|
38694
38809
|
if (!inject) return
|
38695
|
-
inject("data-v-
|
38810
|
+
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 });
|
38696
38811
|
|
38697
38812
|
};
|
38698
38813
|
/* scoped */
|
@@ -38867,7 +38982,7 @@ var __vue_render__$P = function () {
|
|
38867
38982
|
? [
|
38868
38983
|
_vm._t("errorSlot"),
|
38869
38984
|
_vm._v(" "),
|
38870
|
-
!
|
38985
|
+
!_vm.$slots.errorSlot
|
38871
38986
|
? _vm._l(_vm.instance.errorSlot, function (child, index) {
|
38872
38987
|
return _c(
|
38873
38988
|
child.component,
|
@@ -38897,7 +39012,7 @@ var __vue_render__$P = function () {
|
|
38897
39012
|
? [
|
38898
39013
|
_vm._t("noResultSlot"),
|
38899
39014
|
_vm._v(" "),
|
38900
|
-
!
|
39015
|
+
!_vm.$slots.noResultSlot
|
38901
39016
|
? _vm._l(
|
38902
39017
|
_vm.instance.noResultSlot,
|
38903
39018
|
function (child, index) {
|
@@ -38921,7 +39036,7 @@ var __vue_render__$P = function () {
|
|
38921
39036
|
: [
|
38922
39037
|
_vm._t("noDataSlot"),
|
38923
39038
|
_vm._v(" "),
|
38924
|
-
!
|
39039
|
+
!_vm.$slots.noDataSlot
|
38925
39040
|
? _vm._l(_vm.instance.noDataSlot, function (child, index) {
|
38926
39041
|
return _c(
|
38927
39042
|
child.component,
|
@@ -40206,7 +40321,7 @@ var __vue_render__$H = function () {
|
|
40206
40321
|
},
|
40207
40322
|
scopedSlots: _vm._u(
|
40208
40323
|
[
|
40209
|
-
_vm.instance.itemBeforeSlot.length || !!
|
40324
|
+
_vm.instance.itemBeforeSlot.length || !!_vm.$slots.itemBeforeSlot
|
40210
40325
|
? {
|
40211
40326
|
key: "prepend-item",
|
40212
40327
|
fn: function () {
|
@@ -40377,7 +40492,7 @@ __vue_render__$H._withStripped = true;
|
|
40377
40492
|
/* style */
|
40378
40493
|
const __vue_inject_styles__$H = function (inject) {
|
40379
40494
|
if (!inject) return
|
40380
|
-
inject("data-v-
|
40495
|
+
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 });
|
40381
40496
|
|
40382
40497
|
};
|
40383
40498
|
/* scoped */
|
@@ -40682,7 +40797,7 @@ var __vue_render__$E = function () {
|
|
40682
40797
|
},
|
40683
40798
|
},
|
40684
40799
|
[
|
40685
|
-
!
|
40800
|
+
!_vm.$slots.items
|
40686
40801
|
? [
|
40687
40802
|
_vm._l(_vm.instance.items, function (item, index) {
|
40688
40803
|
return [
|
@@ -40719,7 +40834,7 @@ __vue_render__$E._withStripped = true;
|
|
40719
40834
|
/* style */
|
40720
40835
|
const __vue_inject_styles__$E = function (inject) {
|
40721
40836
|
if (!inject) return
|
40722
|
-
inject("data-v-
|
40837
|
+
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 });
|
40723
40838
|
|
40724
40839
|
};
|
40725
40840
|
/* scoped */
|
@@ -40916,7 +41031,7 @@ var __vue_render__$C = function () {
|
|
40916
41031
|
},
|
40917
41032
|
[
|
40918
41033
|
(_vm.instance.leftField || _vm.instance.prependIcon) &&
|
40919
|
-
!
|
41034
|
+
!_vm.$slots.leftField
|
40920
41035
|
? _c(
|
40921
41036
|
"div",
|
40922
41037
|
{
|
@@ -40955,7 +41070,7 @@ var __vue_render__$C = function () {
|
|
40955
41070
|
}),
|
40956
41071
|
_vm._v(" "),
|
40957
41072
|
(_vm.instance.rightField || _vm.instance.appendIcon) &&
|
40958
|
-
!
|
41073
|
+
!_vm.$slots.rightField
|
40959
41074
|
? _c(
|
40960
41075
|
"div",
|
40961
41076
|
{
|
@@ -41094,7 +41209,7 @@ var __vue_render__$B = function () {
|
|
41094
41209
|
return [
|
41095
41210
|
_vm._t("leftField"),
|
41096
41211
|
_vm._v(" "),
|
41097
|
-
_vm.instance.leftField && !
|
41212
|
+
_vm.instance.leftField && !_vm.$slots.leftField
|
41098
41213
|
? _c(
|
41099
41214
|
_vm.instance.leftField.component,
|
41100
41215
|
_vm._b(
|
@@ -41137,7 +41252,7 @@ var __vue_render__$B = function () {
|
|
41137
41252
|
return [
|
41138
41253
|
_vm._t("rightField"),
|
41139
41254
|
_vm._v(" "),
|
41140
|
-
_vm.instance.rightField && !
|
41255
|
+
_vm.instance.rightField && !_vm.$slots.rightField
|
41141
41256
|
? _c(
|
41142
41257
|
_vm.instance.rightField.component,
|
41143
41258
|
_vm._b(
|
@@ -41180,7 +41295,7 @@ var __vue_render__$B = function () {
|
|
41180
41295
|
"v-list",
|
41181
41296
|
{ class: ["zd-list zd-pl-4 zd-py-0 group-list"] },
|
41182
41297
|
[
|
41183
|
-
!
|
41298
|
+
!_vm.$slots.items
|
41184
41299
|
? _vm._l(_vm.instance.items, function (item) {
|
41185
41300
|
return _c(
|
41186
41301
|
item.component,
|
@@ -41212,7 +41327,7 @@ __vue_render__$B._withStripped = true;
|
|
41212
41327
|
/* style */
|
41213
41328
|
const __vue_inject_styles__$B = function (inject) {
|
41214
41329
|
if (!inject) return
|
41215
|
-
inject("data-v-
|
41330
|
+
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 });
|
41216
41331
|
|
41217
41332
|
};
|
41218
41333
|
/* scoped */
|
@@ -41529,7 +41644,7 @@ var __vue_render__$z = function () {
|
|
41529
41644
|
)
|
41530
41645
|
: _vm._e(),
|
41531
41646
|
_vm._v(" "),
|
41532
|
-
_vm.instance.bottomLink.length && !
|
41647
|
+
_vm.instance.bottomLink.length && !_vm.$slots.bottomLink
|
41533
41648
|
? _c(
|
41534
41649
|
"div",
|
41535
41650
|
{ staticClass: "zd-login-sign-in" },
|
@@ -41587,7 +41702,7 @@ __vue_render__$z._withStripped = true;
|
|
41587
41702
|
/* style */
|
41588
41703
|
const __vue_inject_styles__$z = function (inject) {
|
41589
41704
|
if (!inject) return
|
41590
|
-
inject("data-v-
|
41705
|
+
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 });
|
41591
41706
|
|
41592
41707
|
};
|
41593
41708
|
/* scoped */
|
@@ -41986,7 +42101,7 @@ var __vue_render__$w = function () {
|
|
41986
42101
|
[
|
41987
42102
|
_vm.instance.topSlot.length ||
|
41988
42103
|
_vm.instance.showSearch ||
|
41989
|
-
!!
|
42104
|
+
!!_vm.$slots.topSlot
|
41990
42105
|
? _c(
|
41991
42106
|
"span",
|
41992
42107
|
{
|
@@ -42013,18 +42128,15 @@ var __vue_render__$w = function () {
|
|
42013
42128
|
)
|
42014
42129
|
: _vm._e(),
|
42015
42130
|
_vm._v(" "),
|
42016
|
-
!
|
42131
|
+
!_vm.$slots.topSlot
|
42017
42132
|
? _vm._l(_vm.instance.topSlot, function (item) {
|
42018
42133
|
return _c(
|
42019
42134
|
item.component,
|
42020
|
-
_vm.
|
42021
|
-
|
42022
|
-
|
42023
|
-
|
42024
|
-
|
42025
|
-
false
|
42026
|
-
),
|
42027
|
-
item.events
|
42135
|
+
_vm._b(
|
42136
|
+
{ key: item.name, tag: "component" },
|
42137
|
+
"component",
|
42138
|
+
item,
|
42139
|
+
false
|
42028
42140
|
)
|
42029
42141
|
)
|
42030
42142
|
})
|
@@ -42071,7 +42183,7 @@ __vue_render__$w._withStripped = true;
|
|
42071
42183
|
/* style */
|
42072
42184
|
const __vue_inject_styles__$w = function (inject) {
|
42073
42185
|
if (!inject) return
|
42074
|
-
inject("data-v-
|
42186
|
+
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 });
|
42075
42187
|
|
42076
42188
|
};
|
42077
42189
|
/* scoped */
|
@@ -43009,11 +43121,11 @@ var __vue_render__$n = function () {
|
|
43009
43121
|
false
|
43010
43122
|
),
|
43011
43123
|
[
|
43012
|
-
_vm.instance.centerSlot.length || !!
|
43124
|
+
_vm.instance.centerSlot.length || !!_vm.$slots.centerSlot
|
43013
43125
|
? _c(
|
43014
43126
|
"div",
|
43015
43127
|
[
|
43016
|
-
!
|
43128
|
+
!_vm.$slots.centerSlot
|
43017
43129
|
? _vm._l(_vm.instance.centerSlot, function (child, index) {
|
43018
43130
|
return _c(
|
43019
43131
|
child.component,
|
@@ -44621,11 +44733,11 @@ var __vue_render__$h = function () {
|
|
44621
44733
|
},
|
44622
44734
|
},
|
44623
44735
|
model: {
|
44624
|
-
value: _vm.instance.
|
44736
|
+
value: _vm.instance.selectValue,
|
44625
44737
|
callback: function ($$v) {
|
44626
|
-
_vm.$set(_vm.instance, "
|
44738
|
+
_vm.$set(_vm.instance, "selectValue", $$v);
|
44627
44739
|
},
|
44628
|
-
expression: "instance.
|
44740
|
+
expression: "instance.selectValue",
|
44629
44741
|
},
|
44630
44742
|
}),
|
44631
44743
|
_vm._v(" "),
|
@@ -44691,7 +44803,7 @@ __vue_render__$h._withStripped = true;
|
|
44691
44803
|
/* style */
|
44692
44804
|
const __vue_inject_styles__$h = function (inject) {
|
44693
44805
|
if (!inject) return
|
44694
|
-
inject("data-v-
|
44806
|
+
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 });
|
44695
44807
|
|
44696
44808
|
};
|
44697
44809
|
/* scoped */
|
@@ -44861,11 +44973,11 @@ var __vue_render__$g = function () {
|
|
44861
44973
|
"search-change": _vm.onSearchChange,
|
44862
44974
|
},
|
44863
44975
|
model: {
|
44864
|
-
value: _vm.instance.
|
44976
|
+
value: _vm.instance.selectValue,
|
44865
44977
|
callback: function ($$v) {
|
44866
|
-
_vm.$set(_vm.instance, "
|
44978
|
+
_vm.$set(_vm.instance, "selectValue", $$v);
|
44867
44979
|
},
|
44868
|
-
expression: "instance.
|
44980
|
+
expression: "instance.selectValue",
|
44869
44981
|
},
|
44870
44982
|
}),
|
44871
44983
|
_vm._v(" "),
|
@@ -44931,7 +45043,7 @@ __vue_render__$g._withStripped = true;
|
|
44931
45043
|
/* style */
|
44932
45044
|
const __vue_inject_styles__$g = function (inject) {
|
44933
45045
|
if (!inject) return
|
44934
|
-
inject("data-v-
|
45046
|
+
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 });
|
44935
45047
|
|
44936
45048
|
};
|
44937
45049
|
/* scoped */
|
@@ -48194,7 +48306,8 @@ var __vue_render__$1 = function () {
|
|
48194
48306
|
],
|
48195
48307
|
},
|
48196
48308
|
[
|
48197
|
-
item.tree__children
|
48309
|
+
(item.tree__children || [])
|
48310
|
+
.length > 0
|
48198
48311
|
? _c(
|
48199
48312
|
"v-icon",
|
48200
48313
|
{
|
@@ -48414,8 +48527,8 @@ __vue_render__$1._withStripped = true;
|
|
48414
48527
|
/* style */
|
48415
48528
|
const __vue_inject_styles__$1 = function (inject) {
|
48416
48529
|
if (!inject) return
|
48417
|
-
inject("data-v-
|
48418
|
-
,inject("data-v-
|
48530
|
+
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 })
|
48531
|
+
,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 });
|
48419
48532
|
|
48420
48533
|
};
|
48421
48534
|
/* scoped */
|
@@ -48466,18 +48579,6 @@ let ZdTreeGridEditable = class ZdTreeGridEditable extends ZdTreeGrid$1 {
|
|
48466
48579
|
},
|
48467
48580
|
};
|
48468
48581
|
}
|
48469
|
-
formatSearchResult(text) {
|
48470
|
-
if (this.instance.datasource.search) {
|
48471
|
-
const reg = new RegExp(this.instance.datasource.search, 'gi');
|
48472
|
-
return text.replace(reg, (value) => `<span class="search-result">${value}</span>`);
|
48473
|
-
}
|
48474
|
-
return text;
|
48475
|
-
}
|
48476
|
-
selectClick(index, isSelected, event) {
|
48477
|
-
const row = this.instance.datasource.data[index];
|
48478
|
-
this.instance.selectRow(row, isSelected);
|
48479
|
-
this.selectRowClick(row, isSelected, event);
|
48480
|
-
}
|
48481
48582
|
getEditableComponent(column, row, cellProps) {
|
48482
48583
|
const key = row[this.instance.datasource.uniqueKey];
|
48483
48584
|
const elementName = `column-${column.name}-${key}`;
|
@@ -49585,7 +49686,7 @@ __vue_render__._withStripped = true;
|
|
49585
49686
|
/* style */
|
49586
49687
|
const __vue_inject_styles__ = function (inject) {
|
49587
49688
|
if (!inject) return
|
49588
|
-
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 })
|
49689
|
+
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 })
|
49589
49690
|
,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 });
|
49590
49691
|
|
49591
49692
|
};
|