@zeedhi/vuetify 1.38.1 → 1.40.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.
@@ -2215,7 +2215,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
2215
2215
  }
2216
2216
  Vuetify.install = install;
2217
2217
  Vuetify.installed = false;
2218
- Vuetify.version = "2.5.10";
2218
+ Vuetify.version = "2.5.14";
2219
2219
  Vuetify.config = {
2220
2220
  silent: false
2221
2221
  };
@@ -2514,7 +2514,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
2514
2514
 
2515
2515
  });
2516
2516
 
2517
- function inserted$3(el, binding) {
2517
+ function inserted$3(el, binding, vnode) {
2518
2518
  if (typeof window === 'undefined' || !('IntersectionObserver' in window)) return;
2519
2519
  const modifiers = binding.modifiers || {};
2520
2520
  const value = binding.value;
@@ -2526,32 +2526,36 @@ If you're seeing "$attrs is readonly", it's caused by this`);
2526
2526
  options: {}
2527
2527
  };
2528
2528
  const observer = new IntersectionObserver((entries = [], observer) => {
2529
- /* istanbul ignore if */
2530
- if (!el._observe) return; // Just in case, should never fire
2529
+ var _el$_observe;
2530
+
2531
+ const _observe = (_el$_observe = el._observe) == null ? void 0 : _el$_observe[vnode.context._uid];
2532
+
2533
+ if (!_observe) return; // Just in case, should never fire
2531
2534
 
2532
2535
  const isIntersecting = entries.some(entry => entry.isIntersecting); // If is not quiet or has already been
2533
2536
  // initted, invoke the user callback
2534
2537
 
2535
- if (handler && (!modifiers.quiet || el._observe.init) && (!modifiers.once || isIntersecting || !el._observe.init)) {
2538
+ if (handler && (!modifiers.quiet || _observe.init) && (!modifiers.once || isIntersecting || _observe.init)) {
2536
2539
  handler(entries, observer, isIntersecting);
2537
2540
  }
2538
2541
 
2539
- if (isIntersecting && modifiers.once) unbind$4(el);else el._observe.init = true;
2542
+ if (isIntersecting && modifiers.once) unbind$4(el, binding, vnode);else _observe.init = true;
2540
2543
  }, options);
2541
- el._observe = {
2544
+ el._observe = Object(el._observe);
2545
+ el._observe[vnode.context._uid] = {
2542
2546
  init: false,
2543
2547
  observer
2544
2548
  };
2545
2549
  observer.observe(el);
2546
2550
  }
2547
2551
 
2548
- function unbind$4(el) {
2549
- /* istanbul ignore if */
2550
- if (!el._observe) return;
2551
-
2552
- el._observe.observer.unobserve(el);
2552
+ function unbind$4(el, binding, vnode) {
2553
+ var _el$_observe2;
2553
2554
 
2554
- delete el._observe;
2555
+ const observe = (_el$_observe2 = el._observe) == null ? void 0 : _el$_observe2[vnode.context._uid];
2556
+ if (!observe) return;
2557
+ observe.observer.unobserve(el);
2558
+ delete el._observe[vnode.context._uid];
2555
2559
  }
2556
2560
 
2557
2561
  const Intersect = {
@@ -3161,7 +3165,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
3161
3165
 
3162
3166
  });
3163
3167
 
3164
- function inserted$2(el, binding) {
3168
+ function inserted$2(el, binding, vnode) {
3165
3169
  const {
3166
3170
  self = false
3167
3171
  } = binding.modifiers || {};
@@ -3173,7 +3177,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
3173
3177
  const target = self ? el : binding.arg ? document.querySelector(binding.arg) : window;
3174
3178
  if (!target) return;
3175
3179
  target.addEventListener('scroll', handler, options);
3176
- el._onScroll = {
3180
+ el._onScroll = Object(el._onScroll);
3181
+ el._onScroll[vnode.context._uid] = {
3177
3182
  handler,
3178
3183
  options,
3179
3184
  // Don't reference self
@@ -3181,15 +3186,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
3181
3186
  };
3182
3187
  }
3183
3188
 
3184
- function unbind$3(el) {
3185
- if (!el._onScroll) return;
3189
+ function unbind$3(el, binding, vnode) {
3190
+ var _el$_onScroll;
3191
+
3192
+ if (!((_el$_onScroll = el._onScroll) != null && _el$_onScroll[vnode.context._uid])) return;
3186
3193
  const {
3187
3194
  handler,
3188
3195
  options,
3189
3196
  target = el
3190
- } = el._onScroll;
3197
+ } = el._onScroll[vnode.context._uid];
3191
3198
  target.removeEventListener('scroll', handler, options);
3192
- delete el._onScroll;
3199
+ delete el._onScroll[vnode.context._uid];
3193
3200
  }
3194
3201
 
3195
3202
  const Scroll = {
@@ -3364,7 +3371,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
3364
3371
  return isActive(e);
3365
3372
  }
3366
3373
 
3367
- function directive$1(e, el, binding) {
3374
+ function directive$1(e, el, binding, vnode) {
3368
3375
  const handler = typeof binding.value === 'function' ? binding.value : binding.value.handler;
3369
3376
  el._clickOutside.lastMousedownWasOutside && checkEvent(e, el, binding) && setTimeout(() => {
3370
3377
  checkIsActive(e, binding) && handler && handler(e);
@@ -3386,7 +3393,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
3386
3393
  // sure that the root element is
3387
3394
  // available, iOS does not support
3388
3395
  // clicks on body
3389
- inserted(el, binding) {
3396
+ inserted(el, binding, vnode) {
3390
3397
  const onClick = e => directive$1(e, el, binding);
3391
3398
 
3392
3399
  const onMousedown = e => {
@@ -3397,32 +3404,45 @@ If you're seeing "$attrs is readonly", it's caused by this`);
3397
3404
  app.addEventListener('click', onClick, true);
3398
3405
  app.addEventListener('mousedown', onMousedown, true);
3399
3406
  });
3400
- el._clickOutside = {
3401
- lastMousedownWasOutside: true,
3407
+
3408
+ if (!el._clickOutside) {
3409
+ el._clickOutside = {
3410
+ lastMousedownWasOutside: true
3411
+ };
3412
+ }
3413
+
3414
+ el._clickOutside[vnode.context._uid] = {
3402
3415
  onClick,
3403
3416
  onMousedown
3404
3417
  };
3405
3418
  },
3406
3419
 
3407
- unbind(el) {
3420
+ unbind(el, binding, vnode) {
3408
3421
  if (!el._clickOutside) return;
3409
3422
  handleShadow(el, app => {
3410
- if (!app || !el._clickOutside) return;
3411
- app.removeEventListener('click', el._clickOutside.onClick, true);
3412
- app.removeEventListener('mousedown', el._clickOutside.onMousedown, true);
3423
+ var _el$_clickOutside;
3424
+
3425
+ if (!app || !((_el$_clickOutside = el._clickOutside) != null && _el$_clickOutside[vnode.context._uid])) return;
3426
+ const {
3427
+ onClick,
3428
+ onMousedown
3429
+ } = el._clickOutside[vnode.context._uid];
3430
+ app.removeEventListener('click', onClick, true);
3431
+ app.removeEventListener('mousedown', onMousedown, true);
3413
3432
  });
3414
- delete el._clickOutside;
3433
+ delete el._clickOutside[vnode.context._uid];
3415
3434
  }
3416
3435
 
3417
3436
  };
3418
3437
 
3419
- function inserted$1(el, binding) {
3438
+ function inserted$1(el, binding, vnode) {
3420
3439
  const callback = binding.value;
3421
3440
  const options = binding.options || {
3422
3441
  passive: true
3423
3442
  };
3424
3443
  window.addEventListener('resize', callback, options);
3425
- el._onResize = {
3444
+ el._onResize = Object(el._onResize);
3445
+ el._onResize[vnode.context._uid] = {
3426
3446
  callback,
3427
3447
  options
3428
3448
  };
@@ -3432,14 +3452,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
3432
3452
  }
3433
3453
  }
3434
3454
 
3435
- function unbind$2(el) {
3436
- if (!el._onResize) return;
3455
+ function unbind$2(el, binding, vnode) {
3456
+ var _el$_onResize;
3457
+
3458
+ if (!((_el$_onResize = el._onResize) != null && _el$_onResize[vnode.context._uid])) return;
3437
3459
  const {
3438
3460
  callback,
3439
3461
  options
3440
- } = el._onResize;
3462
+ } = el._onResize[vnode.context._uid];
3441
3463
  window.removeEventListener('resize', callback, options);
3442
- delete el._onResize;
3464
+ delete el._onResize[vnode.context._uid];
3443
3465
  }
3444
3466
 
3445
3467
  const Resize = {
@@ -4818,6 +4840,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
4818
4840
  watch: {
4819
4841
  $route: 'onRouteChange'
4820
4842
  },
4843
+
4844
+ mounted() {
4845
+ this.onRouteChange();
4846
+ },
4847
+
4821
4848
  methods: {
4822
4849
  click(e) {
4823
4850
  this.$emit('click', e);
@@ -4883,16 +4910,20 @@ If you're seeing "$attrs is readonly", it's caused by this`);
4883
4910
  onRouteChange() {
4884
4911
  if (!this.to || !this.$refs.link || !this.$route) return;
4885
4912
  const activeClass = `${this.activeClass} ${this.proxyClass || ''}`.trim();
4886
- const path = `_vnode.data.class.${activeClass}`;
4913
+ const exactActiveClass = `${this.exactActiveClass} ${this.proxyClass || ''}`.trim() || activeClass;
4914
+ const path = '_vnode.data.class.' + (this.exact ? exactActiveClass : activeClass);
4887
4915
  this.$nextTick(() => {
4888
4916
  /* istanbul ignore else */
4889
- if (getObjectValueByPath(this.$refs.link, path)) {
4917
+ if (!getObjectValueByPath(this.$refs.link, path) === this.isActive) {
4890
4918
  this.toggle();
4891
4919
  }
4892
4920
  });
4893
4921
  },
4894
4922
 
4895
- toggle: () => {}
4923
+ toggle() {
4924
+ this.isActive = !this.isActive;
4925
+ }
4926
+
4896
4927
  }
4897
4928
  });
4898
4929
 
@@ -5455,14 +5486,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
5455
5486
 
5456
5487
  if (context.props.hideOnLeave) {
5457
5488
  data.on.leave = mergeTransitions(data.on.leave, el => {
5458
- el._initialDisplay = [el.style.display, el.style.getPropertyPriority('display')];
5459
5489
  el.style.setProperty('display', 'none', 'important');
5460
5490
  });
5461
- data.on.afterLeave = mergeTransitions(data.on.afterLeave, el => {
5462
- if (el) {
5463
- el._initialDisplay ? el.style.setProperty('display', ...el._initialDisplay) : el.style.removeProperty('display');
5464
- }
5465
- });
5466
5491
  }
5467
5492
 
5468
5493
  return h(tag, mergeData(context.data, data), context.children);
@@ -6166,6 +6191,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
6166
6191
  if (type === 'boolean' || type === 'string') return true;
6167
6192
  return val.nodeType === Node.ELEMENT_NODE;
6168
6193
  }
6194
+
6195
+ function removeActivator(activator) {
6196
+ activator.forEach(node => {
6197
+ node.elm && node.elm.parentNode && node.elm.parentNode.removeChild(node.elm);
6198
+ });
6199
+ }
6169
6200
  /* @vue/component */
6170
6201
 
6171
6202
 
@@ -6220,23 +6251,32 @@ If you're seeing "$attrs is readonly", it's caused by this`);
6220
6251
  },
6221
6252
 
6222
6253
  beforeDestroy() {
6223
- // IE11 Fix
6224
- try {
6225
- if (this.$refs.content && this.$refs.content.parentNode) {
6226
- this.$refs.content.parentNode.removeChild(this.$refs.content);
6227
- }
6254
+ if (this.$refs.content && this.$refs.content.parentNode) {
6255
+ this.$refs.content.parentNode.removeChild(this.$refs.content);
6256
+ }
6257
+ },
6228
6258
 
6229
- if (this.activatorNode) {
6230
- const activator = Array.isArray(this.activatorNode) ? this.activatorNode : [this.activatorNode];
6231
- activator.forEach(node => {
6232
- node.elm && node.elm.parentNode && node.elm.parentNode.removeChild(node.elm);
6259
+ destroyed() {
6260
+ if (this.activatorNode) {
6261
+ const activator = Array.isArray(this.activatorNode) ? this.activatorNode : [this.activatorNode];
6262
+
6263
+ if (this.$el.isConnected) {
6264
+ // Component has been destroyed but the element still exists, we must be in a transition
6265
+ // Wait for the transition to finish before cleaning up the detached activator
6266
+ const observer = new MutationObserver(list => {
6267
+ if (list.some(record => Array.from(record.removedNodes).includes(this.$el))) {
6268
+ observer.disconnect();
6269
+ removeActivator(activator);
6270
+ }
6271
+ });
6272
+ observer.observe(this.$el.parentNode, {
6273
+ subtree: false,
6274
+ childList: true
6233
6275
  });
6276
+ } else {
6277
+ removeActivator(activator);
6234
6278
  }
6235
- } catch (e) {
6236
- console.log(e);
6237
6279
  }
6238
- /* eslint-disable-line no-console */
6239
-
6240
6280
  },
6241
6281
 
6242
6282
  methods: {
@@ -7029,7 +7069,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
7029
7069
 
7030
7070
  getTiles() {
7031
7071
  if (!this.$refs.content) return;
7032
- this.tiles = Array.from(this.$refs.content.querySelectorAll('.v-list-item'));
7072
+ this.tiles = Array.from(this.$refs.content.querySelectorAll('.v-list-item, .v-divider, .v-subheader'));
7033
7073
  },
7034
7074
 
7035
7075
  mouseEnterHandler() {
@@ -7474,6 +7514,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
7474
7514
  }
7475
7515
 
7476
7516
  return attrs;
7517
+ },
7518
+
7519
+ toggle() {
7520
+ if (this.to && this.inputValue === undefined) {
7521
+ this.isActive = !this.isActive;
7522
+ }
7523
+
7524
+ this.$emit('change');
7477
7525
  }
7478
7526
 
7479
7527
  },
@@ -7504,7 +7552,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
7504
7552
  active: this.isActive,
7505
7553
  toggle: this.toggle
7506
7554
  }) : this.$slots.default;
7507
- return h(tag, this.setTextColor(this.color, data), children);
7555
+ return h(tag, this.isActive ? this.setTextColor(this.color, data) : data, children);
7508
7556
  }
7509
7557
 
7510
7558
  });
@@ -8973,20 +9021,27 @@ If you're seeing "$attrs is readonly", it's caused by this`);
8973
9021
  function intersectable(options) {
8974
9022
  return Vue__default["default"].extend({
8975
9023
  name: 'intersectable',
9024
+ data: () => ({
9025
+ isIntersecting: false
9026
+ }),
8976
9027
 
8977
9028
  mounted() {
8978
9029
  Intersect.inserted(this.$el, {
8979
9030
  name: 'intersect',
8980
9031
  value: this.onObserve
8981
- });
9032
+ }, this.$vnode);
8982
9033
  },
8983
9034
 
8984
9035
  destroyed() {
8985
- Intersect.unbind(this.$el);
9036
+ Intersect.unbind(this.$el, {
9037
+ name: 'intersect',
9038
+ value: this.onObserve
9039
+ }, this.$vnode);
8986
9040
  },
8987
9041
 
8988
9042
  methods: {
8989
9043
  onObserve(entries, observer, isIntersecting) {
9044
+ this.isIntersecting = isIntersecting;
8990
9045
  if (!isIntersecting) return;
8991
9046
 
8992
9047
  for (let i = 0, length = options.onVisible.length; i < length; i++) {
@@ -9478,7 +9533,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
9478
9533
  // #11533
9479
9534
  this.$watch(() => this.labelValue, this.setLabelWidth);
9480
9535
  this.autofocus && this.tryAutofocus();
9481
- requestAnimationFrame(() => this.isBooted = true);
9536
+ requestAnimationFrame(() => {
9537
+ this.isBooted = true;
9538
+ requestAnimationFrame(() => {
9539
+ if (!this.isIntersecting) {
9540
+ this.onResize();
9541
+ }
9542
+ });
9543
+ });
9482
9544
  },
9483
9545
 
9484
9546
  methods: {
@@ -10400,7 +10462,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
10400
10462
  if (!menu) return; // If menu is active, allow default
10401
10463
  // listIndex change from menu
10402
10464
 
10403
- if (this.isMenuActive && keyCode !== keyCodes.tab) {
10465
+ if (this.isMenuActive && [keyCodes.up, keyCodes.down, keyCodes.home, keyCodes.end, keyCodes.enter].includes(keyCode)) {
10404
10466
  this.$nextTick(() => {
10405
10467
  menu.changeListIndex(e);
10406
10468
  this.$emit('update:list-index', menu.listIndex);
@@ -10784,11 +10846,27 @@ If you're seeing "$attrs is readonly", it's caused by this`);
10784
10846
  // TODO: How is the watcher triggered
10785
10847
  // for duplicate items? no idea
10786
10848
  if (val === oldVal) return;
10787
- this.setMenuIndex(-1);
10849
+
10850
+ if (!this.autoSelectFirst) {
10851
+ const preSelectedItem = oldVal[this.$refs.menu.listIndex];
10852
+
10853
+ if (preSelectedItem) {
10854
+ this.setMenuIndex(val.findIndex(i => i === preSelectedItem));
10855
+ } else {
10856
+ this.setMenuIndex(-1);
10857
+ }
10858
+
10859
+ this.$emit('update:list-index', this.$refs.menu.listIndex);
10860
+ }
10861
+
10788
10862
  this.$nextTick(() => {
10789
10863
  if (!this.internalSearch || val.length !== 1 && !this.autoSelectFirst) return;
10790
10864
  this.$refs.menu.getTiles();
10791
- this.setMenuIndex(0);
10865
+
10866
+ if (this.autoSelectFirst && val.length) {
10867
+ this.setMenuIndex(0);
10868
+ this.$emit('update:list-index', this.$refs.menu.listIndex);
10869
+ }
10792
10870
  });
10793
10871
  },
10794
10872
 
@@ -11530,6 +11608,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
11530
11608
  if (this.isActive) children.push(this.genContent());
11531
11609
  return h('div', {
11532
11610
  staticClass: 'v-overlay',
11611
+ on: this.$listeners,
11533
11612
  class: this.classes,
11534
11613
  style: this.styles
11535
11614
  }, children);
@@ -11642,20 +11721,31 @@ If you're seeing "$attrs is readonly", it's caused by this`);
11642
11721
  hasScrollbar(el) {
11643
11722
  if (!el || el.nodeType !== Node.ELEMENT_NODE) return false;
11644
11723
  const style = window.getComputedStyle(el);
11645
- return ['auto', 'scroll'].includes(style.overflowY) && el.scrollHeight > el.clientHeight;
11724
+ return (['auto', 'scroll'].includes(style.overflowY) || el.tagName === 'SELECT') && el.scrollHeight > el.clientHeight || ['auto', 'scroll'].includes(style.overflowX) && el.scrollWidth > el.clientWidth;
11646
11725
  },
11647
11726
 
11648
- shouldScroll(el, delta) {
11727
+ shouldScroll(el, e) {
11649
11728
  if (el.hasAttribute('data-app')) return false;
11650
- const alreadyAtTop = el.scrollTop === 0;
11651
- const alreadyAtBottom = el.scrollTop + el.clientHeight === el.scrollHeight;
11729
+ const dir = e.shiftKey || e.deltaX ? 'x' : 'y';
11730
+ const delta = dir === 'y' ? e.deltaY : e.deltaX || e.deltaY;
11731
+ let alreadyAtStart;
11732
+ let alreadyAtEnd;
11733
+
11734
+ if (dir === 'y') {
11735
+ alreadyAtStart = el.scrollTop === 0;
11736
+ alreadyAtEnd = el.scrollTop + el.clientHeight === el.scrollHeight;
11737
+ } else {
11738
+ alreadyAtStart = el.scrollLeft === 0;
11739
+ alreadyAtEnd = el.scrollLeft + el.clientWidth === el.scrollWidth;
11740
+ }
11741
+
11652
11742
  const scrollingUp = delta < 0;
11653
11743
  const scrollingDown = delta > 0;
11654
- if (!alreadyAtTop && scrollingUp) return true;
11655
- if (!alreadyAtBottom && scrollingDown) return true;
11744
+ if (!alreadyAtStart && scrollingUp) return true;
11745
+ if (!alreadyAtEnd && scrollingDown) return true;
11656
11746
 
11657
- if (alreadyAtTop || alreadyAtBottom) {
11658
- return this.shouldScroll(el.parentNode, delta);
11747
+ if (alreadyAtStart || alreadyAtEnd) {
11748
+ return this.shouldScroll(el.parentNode, e);
11659
11749
  }
11660
11750
 
11661
11751
  return false;
@@ -11673,7 +11763,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
11673
11763
 
11674
11764
  checkPath(e) {
11675
11765
  const path = composedPath(e);
11676
- const delta = e.deltaY;
11677
11766
 
11678
11767
  if (e.type === 'keydown' && path[0] === document.body) {
11679
11768
  const dialog = this.$refs.dialog; // getSelection returns null in firefox in some edge cases, can be ignored
@@ -11681,7 +11770,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
11681
11770
  const selected = window.getSelection().anchorNode;
11682
11771
 
11683
11772
  if (dialog && this.hasScrollbar(dialog) && this.isInside(selected, dialog)) {
11684
- return !this.shouldScroll(dialog, delta);
11773
+ return !this.shouldScroll(dialog, e);
11685
11774
  }
11686
11775
 
11687
11776
  return true;
@@ -11692,7 +11781,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
11692
11781
  if (el === document) return true;
11693
11782
  if (el === document.documentElement) return true;
11694
11783
  if (el === this.$refs.content) return true;
11695
- if (this.hasScrollbar(el)) return !this.shouldScroll(el, delta);
11784
+ if (this.hasScrollbar(el)) return !this.shouldScroll(el, e);
11696
11785
  }
11697
11786
 
11698
11787
  return true;
@@ -11872,8 +11961,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
11872
11961
 
11873
11962
  this.$nextTick(() => {
11874
11963
  this.$nextTick(() => {
11875
- this.previousActiveElement = document.activeElement;
11876
- this.$refs.content.focus();
11964
+ if (!this.$refs.content.contains(document.activeElement)) {
11965
+ this.previousActiveElement = document.activeElement;
11966
+ this.$refs.content.focus();
11967
+ }
11968
+
11877
11969
  this.bind();
11878
11970
  });
11879
11971
  });
@@ -12261,7 +12353,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
12261
12353
  // This block of code aims to make sure touchEvent is always dispatched from the element that is being pointed at
12262
12354
 
12263
12355
 
12264
- if (e instanceof TouchEvent) {
12356
+ if (e && 'touches' in e) {
12265
12357
  var _e$target, _e$target2;
12266
12358
 
12267
12359
  const currentTarget = document.elementFromPoint(e.changedTouches[0].clientX, e.changedTouches[0].clientY);
@@ -13879,13 +13971,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
13879
13971
  const name = this.eventNameFunction(event, timedEvent);
13880
13972
 
13881
13973
  if (event.start.hasTime) {
13974
+ const eventSummaryClass = 'v-event-summary';
13975
+
13882
13976
  if (timedEvent) {
13883
13977
  const time = timeSummary();
13884
13978
  const delimiter = singline ? ', ' : '<br>';
13885
- return `<strong>${name}</strong>${delimiter}${time}`;
13979
+ return `<span class="${eventSummaryClass}"><strong>${name}</strong>${delimiter}${time}</span>`;
13886
13980
  } else {
13887
13981
  const time = formatTime(event.start, true);
13888
- return `<strong>${time}</strong> ${name}`;
13982
+ return `<span class="${eventSummaryClass}"><strong>${time}</strong> ${name}</span>`;
13889
13983
  }
13890
13984
  }
13891
13985
 
@@ -14607,19 +14701,22 @@ If you're seeing "$attrs is readonly", it's caused by this`);
14607
14701
  return this.$createElement('div', {
14608
14702
  key: day.date,
14609
14703
  staticClass: 'v-calendar-daily__day',
14610
- class: this.getRelativeClasses(day)
14611
- }, [...this.genDayIntervals(index, day), ...this.genDayBody(day)]);
14704
+ class: this.getRelativeClasses(day),
14705
+ on: this.getDefaultMouseEventHandlers(':time', e => {
14706
+ return this.getSlotScope(this.getTimestampAtEvent(e, day));
14707
+ })
14708
+ }, [...this.genDayIntervals(index), ...this.genDayBody(day)]);
14612
14709
  },
14613
14710
 
14614
14711
  genDayBody(day) {
14615
14712
  return getSlot(this, 'day-body', () => this.getSlotScope(day)) || [];
14616
14713
  },
14617
14714
 
14618
- genDayIntervals(index, day) {
14619
- return this.intervals[index].map(i => this.genDayInterval(i, day));
14715
+ genDayIntervals(index) {
14716
+ return this.intervals[index].map(this.genDayInterval);
14620
14717
  },
14621
14718
 
14622
- genDayInterval(interval, day) {
14719
+ genDayInterval(interval) {
14623
14720
  const height = convertToUnit(this.intervalHeight);
14624
14721
  const styler = this.intervalStyle || this.intervalStyleDefault;
14625
14722
  const data = {
@@ -14628,10 +14725,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
14628
14725
  style: {
14629
14726
  height,
14630
14727
  ...styler(interval)
14631
- },
14632
- on: this.getDefaultMouseEventHandlers(':time', e => {
14633
- return this.getSlotScope(this.getTimestampAtEvent(e, day));
14634
- })
14728
+ }
14635
14729
  };
14636
14730
  const children = getSlot(this, 'interval', () => this.getSlotScope(interval));
14637
14731
  return this.$createElement('div', data, children);
@@ -18487,11 +18581,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
18487
18581
  this.$nextTick(this.updateSelf);
18488
18582
  },
18489
18583
 
18490
- onFilteredItemsChanged(val, oldVal) {
18491
- if (!this.autoSelectFirst) return;
18492
- VAutocomplete.options.methods.onFilteredItemsChanged.call(this, val, oldVal);
18493
- },
18494
-
18495
18584
  onKeyDown(e) {
18496
18585
  const keyCode = e.keyCode;
18497
18586
 
@@ -24750,7 +24839,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
24750
24839
  },
24751
24840
 
24752
24841
  onClick: BaseItemGroup.options.methods.onClick
24842
+ },
24843
+
24844
+ render(h) {
24845
+ const vnode = VInput.options.render.call(this, h);
24846
+
24847
+ this._b(vnode.data, 'div', this.attrs$);
24848
+
24849
+ return vnode;
24753
24850
  }
24851
+
24754
24852
  });
24755
24853
 
24756
24854
  // Styles
@@ -25111,7 +25209,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
25111
25209
  this.thumbPressed = true;
25112
25210
  }
25113
25211
 
25114
- this.activeThumb = this.getIndexOfClosestValue(this.internalValue, value);
25212
+ if (this.activeThumb === null) {
25213
+ this.activeThumb = this.getIndexOfClosestValue(this.internalValue, value);
25214
+ }
25215
+
25115
25216
  this.setInternalValue(value);
25116
25217
  },
25117
25218
 
@@ -27249,20 +27350,30 @@ If you're seeing "$attrs is readonly", it's caused by this`);
27249
27350
  }
27250
27351
 
27251
27352
  },
27252
-
27253
- mounted() {
27254
- this.onRouteChange();
27255
- },
27256
-
27257
27353
  methods: {
27258
27354
  click(e) {
27259
- // If user provides an
27355
+ // Prevent keyboard actions
27356
+ // from children elements
27357
+ // within disabled tabs
27358
+ if (this.disabled) {
27359
+ e.preventDefault();
27360
+ return;
27361
+ } // If user provides an
27260
27362
  // actual link, do not
27261
27363
  // prevent default
27364
+
27365
+
27262
27366
  if (this.href && this.href.indexOf('#') > -1) e.preventDefault();
27263
27367
  if (e.detail) this.$el.blur();
27264
27368
  this.$emit('click', e);
27265
27369
  this.to || this.toggle();
27370
+ },
27371
+
27372
+ toggle() {
27373
+ // VItemGroup treats a change event as a click
27374
+ if (!this.isActive) {
27375
+ this.$emit('change');
27376
+ }
27266
27377
  }
27267
27378
 
27268
27379
  },
@@ -29445,6 +29556,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
29445
29556
  PropWatch({ type: [Boolean, String], default: true }),
29446
29557
  __metadata("design:type", Object)
29447
29558
  ], ZdComponent.prototype, "isVisible", void 0);
29559
+ __decorate([
29560
+ PropWatch({ type: [Boolean, String], default: false }),
29561
+ __metadata("design:type", Boolean)
29562
+ ], ZdComponent.prototype, "dark", void 0);
29563
+ __decorate([
29564
+ PropWatch({ type: [Boolean, String], default: false }),
29565
+ __metadata("design:type", Boolean)
29566
+ ], ZdComponent.prototype, "light", void 0);
29448
29567
  __decorate([
29449
29568
  vuePropertyDecorator.Prop({ type: Object, default: () => ({}) }),
29450
29569
  __metadata("design:type", Object)
@@ -29630,6 +29749,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
29630
29749
  "multi-line": _vm.alert.multiLine,
29631
29750
  vertical: _vm.alert.vertical,
29632
29751
  color: _vm.alert.color,
29752
+ dark: _vm.alert.dark,
29753
+ light: _vm.alert.light,
29633
29754
  },
29634
29755
  scopedSlots: _vm._u([
29635
29756
  {
@@ -29701,7 +29822,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
29701
29822
  /* style */
29702
29823
  const __vue_inject_styles__$1k = function (inject) {
29703
29824
  if (!inject) return
29704
- inject("data-v-3af37451_0", { source: ".zd-alert .v-snack__wrapper {\n background: var(--v-grey-darken2);\n border-radius: var(--border);\n}\n.zd-alert .v-snack__content {\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n padding: var(--spacing-4) var(--spacing-4);\n}\n.zd-alert .v-snack__content .v-btn.zd-alert-dismiss {\n color: var(--v-primary-base);\n}\n.zd-alert-dismiss {\n transition: none;\n}\n.zd-alert-dismiss .v-btn__content {\n transition: none;\n}\n.zd-alert-dismiss-buttons {\n margin-left: var(--spacing-2) !important;\n}", map: undefined, media: undefined });
29825
+ inject("data-v-2ff1b977_0", { source: ".zd-alert .v-snack__wrapper {\n background: var(--v-grey-darken2);\n border-radius: var(--border);\n}\n.zd-alert .v-snack__content {\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n padding: var(--spacing-4) var(--spacing-4);\n}\n.zd-alert .v-snack__content .v-btn.zd-alert-dismiss {\n color: var(--v-primary-base);\n}\n.zd-alert-dismiss {\n transition: none;\n}\n.zd-alert-dismiss .v-btn__content {\n transition: none;\n}\n.zd-alert-dismiss-buttons {\n margin-left: var(--spacing-2) !important;\n}", map: undefined, media: undefined });
29705
29826
 
29706
29827
  };
29707
29828
  /* scoped */
@@ -29760,9 +29881,25 @@ If you're seeing "$attrs is readonly", it's caused by this`);
29760
29881
  this.instanceType = common.ApexChart;
29761
29882
  }
29762
29883
  mounted() {
29884
+ this.setApexChartTheme();
29763
29885
  const updateFn = (options) => this.$refs.instance.chart.updateOptions(options, false, true, true, true);
29764
29886
  this.instance.setViewUpdate(updateFn);
29765
29887
  }
29888
+ setApexChartTheme() {
29889
+ let theme = '';
29890
+ const dark = this.instance.dark || this.$vuetify.theme.dark;
29891
+ const light = this.instance.light || !this.$vuetify.theme.dark;
29892
+ if (dark) {
29893
+ theme = 'dark';
29894
+ }
29895
+ if (light) {
29896
+ theme = 'light';
29897
+ }
29898
+ const newOptions = Object.assign(Object.assign({}, this.instance.options), { theme: {
29899
+ mode: theme,
29900
+ } });
29901
+ this.instance.options = newOptions;
29902
+ }
29766
29903
  };
29767
29904
  __decorate([
29768
29905
  PropWatch({ type: String, default: 'line' }),
@@ -29862,7 +29999,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
29862
29999
  /* style */
29863
30000
  const __vue_inject_styles__$1j = function (inject) {
29864
30001
  if (!inject) return
29865
- inject("data-v-78b20d78_0", { source: ".zd-apex-chart .apexcharts-toolbar {\n z-index: 0;\n}\n.zd-apex-chart .apexcharts-tooltip {\n z-index: 1;\n}\n.apexcharts-overlay {\n z-index: 0 !important;\n}\n.apexcharts-container {\n height: 100%;\n}", map: undefined, media: undefined });
30002
+ inject("data-v-6f4c7f6c_0", { source: ".zd-apex-chart .apexcharts-toolbar {\n z-index: 0;\n}\n.zd-apex-chart .apexcharts-tooltip {\n z-index: 1;\n}\n.apexcharts-overlay {\n z-index: 0 !important;\n}\n.apexcharts-container {\n height: 100%;\n}", map: undefined, media: undefined });
29866
30003
 
29867
30004
  };
29868
30005
  /* scoped */
@@ -29940,6 +30077,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
29940
30077
  style: _vm.instance.cssStyle,
29941
30078
  attrs: {
29942
30079
  overlap: "",
30080
+ dark: _vm.instance.dark,
30081
+ light: _vm.instance.light,
29943
30082
  dot: _vm.instance.showBadgeCounter === false,
29944
30083
  content: _vm.instance.getBadgeText(),
29945
30084
  value: _vm.instance.badge && _vm.instance.badge > 0,
@@ -29964,7 +30103,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
29964
30103
  /* style */
29965
30104
  const __vue_inject_styles__$1i = function (inject) {
29966
30105
  if (!inject) return
29967
- inject("data-v-79f37752_0", { source: ".zd-badge.icon-with-badge .v-badge__badge {\n top: 3px;\n right: 3px;\n min-height: var(--spacing-3);\n min-width: var(--spacing-3);\n}\n.zd-badge.no-badge-counter .v-badge__badge > span {\n font-size: 0px !important;\n}\n.zd-badge .v-badge__badge {\n font-size: var(--zd-font-caption-size);\n font-weight: var(--zd-font-caption-weight);\n line-height: 14px;\n pointer-events: none;\n background-color: var(--zd-badge-background-color) !important;\n}\n.zd-badge .v-badge__badge span {\n color: var(--zd-badge-text-color) !important;\n}\n.zd-badge:not(.v-badge--dot) .v-badge__badge {\n padding: 2px var(--spacing-1);\n min-width: var(--spacing-4);\n height: var(--spacing-4);\n}", map: undefined, media: undefined });
30106
+ inject("data-v-721a366c_0", { source: ".zd-badge.icon-with-badge .v-badge__badge {\n top: 3px;\n right: 3px;\n min-height: var(--spacing-3);\n min-width: var(--spacing-3);\n}\n.zd-badge.no-badge-counter .v-badge__badge > span {\n font-size: 0px !important;\n}\n.zd-badge .v-badge__badge {\n font-size: var(--zd-font-caption-size);\n font-weight: var(--zd-font-caption-weight);\n line-height: 14px;\n pointer-events: none;\n background-color: var(--zd-badge-background-color) !important;\n}\n.zd-badge .v-badge__badge span {\n color: var(--zd-badge-text-color) !important;\n}\n.zd-badge:not(.v-badge--dot) .v-badge__badge {\n padding: 2px var(--spacing-1);\n min-width: var(--spacing-4);\n height: var(--spacing-4);\n}", map: undefined, media: undefined });
29968
30107
 
29969
30108
  };
29970
30109
  /* scoped */
@@ -30007,10 +30146,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30007
30146
  });
30008
30147
  }
30009
30148
  };
30010
- __decorate([
30011
- PropWatch({ type: [Boolean, String], default: false }),
30012
- __metadata("design:type", Boolean)
30013
- ], ZdBreadcrumbs.prototype, "dark", void 0);
30014
30149
  __decorate([
30015
30150
  PropWatch({ type: String, default: '/' }),
30016
30151
  __metadata("design:type", String)
@@ -30027,10 +30162,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30027
30162
  PropWatch({ type: [Boolean, String], default: false }),
30028
30163
  __metadata("design:type", Boolean)
30029
30164
  ], ZdBreadcrumbs.prototype, "large", void 0);
30030
- __decorate([
30031
- PropWatch({ type: [Boolean, String], default: true }),
30032
- __metadata("design:type", Boolean)
30033
- ], ZdBreadcrumbs.prototype, "light", void 0);
30034
30165
  __decorate([
30035
30166
  PropWatch({ type: [Boolean, String], default: false }),
30036
30167
  __metadata("design:type", Boolean)
@@ -30156,10 +30287,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30156
30287
  PropWatch({ type: String, default: 'primary' }),
30157
30288
  __metadata("design:type", String)
30158
30289
  ], ZdButton.prototype, "color", void 0);
30159
- __decorate([
30160
- PropWatch({ type: [Boolean, String], default: false }),
30161
- __metadata("design:type", Object)
30162
- ], ZdButton.prototype, "dark", void 0);
30163
30290
  __decorate([
30164
30291
  PropWatch({ type: [Boolean, String], default: false }),
30165
30292
  __metadata("design:type", Object)
@@ -30200,10 +30327,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30200
30327
  PropWatch({ type: [Boolean, String], default: false }),
30201
30328
  __metadata("design:type", Object)
30202
30329
  ], ZdButton.prototype, "left", void 0);
30203
- __decorate([
30204
- PropWatch({ type: [Boolean, String], default: false }),
30205
- __metadata("design:type", Object)
30206
- ], ZdButton.prototype, "light", void 0);
30207
30330
  __decorate([
30208
30331
  PropWatch({ type: [Boolean, String], default: false }),
30209
30332
  __metadata("design:type", Object)
@@ -30276,7 +30399,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30276
30399
  ],
30277
30400
  class: [_vm.instance.cssClass, "zd-button"],
30278
30401
  style: _vm.instance.cssStyle,
30279
- attrs: { name: _vm.instance.name },
30402
+ attrs: {
30403
+ name: _vm.instance.name,
30404
+ dark: _vm.instance.dark,
30405
+ light: _vm.instance.light,
30406
+ },
30280
30407
  on: {
30281
30408
  click: function ($event) {
30282
30409
  return _vm.click($event)
@@ -30346,7 +30473,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30346
30473
  /* style */
30347
30474
  const __vue_inject_styles__$1g = function (inject) {
30348
30475
  if (!inject) return
30349
- inject("data-v-5cb8ba5c_0", { source: ".v-btn.zd-button,\na.v-btn.zd-button,\nbutton.v-btn.zd-button {\n letter-spacing: unset;\n text-transform: none;\n}\n.v-btn.zd-button.v-btn:not(.v-btn--fab),\na.v-btn.zd-button.v-btn:not(.v-btn--fab),\nbutton.v-btn.zd-button.v-btn:not(.v-btn--fab) {\n box-shadow: none;\n}\n.v-btn.zd-button.v-size--default,\na.v-btn.zd-button.v-size--default,\nbutton.v-btn.zd-button.v-size--default {\n min-width: 0;\n}\n.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded),\na.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded),\nbutton.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded) {\n border-radius: var(--border);\n padding: var(--spacing-2) var(--spacing-4);\n}\n.v-btn.zd-button.v-btn.v-size--default,\na.v-btn.zd-button.v-btn.v-size--default,\nbutton.v-btn.zd-button.v-btn.v-size--default {\n min-height: var(--spacing-6);\n}\n.v-btn.zd-button.v-btn.v-size--default.v-btn--icon,\na.v-btn.zd-button.v-btn.v-size--default.v-btn--icon,\nbutton.v-btn.zd-button.v-btn.v-size--default.v-btn--icon {\n min-width: var(--spacing-6);\n}\n.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab),\na.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab),\nbutton.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab) {\n height: auto;\n width: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab).v-btn--icon,\na.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab).v-btn--icon,\nbutton.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab).v-btn--icon {\n padding: 0;\n min-width: 24px;\n}\n.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab),\na.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab),\nbutton.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab) {\n height: auto;\n min-height: 56px;\n padding: 0 var(--spacing-4);\n}\n.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab).v-btn--icon,\na.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab).v-btn--icon,\nbutton.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab).v-btn--icon {\n min-width: 56px;\n}\n.v-btn.zd-button.v-btn--outlined,\na.v-btn.zd-button.v-btn--outlined,\nbutton.v-btn.zd-button.v-btn--outlined {\n border: var(--regular) solid;\n}\n.v-btn.zd-button .v-btn__content .v-icon,\na.v-btn.zd-button .v-btn__content .v-icon,\nbutton.v-btn.zd-button .v-btn__content .v-icon {\n height: var(--icon-size);\n width: var(--icon-size);\n}\n.v-btn.zd-button .v-btn__content .v-icon--left,\na.v-btn.zd-button .v-btn__content .v-icon--left,\nbutton.v-btn.zd-button .v-btn__content .v-icon--left {\n margin-right: var(--spacing-2);\n margin-left: 0;\n}\n.v-btn.zd-button .v-btn__content .v-icon--right,\na.v-btn.zd-button .v-btn__content .v-icon--right,\nbutton.v-btn.zd-button .v-btn__content .v-icon--right {\n margin-right: 0;\n margin-left: var(--spacing-2);\n}", map: undefined, media: undefined });
30476
+ inject("data-v-4ef72194_0", { source: ".v-btn.zd-button,\na.v-btn.zd-button,\nbutton.v-btn.zd-button {\n letter-spacing: unset;\n text-transform: none;\n}\n.v-btn.zd-button.v-btn:not(.v-btn--fab),\na.v-btn.zd-button.v-btn:not(.v-btn--fab),\nbutton.v-btn.zd-button.v-btn:not(.v-btn--fab) {\n box-shadow: none;\n}\n.v-btn.zd-button.v-size--default,\na.v-btn.zd-button.v-size--default,\nbutton.v-btn.zd-button.v-size--default {\n min-width: 0;\n}\n.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded),\na.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded),\nbutton.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded) {\n border-radius: var(--border);\n padding: var(--spacing-2) var(--spacing-4);\n}\n.v-btn.zd-button.v-btn.v-size--default,\na.v-btn.zd-button.v-btn.v-size--default,\nbutton.v-btn.zd-button.v-btn.v-size--default {\n min-height: var(--spacing-6);\n}\n.v-btn.zd-button.v-btn.v-size--default.v-btn--icon,\na.v-btn.zd-button.v-btn.v-size--default.v-btn--icon,\nbutton.v-btn.zd-button.v-btn.v-size--default.v-btn--icon {\n min-width: var(--spacing-6);\n}\n.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab),\na.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab),\nbutton.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab) {\n height: auto;\n width: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab).v-btn--icon,\na.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab).v-btn--icon,\nbutton.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab).v-btn--icon {\n padding: 0;\n min-width: 24px;\n}\n.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab),\na.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab),\nbutton.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab) {\n height: auto;\n min-height: 56px;\n padding: 0 var(--spacing-4);\n}\n.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab).v-btn--icon,\na.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab).v-btn--icon,\nbutton.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab).v-btn--icon {\n min-width: 56px;\n}\n.v-btn.zd-button.v-btn--outlined,\na.v-btn.zd-button.v-btn--outlined,\nbutton.v-btn.zd-button.v-btn--outlined {\n border: var(--regular) solid;\n}\n.v-btn.zd-button .v-btn__content .v-icon,\na.v-btn.zd-button .v-btn__content .v-icon,\nbutton.v-btn.zd-button .v-btn__content .v-icon {\n height: var(--icon-size);\n width: var(--icon-size);\n}\n.v-btn.zd-button .v-btn__content .v-icon--left,\na.v-btn.zd-button .v-btn__content .v-icon--left,\nbutton.v-btn.zd-button .v-btn__content .v-icon--left {\n margin-right: var(--spacing-2);\n margin-left: 0;\n}\n.v-btn.zd-button .v-btn__content .v-icon--right,\na.v-btn.zd-button .v-btn__content .v-icon--right,\nbutton.v-btn.zd-button .v-btn__content .v-icon--right {\n margin-right: 0;\n margin-left: var(--spacing-2);\n}", map: undefined, media: undefined });
30350
30477
 
30351
30478
  };
30352
30479
  /* scoped */
@@ -30402,10 +30529,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30402
30529
  PropWatch({ type: String, default: 'primary' }),
30403
30530
  __metadata("design:type", String)
30404
30531
  ], ZdButtonGroup.prototype, "color", void 0);
30405
- __decorate([
30406
- PropWatch({ type: [Boolean, String], default: false }),
30407
- __metadata("design:type", Object)
30408
- ], ZdButtonGroup.prototype, "dark", void 0);
30409
30532
  __decorate([
30410
30533
  PropWatch({ type: [Boolean, String], default: false }),
30411
30534
  __metadata("design:type", Object)
@@ -30414,10 +30537,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30414
30537
  PropWatch({ type: [Boolean, String], default: false }),
30415
30538
  __metadata("design:type", Object)
30416
30539
  ], ZdButtonGroup.prototype, "group", void 0);
30417
- __decorate([
30418
- PropWatch({ type: [Boolean, String], default: false }),
30419
- __metadata("design:type", Object)
30420
- ], ZdButtonGroup.prototype, "light", void 0);
30421
30540
  __decorate([
30422
30541
  PropWatch({ type: [Boolean, String], default: false }),
30423
30542
  __metadata("design:type", Object)
@@ -30485,7 +30604,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30485
30604
  ],
30486
30605
  class: [_vm.instance.cssClass, "zd-button-group"],
30487
30606
  style: _vm.instance.cssStyle,
30488
- attrs: { name: _vm.instance.name },
30607
+ attrs: {
30608
+ name: _vm.instance.name,
30609
+ dark: _vm.instance.dark,
30610
+ light: _vm.instance.light,
30611
+ },
30489
30612
  on: {
30490
30613
  change: function ($event) {
30491
30614
  return _vm.change()
@@ -30542,7 +30665,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30542
30665
  /* style */
30543
30666
  const __vue_inject_styles__$1f = function (inject) {
30544
30667
  if (!inject) return
30545
- inject("data-v-ff7da310_0", { source: ".zd-button-group .v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded),\n.zd-button-group .btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded),\n.zd-button-group button.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded) {\n border-radius: 0;\n}\n.zd-button-group button.v-btn.v-item--active.v-btn--active.v-btn--contained.theme--light.v-size--default.primary.zd-button {\n color: lightgray;\n}\n.zd-button-group > .v-btn.v-btn:last-child {\n border-top-right-radius: inherit !important;\n border-bottom-right-radius: inherit !important;\n}\n.zd-button-group > .v-btn.v-btn:first-child {\n border-top-left-radius: inherit !important;\n border-bottom-left-radius: inherit !important;\n}\n.zd-button-group.v-btn-toggle--group > .v-btn.v-btn {\n background-color: transparent !important;\n border-color: transparent !important;\n margin: 4px;\n min-width: auto;\n color: rgba(0, 0, 0, 0.87) !important;\n}", map: undefined, media: undefined });
30668
+ inject("data-v-dc14b8a0_0", { source: ".zd-button-group .v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded),\n.zd-button-group .btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded),\n.zd-button-group button.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded) {\n border-radius: 0;\n}\n.zd-button-group button.v-btn.v-item--active.v-btn--active.v-btn--contained.theme--light.v-size--default.primary.zd-button {\n color: lightgray;\n}\n.zd-button-group > .v-btn.v-btn:last-child {\n border-top-right-radius: inherit !important;\n border-bottom-right-radius: inherit !important;\n}\n.zd-button-group > .v-btn.v-btn:first-child {\n border-top-left-radius: inherit !important;\n border-bottom-left-radius: inherit !important;\n}\n.zd-button-group.v-btn-toggle--group > .v-btn.v-btn {\n background-color: transparent !important;\n border-color: transparent !important;\n margin: 4px;\n min-width: auto;\n color: rgba(0, 0, 0, 0.87) !important;\n}", map: undefined, media: undefined });
30546
30669
 
30547
30670
  };
30548
30671
  /* scoped */
@@ -30591,10 +30714,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30591
30714
  PropWatch({ type: String, default: '' }),
30592
30715
  __metadata("design:type", String)
30593
30716
  ], ZdCard.prototype, "color", void 0);
30594
- __decorate([
30595
- PropWatch({ type: [Boolean, String], default: false }),
30596
- __metadata("design:type", Boolean)
30597
- ], ZdCard.prototype, "dark", void 0);
30598
30717
  __decorate([
30599
30718
  PropWatch({ type: [Boolean, String], default: false }),
30600
30719
  __metadata("design:type", Boolean)
@@ -30623,10 +30742,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30623
30742
  PropWatch({ type: String, default: '' }),
30624
30743
  __metadata("design:type", String)
30625
30744
  ], ZdCard.prototype, "img", void 0);
30626
- __decorate([
30627
- PropWatch({ type: [Boolean, String], default: false }),
30628
- __metadata("design:type", Boolean)
30629
- ], ZdCard.prototype, "light", void 0);
30630
30745
  __decorate([
30631
30746
  PropWatch({ type: [Boolean, String], default: false }),
30632
30747
  __metadata("design:type", Boolean)
@@ -30887,10 +31002,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30887
31002
  PropWatch({ type: [Number, String] }),
30888
31003
  __metadata("design:type", Number)
30889
31004
  ], ZdCarousel.prototype, "currentSlide", void 0);
30890
- __decorate([
30891
- PropWatch({ type: [Boolean, String], default: false }),
30892
- __metadata("design:type", Boolean)
30893
- ], ZdCarousel.prototype, "dark", void 0);
30894
31005
  __decorate([
30895
31006
  PropWatch({ type: [Boolean, String], default: false }),
30896
31007
  __metadata("design:type", Boolean)
@@ -30915,10 +31026,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
30915
31026
  PropWatch({ type: [Boolean, String], default: true }),
30916
31027
  __metadata("design:type", Boolean)
30917
31028
  ], ZdCarousel.prototype, "keysControl", void 0);
30918
- __decorate([
30919
- PropWatch({ type: [Boolean, String], default: true }),
30920
- __metadata("design:type", Boolean)
30921
- ], ZdCarousel.prototype, "light", void 0);
30922
31029
  __decorate([
30923
31030
  PropWatch({ type: [Boolean, String], default: false }),
30924
31031
  __metadata("design:type", Boolean)
@@ -31413,10 +31520,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
31413
31520
  PropWatch({ type: String, default: 'primary' }),
31414
31521
  __metadata("design:type", String)
31415
31522
  ], ZdInput.prototype, "color", void 0);
31416
- __decorate([
31417
- PropWatch({ type: [Boolean, String], default: false }),
31418
- __metadata("design:type", Object)
31419
- ], ZdInput.prototype, "dark", void 0);
31420
31523
  __decorate([
31421
31524
  PropWatch({ type: [Boolean, String], default: true }),
31422
31525
  __metadata("design:type", Object)
@@ -31433,10 +31536,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
31433
31536
  PropWatch({ type: String, default: '' }),
31434
31537
  __metadata("design:type", String)
31435
31538
  ], ZdInput.prototype, "label", void 0);
31436
- __decorate([
31437
- PropWatch({ type: [Boolean, String], default: false }),
31438
- __metadata("design:type", Object)
31439
- ], ZdInput.prototype, "light", void 0);
31440
31539
  __decorate([
31441
31540
  PropWatch({ default: '' }),
31442
31541
  __metadata("design:type", Object)
@@ -31574,6 +31673,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
31574
31673
  "validate-on-blur": "",
31575
31674
  name: _vm.instance.name,
31576
31675
  color: _vm.instance.color,
31676
+ dark: _vm.instance.dark,
31677
+ light: _vm.instance.light,
31577
31678
  },
31578
31679
  on: {
31579
31680
  focus: function ($event) {
@@ -31623,7 +31724,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
31623
31724
  /* style */
31624
31725
  const __vue_inject_styles__$1c = function (inject) {
31625
31726
  if (!inject) return
31626
- inject("data-v-90255b72_0", { source: ".zd-checkbox {\n margin: 0;\n padding: 0;\n}\n.zd-checkbox .v-label.theme--light {\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n}\n.zd-checkbox > .v-input__control > .v-input__slot {\n margin: 0;\n}\n.zd-checkbox > .v-input__control > .v-input__slot .v-input--selection-controls__input {\n margin-right: var(--spacing-2);\n}\n.zd-checkbox > .v-input__control > .v-input__slot .v-input--selection-controls__input:hover .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-checkbox.zd-no-label .v-label {\n display: none;\n}\n.zd-checkbox.zd-no-helper > .v-input__control > .v-messages {\n display: none;\n}", map: undefined, media: undefined });
31727
+ inject("data-v-b8fd6dc4_0", { source: ".zd-checkbox {\n margin: 0;\n padding: 0;\n}\n.zd-checkbox .v-label {\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n}\n.zd-checkbox > .v-input__control > .v-input__slot {\n margin: 0;\n}\n.zd-checkbox > .v-input__control > .v-input__slot .v-input--selection-controls__input {\n margin-right: var(--spacing-2);\n}\n.zd-checkbox > .v-input__control > .v-input__slot .v-input--selection-controls__input:hover .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-checkbox.zd-no-label .v-label {\n display: none;\n}\n.zd-checkbox.zd-no-helper > .v-input__control > .v-messages {\n display: none;\n}", map: undefined, media: undefined });
31627
31728
 
31628
31729
  };
31629
31730
  /* scoped */
@@ -31799,7 +31900,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
31799
31900
  /* style */
31800
31901
  const __vue_inject_styles__$1b = function (inject) {
31801
31902
  if (!inject) return
31802
- inject("data-v-0a644c49_0", { source: ".zd-checkbox-multiple .zd-checkbox-label {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 0 var(--spacing-2);\n color: var(--zd-font-color);\n align-items: flex-start;\n display: flex;\n}\n.zd-checkbox-multiple .zd-checkbox-horizontal {\n display: inline-grid;\n grid-template-columns: var(--checkbox-horizontal-columns);\n width: 100%;\n}\n.zd-checkbox-multiple .v-label.theme--light {\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n}\n.zd-checkbox-multiple .v-input--selection-controls {\n padding: 0;\n margin: 0;\n}\n.zd-checkbox-multiple .v-input--selection-controls .v-input__control .v-messages {\n display: none;\n}\n.zd-checkbox-multiple .v-input--selection-controls .v-input__control .v-input__slot {\n margin: 0 10px 0 0;\n}\n.zd-checkbox-multiple .v-input--selection-controls .v-input__control .v-input__slot:hover .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-checkbox-multiple.zd-no-label .v-label {\n display: none;\n}\n.zd-checkbox-multiple.zd-no-helper > .v-input__control > .v-messages {\n display: none;\n}", map: undefined, media: undefined });
31903
+ inject("data-v-ad17a11c_0", { source: ".zd-checkbox-multiple .zd-checkbox-label {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 0 var(--spacing-2);\n color: var(--zd-font-color);\n align-items: flex-start;\n display: flex;\n}\n.zd-checkbox-multiple .zd-checkbox-horizontal {\n display: inline-grid;\n grid-template-columns: var(--checkbox-horizontal-columns);\n width: 100%;\n}\n.zd-checkbox-multiple .v-label {\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n}\n.zd-checkbox-multiple .v-input--selection-controls {\n padding: 0;\n margin: 0;\n}\n.zd-checkbox-multiple .v-input--selection-controls .v-input__control .v-messages {\n display: none;\n}\n.zd-checkbox-multiple .v-input--selection-controls .v-input__control .v-input__slot {\n margin: 0 10px 0 0;\n}\n.zd-checkbox-multiple .v-input--selection-controls .v-input__control .v-input__slot:hover .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-checkbox-multiple.zd-no-label .v-label {\n display: none;\n}\n.zd-checkbox-multiple.zd-no-helper > .v-input__control > .v-messages {\n display: none;\n}", map: undefined, media: undefined });
31803
31904
 
31804
31905
  };
31805
31906
  /* scoped */
@@ -32120,7 +32221,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
32120
32221
  class: [
32121
32222
  "zd-code-editor",
32122
32223
  _vm.instance.cssClass,
32123
- { "theme--dark": _vm.$vuetify.theme.dark },
32224
+ {
32225
+ "theme--dark":
32226
+ (_vm.$vuetify.theme.dark && !_vm.instance.light) ||
32227
+ _vm.instance.dark,
32228
+ },
32229
+ { "theme--light": !_vm.$vuetify.theme.dark || _vm.instance.light },
32124
32230
  ],
32125
32231
  style: _vm.instance.cssStyle,
32126
32232
  },
@@ -32229,11 +32335,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
32229
32335
  /* style */
32230
32336
  const __vue_inject_styles__$19 = function (inject) {
32231
32337
  if (!inject) return
32232
- inject("data-v-03a649ee_0", { source: ".zd-code-editor[data-v-03a649ee] {\n position: relative;\n}\n.zd-code-editor-clipboard-button[data-v-03a649ee] {\n position: absolute;\n top: 10px;\n right: 10px;\n background-color: var(--v-grey-lighten5);\n opacity: 0;\n transition: 0.3s all ease-in;\n}\n.zd-code-editor-clipboard-button .v-icon[data-v-03a649ee] {\n color: var(--v-grey-base);\n font-size: 18px;\n}\n.zd-code-editor:hover .zd-code-editor-clipboard-button[data-v-03a649ee] {\n opacity: 1;\n}\n.zd-code-editor-container[data-v-03a649ee] {\n position: relative;\n background-color: var(--v-grey-lighten5);\n min-height: 45px;\n display: flex;\n border: solid var(--regular) var(--v-grey-lighten5);\n overflow: auto;\n}\n.zd-code-editor-container[data-v-03a649ee]:focus-within {\n border: solid var(--regular) var(--v-primary-base);\n}\n.zd-code-editor-container .zd-code-editor-line-numbers[data-v-03a649ee] {\n height: 100%;\n min-height: 45px;\n width: 30px;\n overflow: hidden;\n flex-shrink: 0;\n margin-top: 0;\n font-size: 0.9em;\n padding: 10px 3px;\n font-family: Consolas, Monaco, \"Andale Mono\", \"Ubuntu Mono\", monospace;\n background: var(--v-grey-lighten4);\n color: var(--zd-font-color);\n position: sticky;\n top: 0;\n left: 0;\n}\n.zd-code-editor-container .zd-code-editor-line-numbers .zd-code-editor-line-number[data-v-03a649ee] {\n text-align: right;\n white-space: nowrap;\n}\n.zd-code-editor-container pre[data-v-03a649ee] {\n padding: 10px;\n margin: 0;\n background: transparent;\n -moz-tab-size: 4;\n -ms-flex-positive: 2;\n -o-tab-size: 4;\n -webkit-box-flex: 2;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n flex-grow: 2;\n outline: none;\n tab-size: 4;\n font-weight: 500;\n font-size: 0.9em;\n font-family: Consolas, Monaco, \"Andale Mono\", \"Ubuntu Mono\", monospace;\n overflow: hidden;\n color: var(--zd-font-color);\n}\n.zd-code-editor.theme--dark .zd-code-editor-container[data-v-03a649ee] {\n border: solid var(--regular) var(--v-grey-darken3);\n}\n.zd-code-editor.theme--dark .zd-code-editor-container .zd-code-editor-line-numbers[data-v-03a649ee] {\n background: var(--v-grey-darken3);\n color: var(--v-grey-lighten4);\n}", map: undefined, media: undefined });
32338
+ inject("data-v-4fffbcc6_0", { source: ".zd-code-editor[data-v-4fffbcc6] {\n position: relative;\n}\n.zd-code-editor-clipboard-button[data-v-4fffbcc6] {\n position: absolute;\n top: 10px;\n right: 10px;\n background-color: var(--v-grey-lighten5);\n opacity: 0;\n transition: 0.3s all ease-in;\n}\n.zd-code-editor-clipboard-button .v-icon[data-v-4fffbcc6] {\n color: var(--v-grey-base);\n font-size: 18px;\n}\n.zd-code-editor:hover .zd-code-editor-clipboard-button[data-v-4fffbcc6] {\n opacity: 1;\n}\n.zd-code-editor-container[data-v-4fffbcc6] {\n position: relative;\n background-color: var(--v-grey-lighten5);\n min-height: 45px;\n display: flex;\n border: solid var(--regular) var(--v-grey-lighten5);\n overflow: auto;\n}\n.zd-code-editor-container[data-v-4fffbcc6]:focus-within {\n border: solid var(--regular) var(--v-primary-base);\n}\n.zd-code-editor-container .zd-code-editor-line-numbers[data-v-4fffbcc6] {\n height: 100%;\n min-height: 45px;\n width: 30px;\n overflow: hidden;\n flex-shrink: 0;\n margin-top: 0;\n font-size: 0.9em;\n padding: 10px 3px;\n font-family: Consolas, Monaco, \"Andale Mono\", \"Ubuntu Mono\", monospace;\n background: var(--v-grey-lighten4);\n color: var(--zd-font-color);\n position: sticky;\n top: 0;\n left: 0;\n}\n.zd-code-editor-container .zd-code-editor-line-numbers .zd-code-editor-line-number[data-v-4fffbcc6] {\n text-align: right;\n white-space: nowrap;\n}\n.zd-code-editor-container pre[data-v-4fffbcc6] {\n padding: 10px;\n margin: 0;\n background: transparent;\n -moz-tab-size: 4;\n -ms-flex-positive: 2;\n -o-tab-size: 4;\n -webkit-box-flex: 2;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n flex-grow: 2;\n outline: none;\n tab-size: 4;\n font-weight: 500;\n font-size: 0.9em;\n font-family: Consolas, Monaco, \"Andale Mono\", \"Ubuntu Mono\", monospace;\n overflow: hidden;\n color: var(--zd-font-color);\n}\n.zd-code-editor.theme--dark .zd-code-editor-container[data-v-4fffbcc6] {\n border: solid var(--regular) var(--v-grey-darken3);\n}\n.zd-code-editor.theme--dark .zd-code-editor-container .zd-code-editor-line-numbers[data-v-4fffbcc6] {\n background: var(--v-grey-darken3);\n color: var(--v-grey-lighten4);\n}", map: undefined, media: undefined });
32233
32339
 
32234
32340
  };
32235
32341
  /* scoped */
32236
- const __vue_scope_id__$19 = "data-v-03a649ee";
32342
+ const __vue_scope_id__$19 = "data-v-4fffbcc6";
32237
32343
  /* module identifier */
32238
32344
  const __vue_module_identifier__$19 = undefined;
32239
32345
  /* functional template */
@@ -32543,7 +32649,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
32543
32649
  },
32544
32650
  scopedSlots: _vm._u(
32545
32651
  [
32546
- _vm.instance.expandButton && this && !this.$slots.expandButton
32652
+ _vm.instance.expandButton && !_vm.$slots.expandButton
32547
32653
  ? {
32548
32654
  key: "actions",
32549
32655
  fn: function () {
@@ -32564,9 +32670,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
32564
32670
  },
32565
32671
  proxy: true,
32566
32672
  }
32567
- : !_vm.instance.expandButton &&
32568
- this &&
32569
- !this.$slots.expandButton
32673
+ : !_vm.instance.expandButton && !_vm.$slots.expandButton
32570
32674
  ? {
32571
32675
  key: "actions",
32572
32676
  fn: function () {
@@ -32600,7 +32704,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
32600
32704
  _c(
32601
32705
  "div",
32602
32706
  [
32603
- this && !this.$slots.header
32707
+ !_vm.$slots.header
32604
32708
  ? _vm._l(_vm.instance.header, function (item) {
32605
32709
  return _c(
32606
32710
  item.component,
@@ -32662,7 +32766,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
32662
32766
  /* style */
32663
32767
  const __vue_inject_styles__$17 = function (inject) {
32664
32768
  if (!inject) return
32665
- inject("data-v-0e90afb6_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 });
32769
+ inject("data-v-c3d045c2_0", { source: ".v-expansion-panels.tile, .v-expansion-panels.tile:not(.v-expansion-panels--accordion) > .v-expansion-panel--active, .v-expansion-panels.tile:not(.v-expansion-panels--accordion) > .v-expansion-panel--next-active {\n border-radius: var(--border-tile);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active {\n box-shadow: var(--shadow-3);\n border-radius: var(--border);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel::before, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active::before, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active::before {\n box-shadow: none;\n}\n.v-expansion-panels > div:first-child.v-expansion-panel.outlined, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active.outlined, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active.outlined {\n box-shadow: none;\n border: var(--regular) solid var(--v-secondary-base);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel.raised, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active.raised, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active.raised {\n box-shadow: var(--shadow-9);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel .v-expansion-panel-content__wrap, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-content__wrap, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active .v-expansion-panel-content__wrap {\n padding: 0 var(--spacing-4) var(--spacing-4) var(--spacing-4);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel .v-expansion-panel-header, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-header, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active .v-expansion-panel-header {\n border-bottom-left-radius: inherit;\n border-bottom-right-radius: inherit;\n min-height: 0;\n padding: var(--spacing-4);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel .v-expansion-panel-header .v-expansion-panel-header__icon .v-btn .v-icon, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-header .v-expansion-panel-header__icon .v-btn .v-icon, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active .v-expansion-panel-header .v-expansion-panel-header__icon .v-btn .v-icon {\n color: currentColor;\n}\n.v-expansion-panels > div:first-child.v-expansion-panel .v-expansion-panel-header > :not(.v-expansion-panel-header__icon), .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-header > :not(.v-expansion-panel-header__icon), .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active .v-expansion-panel-header > :not(.v-expansion-panel-header__icon) {\n padding-right: var(--spacing-4);\n}\n.v-expansion-panels--flat > div:first-child.v-expansion-panel, .v-expansion-panels--flat > div:first-child.v-expansion-panel.v-expansion-panel--active, .v-expansion-panels--flat > div:first-child.v-expansion-panel.v-expansion-panel--next-active {\n box-shadow: none;\n}\n.v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel:hover, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel:focus, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel.v-expansion-panel--active:hover, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel.v-expansion-panel--active:focus, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel.v-expansion-panel--next-active:hover, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel.v-expansion-panel--next-active:focus {\n box-shadow: var(--shadow-5);\n}", map: undefined, media: undefined });
32666
32770
 
32667
32771
  };
32668
32772
  /* scoped */
@@ -32744,7 +32848,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
32744
32848
  return _c(
32745
32849
  child.component,
32746
32850
  _vm._b(
32747
- { key: index, tag: "component", attrs: { parent: _vm.instance } },
32851
+ {
32852
+ key: index,
32853
+ tag: "component",
32854
+ attrs: {
32855
+ dark: _vm.instance.dark,
32856
+ light: _vm.instance.light,
32857
+ parent: _vm.instance,
32858
+ },
32859
+ },
32748
32860
  "component",
32749
32861
  child,
32750
32862
  false
@@ -32763,11 +32875,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
32763
32875
  /* style */
32764
32876
  const __vue_inject_styles__$16 = function (inject) {
32765
32877
  if (!inject) return
32766
- inject("data-v-9d347aae_0", { source: ".zd-container[data-v-9d347aae] {\n padding: var(--zd-default-padding);\n}", map: undefined, media: undefined });
32878
+ inject("data-v-32e0e921_0", { source: ".zd-container[data-v-32e0e921] {\n padding: var(--zd-default-padding);\n}", map: undefined, media: undefined });
32767
32879
 
32768
32880
  };
32769
32881
  /* scoped */
32770
- const __vue_scope_id__$16 = "data-v-9d347aae";
32882
+ const __vue_scope_id__$16 = "data-v-32e0e921";
32771
32883
  /* module identifier */
32772
32884
  const __vue_module_identifier__$16 = undefined;
32773
32885
  /* functional template */
@@ -33465,6 +33577,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
33465
33577
  { "zd-pa-0": _vm.instance.removePadding },
33466
33578
  ],
33467
33579
  attrs: {
33580
+ dark: _vm.instance.dark,
33581
+ light: _vm.instance.light,
33468
33582
  name: "container-dashboard" + _vm.instance.name,
33469
33583
  cssStyle: Object.assign({}, _vm.instance.cssStyle, {
33470
33584
  height: _vm.$formatSize(_vm.instance.height),
@@ -33541,7 +33655,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
33541
33655
  "zd-footer",
33542
33656
  {
33543
33657
  name: "footer" + card.cardId,
33544
- color: "white",
33658
+ color: "",
33545
33659
  isVisible: _vm.instance.editingMode,
33546
33660
  rightSlot: _vm.instance.getFooterRightSlot(card.cardId),
33547
33661
  },
@@ -33604,7 +33718,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
33604
33718
  /* style */
33605
33719
  const __vue_inject_styles__$12 = function (inject) {
33606
33720
  if (!inject) return
33607
- inject("data-v-d83d7a7c_0", { source: ".zd-dashboard {\n display: flex;\n flex-direction: column;\n cursor: auto;\n}\n.zd-dashboard .zd-header {\n margin-bottom: 10px;\n}\n.zd-dashboard .zd-footer {\n bottom: 0;\n right: 20px;\n position: absolute;\n padding: 3px;\n}\n.zd-dashboard .zd-icon {\n bottom: 0;\n right: 0;\n position: absolute;\n cursor: nw-resize;\n}\n.zd-dashboard .zd-dashboard-body {\n justify-content: flex-start;\n align-content: flex-start;\n display: flex;\n flex-wrap: wrap;\n height: 100%;\n min-height: 0;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col {\n min-height: 70px;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col .zd-dashboard-card-div {\n height: 100%;\n position: relative;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col .zd-dashboard-card-div > .zd-card {\n height: 100%;\n}\n.ghost-drag {\n border: 2px dashed #772583;\n opacity: 0.5;\n margin: 0;\n}", map: undefined, media: undefined });
33721
+ inject("data-v-404a75cd_0", { source: ".zd-dashboard {\n display: flex;\n flex-direction: column;\n cursor: auto;\n}\n.zd-dashboard .zd-header {\n margin-bottom: 10px;\n}\n.zd-dashboard .zd-footer {\n bottom: 0;\n right: 20px;\n position: absolute;\n padding: 3px;\n}\n.zd-dashboard .zd-footer.theme--dark {\n background: #1e1e1e;\n}\n.zd-dashboard .zd-footer.theme--light {\n background: #fff;\n}\n.zd-dashboard .zd-icon {\n bottom: 0;\n right: 0;\n position: absolute;\n cursor: nw-resize;\n}\n.zd-dashboard .zd-dashboard-body {\n justify-content: flex-start;\n align-content: flex-start;\n display: flex;\n flex-wrap: wrap;\n height: 100%;\n min-height: 0;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col {\n min-height: 70px;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col .zd-dashboard-card-div {\n height: 100%;\n position: relative;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col .zd-dashboard-card-div > .zd-card {\n height: 100%;\n}\n.ghost-drag {\n border: 2px dashed #772583;\n opacity: 0.5;\n margin: 0;\n}", map: undefined, media: undefined });
33608
33722
 
33609
33723
  };
33610
33724
  /* scoped */
@@ -33710,6 +33824,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
33710
33824
  }
33711
33825
  onSelectDate(date, event) {
33712
33826
  this.instance.selectDate(date, event, this.$el);
33827
+ this.instance.change(event, this.$refs.instance.$el);
33713
33828
  }
33714
33829
  getAllowedDates(date) {
33715
33830
  if (typeof this.instance.allowedDates === 'function') {
@@ -34373,6 +34488,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
34373
34488
  attrs: {
34374
34489
  "max-width": _vm.dialog.maxWidth,
34375
34490
  persistent: _vm.dialog.persistent,
34491
+ dark: _vm.instance.dark,
34492
+ light: _vm.instance.light,
34376
34493
  },
34377
34494
  model: {
34378
34495
  value: _vm.dialog.isVisible,
@@ -34461,7 +34578,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
34461
34578
  /* style */
34462
34579
  const __vue_inject_styles__$$ = function (inject) {
34463
34580
  if (!inject) return
34464
- inject("data-v-2b7cbae8_0", { source: ".v-dialog > .zd-dialog > .zd-dialog-title {\n padding: var(--spacing-4);\n padding-bottom: 0;\n color: var(--zd-font-color);\n font-size: var(--zd-font-title-size);\n font-weight: var(--zd-font-title-weight);\n}\n.v-dialog > .zd-dialog > .zd-dialog-title .zd-dialog-icon {\n width: var(--icon-size);\n height: var(--icon-size);\n margin-right: var(--spacing-2);\n}\n.v-dialog > .zd-dialog .zd-dialog-text {\n padding: 14px var(--spacing-4) var(--spacing-4) var(--spacing-4);\n color: var(--zd-font-color);\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n}\n.v-dialog > .zd-dialog .zd-dialog-buttons {\n padding: var(--spacing-4);\n padding-top: 0;\n}\n.v-dialog > .zd-dialog .zd-dialog-buttons .zd-button {\n margin-left: var(--spacing-2);\n}", map: undefined, media: undefined });
34581
+ inject("data-v-33718270_0", { source: ".v-dialog > .zd-dialog > .zd-dialog-title {\n padding: var(--spacing-4);\n padding-bottom: 0;\n color: var(--zd-font-color);\n font-size: var(--zd-font-title-size);\n font-weight: var(--zd-font-title-weight);\n}\n.v-dialog > .zd-dialog > .zd-dialog-title .zd-dialog-icon {\n width: var(--icon-size);\n height: var(--icon-size);\n margin-right: var(--spacing-2);\n}\n.v-dialog > .zd-dialog .zd-dialog-text {\n padding: 14px var(--spacing-4) var(--spacing-4) var(--spacing-4);\n color: var(--zd-font-color);\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n}\n.v-dialog > .zd-dialog .zd-dialog-buttons {\n padding: var(--spacing-4);\n padding-top: 0;\n}\n.v-dialog > .zd-dialog .zd-dialog-buttons .zd-button {\n margin-left: var(--spacing-2);\n}", map: undefined, media: undefined });
34465
34582
 
34466
34583
  };
34467
34584
  /* scoped */
@@ -34498,18 +34615,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
34498
34615
  this.instanceType = common.Divider;
34499
34616
  }
34500
34617
  };
34501
- __decorate([
34502
- PropWatch({ type: [Boolean, String], default: false }),
34503
- __metadata("design:type", Boolean)
34504
- ], ZdDivider.prototype, "dark", void 0);
34505
34618
  __decorate([
34506
34619
  PropWatch({ type: [Boolean, String], default: false }),
34507
34620
  __metadata("design:type", Boolean)
34508
34621
  ], ZdDivider.prototype, "inset", void 0);
34509
- __decorate([
34510
- PropWatch({ type: [Boolean, String], default: false }),
34511
- __metadata("design:type", Boolean)
34512
- ], ZdDivider.prototype, "light", void 0);
34513
34622
  __decorate([
34514
34623
  PropWatch({ type: [Boolean, String], default: false }),
34515
34624
  __metadata("design:type", Boolean)
@@ -34697,6 +34806,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
34697
34806
  closeOnClick: _vm.instance.closeOnClick,
34698
34807
  closeOnContentClick: _vm.instance.closeOnContentClick,
34699
34808
  disabled: _vm.instance.disabled,
34809
+ dark: _vm.instance.dark,
34810
+ light: _vm.instance.light,
34700
34811
  fixed: _vm.instance.fixed,
34701
34812
  "max-height": _vm.instance.maxHeight,
34702
34813
  "max-width": _vm.instance.maxWidth,
@@ -34785,7 +34896,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
34785
34896
  /* style */
34786
34897
  const __vue_inject_styles__$Z = function (inject) {
34787
34898
  if (!inject) return
34788
- inject("data-v-cc2625b2_0", { source: ".zd-dropdown {\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 padding: 2px;\n}\n.zd-dropdown .zd-dropdown-component {\n padding: 6px 14px;\n border-radius: var(--border);\n}\n.zd-dropdown-hover:hover {\n background-color: var(--v-grey-lighten5);\n}\n.zd-dropdown-cursor {\n cursor: var(--cursor);\n}\n.zd-dropdown-menu {\n margin: 0 !important;\n padding: 0 !important;\n box-shadow: var(--shadow-8);\n}", map: undefined, media: undefined });
34899
+ inject("data-v-9ce8f0c2_0", { source: ".zd-dropdown {\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 padding: 2px;\n}\n.zd-dropdown .zd-dropdown-component {\n padding: 6px 14px;\n border-radius: var(--border);\n}\n.zd-dropdown-hover:hover {\n background-color: var(--v-grey-lighten5);\n}\n.zd-dropdown-cursor {\n cursor: var(--cursor);\n}\n.zd-dropdown-menu {\n margin: 0 !important;\n padding: 0 !important;\n box-shadow: var(--shadow-8);\n}", map: undefined, media: undefined });
34789
34900
 
34790
34901
  };
34791
34902
  /* scoped */
@@ -35012,6 +35123,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
35012
35123
  _vm.instance.cssStyle,
35013
35124
  ],
35014
35125
  attrs: {
35126
+ dark: _vm.instance.dark,
35127
+ light: _vm.instance.light,
35015
35128
  "validate-on-blur": "",
35016
35129
  name: _vm.instance.name,
35017
35130
  "persistent-placeholder": true,
@@ -35063,6 +35176,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
35063
35176
  {
35064
35177
  dragging: _vm.dragging,
35065
35178
  },
35179
+ {
35180
+ "theme--dark":
35181
+ (_vm.$vuetify.theme.dark &&
35182
+ !_vm.instance.light) ||
35183
+ _vm.instance.dark,
35184
+ },
35185
+ {
35186
+ "theme--light":
35187
+ !_vm.$vuetify.theme.dark ||
35188
+ _vm.instance.light,
35189
+ },
35066
35190
  ],
35067
35191
  },
35068
35192
  [
@@ -35163,9 +35287,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
35163
35287
  accept: _vm.instance.accept,
35164
35288
  autofocus: _vm.instance.autofocus,
35165
35289
  chips: _vm.instance.chips,
35166
- counter: !!this.instance.maxFiles
35167
- ? this.instance.maxFiles
35168
- : this.instance.showCounter,
35290
+ counter: !!_vm.instance.maxFiles
35291
+ ? _vm.instance.maxFiles
35292
+ : _vm.instance.showCounter,
35169
35293
  "counter-string":
35170
35294
  _vm.$t(_vm.instance.counterString) || "$vuetify.fileInput.counter",
35171
35295
  "counter-size-string":
@@ -35221,7 +35345,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
35221
35345
  /* style */
35222
35346
  const __vue_inject_styles__$Y = function (inject) {
35223
35347
  if (!inject) return
35224
- inject("data-v-a5824dda_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 });
35348
+ inject("data-v-5040ba1c_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 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.theme--dark {\n background: #3c3c3c;\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.theme--light {\n background: #f8f8f8;\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-drag-area.dragging {\n background: #f0f0f0;\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-drag-area .zd-file-input-drag-content {\n text-align: center;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-drag-area .zd-file-input-drag-content > span {\n display: block;\n}\n.zd-file-input.v-input--is-disabled > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text {\n opacity: 0.5;\n}\n.zd-file-input.v-text-field--reverse > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text {\n flex-direction: row-reverse;\n}", map: undefined, media: undefined });
35225
35349
 
35226
35350
  };
35227
35351
  /* scoped */
@@ -35294,10 +35418,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
35294
35418
  PropWatch({ type: String, default: 'primary' }),
35295
35419
  __metadata("design:type", String)
35296
35420
  ], ZdFooter.prototype, "color", void 0);
35297
- __decorate([
35298
- PropWatch({ type: [Boolean, String], default: false }),
35299
- __metadata("design:type", Boolean)
35300
- ], ZdFooter.prototype, "dark", void 0);
35301
35421
  __decorate([
35302
35422
  PropWatch({ type: [Boolean, String], default: false }),
35303
35423
  __metadata("design:type", Boolean)
@@ -35314,10 +35434,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
35314
35434
  vuePropertyDecorator.Prop({ type: Array, default: () => [] }),
35315
35435
  __metadata("design:type", Array)
35316
35436
  ], ZdFooter.prototype, "leftSlot", void 0);
35317
- __decorate([
35318
- PropWatch({ type: [Boolean, String], default: false }),
35319
- __metadata("design:type", Boolean)
35320
- ], ZdFooter.prototype, "light", void 0);
35321
35437
  __decorate([
35322
35438
  PropWatch({ type: [Number, String] }),
35323
35439
  __metadata("design:type", Object)
@@ -35392,9 +35508,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
35392
35508
  },
35393
35509
  [
35394
35510
  _vm.instance.namedSlotsIsVisible ||
35395
- !!this.$slots.leftSlot ||
35396
- !!this.$slots.centerSlot ||
35397
- !!this.$slots.rightSlot
35511
+ !!_vm.$slots.leftSlot ||
35512
+ !!_vm.$slots.centerSlot ||
35513
+ !!_vm.$slots.rightSlot
35398
35514
  ? _c(
35399
35515
  "v-col",
35400
35516
  {
@@ -35402,25 +35518,32 @@ If you're seeing "$attrs is readonly", it's caused by this`);
35402
35518
  "zd-footer-slot",
35403
35519
  {
35404
35520
  "zd-footer-slot-children":
35405
- _vm.instance.children.length || !!this.$slots.leftSlot,
35521
+ _vm.instance.children.length || !!_vm.$slots.leftSlot,
35406
35522
  },
35407
35523
  ],
35408
35524
  attrs: { cols: "12" },
35409
35525
  },
35410
35526
  [
35411
- _vm.instance.leftSlot.length || !!this.$slots.leftSlot
35527
+ _vm.instance.leftSlot.length || !!_vm.$slots.leftSlot
35412
35528
  ? _c(
35413
35529
  "span",
35414
35530
  { staticClass: "zd-footer-slot-left" },
35415
35531
  [
35416
- !this.$slots.leftSlot
35532
+ !_vm.$slots.leftSlot
35417
35533
  ? _vm._l(
35418
35534
  _vm.instance.leftSlot,
35419
35535
  function (child, index) {
35420
35536
  return _c(
35421
35537
  child.component,
35422
35538
  _vm._b(
35423
- { key: index, tag: "component" },
35539
+ {
35540
+ key: index,
35541
+ tag: "component",
35542
+ attrs: {
35543
+ dark: _vm.instance.dark,
35544
+ light: _vm.instance.light,
35545
+ },
35546
+ },
35424
35547
  "component",
35425
35548
  child,
35426
35549
  false
@@ -35436,19 +35559,26 @@ If you're seeing "$attrs is readonly", it's caused by this`);
35436
35559
  )
35437
35560
  : _vm._e(),
35438
35561
  _vm._v(" "),
35439
- _vm.instance.centerSlot.length || !!this.$slots.centerSlot
35562
+ _vm.instance.centerSlot.length || !!_vm.$slots.centerSlot
35440
35563
  ? _c(
35441
35564
  "span",
35442
35565
  { ref: "centerSlot", staticClass: "zd-footer-slot-center" },
35443
35566
  [
35444
- !this.$slots.centerSlot
35567
+ !_vm.$slots.centerSlot
35445
35568
  ? _vm._l(
35446
35569
  _vm.instance.centerSlot,
35447
35570
  function (child, index) {
35448
35571
  return _c(
35449
35572
  child.component,
35450
35573
  _vm._b(
35451
- { key: index, tag: "component" },
35574
+ {
35575
+ key: index,
35576
+ tag: "component",
35577
+ attrs: {
35578
+ dark: _vm.instance.dark,
35579
+ light: _vm.instance.light,
35580
+ },
35581
+ },
35452
35582
  "component",
35453
35583
  child,
35454
35584
  false
@@ -35464,19 +35594,26 @@ If you're seeing "$attrs is readonly", it's caused by this`);
35464
35594
  )
35465
35595
  : _vm._e(),
35466
35596
  _vm._v(" "),
35467
- _vm.instance.rightSlot.length || !!this.$slots.rightSlot
35597
+ _vm.instance.rightSlot.length || !!_vm.$slots.rightSlot
35468
35598
  ? _c(
35469
35599
  "span",
35470
35600
  { staticClass: "zd-footer-slot-right" },
35471
35601
  [
35472
- !this.$slots.rightSlot
35602
+ !_vm.$slots.rightSlot
35473
35603
  ? _vm._l(
35474
35604
  _vm.instance.rightSlot,
35475
35605
  function (child, index) {
35476
35606
  return _c(
35477
35607
  child.component,
35478
35608
  _vm._b(
35479
- { key: index, tag: "component" },
35609
+ {
35610
+ key: index,
35611
+ tag: "component",
35612
+ attrs: {
35613
+ dark: _vm.instance.dark,
35614
+ light: _vm.instance.light,
35615
+ },
35616
+ },
35480
35617
  "component",
35481
35618
  child,
35482
35619
  false
@@ -35506,7 +35643,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
35506
35643
  {
35507
35644
  key: index,
35508
35645
  tag: "component",
35509
- attrs: { parent: _vm.instance },
35646
+ attrs: {
35647
+ dark: _vm.instance.dark,
35648
+ light: _vm.instance.light,
35649
+ parent: _vm.instance,
35650
+ },
35510
35651
  },
35511
35652
  "component",
35512
35653
  child,
@@ -35529,11 +35670,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
35529
35670
  /* style */
35530
35671
  const __vue_inject_styles__$X = function (inject) {
35531
35672
  if (!inject) return
35532
- inject("data-v-e8bcfdd6_0", { source: ".zd-footer-slot[data-v-e8bcfdd6] {\n display: flex;\n padding: 0;\n}\n.zd-footer-slot-children[data-v-e8bcfdd6] {\n padding-bottom: var(--spacing-2);\n}\n.zd-footer-slot-left > *[data-v-e8bcfdd6], .zd-footer-slot-center > *[data-v-e8bcfdd6], .zd-footer-slot-right > *[data-v-e8bcfdd6] {\n margin: 0 var(--spacing-1);\n}\n.zd-footer-slot-left > *[data-v-e8bcfdd6]:first-child, .zd-footer-slot-center > *[data-v-e8bcfdd6]:first-child, .zd-footer-slot-right > *[data-v-e8bcfdd6]:first-child {\n margin-left: 0;\n}\n.zd-footer-slot-left > *[data-v-e8bcfdd6]:last-child, .zd-footer-slot-center > *[data-v-e8bcfdd6]:last-child, .zd-footer-slot-right > *[data-v-e8bcfdd6]:last-child {\n margin-right: 0;\n}\n.zd-footer-slot-center[data-v-e8bcfdd6] {\n position: absolute;\n left: 50%;\n transform: translateX(-50%);\n}\n.zd-footer-slot-right[data-v-e8bcfdd6] {\n margin-left: auto;\n}", map: undefined, media: undefined });
35673
+ inject("data-v-26287a82_0", { source: ".zd-footer-slot[data-v-26287a82] {\n display: flex;\n padding: 0;\n}\n.zd-footer-slot-children[data-v-26287a82] {\n padding-bottom: var(--spacing-2);\n}\n.zd-footer-slot-left > *[data-v-26287a82], .zd-footer-slot-center > *[data-v-26287a82], .zd-footer-slot-right > *[data-v-26287a82] {\n margin: 0 var(--spacing-1);\n}\n.zd-footer-slot-left > *[data-v-26287a82]:first-child, .zd-footer-slot-center > *[data-v-26287a82]:first-child, .zd-footer-slot-right > *[data-v-26287a82]:first-child {\n margin-left: 0;\n}\n.zd-footer-slot-left > *[data-v-26287a82]:last-child, .zd-footer-slot-center > *[data-v-26287a82]:last-child, .zd-footer-slot-right > *[data-v-26287a82]:last-child {\n margin-right: 0;\n}\n.zd-footer-slot-center[data-v-26287a82] {\n position: absolute;\n left: 50%;\n transform: translateX(-50%);\n}\n.zd-footer-slot-right[data-v-26287a82] {\n margin-left: auto;\n}", map: undefined, media: undefined });
35533
35674
 
35534
35675
  };
35535
35676
  /* scoped */
35536
- const __vue_scope_id__$X = "data-v-e8bcfdd6";
35677
+ const __vue_scope_id__$X = "data-v-26287a82";
35537
35678
  /* module identifier */
35538
35679
  const __vue_module_identifier__$X = undefined;
35539
35680
  /* functional template */
@@ -36095,8 +36236,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
36095
36236
  this.hideColumn(event);
36096
36237
  return;
36097
36238
  }
36098
- const columnsTmp = this.instance.columns.filter((a) => a.isVisible);
36099
- let { oldIndex, newIndex } = event;
36239
+ const columnsTmp = this.getColumnsDOMOrder().filter((a) => a.isVisible);
36240
+ let { oldIndex = 0, newIndex = 0 } = event;
36100
36241
  if (this.instance.selectable) {
36101
36242
  oldIndex -= 1;
36102
36243
  newIndex -= 1;
@@ -36108,15 +36249,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
36108
36249
  this.instance.columns = columnsTmp.concat(this.instance.columns.filter((a) => !a.isVisible));
36109
36250
  this.instance.changeLayout(event, this.$el);
36110
36251
  }
36252
+ getColumnsDOMOrder() {
36253
+ return this.instance.columns;
36254
+ }
36111
36255
  checkMove(event) {
36112
- return !this.instance.selectable || Array.from(event.related.classList).indexOf('selectable') === -1;
36256
+ return event.related.classList.contains('sortHandle');
36113
36257
  }
36114
36258
  hideColumn(event) {
36115
36259
  let columnIndex = Number(event.item.getAttribute('index'));
36116
36260
  if (this.instance.selectable) {
36117
36261
  columnIndex -= 1;
36118
36262
  }
36119
- const column = this.instance.columns[columnIndex];
36263
+ const column = this.getColumnsDOMOrder()[columnIndex];
36120
36264
  column.isVisible = false;
36121
36265
  this.instance.changeLayout(event, this.$el);
36122
36266
  }
@@ -36340,9 +36484,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
36340
36484
  __metadata("design:type", Array)
36341
36485
  ], ZdGrid.prototype, "footerSlot", void 0);
36342
36486
  __decorate([
36343
- PropWatch({ type: String, default: 'white' }),
36487
+ PropWatch({ type: String, default: '' }),
36344
36488
  __metadata("design:type", String)
36345
36489
  ], ZdGrid.prototype, "headerBackground", void 0);
36490
+ __decorate([
36491
+ PropWatch({ type: String, default: '' }),
36492
+ __metadata("design:type", String)
36493
+ ], ZdGrid.prototype, "headerCellTextColor", void 0);
36346
36494
  __decorate([
36347
36495
  PropWatch({ type: [Number, String], default: undefined }),
36348
36496
  __metadata("design:type", Object)
@@ -36442,8 +36590,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
36442
36590
  _vm.instance.cssClass,
36443
36591
  { "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
36444
36592
  ],
36445
- style: [_vm.cssColorVars, _vm.instance.cssStyle],
36593
+ style: [
36594
+ _vm.cssColorVars,
36595
+ _vm.instance.cssStyle,
36596
+ _vm.instance.gridHeight
36597
+ ? { height: _vm.$formatSize(_vm.instance.gridHeight) }
36598
+ : {},
36599
+ ],
36446
36600
  attrs: {
36601
+ dark: _vm.instance.dark,
36602
+ light: _vm.instance.light,
36447
36603
  "fixed-header": "",
36448
36604
  "disable-pagination": "",
36449
36605
  "hide-default-header": "",
@@ -36588,6 +36744,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
36588
36744
  style: {
36589
36745
  width:
36590
36746
  _vm.calcHeaderCellWidth(column),
36747
+ color:
36748
+ _vm.instance.headerCellTextColor,
36591
36749
  },
36592
36750
  },
36593
36751
  [
@@ -37198,7 +37356,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
37198
37356
  /* style */
37199
37357
  const __vue_inject_styles__$T = function (inject) {
37200
37358
  if (!inject) return
37201
- inject("data-v-336d017f_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 });
37359
+ inject("data-v-baad9074_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: nowrap;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: unset;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: unset;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n}", map: undefined, media: undefined });
37202
37360
 
37203
37361
  };
37204
37362
  /* scoped */
@@ -37400,6 +37558,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
37400
37558
  ],
37401
37559
  style: [_vm.cssColorVars, _vm.instance.cssStyle],
37402
37560
  attrs: {
37561
+ dark: _vm.instance.dark,
37562
+ light: _vm.instance.light,
37403
37563
  "fixed-header": "",
37404
37564
  "disable-pagination": "",
37405
37565
  "hide-default-header": "",
@@ -38328,8 +38488,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38328
38488
  /* style */
38329
38489
  const __vue_inject_styles__$S = function (inject) {
38330
38490
  if (!inject) return
38331
- inject("data-v-be9c362e_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: nowrap;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: unset;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: unset;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n}", map: undefined, media: undefined })
38332
- ,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 });
38491
+ inject("data-v-733aaa89_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 })
38492
+ ,inject("data-v-733aaa89_1", { source: ".zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-inline-edit {\n justify-content: flex-end;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-inline-edit {\n justify-content: center;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon {\n display: flex;\n font-size: 18px;\n margin-right: var(--spacing-1);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
38333
38493
 
38334
38494
  };
38335
38495
  /* scoped */
@@ -38410,10 +38570,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38410
38570
  PropWatch({ type: [Boolean, String], default: true }),
38411
38571
  __metadata("design:type", Boolean)
38412
38572
  ], ZdHeader.prototype, "clippedRight", void 0);
38413
- __decorate([
38414
- PropWatch({ type: [Boolean, String], default: false }),
38415
- __metadata("design:type", Boolean)
38416
- ], ZdHeader.prototype, "dark", void 0);
38417
38573
  __decorate([
38418
38574
  PropWatch({ type: [Boolean, String], default: false }),
38419
38575
  __metadata("design:type", Boolean)
@@ -38434,10 +38590,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38434
38590
  vuePropertyDecorator.Prop({ type: Array, default: () => [] }),
38435
38591
  __metadata("design:type", Array)
38436
38592
  ], ZdHeader.prototype, "leftSlot", void 0);
38437
- __decorate([
38438
- PropWatch({ type: [Boolean, String], default: false }),
38439
- __metadata("design:type", Boolean)
38440
- ], ZdHeader.prototype, "light", void 0);
38441
38593
  __decorate([
38442
38594
  PropWatch({ type: [Number, String] }),
38443
38595
  __metadata("design:type", Object)
@@ -38531,12 +38683,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38531
38683
  attrs: { cols: "12" },
38532
38684
  },
38533
38685
  [
38534
- _vm.instance.leftSlot.length || !!this.$slots.leftSlot
38686
+ _vm.instance.leftSlot.length || !!_vm.$slots.leftSlot
38535
38687
  ? _c(
38536
38688
  "span",
38537
38689
  { staticClass: "zd-header-slot-left" },
38538
38690
  [
38539
- !this.$slots.leftSlot
38691
+ !_vm.$slots.leftSlot
38540
38692
  ? _vm._l(
38541
38693
  _vm.instance.leftSlot,
38542
38694
  function (child, index) {
@@ -38572,12 +38724,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38572
38724
  )
38573
38725
  : _vm._e(),
38574
38726
  _vm._v(" "),
38575
- _vm.instance.centerSlot.length || !!this.$slots.centerSlot
38727
+ _vm.instance.centerSlot.length || !!_vm.$slots.centerSlot
38576
38728
  ? _c(
38577
38729
  "span",
38578
38730
  { ref: "centerSlot", staticClass: "zd-header-slot-center" },
38579
38731
  [
38580
- !this.$slots.centerSlot
38732
+ !_vm.$slots.centerSlot
38581
38733
  ? _vm._l(
38582
38734
  _vm.instance.centerSlot,
38583
38735
  function (child, index) {
@@ -38613,12 +38765,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38613
38765
  )
38614
38766
  : _vm._e(),
38615
38767
  _vm._v(" "),
38616
- _vm.instance.rightSlot.length || !!this.$slots.rightSlot
38768
+ _vm.instance.rightSlot.length || !!_vm.$slots.rightSlot
38617
38769
  ? _c(
38618
38770
  "span",
38619
38771
  { staticClass: "zd-header-slot-right" },
38620
38772
  [
38621
- !this.$slots.rightSlot
38773
+ !_vm.$slots.rightSlot
38622
38774
  ? _vm._l(
38623
38775
  _vm.instance.rightSlot,
38624
38776
  function (child, index) {
@@ -38691,7 +38843,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38691
38843
  /* style */
38692
38844
  const __vue_inject_styles__$R = function (inject) {
38693
38845
  if (!inject) return
38694
- inject("data-v-3717f0bf_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 });
38846
+ inject("data-v-489cc01b_0", { source: ".zd-header-slot {\n display: flex;\n padding: 0;\n align-items: center;\n}\n.zd-header-slot-children {\n padding-bottom: var(--spacing-2);\n}\n.zd-header-slot-left > *, .zd-header-slot-center > *, .zd-header-slot-right > * {\n margin: 0 var(--spacing-1);\n display: inline-flex;\n vertical-align: middle;\n}\n.zd-header-slot-center {\n position: absolute;\n left: 50%;\n transform: translateX(-50%);\n}\n.zd-header-slot-right {\n margin-left: auto;\n}\n.zd-header.padless > .v-toolbar__content {\n padding: 0;\n}", map: undefined, media: undefined });
38695
38847
 
38696
38848
  };
38697
38849
  /* scoped */
@@ -38866,7 +39018,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38866
39018
  ? [
38867
39019
  _vm._t("errorSlot"),
38868
39020
  _vm._v(" "),
38869
- !this.$slots.errorSlot
39021
+ !_vm.$slots.errorSlot
38870
39022
  ? _vm._l(_vm.instance.errorSlot, function (child, index) {
38871
39023
  return _c(
38872
39024
  child.component,
@@ -38896,7 +39048,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38896
39048
  ? [
38897
39049
  _vm._t("noResultSlot"),
38898
39050
  _vm._v(" "),
38899
- !this.$slots.noResultSlot
39051
+ !_vm.$slots.noResultSlot
38900
39052
  ? _vm._l(
38901
39053
  _vm.instance.noResultSlot,
38902
39054
  function (child, index) {
@@ -38920,7 +39072,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38920
39072
  : [
38921
39073
  _vm._t("noDataSlot"),
38922
39074
  _vm._v(" "),
38923
- !this.$slots.noDataSlot
39075
+ !_vm.$slots.noDataSlot
38924
39076
  ? _vm._l(_vm.instance.noDataSlot, function (child, index) {
38925
39077
  return _c(
38926
39078
  child.component,
@@ -39003,32 +39155,40 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39003
39155
  var _h = _vm.$createElement;
39004
39156
  var _c = _vm._self._c || _h;
39005
39157
  return _vm.toolbarSlot.length || !!_vm.$slots.default
39006
- ? _c("div", { ref: "header", staticClass: "zd-grid-toolbar" }, [
39007
- _c(
39008
- "div",
39009
- { staticClass: "zd-grid-toolbar-slot" },
39010
- [
39011
- _vm._l(_vm.instance.toolbarSlot, function (child, index) {
39012
- return _c(
39013
- child.component,
39014
- _vm._b(
39015
- {
39016
- key: index,
39017
- tag: "component",
39018
- attrs: { parent: _vm.instance },
39019
- },
39020
- "component",
39021
- child,
39022
- false
39158
+ ? _c(
39159
+ "div",
39160
+ {
39161
+ ref: "header",
39162
+ staticClass: "zd-grid-toolbar",
39163
+ attrs: { dark: _vm.toolbarSlot.dark, light: _vm.toolbarSlot.light },
39164
+ },
39165
+ [
39166
+ _c(
39167
+ "div",
39168
+ { staticClass: "zd-grid-toolbar-slot" },
39169
+ [
39170
+ _vm._l(_vm.instance.toolbarSlot, function (child, index) {
39171
+ return _c(
39172
+ child.component,
39173
+ _vm._b(
39174
+ {
39175
+ key: index,
39176
+ tag: "component",
39177
+ attrs: { parent: _vm.instance },
39178
+ },
39179
+ "component",
39180
+ child,
39181
+ false
39182
+ )
39023
39183
  )
39024
- )
39025
- }),
39026
- _vm._v(" "),
39027
- _vm._t("default"),
39028
- ],
39029
- 2
39030
- ),
39031
- ])
39184
+ }),
39185
+ _vm._v(" "),
39186
+ _vm._t("default"),
39187
+ ],
39188
+ 2
39189
+ ),
39190
+ ]
39191
+ )
39032
39192
  : _vm._e()
39033
39193
  };
39034
39194
  var __vue_staticRenderFns__$O = [];
@@ -39083,10 +39243,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39083
39243
  PropWatch({ type: String, default: '' }),
39084
39244
  __metadata("design:type", String)
39085
39245
  ], ZdIcon.prototype, "color", void 0);
39086
- __decorate([
39087
- PropWatch({ type: [Boolean, String], default: false }),
39088
- __metadata("design:type", Object)
39089
- ], ZdIcon.prototype, "dark", void 0);
39090
39246
  __decorate([
39091
39247
  PropWatch({ type: [Boolean, String], default: false }),
39092
39248
  __metadata("design:type", Object)
@@ -39103,10 +39259,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39103
39259
  PropWatch({ type: [Boolean, String], default: false }),
39104
39260
  __metadata("design:type", Object)
39105
39261
  ], ZdIcon.prototype, "left", void 0);
39106
- __decorate([
39107
- PropWatch({ type: [Boolean, String], default: false }),
39108
- __metadata("design:type", Object)
39109
- ], ZdIcon.prototype, "light", void 0);
39110
39262
  __decorate([
39111
39263
  PropWatch({ type: [Boolean, String], default: false }),
39112
39264
  __metadata("design:type", Object)
@@ -39879,7 +40031,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39879
40031
  /* style */
39880
40032
  const __vue_inject_styles__$I = function (inject) {
39881
40033
  if (!inject) return
39882
- inject("data-v-54b76118_0", { source: ".zd-iterable-pagination {\n padding: 0;\n max-width: calc(100% - 200px);\n margin-left: 0;\n}\n.zd-iterable-pagination .v-pagination {\n width: auto;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__item, .zd-iterable-pagination .v-pagination .v-pagination__navigation {\n box-shadow: none;\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n background-color: transparent;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__item, .zd-iterable-pagination .v-pagination .v-pagination__navigation, .zd-iterable-pagination .v-pagination .v-pagination__more {\n margin: 0 var(--spacing-1);\n height: 36px;\n width: 36px;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__navigation {\n border: solid var(--regular) var(--v-grey-lighten3);\n}\n.zd-iterable-pagination .v-pagination .v-pagination__navigation .v-icon {\n font-size: var(--icon-size);\n}\n.zd-iterable-pagination .v-pagination li:first-child .v-pagination__navigation {\n margin: 0 var(--spacing-1) 0 0;\n}\n.zd-iterable-pagination .v-pagination li:last-child .v-pagination__navigation {\n margin: 0 0 0 var(--spacing-1);\n}", map: undefined, media: undefined });
40034
+ inject("data-v-81399cac_0", { source: ".zd-iterable-pagination {\n padding: 0;\n max-width: calc(100% - 200px);\n margin-left: 0;\n}\n.zd-iterable-pagination .v-pagination {\n width: auto;\n}\n.zd-iterable-pagination .v-pagination.theme--dark .v-pagination__item--active {\n color: #fff;\n background: #282828 !important;\n border-color: #282828 !important;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__item, .zd-iterable-pagination .v-pagination .v-pagination__navigation {\n box-shadow: none;\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n background-color: transparent;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__item, .zd-iterable-pagination .v-pagination .v-pagination__navigation, .zd-iterable-pagination .v-pagination .v-pagination__more {\n margin: 0 var(--spacing-1);\n height: 36px;\n width: 36px;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__navigation {\n border: solid var(--regular) var(--v-grey-lighten3);\n}\n.zd-iterable-pagination .v-pagination .v-pagination__navigation .v-icon {\n font-size: var(--icon-size);\n}\n.zd-iterable-pagination .v-pagination li:first-child .v-pagination__navigation {\n margin: 0 var(--spacing-1) 0 0;\n}\n.zd-iterable-pagination .v-pagination li:last-child .v-pagination__navigation {\n margin: 0 0 0 var(--spacing-1);\n}", map: undefined, media: undefined });
39883
40035
 
39884
40036
  };
39885
40037
  /* scoped */
@@ -40205,7 +40357,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40205
40357
  },
40206
40358
  scopedSlots: _vm._u(
40207
40359
  [
40208
- _vm.instance.itemBeforeSlot.length || !!this.$slots.itemBeforeSlot
40360
+ _vm.instance.itemBeforeSlot.length || !!_vm.$slots.itemBeforeSlot
40209
40361
  ? {
40210
40362
  key: "prepend-item",
40211
40363
  fn: function () {
@@ -40216,6 +40368,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40216
40368
  [
40217
40369
  _c(
40218
40370
  "v-list-item",
40371
+ {
40372
+ attrs: {
40373
+ dark: _vm.instance.dark,
40374
+ light: _vm.instance.light,
40375
+ },
40376
+ },
40219
40377
  [
40220
40378
  _c(
40221
40379
  "v-list-item-content",
@@ -40376,7 +40534,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40376
40534
  /* style */
40377
40535
  const __vue_inject_styles__$H = function (inject) {
40378
40536
  if (!inject) return
40379
- inject("data-v-34404a80_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 });
40537
+ inject("data-v-7c1de2f8_0", { source: ".zd-select .v-input__control .v-input__slot .v-select__slot {\n position: static;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer {\n margin-right: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-left: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-top: 5px;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-inner, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-inner {\n padding-left: 0;\n padding-right: 0;\n}\n.zd-select.zd-select-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.zd-select.zd-select-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.zd-select.zd-select-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}\n.zd-select .v-select__selections {\n padding: 0;\n width: 172px;\n overflow: hidden;\n white-space: nowrap;\n flex-wrap: nowrap;\n text-overflow: ellipsis;\n}\n.zd-select .v-select__selections .v-select__selection {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n margin: 0;\n max-width: none;\n}\n.zd-select .v-select__selections .v-select__selection--disabled {\n opacity: 0.5;\n}\n.zd-select.zd-dense .v-input__append-inner, .zd-select.zd-dense .v-input__prepend-inner {\n margin-top: 0;\n}\n.zd-select-append-item .v-list-item__content {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-size);\n color: var(--v-primary-base);\n}\n.v-menu__content.zd-select-menu {\n box-shadow: var(--shadow-2);\n}\n.v-menu__content.zd-select-menu .v-select-list {\n padding: 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item {\n height: auto;\n min-height: 40px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__content {\n padding: var(--spacing-2) 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__title {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n height: auto;\n line-height: unset;\n white-space: unset;\n overflow: auto;\n text-overflow: unset;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled .v-list-item__title {\n opacity: 0.5;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled.primary--text .v-list-item__title {\n color: inherit;\n}\n.v-menu__content.zd-select-menu.zd-dense .v-list-item {\n height: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu.zd-select-align-left .v-list-item__content .v-list-item__title {\n text-align: left;\n}\n.v-menu__content.zd-select-menu.zd-select-align-center .v-list-item__content .v-list-item__title {\n text-align: center;\n}\n.v-menu__content.zd-select-menu.zd-select-align-right .v-list-item__content .v-list-item__title {\n text-align: right;\n}", map: undefined, media: undefined });
40380
40538
 
40381
40539
  };
40382
40540
  /* scoped */
@@ -40597,10 +40755,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40597
40755
  return index + 1 === this.instance.items.length;
40598
40756
  }
40599
40757
  };
40600
- __decorate([
40601
- PropWatch({ type: [Boolean, String], default: false }),
40602
- __metadata("design:type", Boolean)
40603
- ], ZdList.prototype, "dark", void 0);
40604
40758
  __decorate([
40605
40759
  PropWatch({ type: [Boolean, String], default: false }),
40606
40760
  __metadata("design:type", Boolean)
@@ -40613,10 +40767,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40613
40767
  PropWatch({ type: [Boolean, String], default: false }),
40614
40768
  __metadata("design:type", Boolean)
40615
40769
  ], ZdList.prototype, "divided", void 0);
40616
- __decorate([
40617
- PropWatch({ type: [Boolean, String], default: false }),
40618
- __metadata("design:type", Boolean)
40619
- ], ZdList.prototype, "light", void 0);
40620
40770
  __decorate([
40621
40771
  PropWatch({ type: [Boolean, String], default: false }),
40622
40772
  __metadata("design:type", Boolean)
@@ -40681,7 +40831,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40681
40831
  },
40682
40832
  },
40683
40833
  [
40684
- !this.$slots.items
40834
+ !_vm.$slots.items
40685
40835
  ? [
40686
40836
  _vm._l(_vm.instance.items, function (item, index) {
40687
40837
  return [
@@ -40718,7 +40868,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40718
40868
  /* style */
40719
40869
  const __vue_inject_styles__$E = function (inject) {
40720
40870
  if (!inject) return
40721
- inject("data-v-6ba939cc_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 });
40871
+ inject("data-v-13d9c4d2_0", { source: ".zd-list.v-list--dense .zd-list-group.v-list-item--three-line {\n min-height: 76px;\n}\n.zd-list .v-list-item .v-list-item__icon {\n flex-direction: column;\n justify-content: center;\n align-self: center;\n height: auto;\n}\n.zd-list .v-list-item .v-list-item__icon.v-list-group__header__prepend-icon {\n margin: 4px 16px 4px 0;\n}\n.zd-list .v-list-item .v-list-item__icon.v-list-group__header__append-icon {\n margin: 4px 0 4px 16px;\n}\n.zd-list .zd-list-item-title {\n font-size: var(--zd-font-body4-size);\n font-weight: var(--zd-font-body4-weight);\n}\n.zd-list .zd-list-item-subtitle {\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n}", map: undefined, media: undefined });
40722
40872
 
40723
40873
  };
40724
40874
  /* scoped */
@@ -40906,6 +41056,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40906
41056
  ripple: _vm.instance.ripple,
40907
41057
  twoLine: _vm.instance.twoLine,
40908
41058
  threeLine: _vm.instance.threeLine,
41059
+ dark: _vm.instance.dark,
41060
+ light: _vm.instance.light,
40909
41061
  },
40910
41062
  on: {
40911
41063
  click: function ($event) {
@@ -40915,7 +41067,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40915
41067
  },
40916
41068
  [
40917
41069
  (_vm.instance.leftField || _vm.instance.prependIcon) &&
40918
- !this.$slots.leftField
41070
+ !_vm.$slots.leftField
40919
41071
  ? _c(
40920
41072
  "div",
40921
41073
  {
@@ -40954,7 +41106,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40954
41106
  }),
40955
41107
  _vm._v(" "),
40956
41108
  (_vm.instance.rightField || _vm.instance.appendIcon) &&
40957
- !this.$slots.rightField
41109
+ !_vm.$slots.rightField
40958
41110
  ? _c(
40959
41111
  "div",
40960
41112
  {
@@ -41093,7 +41245,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41093
41245
  return [
41094
41246
  _vm._t("leftField"),
41095
41247
  _vm._v(" "),
41096
- _vm.instance.leftField && !this.$slots.leftField
41248
+ _vm.instance.leftField && !_vm.$slots.leftField
41097
41249
  ? _c(
41098
41250
  _vm.instance.leftField.component,
41099
41251
  _vm._b(
@@ -41136,7 +41288,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41136
41288
  return [
41137
41289
  _vm._t("rightField"),
41138
41290
  _vm._v(" "),
41139
- _vm.instance.rightField && !this.$slots.rightField
41291
+ _vm.instance.rightField && !_vm.$slots.rightField
41140
41292
  ? _c(
41141
41293
  _vm.instance.rightField.component,
41142
41294
  _vm._b(
@@ -41179,7 +41331,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41179
41331
  "v-list",
41180
41332
  { class: ["zd-list zd-pl-4 zd-py-0 group-list"] },
41181
41333
  [
41182
- !this.$slots.items
41334
+ !_vm.$slots.items
41183
41335
  ? _vm._l(_vm.instance.items, function (item) {
41184
41336
  return _c(
41185
41337
  item.component,
@@ -41211,7 +41363,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41211
41363
  /* style */
41212
41364
  const __vue_inject_styles__$B = function (inject) {
41213
41365
  if (!inject) return
41214
- inject("data-v-1066a33a_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 });
41366
+ inject("data-v-1ebcd268_0", { source: ".zd-list-group .group-list {\n background-color: inherit;\n}\n.zd-list-group.v-list-item--two-line > .v-list-item, .zd-list-group.v-list-item--three-line > .v-list-item {\n min-height: inherit;\n}", map: undefined, media: undefined });
41215
41367
 
41216
41368
  };
41217
41369
  /* scoped */
@@ -41307,6 +41459,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41307
41459
  opacity: _vm.opacity,
41308
41460
  value: _vm.loading.isVisible,
41309
41461
  "z-index": _vm.zIndex,
41462
+ dark: _vm.instance.dark,
41463
+ light: _vm.instance.light,
41310
41464
  },
41311
41465
  },
41312
41466
  [
@@ -41352,7 +41506,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41352
41506
  /* style */
41353
41507
  const __vue_inject_styles__$A = function (inject) {
41354
41508
  if (!inject) return
41355
- inject("data-v-588f3078_0", { source: ".text {\n font-size: var(--zd-font-headline-size);\n margin-top: 15px;\n}\n.center-div {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-flow: column;\n}\n.zd-loading .zd-loading-progress > svg,\n.zd-loading .zd-loading-progress > svg .v-progress-circular__overlay {\n -webkit-animation-play-state: running !important;\n animation-play-state: running !important;\n}", map: undefined, media: undefined });
41509
+ inject("data-v-27f0fe30_0", { source: ".text {\n font-size: var(--zd-font-headline-size);\n margin-top: 15px;\n}\n.center-div {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-flow: column;\n}\n.zd-loading .zd-loading-progress > svg,\n.zd-loading .zd-loading-progress > svg .v-progress-circular__overlay {\n -webkit-animation-play-state: running !important;\n animation-play-state: running !important;\n}", map: undefined, media: undefined });
41356
41510
 
41357
41511
  };
41358
41512
  /* scoped */
@@ -41474,7 +41628,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41474
41628
  "v-card",
41475
41629
  {
41476
41630
  staticClass: "zd-login-card",
41477
- attrs: { width: _vm.instance.cardWidth },
41631
+ attrs: {
41632
+ width: _vm.instance.cardWidth,
41633
+ dark: _vm.instance.dark,
41634
+ light: _vm.instance.light,
41635
+ },
41478
41636
  },
41479
41637
  [
41480
41638
  _c("div", { staticClass: "zd-login-toolbar" }, [
@@ -41528,7 +41686,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41528
41686
  )
41529
41687
  : _vm._e(),
41530
41688
  _vm._v(" "),
41531
- _vm.instance.bottomLink.length && !this.$slots.bottomLink
41689
+ _vm.instance.bottomLink.length && !_vm.$slots.bottomLink
41532
41690
  ? _c(
41533
41691
  "div",
41534
41692
  { staticClass: "zd-login-sign-in" },
@@ -41586,7 +41744,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41586
41744
  /* style */
41587
41745
  const __vue_inject_styles__$z = function (inject) {
41588
41746
  if (!inject) return
41589
- inject("data-v-473f2372_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 });
41747
+ inject("data-v-703aafa2_0", { source: ".zd-login {\n background-size: cover !important;\n height: 100%;\n}\n@media only screen and (max-width: 730px) {\n.zd-login .zd-login div.zd-login-card {\n height: 100%;\n border-radius: unset;\n width: 100%;\n}\n.zd-login .zd-login .flex {\n height: 100%;\n}\n}\n@media only screen and (max-width: 960px) {\n.zd-login .zd-login .zd-login-powered-by {\n display: none;\n}\n.zd-login .zd-login .zd-login-powered-by-card {\n display: block;\n}\n}\n.zd-login .zd-login-button {\n width: 100%;\n}\n.zd-login .zd-login-powered-by-card-always-visible {\n display: block !important;\n}\n.zd-login .v-card {\n box-shadow: none;\n margin: 20px;\n}\n.zd-login .position-left {\n justify-content: flex-start;\n}\n.zd-login .position-left .zd-login-powered-by {\n position: absolute;\n bottom: 48px;\n right: 48px;\n}\n.zd-login .position-left .v-sheet {\n border-radius: 0px;\n}\n.zd-login .position-right {\n width: unset;\n justify-content: flex-end;\n}\n.zd-login .position-right .zd-login-powered-by {\n position: absolute;\n bottom: 48px;\n left: 48px;\n}\n.zd-login .position-right .v-sheet {\n border-radius: 0px;\n}\n.zd-login .position-center {\n justify-content: center;\n}\n.zd-login .position-center .zd-login-powered-by {\n position: absolute;\n bottom: 48px;\n left: 48px;\n}\n.zd-login .zd-login-powered-by-card {\n padding: 10px;\n display: none;\n margin-left: auto;\n margin-right: auto;\n}\n.zd-login-card {\n height: 100%;\n padding: 40px;\n background-color: #fff;\n}\n.zd-login-card .zd-login-message {\n font-size: var(--zd-font-headline-size);\n font-weight: var(--zd-font-headline-weight);\n color: var(--zd-font-default-color);\n line-height: 24px;\n margin-bottom: 20px;\n}\n.zd-login-card .zd-login-logo {\n margin-bottom: 20px;\n}\n.zd-login-card .zd-login-toolbar .v-card__title {\n padding: 0;\n align-items: center;\n display: flex;\n flex-wrap: wrap;\n}\n.zd-login-card .zd-login-card-content {\n width: 100%;\n}\n.zd-login-card .zd-login-card-actions {\n display: flex;\n justify-content: center;\n flex-wrap: wrap;\n margin-top: 20px;\n margin-bottom: 20px;\n}\n.zd-login-card .zd-login-sign-in {\n display: flex;\n align-items: center;\n justify-content: center;\n border-top: solid var(--regular) #f5f5f5;\n padding-top: 10px;\n text-align: center;\n font-size: var(--zd-font-body1-size);\n}\n.zd-login-card .zd-login-social-buttons {\n padding: 10px;\n}\n.zd-login-card .zd-login-social-buttons > img {\n border: solid var(--regular) #e0e0e0;\n border-radius: 50%;\n vertical-align: top;\n position: relative;\n cursor: pointer;\n align-items: center;\n align-content: center;\n}", map: undefined, media: undefined });
41590
41748
 
41591
41749
  };
41592
41750
  /* scoped */
@@ -41725,7 +41883,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41725
41883
  return _c(
41726
41884
  child.component,
41727
41885
  _vm._b(
41728
- { key: index, tag: "component", attrs: { parent: _vm.instance } },
41886
+ {
41887
+ key: index,
41888
+ tag: "component",
41889
+ attrs: {
41890
+ parent: _vm.instance,
41891
+ dark: _vm.instance.dark,
41892
+ light: _vm.instance.light,
41893
+ },
41894
+ },
41729
41895
  "component",
41730
41896
  child,
41731
41897
  false
@@ -41818,10 +41984,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41818
41984
  PropWatch({ type: [Boolean, String], default: false }),
41819
41985
  __metadata("design:type", Object)
41820
41986
  ], ZdMenu.prototype, "floating", void 0);
41821
- __decorate([
41822
- PropWatch({ type: [Boolean, String], default: false }),
41823
- __metadata("design:type", Object)
41824
- ], ZdMenu.prototype, "dark", void 0);
41825
41987
  __decorate([
41826
41988
  PropWatch({ type: [Boolean, String], default: true }),
41827
41989
  __metadata("design:type", Object)
@@ -41963,6 +42125,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41963
42125
  app: _vm.instance.app,
41964
42126
  clipped: _vm.instance.clipped,
41965
42127
  dark: _vm.instance.dark,
42128
+ light: _vm.instance.light,
41966
42129
  fixed: _vm.instance.fixed,
41967
42130
  floating: _vm.instance.floating,
41968
42131
  "mini-variant-width": _vm.instance.miniWidth,
@@ -41985,7 +42148,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41985
42148
  [
41986
42149
  _vm.instance.topSlot.length ||
41987
42150
  _vm.instance.showSearch ||
41988
- !!this.$slots.topSlot
42151
+ !!_vm.$slots.topSlot
41989
42152
  ? _c(
41990
42153
  "span",
41991
42154
  {
@@ -42012,18 +42175,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42012
42175
  )
42013
42176
  : _vm._e(),
42014
42177
  _vm._v(" "),
42015
- !this.$slots.topSlot
42178
+ !_vm.$slots.topSlot
42016
42179
  ? _vm._l(_vm.instance.topSlot, function (item) {
42017
42180
  return _c(
42018
42181
  item.component,
42019
- _vm._g(
42020
- _vm._b(
42021
- { key: item.name, tag: "component" },
42022
- "component",
42023
- item,
42024
- false
42025
- ),
42026
- item.events
42182
+ _vm._b(
42183
+ { key: item.name, tag: "component" },
42184
+ "component",
42185
+ item,
42186
+ false
42027
42187
  )
42028
42188
  )
42029
42189
  })
@@ -42070,7 +42230,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42070
42230
  /* style */
42071
42231
  const __vue_inject_styles__$w = function (inject) {
42072
42232
  if (!inject) return
42073
- inject("data-v-72b43690_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 });
42233
+ inject("data-v-1dc7a318_0", { source: ".zd-menu .v-list .v-list-item .v-list-item__title {\n font-weight: var(--zd-font-body1-weight);\n font-size: var(--zd-font-body1-size);\n color: var(--zd-font-color);\n text-align: left;\n}\n.zd-menu .v-list .v-list-item .v-list-item__icon .v-icon {\n color: var(--zd-font-color);\n}\n.zd-menu .v-list .v-list-item.selected .v-list-item__title {\n font-weight: var(--zd-font-body2-weight);\n color: var(--v-primary-base);\n}\n.zd-menu .v-list .v-list-item.selected .v-list-item__icon .v-icon {\n color: var(--v-primary-base);\n}\n.zd-menu .v-list .v-list-item.v-list-item--active:not(.focus-visible):not(:focus):not([data-focus-visible-added]):not(:hover):before {\n opacity: 0;\n}\n.zd-menu .v-list .v-list-group.selected > .v-list-group__header .v-list-item__title {\n font-weight: var(--zd-font-body2-weight);\n color: var(--v-primary-base);\n}\n.zd-menu .v-list .v-list-group.selected > .v-list-group__header .v-list-item__icon .v-icon {\n color: var(--v-primary-base);\n}\n.zd-menu .v-list .zd-menu-top-slot {\n margin-bottom: 10px;\n display: block;\n}\n.zd-menu.v-navigation-drawer--mini-variant .v-list-item {\n justify-content: inherit;\n}\n.zd-menu.theme--dark .v-list .v-list-item .v-list-item__title {\n color: var(--v--grey-lighten5);\n}\n.zd-menu.theme--dark .v-list .v-list-item .v-list-item__icon .v-icon {\n color: var(--v--grey-lighten5);\n}", map: undefined, media: undefined });
42074
42234
 
42075
42235
  };
42076
42236
  /* scoped */
@@ -42604,6 +42764,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42604
42764
  attrs: {
42605
42765
  persistent: modal.persistent,
42606
42766
  fullscreen: modal.fullscreen,
42767
+ dark: _vm.instance.dark,
42768
+ light: _vm.instance.light,
42607
42769
  "content-class":
42608
42770
  "zd-modal-content " +
42609
42771
  _vm.getSizeClass(modal) +
@@ -42682,7 +42844,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42682
42844
  /* style */
42683
42845
  const __vue_inject_styles__$r = function (inject) {
42684
42846
  if (!inject) return
42685
- inject("data-v-0f378edc_0", { source: ".zd-modal-title {\n padding-bottom: 0px;\n}\n.zd-modal-container {\n padding: 0;\n}\n.zd-modal-flex {\n width: 100%;\n}\n.zd-modal-content > .zd-modal-card > .zd-modal-title {\n padding: var(--zd-default-padding);\n padding-bottom: 0px;\n font-size: var(--zd-font-title-size);\n font-weight: var(--zd-font-title-weight);\n color: var(--zd-font-color);\n}\n.zd-modal-content > .zd-modal-card > .zd-modal-card-text {\n padding: var(--zd-default-padding);\n}", map: undefined, media: undefined });
42847
+ inject("data-v-06753b8a_0", { source: ".zd-modal-title {\n padding-bottom: 0px;\n}\n.zd-modal-container {\n padding: 0;\n}\n.zd-modal-flex {\n width: 100%;\n}\n.zd-modal-content > .zd-modal-card > .zd-modal-title {\n padding: var(--zd-default-padding);\n padding-bottom: 0px;\n font-size: var(--zd-font-title-size);\n font-weight: var(--zd-font-title-weight);\n color: var(--zd-font-color);\n}\n.zd-modal-content > .zd-modal-card > .zd-modal-card-text {\n padding: var(--zd-default-padding);\n}", map: undefined, media: undefined });
42686
42848
 
42687
42849
  };
42688
42850
  /* scoped */
@@ -42936,10 +43098,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42936
43098
  PropWatch({ type: String, default: 'primary' }),
42937
43099
  __metadata("design:type", String)
42938
43100
  ], ZdProgress.prototype, "color", void 0);
42939
- __decorate([
42940
- PropWatch({ type: [Boolean, String], default: false }),
42941
- __metadata("design:type", Boolean)
42942
- ], ZdProgress.prototype, "dark", void 0);
42943
43101
  __decorate([
42944
43102
  PropWatch({ type: [Number, String], default: 4 }),
42945
43103
  __metadata("design:type", Object)
@@ -42948,10 +43106,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42948
43106
  PropWatch({ type: [Boolean, String], default: false }),
42949
43107
  __metadata("design:type", Boolean)
42950
43108
  ], ZdProgress.prototype, "indeterminate", void 0);
42951
- __decorate([
42952
- PropWatch({ type: [Boolean, String], default: false }),
42953
- __metadata("design:type", Boolean)
42954
- ], ZdProgress.prototype, "light", void 0);
42955
43109
  __decorate([
42956
43110
  vuePropertyDecorator.Prop({ type: [Array, String], default: () => [] }),
42957
43111
  __metadata("design:type", Array)
@@ -43008,11 +43162,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
43008
43162
  false
43009
43163
  ),
43010
43164
  [
43011
- _vm.instance.centerSlot.length || !!this.$slots.centerSlot
43165
+ _vm.instance.centerSlot.length || !!_vm.$slots.centerSlot
43012
43166
  ? _c(
43013
43167
  "div",
43014
43168
  [
43015
- !this.$slots.centerSlot
43169
+ !_vm.$slots.centerSlot
43016
43170
  ? _vm._l(_vm.instance.centerSlot, function (child, index) {
43017
43171
  return _c(
43018
43172
  child.component,
@@ -43129,6 +43283,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
43129
43283
  },
43130
43284
  ],
43131
43285
  style: _vm.instance.cssStyle,
43286
+ attrs: { dark: _vm.instance.dark, light: _vm.instance.light },
43132
43287
  on: {
43133
43288
  change: function ($event) {
43134
43289
  return _vm.change($event)
@@ -43185,7 +43340,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
43185
43340
  /* style */
43186
43341
  const __vue_inject_styles__$m = function (inject) {
43187
43342
  if (!inject) return
43188
- inject("data-v-d146152a_0", { source: ".zd-radio {\n margin: 0;\n padding: 0;\n}\n.zd-radio .v-input--radio-group__input > .v-label {\n width: 100%;\n}\n.zd-radio .v-label {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size) !important;\n font-weight: var(--zd-font-body1-weight);\n}\n.zd-radio .v-input--selection-controls__input {\n height: var(--icon-size);\n margin: 0 var(--spacing-1) 0 0;\n}\n.zd-radio.v-input--radio-group--column .v-radio:not(:last-child):not(:only-child) {\n margin: 0 0 var(--spacing-2) 0;\n}\n.zd-radio.v-input--radio-group--row .v-radio:not(:last-child):not(:only-child) {\n margin: 0 var(--spacing-4) 0 0;\n}\n.zd-radio .v-input--selection-controls__ripple {\n border-radius: 50%;\n cursor: pointer;\n height: 24px;\n position: absolute;\n transition: inherit;\n width: 24px;\n left: -7px;\n top: calc(50% - 19px);\n margin: 7px;\n}", map: undefined, media: undefined });
43343
+ inject("data-v-1c5de123_0", { source: ".zd-radio {\n margin: 0;\n padding: 0;\n}\n.zd-radio .v-input--radio-group__input > .v-label {\n width: 100%;\n}\n.zd-radio .v-label {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size) !important;\n font-weight: var(--zd-font-body1-weight);\n}\n.zd-radio .v-input--selection-controls__input {\n height: var(--icon-size);\n margin: 0 var(--spacing-1) 0 0;\n}\n.zd-radio.v-input--radio-group--column .v-radio:not(:last-child):not(:only-child) {\n margin: 0 0 var(--spacing-2) 0;\n}\n.zd-radio.v-input--radio-group--row .v-radio:not(:last-child):not(:only-child) {\n margin: 0 var(--spacing-4) 0 0;\n}\n.zd-radio .v-input--selection-controls__ripple {\n border-radius: 50%;\n cursor: pointer;\n height: 24px;\n position: absolute;\n transition: inherit;\n width: 24px;\n left: -7px;\n top: calc(50% - 19px);\n margin: 7px;\n}", map: undefined, media: undefined });
43189
43344
 
43190
43345
  };
43191
43346
  /* scoped */
@@ -44455,6 +44610,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44455
44610
  vuePropertyDecorator.Prop({ type: [Boolean, String], default: false }),
44456
44611
  __metadata("design:type", Object)
44457
44612
  ], ZdSelectTree.prototype, "disableParentNode", void 0);
44613
+ __decorate([
44614
+ vuePropertyDecorator.Prop({ validator: (prop) => typeof prop === 'boolean' || prop === null }),
44615
+ __metadata("design:type", Boolean)
44616
+ ], ZdSelectTree.prototype, "preventLoadOnFocus", void 0);
44458
44617
  __decorate([
44459
44618
  vuePropertyDecorator.Prop({ type: Object, default: () => ({}) }),
44460
44619
  __metadata("design:type", Object)
@@ -44540,6 +44699,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44540
44699
  "zd-input-required": _vm.instance.validations.required,
44541
44700
  "zd-select-tree-error": _vm.instance.validationError !== "",
44542
44701
  },
44702
+ {
44703
+ "theme--dark":
44704
+ (_vm.$vuetify.theme.dark && !_vm.instance.light) ||
44705
+ _vm.instance.dark,
44706
+ },
44707
+ { "theme--light": !_vm.$vuetify.theme.dark || _vm.instance.light },
44543
44708
  ],
44544
44709
  style: _vm.instance.cssStyle,
44545
44710
  attrs: { name: _vm.instance.name },
@@ -44555,6 +44720,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44555
44720
  "v-icon",
44556
44721
  {
44557
44722
  staticClass: "zd-select-tree-prepend-outer-icon",
44723
+ attrs: { dark: _vm.instance.dark, light: _vm.instance.light },
44558
44724
  on: {
44559
44725
  click: function ($event) {
44560
44726
  return _vm.instance.prependOuterIconClick($event, _vm.$el)
@@ -44573,7 +44739,20 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44573
44739
  _vm._v(" "),
44574
44740
  _c(
44575
44741
  "div",
44576
- { staticClass: "zd-select-tree-input-container" },
44742
+ {
44743
+ class: [
44744
+ "zd-select-tree-input-container",
44745
+ {
44746
+ "theme--dark":
44747
+ (_vm.$vuetify.theme.dark && !_vm.instance.light) ||
44748
+ _vm.instance.dark,
44749
+ },
44750
+ {
44751
+ "theme--light":
44752
+ !_vm.$vuetify.theme.dark || _vm.instance.light,
44753
+ },
44754
+ ],
44755
+ },
44577
44756
  [
44578
44757
  _vm.instance.label && _vm.instance.showLabel
44579
44758
  ? _c("zd-text", {
@@ -44620,14 +44799,29 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44620
44799
  },
44621
44800
  },
44622
44801
  model: {
44623
- value: _vm.instance.value,
44802
+ value: _vm.instance.selectValue,
44624
44803
  callback: function ($$v) {
44625
- _vm.$set(_vm.instance, "value", $$v);
44804
+ _vm.$set(_vm.instance, "selectValue", $$v);
44626
44805
  },
44627
- expression: "instance.value",
44806
+ expression: "instance.selectValue",
44628
44807
  },
44629
44808
  }),
44630
44809
  _vm._v(" "),
44810
+ !!_vm.instance.datasource && _vm.instance.datasource.loading
44811
+ ? _c("v-progress-linear", {
44812
+ staticClass: "zd-select-tree-loading",
44813
+ attrs: {
44814
+ active:
44815
+ !!_vm.instance.datasource &&
44816
+ _vm.instance.datasource.loading,
44817
+ indeterminate: "",
44818
+ absolute: "",
44819
+ color: "primary",
44820
+ height: "2",
44821
+ },
44822
+ })
44823
+ : _vm._e(),
44824
+ _vm._v(" "),
44631
44825
  !_vm.instance.autoHintDetails ||
44632
44826
  _vm.instance.hint ||
44633
44827
  _vm.instance.validationError !== ""
@@ -44642,7 +44836,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44642
44836
  { staticClass: "zd-select-tree-details-message" },
44643
44837
  [
44644
44838
  _vm._v(
44645
- " \n " +
44839
+ "\n " +
44646
44840
  _vm._s(
44647
44841
  _vm.instance.validationError ||
44648
44842
  _vm.instance.hint
@@ -44690,7 +44884,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44690
44884
  /* style */
44691
44885
  const __vue_inject_styles__$h = function (inject) {
44692
44886
  if (!inject) return
44693
- inject("data-v-739fe33d_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 });
44887
+ inject("data-v-bf4ba0b6_0", { source: ".zd-select-tree-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.zd-select-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n margin-top: var(--spacing-1);\n}\n.zd-select-tree.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree .vue-treeselect__control {\n border-radius: var(--border);\n height: 34px;\n}\n.zd-select-tree .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 32px;\n}\n.zd-select-tree .vue-treeselect__control-arrow-container svg {\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\n}\n.zd-select-tree .zd-select-tree-label {\n font-weight: var(--zd-font-body1-weight);\n pointer-events: none;\n line-height: 1rem;\n position: relative;\n top: -1px;\n}\n.zd-select-tree .zd-select-tree-label p {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-select-tree.zd-select-tree-disabled {\n opacity: 0.5;\n}\n.zd-select-tree .vue-treeselect__single-value, .zd-select-tree input {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n cursor: text;\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-label {\n color: var(--v-error-base) !important;\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-details {\n color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control {\n border-color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control-arrow-container svg, .zd-select-tree.zd-select-tree-error .vue-treeselect__x-container svg {\n color: var(--v-error-base);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-select-tree-error .zd-select-tree-append-outer-icon {\n color: var(--v-error-base);\n}\n.zd-select-tree .vue-treeselect--focused .vue-treeselect__control-arrow-container svg, .zd-select-tree .vue-treeselect--focused .vue-treeselect__x-container svg {\n color: var(--v-primary-base);\n}\n.zd-select-tree .zd-select-tree-details {\n min-height: 13px;\n font-size: 11px;\n display: flex;\n flex: 1 0 auto;\n max-width: 100%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.6);\n line-height: 1;\n position: relative;\n top: 1px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-details {\n min-height: 11px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control {\n height: 24px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 22px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense .zd-select-tree-append-outer-icon {\n margin-top: 20px;\n}\n.zd-select-tree.zd-dense.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 4px;\n}\n.zd-select-tree.zd-no-helper .zd-select-tree-details {\n display: none;\n}\n.zd-select-tree.zd-no-border .vue-treeselect__control {\n border: none !important;\n}\n.zd-select-tree .zd-select-tree-container {\n display: flex;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon, .zd-select-tree .zd-select-tree-append-outer-icon {\n font-size: var(--icon-size-small);\n margin-top: 25px;\n height: 16px;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon {\n margin-right: 8px;\n}\n.zd-select-tree.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 10px;\n}\n.zd-select-tree .zd-select-tree-append-outer-icon {\n margin-left: 8px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--single .vue-treeselect__option--selected {\n background: #7725831a;\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n}\n.vue-treeselect--single .vue-treeselect__option--selected:hover {\n background: #7725831a;\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__label {\n padding-left: 10px;\n}\n.vue-treeselect__menu-container {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n}\n.vue-treeselect__menu-container .vue-treeselect__icon-warning {\n display: none;\n}\n.vue-treeselect__menu-container .vue-treeselect__option--disabled {\n opacity: 0.5;\n}", map: undefined, media: undefined });
44694
44888
 
44695
44889
  };
44696
44890
  /* scoped */
@@ -44779,6 +44973,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44779
44973
  "zd-input-required": _vm.instance.validations.required,
44780
44974
  "zd-select-tree-error": _vm.instance.validationError !== "",
44781
44975
  },
44976
+ {
44977
+ "theme--dark":
44978
+ (_vm.$vuetify.theme.dark && !_vm.instance.light) ||
44979
+ _vm.instance.dark,
44980
+ },
44981
+ { "theme--light": !_vm.$vuetify.theme.dark || _vm.instance.light },
44782
44982
  ],
44783
44983
  style: _vm.instance.cssStyle,
44784
44984
  attrs: { name: _vm.instance.name },
@@ -44860,14 +45060,29 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44860
45060
  "search-change": _vm.onSearchChange,
44861
45061
  },
44862
45062
  model: {
44863
- value: _vm.instance.value,
45063
+ value: _vm.instance.selectValue,
44864
45064
  callback: function ($$v) {
44865
- _vm.$set(_vm.instance, "value", $$v);
45065
+ _vm.$set(_vm.instance, "selectValue", $$v);
44866
45066
  },
44867
- expression: "instance.value",
45067
+ expression: "instance.selectValue",
44868
45068
  },
44869
45069
  }),
44870
45070
  _vm._v(" "),
45071
+ !!_vm.instance.datasource && _vm.instance.datasource.loading
45072
+ ? _c("v-progress-linear", {
45073
+ staticClass: "zd-select-tree-multiple-loading",
45074
+ attrs: {
45075
+ active:
45076
+ !!_vm.instance.datasource &&
45077
+ _vm.instance.datasource.loading,
45078
+ indeterminate: "",
45079
+ absolute: "",
45080
+ color: "primary",
45081
+ height: "2",
45082
+ },
45083
+ })
45084
+ : _vm._e(),
45085
+ _vm._v(" "),
44871
45086
  !_vm.instance.autoHintDetails ||
44872
45087
  _vm.instance.hint ||
44873
45088
  _vm.instance.validationError !== ""
@@ -44882,7 +45097,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44882
45097
  { staticClass: "zd-select-tree-details-message" },
44883
45098
  [
44884
45099
  _vm._v(
44885
- " \n " +
45100
+ "\n " +
44886
45101
  _vm._s(
44887
45102
  _vm.instance.validationError ||
44888
45103
  _vm.instance.hint
@@ -44930,7 +45145,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44930
45145
  /* style */
44931
45146
  const __vue_inject_styles__$g = function (inject) {
44932
45147
  if (!inject) return
44933
- inject("data-v-69409e22_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 });
45148
+ inject("data-v-95e04dcc_0", { source: ".zd-select-tree-multiple-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.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.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree-multiple.theme--dark .vue-treeselect__control .vue-treeselect__input {\n color: #fff;\n}\n.zd-select-tree-multiple.theme--dark .vue-treeselect__menu {\n background-color: #1e1e1e;\n}\n.zd-select-tree-multiple .vue-treeselect--multi .vue-treeselect__input {\n padding-top: 2px;\n padding-bottom: 2px;\n line-height: 15px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}", map: undefined, media: undefined });
44934
45149
 
44935
45150
  };
44936
45151
  /* scoped */
@@ -45167,14 +45382,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45167
45382
  PropWatch({ type: [Boolean, String], default: false }),
45168
45383
  __metadata("design:type", Boolean)
45169
45384
  ], ZdSteppers.prototype, "nonLinear", void 0);
45170
- __decorate([
45171
- PropWatch({ type: [Boolean, String], default: false }),
45172
- __metadata("design:type", Boolean)
45173
- ], ZdSteppers.prototype, "dark", void 0);
45174
- __decorate([
45175
- PropWatch({ type: [Boolean, String], default: false }),
45176
- __metadata("design:type", Boolean)
45177
- ], ZdSteppers.prototype, "light", void 0);
45178
45385
  __decorate([
45179
45386
  PropWatch({ type: [Boolean, String], default: false }),
45180
45387
  __metadata("design:type", Boolean)
@@ -45212,6 +45419,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45212
45419
  attrs: {
45213
45420
  "alt-labels": _vm.instance.altLabels,
45214
45421
  vertical: _vm.instance.vertical,
45422
+ dark: _vm.instance.dark,
45423
+ light: _vm.instance.light,
45215
45424
  },
45216
45425
  model: {
45217
45426
  value: _vm.instance.activeStep,
@@ -45343,11 +45552,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45343
45552
  /* style */
45344
45553
  const __vue_inject_styles__$e = function (inject) {
45345
45554
  if (!inject) return
45346
- inject("data-v-4ca20fbf_0", { source: ".zd-stepper[data-v-4ca20fbf] {\n box-shadow: var(--shadow-3);\n}\n.zd-stepper.v-stepper--vertical[data-v-4ca20fbf] .v-stepper__step__step {\n margin: 0 var(--spacing-2) 0 0;\n}", map: undefined, media: undefined });
45555
+ inject("data-v-ef4d4672_0", { source: ".zd-stepper[data-v-ef4d4672] {\n box-shadow: var(--shadow-3);\n}\n.zd-stepper.v-stepper--vertical[data-v-ef4d4672] .v-stepper__step__step {\n margin: 0 var(--spacing-2) 0 0;\n}", map: undefined, media: undefined });
45347
45556
 
45348
45557
  };
45349
45558
  /* scoped */
45350
- const __vue_scope_id__$e = "data-v-4ca20fbf";
45559
+ const __vue_scope_id__$e = "data-v-ef4d4672";
45351
45560
  /* module identifier */
45352
45561
  const __vue_module_identifier__$e = undefined;
45353
45562
  /* functional template */
@@ -45626,7 +45835,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45626
45835
  /* style */
45627
45836
  const __vue_inject_styles__$c = function (inject) {
45628
45837
  if (!inject) return
45629
- inject("data-v-270dd452_0", { source: ".zd-switch {\n margin: 0;\n padding: 3px 0 0 0;\n}\n.zd-switch .v-label.theme--light {\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n}\n.zd-switch > .v-input__control > .v-input__slot .v-input--selection-controls__input {\n margin-right: var(--spacing-2);\n}\n.zd-switch > .v-input__control > .v-input__slot .v-input--selection-controls__input:hover .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-switch > .v-input__control > .v-input__slot .v-input--selection-controls__input .v-input--switch__thumb {\n box-shadow: var(--shadow-1);\n}\n.zd-switch.zd-no-label .v-label {\n display: none;\n}\n.zd-switch.zd-no-helper > .v-input__control > .v-messages {\n display: none;\n}\n.zd-switch.v-input--switch--inset .v-input--switch__track {\n height: var(--icon-size);\n top: calc(50% - var(--icon-size) / 2);\n}\n.zd-switch.v-input--switch--inset .v-input--selection-controls__ripple {\n left: calc(-24px + var(--icon-size-small) / 2);\n}\n.zd-switch.v-input--switch--inset.v-input--is-dirty .v-input--selection-controls__ripple,\n.zd-switch.v-input--switch--inset.v-input--is-dirty .v-input--switch__thumb {\n transform: translate(calc(48px - var(--icon-size-small) - 2 * var(--spacing-1))) !important;\n}\n.zd-switch.v-input--switch--inset .v-input--switch__thumb {\n width: var(--icon-size-small);\n height: var(--icon-size-small);\n top: calc(50% - var(--icon-size) / 2 + var(--spacing-1));\n}", map: undefined, media: undefined });
45838
+ inject("data-v-01c88107_0", { source: ".zd-switch {\n margin: 0;\n padding: 3px 0 0 0;\n}\n.zd-switch .v-label {\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n}\n.zd-switch > .v-input__control > .v-input__slot .v-input--selection-controls__input {\n margin-right: var(--spacing-2);\n}\n.zd-switch > .v-input__control > .v-input__slot .v-input--selection-controls__input:hover .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-switch > .v-input__control > .v-input__slot .v-input--selection-controls__input .v-input--switch__thumb {\n box-shadow: var(--shadow-1);\n}\n.zd-switch.zd-no-label .v-label {\n display: none;\n}\n.zd-switch.zd-no-helper > .v-input__control > .v-messages {\n display: none;\n}\n.zd-switch.v-input--switch--inset .v-input--switch__track {\n height: var(--icon-size);\n top: calc(50% - var(--icon-size) / 2);\n}\n.zd-switch.v-input--switch--inset .v-input--selection-controls__ripple {\n left: calc(-24px + var(--icon-size-small) / 2);\n}\n.zd-switch.v-input--switch--inset.v-input--is-dirty .v-input--selection-controls__ripple,\n.zd-switch.v-input--switch--inset.v-input--is-dirty .v-input--switch__thumb {\n transform: translate(calc(48px - var(--icon-size-small) - 2 * var(--spacing-1))) !important;\n}\n.zd-switch.v-input--switch--inset .v-input--switch__thumb {\n width: var(--icon-size-small);\n height: var(--icon-size-small);\n top: calc(50% - var(--icon-size) / 2 + var(--spacing-1));\n}", map: undefined, media: undefined });
45630
45839
 
45631
45840
  };
45632
45841
  /* scoped */
@@ -45707,6 +45916,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45707
45916
  },
45708
45917
  ],
45709
45918
  style: _vm.instance.cssStyle,
45919
+ attrs: { dark: _vm.instance.dark, light: _vm.instance.light },
45710
45920
  },
45711
45921
  [
45712
45922
  _vm.instance.caption.isVisible
@@ -45794,7 +46004,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45794
46004
  /* style */
45795
46005
  const __vue_inject_styles__$b = function (inject) {
45796
46006
  if (!inject) return
45797
- inject("data-v-23137cf8_0", { source: ".zd-table-fill-width {\n width: 100%;\n}\n.zd-table-caption {\n border: var(--regular) solid #dedede;\n border-bottom: 0;\n padding: 12px;\n}\ntable.zd-table, .zd-table tr, .zd-table td {\n border-collapse: collapse;\n}\ntable.zd-table, .zd-table tr, .zd-table td, .zd-table th {\n border: var(--regular) solid #dedede;\n padding: 12px;\n vertical-align: top;\n}", map: undefined, media: undefined });
46007
+ inject("data-v-fbbfef20_0", { source: ".zd-table-fill-width {\n width: 100%;\n}\n.zd-table-caption {\n border: var(--regular) solid #dedede;\n border-bottom: 0;\n padding: 12px;\n}\ntable.zd-table, .zd-table tr, .zd-table td {\n border-collapse: collapse;\n}\ntable.zd-table, .zd-table tr, .zd-table td, .zd-table th {\n border: var(--regular) solid #dedede;\n padding: 12px;\n vertical-align: top;\n}", map: undefined, media: undefined });
45798
46008
 
45799
46009
  };
45800
46010
  /* scoped */
@@ -45880,7 +46090,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45880
46090
  _c(
45881
46091
  "v-tabs",
45882
46092
  {
45883
- attrs: { "show-arrows": "" },
46093
+ attrs: {
46094
+ "show-arrows": "",
46095
+ dark: _vm.instance.dark,
46096
+ light: _vm.instance.light,
46097
+ },
45884
46098
  on: {
45885
46099
  change: function ($event) {
45886
46100
  return _vm.change($event)
@@ -45921,6 +46135,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45921
46135
  index: index,
45922
46136
  isVisible: tab.isVisible,
45923
46137
  tabTitle: tab.tabTitle,
46138
+ dark: tab.dark,
46139
+ light: tab.light,
45924
46140
  },
45925
46141
  false
45926
46142
  )
@@ -45936,6 +46152,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45936
46152
  _c(
45937
46153
  "v-tabs-items",
45938
46154
  {
46155
+ attrs: { dark: _vm.instance.dark, light: _vm.instance.light },
45939
46156
  model: {
45940
46157
  value: _vm.instance.activeTab,
45941
46158
  callback: function ($$v) {
@@ -45988,11 +46205,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45988
46205
  /* style */
45989
46206
  const __vue_inject_styles__$a = function (inject) {
45990
46207
  if (!inject) return
45991
- inject("data-v-ffa5df42_0", { source: ".zd-tabs[data-v-ffa5df42] .v-tabs-bar,\n.zd-tabs[data-v-ffa5df42] .v-tabs-items {\n background-color: transparent;\n}\n.zd-tabs[data-v-ffa5df42] .v-tabs-bar {\n height: auto;\n}\n.zd-tabs[data-v-ffa5df42] .v-tabs-bar .v-tabs-slider-wrapper {\n bottom: -1px;\n}\n.zd-tabs[data-v-ffa5df42] .v-tabs-bar__content {\n border-bottom: solid 1px var(--v-grey-lighten4);\n}\n.zd-tabs[data-v-ffa5df42] .v-tabs {\n margin-bottom: var(--spacing-4);\n}\n.zd-tabs[data-v-ffa5df42] .v-tabs .v-slide-group__next,\n.zd-tabs[data-v-ffa5df42] .v-tabs .v-slide-group__prev {\n flex-basis: 30px;\n min-width: 30px;\n}\n.zd-tabs[data-v-ffa5df42] .v-tabs .v-slide-group__next .v-icon,\n.zd-tabs[data-v-ffa5df42] .v-tabs .v-slide-group__prev .v-icon {\n font-size: 18px;\n}", map: undefined, media: undefined });
46208
+ inject("data-v-00c27d52_0", { source: ".zd-tabs[data-v-00c27d52] .v-tabs-bar,\n.zd-tabs[data-v-00c27d52] .v-tabs-items {\n background-color: transparent;\n}\n.zd-tabs[data-v-00c27d52] .v-tabs-bar {\n height: auto;\n}\n.zd-tabs[data-v-00c27d52] .v-tabs-bar .v-tabs-slider-wrapper {\n bottom: -1px;\n}\n.zd-tabs[data-v-00c27d52] .v-tabs-bar__content {\n border-bottom: solid 1px var(--v-grey-lighten4);\n}\n.zd-tabs[data-v-00c27d52] .v-tabs {\n margin-bottom: var(--spacing-4);\n}\n.zd-tabs[data-v-00c27d52] .v-tabs .v-slide-group__next,\n.zd-tabs[data-v-00c27d52] .v-tabs .v-slide-group__prev {\n flex-basis: 30px;\n min-width: 30px;\n}\n.zd-tabs[data-v-00c27d52] .v-tabs .v-slide-group__next .v-icon,\n.zd-tabs[data-v-00c27d52] .v-tabs .v-slide-group__prev .v-icon {\n font-size: 18px;\n}", map: undefined, media: undefined });
45992
46209
 
45993
46210
  };
45994
46211
  /* scoped */
45995
- const __vue_scope_id__$a = "data-v-ffa5df42";
46212
+ const __vue_scope_id__$a = "data-v-00c27d52";
45996
46213
  /* module identifier */
45997
46214
  const __vue_module_identifier__$a = undefined;
45998
46215
  /* functional template */
@@ -46070,7 +46287,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46070
46287
  key: _vm.index,
46071
46288
  class: ["zd-tabs-tab", _vm.cssClass],
46072
46289
  style: _vm.cssStyle,
46073
- attrs: { name: _vm.tabName, disabled: _vm.disabled },
46290
+ attrs: {
46291
+ name: _vm.tabName,
46292
+ disabled: _vm.disabled,
46293
+ dark: _vm.dark,
46294
+ light: _vm.light,
46295
+ },
46074
46296
  on: {
46075
46297
  click: function ($event) {
46076
46298
  return _vm.clickTab($event)
@@ -46093,11 +46315,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46093
46315
  /* style */
46094
46316
  const __vue_inject_styles__$9 = function (inject) {
46095
46317
  if (!inject) return
46096
- inject("data-v-4bdc9e20_0", { source: ".zd-tabs-tab[data-v-4bdc9e20], .zd-tabs-tab[data-v-4bdc9e20]:before {\n border-radius: var(--border) var(--border) 0 0;\n}\n.zd-tabs-tab[data-v-4bdc9e20] {\n height: auto;\n min-width: calc(2 * var(--spacing-4));\n align-items: flex-end;\n padding-top: 5px;\n padding-bottom: 5px;\n}\n.zd-tabs-tab-text[data-v-4bdc9e20] {\n text-transform: none;\n font-size: var(--zd-font-body1-size);\n line-height: 15px;\n margin-bottom: 1px;\n}", map: undefined, media: undefined });
46318
+ inject("data-v-79bfcbe8_0", { source: ".zd-tabs-tab[data-v-79bfcbe8], .zd-tabs-tab[data-v-79bfcbe8]:before {\n border-radius: var(--border) var(--border) 0 0;\n}\n.zd-tabs-tab[data-v-79bfcbe8] {\n height: auto;\n min-width: calc(2 * var(--spacing-4));\n align-items: flex-end;\n padding-top: 5px;\n padding-bottom: 5px;\n}\n.zd-tabs-tab-text[data-v-79bfcbe8] {\n text-transform: none;\n font-size: var(--zd-font-body1-size);\n line-height: 15px;\n margin-bottom: 1px;\n}", map: undefined, media: undefined });
46097
46319
 
46098
46320
  };
46099
46321
  /* scoped */
46100
- const __vue_scope_id__$9 = "data-v-4bdc9e20";
46322
+ const __vue_scope_id__$9 = "data-v-79bfcbe8";
46101
46323
  /* module identifier */
46102
46324
  const __vue_module_identifier__$9 = undefined;
46103
46325
  /* functional template */
@@ -46156,7 +46378,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46156
46378
  ],
46157
46379
  key: _vm.index,
46158
46380
  staticClass: "zd-tabs-tab-item",
46159
- attrs: { value: _vm.index },
46381
+ attrs: { value: _vm.index, dark: _vm.dark, light: _vm.light },
46160
46382
  },
46161
46383
  [
46162
46384
  _c(
@@ -46189,11 +46411,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46189
46411
  /* style */
46190
46412
  const __vue_inject_styles__$8 = function (inject) {
46191
46413
  if (!inject) return
46192
- inject("data-v-35fc3cfd_0", { source: ".zd-tabs-tab-item[data-v-35fc3cfd] {\n transition: none;\n}\n.zd-tabs-tab-item > .container[data-v-35fc3cfd] {\n padding: 0;\n}", map: undefined, media: undefined });
46414
+ inject("data-v-645f6d33_0", { source: ".zd-tabs-tab-item[data-v-645f6d33] {\n transition: none;\n}\n.zd-tabs-tab-item > .container[data-v-645f6d33] {\n padding: 0;\n}", map: undefined, media: undefined });
46193
46415
 
46194
46416
  };
46195
46417
  /* scoped */
46196
- const __vue_scope_id__$8 = "data-v-35fc3cfd";
46418
+ const __vue_scope_id__$8 = "data-v-645f6d33";
46197
46419
  /* module identifier */
46198
46420
  const __vue_module_identifier__$8 = undefined;
46199
46421
  /* functional template */
@@ -46262,7 +46484,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46262
46484
  tag: "component",
46263
46485
  class: _vm.instance.cssClass,
46264
46486
  style: _vm.instance.cssStyle,
46265
- attrs: { name: _vm.instance.name },
46487
+ attrs: {
46488
+ name: _vm.instance.name,
46489
+ dark: _vm.instance.dark,
46490
+ light: _vm.instance.light,
46491
+ },
46266
46492
  on: {
46267
46493
  click: function ($event) {
46268
46494
  return _vm.click($event)
@@ -46279,7 +46505,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46279
46505
  {
46280
46506
  key: child.name,
46281
46507
  tag: "component",
46282
- attrs: { parent: _vm.instance },
46508
+ attrs: {
46509
+ dark: child.dark,
46510
+ light: child.light,
46511
+ parent: _vm.instance,
46512
+ },
46283
46513
  },
46284
46514
  "component",
46285
46515
  child,
@@ -46871,6 +47101,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46871
47101
  "input-activator": "",
46872
47102
  "min-width": "290px",
46873
47103
  transition: "scale-transition",
47104
+ dark: _vm.instance.dark,
47105
+ light: _vm.instance.light,
46874
47106
  "close-on-content-click": false,
46875
47107
  disabled: _vm.instance.disabled || _vm.instance.readonly,
46876
47108
  },
@@ -46929,6 +47161,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46929
47161
  max: _vm.pickerMaxTime,
46930
47162
  min: _vm.pickerMinTime,
46931
47163
  name: _vm.instance.name,
47164
+ dark: _vm.instance.dark,
47165
+ light: _vm.instance.light,
46932
47166
  value: _vm.pickerValue,
46933
47167
  },
46934
47168
  on: {
@@ -46984,7 +47218,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46984
47218
  /* style */
46985
47219
  const __vue_inject_styles__$4 = function (inject) {
46986
47220
  if (!inject) return
46987
- inject("data-v-91fb7c1e_0", { source: ".zd-time input[type=time] {\n -webkit-appearance: none;\n}\n.zd-time input[type=time]::-webkit-inner-spin-button, .zd-time input[type=time]::-webkit-calendar-picker-indicator {\n display: none;\n -webkit-appearance: none;\n}", map: undefined, media: undefined });
47221
+ inject("data-v-4ecda11e_0", { source: ".zd-time input[type=time] {\n -webkit-appearance: none;\n}\n.zd-time input[type=time]::-webkit-inner-spin-button, .zd-time input[type=time]::-webkit-calendar-picker-indicator {\n display: none;\n -webkit-appearance: none;\n}", map: undefined, media: undefined });
46988
47222
 
46989
47223
  };
46990
47224
  /* scoped */
@@ -47315,7 +47549,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
47315
47549
  expression: "instance.isVisible",
47316
47550
  },
47317
47551
  ],
47318
- class: [_vm.instance.cssClass, "zd-tree"],
47552
+ class: [
47553
+ _vm.instance.cssClass,
47554
+ "zd-tree",
47555
+ {
47556
+ "theme--dark":
47557
+ (_vm.$vuetify.theme.dark && !_vm.instance.light) ||
47558
+ _vm.instance.dark,
47559
+ },
47560
+ { "theme--light": !_vm.$vuetify.theme.dark || _vm.instance.light },
47561
+ ],
47319
47562
  style: _vm.instance.cssStyle,
47320
47563
  },
47321
47564
  [
@@ -47354,7 +47597,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
47354
47597
  "sl-vue-tree",
47355
47598
  {
47356
47599
  ref: "tree",
47357
- attrs: { allowMultiselect: _vm.instance.allowMultiSelect },
47600
+ attrs: {
47601
+ allowMultiselect: _vm.instance.allowMultiSelect,
47602
+ dark: _vm.instance.dark,
47603
+ light: _vm.instance.lightt,
47604
+ },
47358
47605
  on: {
47359
47606
  drop: _vm.onNodeDrop,
47360
47607
  select: _vm.onNodeSelect,
@@ -47373,15 +47620,24 @@ If you're seeing "$attrs is readonly", it's caused by this`);
47373
47620
  { staticClass: "item-icon" },
47374
47621
  [
47375
47622
  node.isLeaf && _vm.instance.itemIconName
47376
- ? _c("v-icon", [
47377
- _vm._v(
47378
- "\n " +
47379
- _vm._s(
47380
- _vm.$getIcon(_vm.instance.itemIconName)
47381
- ) +
47382
- "\n "
47383
- ),
47384
- ])
47623
+ ? _c(
47624
+ "v-icon",
47625
+ {
47626
+ attrs: {
47627
+ dark: _vm.instance.dark,
47628
+ light: _vm.instance.light,
47629
+ },
47630
+ },
47631
+ [
47632
+ _vm._v(
47633
+ "\n " +
47634
+ _vm._s(
47635
+ _vm.$getIcon(_vm.instance.itemIconName)
47636
+ ) +
47637
+ "\n "
47638
+ ),
47639
+ ]
47640
+ )
47385
47641
  : _vm._e(),
47386
47642
  _vm._v(" "),
47387
47643
  !node.isLeaf && _vm.instance.groupIconName
@@ -47457,25 +47713,43 @@ If you're seeing "$attrs is readonly", it's caused by this`);
47457
47713
  node.children.length &&
47458
47714
  node.isExpanded &&
47459
47715
  _vm.instance.openedIconName
47460
- ? _c("v-icon", [
47461
- _vm._v(
47462
- _vm._s(
47463
- _vm.$getIcon(_vm.instance.openedIconName)
47464
- ) + "\n "
47465
- ),
47466
- ])
47716
+ ? _c(
47717
+ "v-icon",
47718
+ {
47719
+ attrs: {
47720
+ dark: _vm.instance.dark,
47721
+ light: _vm.instance.light,
47722
+ },
47723
+ },
47724
+ [
47725
+ _vm._v(
47726
+ _vm._s(
47727
+ _vm.$getIcon(_vm.instance.openedIconName)
47728
+ ) + "\n "
47729
+ ),
47730
+ ]
47731
+ )
47467
47732
  : _vm._e(),
47468
47733
  _vm._v(" "),
47469
47734
  node.children.length &&
47470
47735
  !node.isExpanded &&
47471
47736
  _vm.instance.closedIconName
47472
- ? _c("v-icon", [
47473
- _vm._v(
47474
- _vm._s(
47475
- _vm.$getIcon(_vm.instance.closedIconName)
47476
- ) + "\n "
47477
- ),
47478
- ])
47737
+ ? _c(
47738
+ "v-icon",
47739
+ {
47740
+ attrs: {
47741
+ dark: _vm.instance.dark,
47742
+ light: _vm.instance.light,
47743
+ },
47744
+ },
47745
+ [
47746
+ _vm._v(
47747
+ _vm._s(
47748
+ _vm.$getIcon(_vm.instance.closedIconName)
47749
+ ) + "\n "
47750
+ ),
47751
+ ]
47752
+ )
47479
47753
  : _vm._e(),
47480
47754
  ],
47481
47755
  1
@@ -47514,7 +47788,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
47514
47788
  /* style */
47515
47789
  const __vue_inject_styles__$2 = function (inject) {
47516
47790
  if (!inject) return
47517
- inject("data-v-5cb0749d_0", { source: ".zd-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-weight: normal;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node {\n padding-top: 3px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item {\n height: 30px;\n line-height: 30px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item {\n background-color: #77258390;\n color: white;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item .sl-vue-tree-toggle .v-icon {\n color: white;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-toggle span .v-icon {\n margin-right: -6px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-gap {\n width: 32px;\n}\n.zd-tree .item-title {\n padding-left: 6px;\n}\n.zd-tree .item-title.has-children {\n font-weight: 700;\n}\n.zd-tree .item-title.is-clickable {\n cursor: pointer;\n}", map: undefined, media: undefined });
47791
+ inject("data-v-37eb0be3_0", { source: ".zd-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-weight: normal;\n}\n.zd-tree.theme--light .sl-vue-tree-title {\n color: var(--zd-font-color);\n}\n.zd-tree.theme--dark .sl-vue-tree-title {\n color: #fff;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node {\n padding-top: 3px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item {\n height: 30px;\n line-height: 30px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item {\n background-color: #77258390;\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item .sl-vue-tree-toggle .v-icon {\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-toggle span .v-icon {\n margin-right: -6px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-gap {\n width: 32px;\n}\n.zd-tree .item-title {\n padding-left: 6px;\n}\n.zd-tree .item-title.has-children {\n font-weight: 700;\n}\n.zd-tree .item-title.is-clickable {\n cursor: pointer;\n}", map: undefined, media: undefined });
47518
47792
 
47519
47793
  };
47520
47794
  /* scoped */
@@ -47626,6 +47900,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
47626
47900
  "zd-tree-grid",
47627
47901
  _vm.instance.cssClass,
47628
47902
  { "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
47903
+ {
47904
+ "theme--dark":
47905
+ (_vm.$vuetify.theme.dark && !_vm.instance.light) || _vm.instance.dark,
47906
+ },
47907
+ { "theme--light": !_vm.$vuetify.theme.dark || _vm.instance.light },
47629
47908
  ],
47630
47909
  style: [_vm.cssColorVars, _vm.instance.cssStyle],
47631
47910
  attrs: {
@@ -47639,6 +47918,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
47639
47918
  search: _vm.instance.datasource.search,
47640
47919
  "show-select": _vm.instance.selectable,
47641
47920
  dense: _vm.instance.dense,
47921
+ dark: _vm.instance.dark,
47922
+ light: _vm.instance.light,
47642
47923
  loading: _vm.instance.datasource.loading,
47643
47924
  "item-key": _vm.instance.datasource.uniqueKey,
47644
47925
  "disable-sort": "",
@@ -48193,7 +48474,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48193
48474
  ],
48194
48475
  },
48195
48476
  [
48196
- item.tree__children.length > 0
48477
+ (item.tree__children || [])
48478
+ .length > 0
48197
48479
  ? _c(
48198
48480
  "v-icon",
48199
48481
  {
@@ -48413,8 +48695,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48413
48695
  /* style */
48414
48696
  const __vue_inject_styles__$1 = function (inject) {
48415
48697
  if (!inject) return
48416
- inject("data-v-62a43016_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 })
48417
- ,inject("data-v-62a43016_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 });
48698
+ inject("data-v-37d4b7fe_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 })
48699
+ ,inject("data-v-37d4b7fe_1", { source: ".zd-tree-grid.theme--light tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-tree-grid.theme--dark tbody td.zd-table-cell {\n color: #fff;\n}\n.zd-tree-grid tbody td.zd-table-cell.first {\n padding-left: 5px !important;\n}\n.zd-tree-grid tbody td.zd-table-cell .zd-table-cell-text .search-result {\n background: var(--v-grey-lighten4);\n}\n.zd-tree-grid .zd-tree-grid-expand {\n display: inline-block;\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid .zd-tree-grid-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level10 {\n width: 200px;\n}", map: undefined, media: undefined });
48418
48700
 
48419
48701
  };
48420
48702
  /* scoped */
@@ -48628,6 +48910,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48628
48910
  dense: _vm.instance.dense,
48629
48911
  loading: _vm.instance.datasource.loading,
48630
48912
  "item-key": _vm.instance.datasource.uniqueKey,
48913
+ dark: _vm.instance.dark,
48914
+ light: _vm.instance.light,
48631
48915
  "disable-sort": "",
48632
48916
  "disable-filtering": "",
48633
48917
  tabindex: "0",
@@ -49572,8 +49856,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49572
49856
  /* style */
49573
49857
  const __vue_inject_styles__ = function (inject) {
49574
49858
  if (!inject) return
49575
- 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 })
49576
- ,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 });
49859
+ inject("data-v-a13440da_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 })
49860
+ ,inject("data-v-a13440da_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 });
49577
49861
 
49578
49862
  };
49579
49863
  /* scoped */