@zeedhi/vuetify 1.59.0 → 1.60.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.
@@ -767,14 +767,6 @@ function getZIndex(el) {
767
767
  if (!index) return getZIndex(el.parentNode);
768
768
  return index;
769
769
  }
770
- const tagsToReplace = {
771
- '&': '&',
772
- '<': '&lt;',
773
- '>': '&gt;'
774
- };
775
- function escapeHTML(str) {
776
- return str.replace(/[&<>]/g, tag => tagsToReplace[tag] || tag);
777
- }
778
770
  function filterObjectOnKeys(obj, keys) {
779
771
  const filtered = {};
780
772
 
@@ -2221,7 +2213,7 @@ class Vuetify {
2221
2213
  }
2222
2214
  Vuetify.install = install$1;
2223
2215
  Vuetify.installed = false;
2224
- Vuetify.version = "2.6.9";
2216
+ Vuetify.version = "2.6.10";
2225
2217
  Vuetify.config = {
2226
2218
  silent: false
2227
2219
  };
@@ -6554,7 +6546,11 @@ var Menuable = baseMixins$r.extend().extend({
6554
6546
  },
6555
6547
 
6556
6548
  checkActivatorFixed() {
6557
- if (this.attach !== false) return;
6549
+ if (this.attach !== false) {
6550
+ this.activatorFixed = false;
6551
+ return;
6552
+ }
6553
+
6558
6554
  let el = this.getActivator();
6559
6555
 
6560
6556
  while (el) {
@@ -8220,13 +8216,13 @@ var VSelectList = mixins(Colorable, Themeable).extend({
8220
8216
 
8221
8217
  genFilteredText(text) {
8222
8218
  text = text || '';
8223
- if (!this.searchInput || this.noFilter) return escapeHTML(text);
8219
+ if (!this.searchInput || this.noFilter) return text;
8224
8220
  const {
8225
8221
  start,
8226
8222
  middle,
8227
8223
  end
8228
8224
  } = this.getMaskedCharacters(text);
8229
- return `${escapeHTML(start)}${this.genHighlight(middle)}${escapeHTML(end)}`;
8225
+ return [start, this.genHighlight(middle), end];
8230
8226
  },
8231
8227
 
8232
8228
  genHeader(props) {
@@ -8236,7 +8232,9 @@ var VSelectList = mixins(Colorable, Themeable).extend({
8236
8232
  },
8237
8233
 
8238
8234
  genHighlight(text) {
8239
- return `<span class="v-list-item__mask">${escapeHTML(text)}</span>`;
8235
+ return this.$createElement('span', {
8236
+ staticClass: 'v-list-item__mask'
8237
+ }, text);
8240
8238
  },
8241
8239
 
8242
8240
  getMaskedCharacters(text) {
@@ -8309,12 +8307,7 @@ var VSelectList = mixins(Colorable, Themeable).extend({
8309
8307
  },
8310
8308
 
8311
8309
  genTileContent(item, index = 0) {
8312
- const innerHTML = this.genFilteredText(this.getText(item));
8313
- return this.$createElement(VListItemContent, [this.$createElement(VListItemTitle, {
8314
- domProps: {
8315
- innerHTML
8316
- }
8317
- })]);
8310
+ return this.$createElement(VListItemContent, [this.$createElement(VListItemTitle, [this.genFilteredText(this.getText(item))])]);
8318
8311
  },
8319
8312
 
8320
8313
  hasItem(item) {
@@ -8871,7 +8864,8 @@ var VInput = baseMixins$m.extend().extend({
8871
8864
  color: this.validationState,
8872
8865
  dark: this.dark,
8873
8866
  disabled: this.isDisabled,
8874
- light: this.light
8867
+ light: this.light,
8868
+ tabindex: type === 'clear' ? -1 : undefined
8875
8869
  },
8876
8870
  on: !hasListener ? undefined : {
8877
8871
  click: e => {
@@ -12040,8 +12034,8 @@ var VDialog = baseMixins$i.extend({
12040
12034
  !this.getOpenDependentElements().some(el => el.contains(target)) // So we must have focused something outside the dialog and its children
12041
12035
  ) {
12042
12036
  // Find and focus the first available element inside the dialog
12043
- const focusable = this.$refs.dialog.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])');
12044
- const el = [...focusable].find(el => !el.hasAttribute('disabled'));
12037
+ const focusable = this.$refs.dialog.querySelectorAll('button, [href], input:not([type="hidden"]), select, textarea, [tabindex]:not([tabindex="-1"])');
12038
+ const el = [...focusable].find(el => !el.hasAttribute('disabled') && !el.matches('[tabindex="-1"]'));
12045
12039
  el && el.focus();
12046
12040
  }
12047
12041
  },
@@ -13764,7 +13758,7 @@ var CalendarWithEvents = CalendarBase.extend({
13764
13758
  },
13765
13759
 
13766
13760
  eventNameFunction() {
13767
- return typeof this.eventName === 'function' ? this.eventName : (event, timedEvent) => escapeHTML(event.input[this.eventName] || '');
13761
+ return typeof this.eventName === 'function' ? this.eventName : (event, timedEvent) => event.input[this.eventName] || '';
13768
13762
  },
13769
13763
 
13770
13764
  eventModeFunction() {
@@ -13976,15 +13970,17 @@ var CalendarWithEvents = CalendarBase.extend({
13976
13970
  const name = this.eventNameFunction(event, timedEvent);
13977
13971
 
13978
13972
  if (event.start.hasTime) {
13979
- const eventSummaryClass = 'v-event-summary';
13980
-
13981
13973
  if (timedEvent) {
13982
13974
  const time = timeSummary();
13983
- const delimiter = singline ? ', ' : '<br>';
13984
- return `<span class="${eventSummaryClass}"><strong>${name}</strong>${delimiter}${time}</span>`;
13975
+ const delimiter = singline ? ', ' : this.$createElement('br');
13976
+ return this.$createElement('span', {
13977
+ staticClass: 'v-event-summary'
13978
+ }, [this.$createElement('strong', [name]), delimiter, time]);
13985
13979
  } else {
13986
13980
  const time = formatTime(event.start, true);
13987
- return `<span class="${eventSummaryClass}"><strong>${time}</strong> ${name}</span>`;
13981
+ return this.$createElement('span', {
13982
+ staticClass: 'v-event-summary'
13983
+ }, [this.$createElement('strong', [time]), ' ', name]);
13988
13984
  }
13989
13985
  }
13990
13986
 
@@ -14014,11 +14010,8 @@ var CalendarWithEvents = CalendarBase.extend({
14014
14010
 
14015
14011
  genName(eventSummary) {
14016
14012
  return this.$createElement('div', {
14017
- staticClass: 'pl-1',
14018
- domProps: {
14019
- innerHTML: eventSummary()
14020
- }
14021
- });
14013
+ staticClass: 'pl-1'
14014
+ }, [eventSummary()]);
14022
14015
  },
14023
14016
 
14024
14017
  genPlaceholder(day) {
@@ -30858,7 +30851,6 @@ exports.getObjectValueByPath = getObjectValueByPath;
30858
30851
  exports.getPropertyFromItem = getPropertyFromItem;
30859
30852
  exports.createRange = createRange;
30860
30853
  exports.getZIndex = getZIndex;
30861
- exports.escapeHTML = escapeHTML;
30862
30854
  exports.filterObjectOnKeys = filterObjectOnKeys;
30863
30855
  exports.convertToUnit = convertToUnit;
30864
30856
  exports.kebabCase = kebabCase;
@@ -31051,18 +31043,6 @@ function getZIndex(el) {
31051
31043
  return index;
31052
31044
  }
31053
31045
 
31054
- var tagsToReplace = {
31055
- '&': '&amp;',
31056
- '<': '&lt;',
31057
- '>': '&gt;'
31058
- };
31059
-
31060
- function escapeHTML(str) {
31061
- return str.replace(/[&<>]/g, function (tag) {
31062
- return tagsToReplace[tag] || tag;
31063
- });
31064
- }
31065
-
31066
31046
  function filterObjectOnKeys(obj, keys) {
31067
31047
  var filtered = {};
31068
31048
 
@@ -36854,7 +36834,7 @@ var Vuetify = /*#__PURE__*/function () {
36854
36834
  exports.default = Vuetify;
36855
36835
  Vuetify.install = install_1.install;
36856
36836
  Vuetify.installed = false;
36857
- Vuetify.version = "2.6.9";
36837
+ Vuetify.version = "2.6.10";
36858
36838
  Vuetify.config = {
36859
36839
  silent: false
36860
36840
  };
@@ -41902,6 +41882,10 @@ __decorate([
41902
41882
  PropWatch({ type: Array, default: () => undefined }),
41903
41883
  __metadata("design:type", Object)
41904
41884
  ], ZdDashboard.prototype, "cardFooterSlot", void 0);
41885
+ __decorate([
41886
+ Prop({ type: Object, default: () => undefined }),
41887
+ __metadata("design:type", Object)
41888
+ ], ZdDashboard.prototype, "editHeader", void 0);
41905
41889
  ZdDashboard = __decorate([
41906
41890
  Component$1
41907
41891
  ], ZdDashboard);
@@ -41944,13 +41928,15 @@ var __vue_render__$16 = function () {
41944
41928
  },
41945
41929
  },
41946
41930
  [
41947
- _c("zd-header", {
41948
- attrs: {
41949
- name: "headerDashboard" + _vm.instance.name,
41950
- leftSlot: _vm.instance.headerLeftSlot,
41951
- isVisible: _vm.instance.editingMode,
41952
- },
41953
- }),
41931
+ _c(
41932
+ "zd-header",
41933
+ _vm._b(
41934
+ { attrs: { isVisible: _vm.instance.editingMode } },
41935
+ "zd-header",
41936
+ _vm.instance.editHeader,
41937
+ false
41938
+ )
41939
+ ),
41954
41940
  _vm._v(" "),
41955
41941
  _c(
41956
41942
  "div",
@@ -42114,7 +42100,7 @@ __vue_render__$16._withStripped = true;
42114
42100
  /* style */
42115
42101
  const __vue_inject_styles__$16 = function (inject) {
42116
42102
  if (!inject) return
42117
- inject("data-v-29d9be7e_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: 10px;\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 });
42103
+ inject("data-v-8c8b40d8_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: 10px;\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 });
42118
42104
 
42119
42105
  };
42120
42106
  /* scoped */
@@ -44756,6 +44742,13 @@ let ZdGrid = class ZdGrid extends ZdIterable$1 {
44756
44742
  this.destroyDragColumns();
44757
44743
  }
44758
44744
  }
44745
+ change(value) {
44746
+ if (value && this.instance.selectable) {
44747
+ setTimeout(() => {
44748
+ this.$el.querySelector('.column').colSpan = this.instance.columns.length + 1;
44749
+ }, 0);
44750
+ }
44751
+ }
44759
44752
  mounted() {
44760
44753
  this.setHeight();
44761
44754
  if (this.instance.dragColumns) {
@@ -44823,15 +44816,20 @@ let ZdGrid = class ZdGrid extends ZdIterable$1 {
44823
44816
  });
44824
44817
  });
44825
44818
  }
44826
- calcWidth(column, width) {
44827
- if ((width === null || width === void 0 ? void 0 : width.indexOf('%')) !== -1 && this.$el) {
44819
+ parseWidth(width) {
44820
+ if (width && width.indexOf('%') !== -1 && this.$el) {
44828
44821
  const percent = Number(width === null || width === void 0 ? void 0 : width.replace('%', '')) / 100;
44829
44822
  const tableWidth = this.$el.clientWidth;
44830
- return `${Math
44831
- .max(this.minimumColumnWidth(column), Math
44832
- .trunc(Number(tableWidth) * percent))}px`;
44823
+ const pxWidth = Number(tableWidth) * percent;
44824
+ return pxWidth;
44833
44825
  }
44834
- return width || '';
44826
+ return Number(width === null || width === void 0 ? void 0 : width.replace('px', ''));
44827
+ }
44828
+ calcWidth(column, width) {
44829
+ const min = Math.max(this.minimumColumnWidth(column), this.parseWidth(column.minWidth) || 0);
44830
+ const max = this.parseWidth(column.maxWidth);
44831
+ const pxWidth = this.parseWidth(width);
44832
+ return `${Math.max(min, Math.min(Math.trunc(pxWidth), max || Infinity))}px`;
44835
44833
  }
44836
44834
  sortColumns(event) {
44837
44835
  const { originalEvent } = event;
@@ -44922,21 +44920,26 @@ let ZdGrid = class ZdGrid extends ZdIterable$1 {
44922
44920
  : MIN_WIDTH_WITH_SORTABLE_FALSE;
44923
44921
  }
44924
44922
  resizeMouseMoveHandler(event) {
44923
+ var _a, _b;
44925
44924
  // Determine how far the mouse has been moved
44926
44925
  const dx = event.clientX - this.resizeX;
44927
- const minimumColumnWidth = this.minimumColumnWidth(this.resizeColumn);
44928
- const width = Math.max(minimumColumnWidth, this.resizeWidth + dx);
44926
+ const min = Math.max(this.minimumColumnWidth(this.resizeColumn), this.parseWidth((_a = this.resizeColumn) === null || _a === void 0 ? void 0 : _a.minWidth) || 0);
44927
+ const max = this.parseWidth((_b = this.resizeColumn) === null || _b === void 0 ? void 0 : _b.maxWidth) || Infinity;
44928
+ const newWidth = this.resizeWidth + dx;
44929
+ const width = Math.max(min, Math.min(newWidth, max));
44929
44930
  if (this.resizeColumn) {
44930
44931
  // Update the width of column
44931
44932
  this.resizeColumn.width = `${width}px`;
44932
- this.resizeColumn.maxWidth = this.resizeColumn.width;
44933
44933
  }
44934
- if (this.resizeWidth + dx >= minimumColumnWidth) {
44934
+ if (newWidth >= max) {
44935
+ return;
44936
+ }
44937
+ if (newWidth >= min) {
44935
44938
  // Update the width of the table
44936
44939
  this.resizeTableElement.style.width = `${this.resizeTableWidth + dx}px`;
44937
44940
  }
44938
44941
  else {
44939
- this.resizeTableElement.style.width = `${this.resizeTableWidth - this.resizeWidth + minimumColumnWidth}px`;
44942
+ this.resizeTableElement.style.width = `${this.resizeTableWidth - this.resizeWidth + min}px`;
44940
44943
  }
44941
44944
  }
44942
44945
  resizeMouseUpHandler(event) {
@@ -45265,6 +45268,12 @@ __decorate([
45265
45268
  __metadata("design:paramtypes", [Boolean]),
45266
45269
  __metadata("design:returntype", void 0)
45267
45270
  ], ZdGrid.prototype, "update", null);
45271
+ __decorate([
45272
+ Watch('instance.datasource.loading'),
45273
+ __metadata("design:type", Function),
45274
+ __metadata("design:paramtypes", [Boolean]),
45275
+ __metadata("design:returntype", void 0)
45276
+ ], ZdGrid.prototype, "change", null);
45268
45277
  ZdGrid = __decorate([
45269
45278
  Component$2
45270
45279
  ], ZdGrid);
@@ -45439,7 +45448,9 @@ var __vue_render__$X = function () {
45439
45448
  width:
45440
45449
  _vm.calcWidth(
45441
45450
  column,
45442
- column.maxWidth || column.minWidth
45451
+ column.width ||
45452
+ column.maxWidth ||
45453
+ column.minWidth
45443
45454
  ) || "unset",
45444
45455
  },
45445
45456
  attrs: {
@@ -45457,7 +45468,10 @@ var __vue_render__$X = function () {
45457
45468
  width:
45458
45469
  _vm.calcWidth(
45459
45470
  column,
45460
- column.maxWidth || column.minWidth
45471
+ column.width ||
45472
+ column.maxWidth ||
45473
+ column.minWidth,
45474
+ true
45461
45475
  ) || "unset",
45462
45476
  color:
45463
45477
  _vm.instance.headerCellTextColor,
@@ -45877,17 +45891,20 @@ var __vue_render__$X = function () {
45877
45891
  width:
45878
45892
  _vm.calcWidth(
45879
45893
  column,
45880
- column.width
45894
+ column.width,
45895
+ true
45881
45896
  ) || "unset",
45882
45897
  "min-width":
45883
45898
  _vm.calcWidth(
45884
45899
  column,
45885
- column.minWidth
45900
+ column.minWidth,
45901
+ true
45886
45902
  ) || "unset",
45887
45903
  "max-width":
45888
45904
  _vm.calcWidth(
45889
45905
  column,
45890
- column.maxWidth
45906
+ column.maxWidth,
45907
+ true
45891
45908
  ) || "unset",
45892
45909
  },
45893
45910
  on: {
@@ -46074,7 +46091,7 @@ __vue_render__$X._withStripped = true;
46074
46091
  /* style */
46075
46092
  const __vue_inject_styles__$X = function (inject) {
46076
46093
  if (!inject) return
46077
- inject("data-v-5e41fd76_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined });
46094
+ inject("data-v-7de6af71_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined });
46078
46095
 
46079
46096
  };
46080
46097
  /* scoped */
@@ -46162,7 +46179,10 @@ let ZdGridEditable = class ZdGridEditable extends ZdGrid$1 {
46162
46179
  if (!element) {
46163
46180
  return;
46164
46181
  }
46165
- if (col.maxWidth) {
46182
+ if (col.width) {
46183
+ element.style.width = this.calcWidth(col, col.width || '');
46184
+ }
46185
+ else if (col.maxWidth) {
46166
46186
  element.style.width = this.calcWidth(col, col.maxWidth || '');
46167
46187
  }
46168
46188
  else if (col.minWidth) {
@@ -46425,7 +46445,9 @@ var __vue_render__$W = function () {
46425
46445
  width:
46426
46446
  _vm.calcWidth(
46427
46447
  column,
46428
- column.maxWidth || column.minWidth
46448
+ column.width ||
46449
+ column.maxWidth ||
46450
+ column.minWidth
46429
46451
  ) || "unset",
46430
46452
  },
46431
46453
  attrs: { index: index },
@@ -46439,7 +46461,9 @@ var __vue_render__$W = function () {
46439
46461
  width:
46440
46462
  _vm.calcWidth(
46441
46463
  column,
46442
- column.maxWidth || column.minWidth
46464
+ column.width ||
46465
+ column.maxWidth ||
46466
+ column.minWidth
46443
46467
  ) || "unset",
46444
46468
  },
46445
46469
  },
@@ -46880,17 +46904,20 @@ var __vue_render__$W = function () {
46880
46904
  _vm.calcWidth(
46881
46905
  column,
46882
46906
  column.maxWidth ||
46883
- column.minWidth
46907
+ column.minWidth,
46908
+ true
46884
46909
  ) || "unset",
46885
46910
  "min-width":
46886
46911
  _vm.calcWidth(
46887
46912
  column,
46888
- column.minWidth
46913
+ column.minWidth,
46914
+ true
46889
46915
  ) || "unset",
46890
46916
  "max-width":
46891
46917
  _vm.calcWidth(
46892
46918
  column,
46893
- column.maxWidth
46919
+ column.maxWidth,
46920
+ true
46894
46921
  ) || "unset",
46895
46922
  },
46896
46923
  },
@@ -47030,17 +47057,20 @@ var __vue_render__$W = function () {
47030
47057
  _vm.calcWidth(
47031
47058
  column,
47032
47059
  column.maxWidth ||
47033
- column.minWidth
47060
+ column.minWidth,
47061
+ true
47034
47062
  ) || "unset",
47035
47063
  "min-width":
47036
47064
  _vm.calcWidth(
47037
47065
  column,
47038
- column.minWidth
47066
+ column.minWidth,
47067
+ true
47039
47068
  ) || "unset",
47040
47069
  "max-width":
47041
47070
  _vm.calcWidth(
47042
47071
  column,
47043
- column.maxWidth
47072
+ column.maxWidth,
47073
+ true
47044
47074
  ) || "unset",
47045
47075
  },
47046
47076
  on: {
@@ -47229,8 +47259,8 @@ __vue_render__$W._withStripped = true;
47229
47259
  /* style */
47230
47260
  const __vue_inject_styles__$W = function (inject) {
47231
47261
  if (!inject) return
47232
- inject("data-v-3833beae_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
47233
- ,inject("data-v-3833beae_1", { source: ".zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-inline-edit {\n justify-content: flex-end;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-inline-edit {\n justify-content: center;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon {\n display: flex;\n font-size: 18px;\n margin-right: var(--spacing-1);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
47262
+ inject("data-v-0bddbd88_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
47263
+ ,inject("data-v-0bddbd88_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 });
47234
47264
 
47235
47265
  };
47236
47266
  /* scoped */
@@ -58075,198 +58105,257 @@ var __vue_render__$1 = function () {
58075
58105
  width:
58076
58106
  _vm.calcWidth(
58077
58107
  column,
58078
- column.maxWidth
58079
- ) ||
58080
- _vm.calcWidth(
58081
- column,
58082
- column.minWidth
58083
- ) ||
58084
- "unset",
58108
+ column.width ||
58109
+ column.maxWidth ||
58110
+ column.minWidth
58111
+ ) || "unset",
58085
58112
  },
58086
58113
  attrs: { index: index },
58087
- on: {
58088
- click: function ($event) {
58089
- return _vm.instance.changeColumnOrder(
58090
- column
58091
- )
58092
- },
58093
- },
58094
58114
  },
58095
58115
  [
58096
- column.type !== "action"
58097
- ? [
58098
- column.sortable &&
58099
- column.align === "right"
58100
- ? _c(
58116
+ _c(
58117
+ "span",
58118
+ {
58119
+ staticClass: "zd-table-header-cell",
58120
+ style: {
58121
+ width:
58122
+ _vm.calcWidth(
58123
+ column,
58124
+ column.width ||
58125
+ column.maxWidth ||
58126
+ column.minWidth,
58127
+ true
58128
+ ) || "unset",
58129
+ color:
58130
+ _vm.instance.headerCellTextColor,
58131
+ },
58132
+ },
58133
+ [
58134
+ column.type !== "action"
58135
+ ? [
58136
+ column.sortable &&
58137
+ column.align === "right"
58138
+ ? _c(
58139
+ "span",
58140
+ {
58141
+ staticClass:
58142
+ "zd-table-cell-sort zd-table-cell-sort--left zd-mr-1",
58143
+ on: {
58144
+ click: function (
58145
+ $event
58146
+ ) {
58147
+ return _vm.instance.changeColumnOrder(
58148
+ column
58149
+ )
58150
+ },
58151
+ },
58152
+ },
58153
+ [
58154
+ column.sortable &&
58155
+ column.align === "right"
58156
+ ? _c(
58157
+ "v-icon",
58158
+ {
58159
+ staticClass:
58160
+ "zd-table-cell-sort-icon",
58161
+ attrs: {
58162
+ small: "",
58163
+ },
58164
+ },
58165
+ [
58166
+ _vm._v(
58167
+ "\n " +
58168
+ _vm._s(
58169
+ _vm.$getIcon(
58170
+ "chevronUp"
58171
+ )
58172
+ ) +
58173
+ "\n "
58174
+ ),
58175
+ ]
58176
+ )
58177
+ : _vm._e(),
58178
+ _vm._v(" "),
58179
+ _vm.instance.datasource.findOrderIndex(
58180
+ column.name
58181
+ ) >= 0
58182
+ ? _c(
58183
+ "span",
58184
+ {
58185
+ staticClass:
58186
+ "zd-table-cell-sort-order left",
58187
+ },
58188
+ [
58189
+ _vm._v(
58190
+ "\n " +
58191
+ _vm._s(
58192
+ _vm.instance.datasource.findOrderIndex(
58193
+ column.name
58194
+ ) + 1
58195
+ ) +
58196
+ "\n "
58197
+ ),
58198
+ ]
58199
+ )
58200
+ : _vm._e(),
58201
+ ],
58202
+ 1
58203
+ )
58204
+ : _vm._e(),
58205
+ _vm._v(" "),
58206
+ _c(
58101
58207
  "span",
58102
58208
  {
58103
- staticClass:
58104
- "zd-table-cell-sort",
58105
- },
58106
- [
58107
- column.sortable &&
58108
- column.align === "right"
58109
- ? _c(
58110
- "v-icon",
58111
- {
58112
- staticClass:
58113
- "zd-table-cell-sort-icon",
58114
- attrs: { small: "" },
58115
- },
58116
- [
58117
- _vm._v(
58118
- _vm._s(
58119
- _vm.$getIcon(
58120
- "chevronUp"
58121
- )
58122
- )
58123
- ),
58124
- ]
58209
+ class: [
58210
+ "zd-table-cell-name",
58211
+ {
58212
+ "overflow-hidden":
58213
+ column.overflow ===
58214
+ "hidden",
58215
+ "overflow-wrap":
58216
+ column.overflow ===
58217
+ "wrap",
58218
+ },
58219
+ !isNaN(column.overflow)
58220
+ ? "overflow-clamp overflow-clamp-" +
58221
+ column.overflow
58222
+ : "",
58223
+ ],
58224
+ on: {
58225
+ click: function ($event) {
58226
+ return _vm.instance.changeColumnOrder(
58227
+ column
58125
58228
  )
58126
- : _vm._e(),
58127
- _vm._v(" "),
58128
- _vm.instance.datasource.findOrderIndex(
58129
- column.name
58130
- ) >= 0
58131
- ? _c(
58132
- "span",
58133
- {
58134
- staticClass:
58135
- "zd-table-cell-sort-order left",
58136
- },
58137
- [
58138
- _vm._v(
58139
- _vm._s(
58140
- _vm.instance.datasource.findOrderIndex(
58141
- column.name
58142
- ) + 1
58143
- )
58144
- ),
58145
- ]
58229
+ },
58230
+ mouseenter: function (
58231
+ $event
58232
+ ) {
58233
+ return _vm.checkOverflow(
58234
+ $event
58146
58235
  )
58147
- : _vm._e(),
58148
- ],
58149
- 1
58150
- )
58151
- : _vm._e(),
58152
- _vm._v(" "),
58153
- _c(
58154
- "span",
58155
- {
58156
- class: [
58157
- "zd-table-cell-name",
58158
- {
58159
- "overflow-hidden":
58160
- column.overflow ===
58161
- "hidden",
58162
- "overflow-wrap":
58163
- column.overflow === "wrap",
58164
- },
58165
- !isNaN(column.overflow)
58166
- ? "overflow-clamp overflow-clamp-" +
58167
- column.overflow
58168
- : "",
58169
- ],
58170
- style: {
58171
- "min-width":
58172
- _vm.calcWidth(
58173
- column,
58174
- column.minWidth
58175
- ) || "unset",
58176
- "max-width":
58177
- _vm.calcWidth(
58178
- column,
58179
- column.maxWidth
58180
- ) || "unset",
58181
- },
58182
- on: {
58183
- mouseenter: function ($event) {
58184
- return _vm.checkOverflow(
58185
- $event
58186
- )
58187
- },
58188
- mouseleave: function ($event) {
58189
- return _vm.removeTooltip()
58236
+ },
58237
+ mouseleave: function (
58238
+ $event
58239
+ ) {
58240
+ return _vm.removeTooltip()
58241
+ },
58242
+ },
58190
58243
  },
58191
- },
58192
- },
58193
- [
58194
- _vm._v(
58195
- _vm._s(_vm.$t(column.label))
58244
+ [
58245
+ _vm._v(
58246
+ _vm._s(_vm.$t(column.label))
58247
+ ),
58248
+ ]
58196
58249
  ),
58250
+ _vm._v(" "),
58251
+ column.sortable &&
58252
+ column.align !== "right"
58253
+ ? _c(
58254
+ "span",
58255
+ {
58256
+ staticClass:
58257
+ "zd-table-cell-sort zd-table-cell-sort--right zd-ml-1",
58258
+ on: {
58259
+ click: function (
58260
+ $event
58261
+ ) {
58262
+ return _vm.instance.changeColumnOrder(
58263
+ column
58264
+ )
58265
+ },
58266
+ },
58267
+ },
58268
+ [
58269
+ column.sortable &&
58270
+ column.align !== "right"
58271
+ ? _c(
58272
+ "v-icon",
58273
+ {
58274
+ staticClass:
58275
+ "zd-table-cell-sort-icon",
58276
+ attrs: {
58277
+ small: "",
58278
+ },
58279
+ },
58280
+ [
58281
+ _vm._v(
58282
+ "\n " +
58283
+ _vm._s(
58284
+ _vm.$getIcon(
58285
+ "chevronUp"
58286
+ )
58287
+ ) +
58288
+ "\n "
58289
+ ),
58290
+ ]
58291
+ )
58292
+ : _vm._e(),
58293
+ _vm._v(" "),
58294
+ _vm.instance.datasource.findOrderIndex(
58295
+ column.name
58296
+ ) >= 0
58297
+ ? _c(
58298
+ "span",
58299
+ {
58300
+ staticClass:
58301
+ "zd-table-cell-sort-order",
58302
+ },
58303
+ [
58304
+ _vm._v(
58305
+ "\n " +
58306
+ _vm._s(
58307
+ _vm.instance.datasource.findOrderIndex(
58308
+ column.name
58309
+ ) + 1
58310
+ ) +
58311
+ "\n "
58312
+ ),
58313
+ ]
58314
+ )
58315
+ : _vm._e(),
58316
+ ],
58317
+ 1
58318
+ )
58319
+ : _vm._e(),
58197
58320
  ]
58198
- ),
58199
- _vm._v(" "),
58200
- column.sortable &&
58201
- column.align !== "right"
58202
- ? _c(
58321
+ : [
58322
+ _c(
58203
58323
  "span",
58204
58324
  {
58205
58325
  staticClass:
58206
- "zd-table-cell-sort",
58326
+ "zd-table-cell-name",
58207
58327
  },
58208
58328
  [
58209
- column.sortable &&
58210
- column.align !== "right"
58211
- ? _c(
58212
- "v-icon",
58213
- {
58214
- staticClass:
58215
- "zd-table-cell-sort-icon",
58216
- attrs: { small: "" },
58217
- },
58218
- [
58219
- _vm._v(
58220
- _vm._s(
58221
- _vm.$getIcon(
58222
- "chevronUp"
58223
- )
58224
- )
58225
- ),
58226
- ]
58227
- )
58228
- : _vm._e(),
58229
- _vm._v(" "),
58230
- _vm.instance.datasource.findOrderIndex(
58231
- column.name
58232
- ) >= 0
58233
- ? _c(
58234
- "span",
58235
- {
58236
- staticClass:
58237
- "zd-table-cell-sort-order",
58238
- },
58239
- [
58240
- _vm._v(
58241
- _vm._s(
58242
- _vm.instance.datasource.findOrderIndex(
58243
- column.name
58244
- ) + 1
58245
- )
58246
- ),
58247
- ]
58248
- )
58249
- : _vm._e(),
58250
- ],
58251
- 1
58252
- )
58253
- : _vm._e(),
58254
- ]
58255
- : [
58256
- _c(
58257
- "span",
58258
- {
58259
- staticClass: "zd-table-cell-name",
58260
- },
58261
- [
58262
- _vm._v(
58263
- _vm._s(_vm.$t(column.label))
58329
+ _vm._v(
58330
+ _vm._s(_vm.$t(column.label))
58331
+ ),
58332
+ ]
58264
58333
  ),
58265
- ]
58266
- ),
58267
- ],
58268
- ],
58269
- 2
58334
+ ],
58335
+ _vm._v(" "),
58336
+ _vm.instance.resizeColumns
58337
+ ? _c(
58338
+ "span",
58339
+ {
58340
+ staticClass:
58341
+ "zd-grid-resize-handle",
58342
+ on: {
58343
+ mousedown: function ($event) {
58344
+ return _vm.resizeMouseDownHandler(
58345
+ column,
58346
+ $event
58347
+ )
58348
+ },
58349
+ click: _vm.resizeClickHandler,
58350
+ },
58351
+ },
58352
+ [_vm._v("‖")]
58353
+ )
58354
+ : _vm._e(),
58355
+ ],
58356
+ 2
58357
+ ),
58358
+ ]
58270
58359
  )
58271
58360
  : _vm._e(),
58272
58361
  ]
@@ -58305,7 +58394,7 @@ var __vue_render__$1 = function () {
58305
58394
  return [
58306
58395
  _c("tr", [
58307
58396
  _c("td", {
58308
- style: "padding-top:" + _vm.scrollData.endHeight + "px",
58397
+ style: "padding-top: " + _vm.scrollData.endHeight + "px",
58309
58398
  attrs: { colspan: headers.length },
58310
58399
  }),
58311
58400
  ]),
@@ -58469,15 +58558,23 @@ var __vue_render__$1 = function () {
58469
58558
  : "",
58470
58559
  ],
58471
58560
  style: {
58561
+ width:
58562
+ _vm.calcWidth(
58563
+ column,
58564
+ column.width,
58565
+ true
58566
+ ) || "unset",
58472
58567
  "min-width":
58473
58568
  _vm.calcWidth(
58474
58569
  column,
58475
- column.minWidth
58570
+ column.minWidth,
58571
+ true
58476
58572
  ) || "unset",
58477
58573
  "max-width":
58478
58574
  _vm.calcWidth(
58479
58575
  column,
58480
- column.maxWidth
58576
+ column.maxWidth,
58577
+ true
58481
58578
  ) || "unset",
58482
58579
  },
58483
58580
  on: {
@@ -58549,6 +58646,7 @@ var __vue_render__$1 = function () {
58549
58646
  ],
58550
58647
  1
58551
58648
  ),
58649
+ _vm._v(" "),
58552
58650
  _c("span", {
58553
58651
  key: item.tree__searched
58554
58652
  ? "a"
@@ -58598,34 +58696,92 @@ var __vue_render__$1 = function () {
58598
58696
  },
58599
58697
  },
58600
58698
  },
58601
- _vm._l(
58602
- column.childrenProps,
58603
- function (child) {
58604
- return _c(
58605
- child.component,
58606
- _vm._b(
58699
+ [
58700
+ _c(
58701
+ "div",
58702
+ {
58703
+ directives: [
58607
58704
  {
58608
- key:
58609
- child.name +
58610
- _vm.rowKey(item),
58611
- tag: "component",
58705
+ name: "show",
58706
+ rawName: "v-show",
58707
+ value: headerIndex === 0,
58708
+ expression:
58709
+ "headerIndex === 0",
58612
58710
  },
58613
- "component",
58614
- Object.assign(
58615
- {},
58616
- child,
58617
- _vm.instance.getActionComponent(
58618
- child,
58619
- column,
58620
- item
58711
+ ],
58712
+ class: [
58713
+ "zd-tree-grid-expand",
58714
+ "level" + item.tree__level,
58715
+ ],
58716
+ },
58717
+ [
58718
+ (item.tree__children || [])
58719
+ .length > 0
58720
+ ? _c(
58721
+ "v-icon",
58722
+ {
58723
+ class: {
58724
+ opened:
58725
+ item.tree__opened,
58726
+ },
58727
+ attrs: { tabindex: "-1" },
58728
+ on: {
58729
+ click: function (
58730
+ $event
58731
+ ) {
58732
+ return _vm.instance.toggleExpand(
58733
+ item,
58734
+ index
58735
+ )
58736
+ },
58737
+ },
58738
+ },
58739
+ [
58740
+ _vm._v(
58741
+ "\n " +
58742
+ _vm._s(
58743
+ _vm.$getIcon(
58744
+ "chevronRight"
58745
+ )
58746
+ ) +
58747
+ "\n "
58748
+ ),
58749
+ ]
58621
58750
  )
58622
- ),
58623
- false
58751
+ : _vm._e(),
58752
+ ],
58753
+ 1
58754
+ ),
58755
+ _vm._v(" "),
58756
+ _vm._l(
58757
+ column.childrenProps,
58758
+ function (child) {
58759
+ return _c(
58760
+ child.component,
58761
+ _vm._b(
58762
+ {
58763
+ key:
58764
+ child.name +
58765
+ _vm.rowKey(item),
58766
+ tag: "component",
58767
+ },
58768
+ "component",
58769
+ Object.assign(
58770
+ {},
58771
+ child,
58772
+ _vm.instance.getActionComponent(
58773
+ child,
58774
+ column,
58775
+ item
58776
+ )
58777
+ ),
58778
+ false
58779
+ )
58624
58780
  )
58625
- )
58626
- }
58627
- ),
58628
- 1
58781
+ }
58782
+ ),
58783
+ ],
58784
+ 2
58629
58785
  ),
58630
58786
  ]
58631
58787
  : _vm._e(),
@@ -58730,8 +58886,8 @@ __vue_render__$1._withStripped = true;
58730
58886
  /* style */
58731
58887
  const __vue_inject_styles__$1 = function (inject) {
58732
58888
  if (!inject) return
58733
- inject("data-v-34a8a2e4_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
58734
- ,inject("data-v-34a8a2e4_1", { source: ".zd-tree-grid.theme--light tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-tree-grid.theme--dark tbody td.zd-table-cell {\n color: #fff;\n}\n.zd-tree-grid tbody td.zd-table-cell.first {\n padding-left: 5px !important;\n}\n.zd-tree-grid tbody td.zd-table-cell .zd-table-cell-text .search-result {\n background: var(--v-grey-lighten4);\n}\n.zd-tree-grid .zd-tree-grid-expand {\n display: inline-block;\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid .zd-tree-grid-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level10 {\n width: 200px;\n}", map: undefined, media: undefined });
58889
+ inject("data-v-7d538442_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
58890
+ ,inject("data-v-7d538442_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 });
58735
58891
 
58736
58892
  };
58737
58893
  /* scoped */
@@ -58817,7 +58973,10 @@ let ZdTreeGridEditable = class ZdTreeGridEditable extends ZdTreeGrid$1 {
58817
58973
  this.columns.forEach((col) => {
58818
58974
  const element = document.querySelector(`.column-th-${col.name}-${this.instance.name}`);
58819
58975
  if (element) {
58820
- if (col.maxWidth) {
58976
+ if (col.width) {
58977
+ element.style.width = this.calcWidth(col, col.width);
58978
+ }
58979
+ else if (col.maxWidth) {
58821
58980
  element.style.width = this.calcWidth(col, col.maxWidth);
58822
58981
  }
58823
58982
  else if (col.minWidth) {
@@ -58931,6 +59090,7 @@ var __vue_render__ = function () {
58931
59090
  ref: "grid",
58932
59091
  class: [
58933
59092
  "zd-grid",
59093
+ "zd-tree-grid",
58934
59094
  "zd-tree-grid-editable",
58935
59095
  _vm.instance.cssClass,
58936
59096
  { "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
@@ -59073,201 +59233,260 @@ var __vue_render__ = function () {
59073
59233
  style: {
59074
59234
  "background-color":
59075
59235
  _vm.instance.headerBackground,
59076
- "min-width":
59077
- _vm.calcWidth(
59078
- column,
59079
- column.minWidth
59080
- ) || "unset",
59081
- "max-width":
59236
+ width:
59082
59237
  _vm.calcWidth(
59083
59238
  column,
59084
- column.maxWidth
59239
+ column.width ||
59240
+ column.maxWidth ||
59241
+ column.minWidth
59085
59242
  ) || "unset",
59086
59243
  },
59087
59244
  attrs: { index: index },
59088
- on: {
59089
- click: function ($event) {
59090
- return _vm.instance.changeColumnOrder(
59091
- column
59092
- )
59093
- },
59094
- },
59095
59245
  },
59096
59246
  [
59097
- column.type !== "action"
59098
- ? [
59099
- column.sortable &&
59100
- column.align === "right"
59101
- ? _c(
59247
+ _c(
59248
+ "span",
59249
+ {
59250
+ staticClass: "zd-table-header-cell",
59251
+ style: {
59252
+ width:
59253
+ _vm.calcWidth(
59254
+ column,
59255
+ column.width ||
59256
+ column.maxWidth ||
59257
+ column.minWidth,
59258
+ true
59259
+ ) || "unset",
59260
+ color:
59261
+ _vm.instance.headerCellTextColor,
59262
+ },
59263
+ },
59264
+ [
59265
+ column.type !== "action"
59266
+ ? [
59267
+ column.sortable &&
59268
+ column.align === "right"
59269
+ ? _c(
59270
+ "span",
59271
+ {
59272
+ staticClass:
59273
+ "zd-table-cell-sort zd-table-cell-sort--left zd-mr-1",
59274
+ on: {
59275
+ click: function (
59276
+ $event
59277
+ ) {
59278
+ return _vm.instance.changeColumnOrder(
59279
+ column
59280
+ )
59281
+ },
59282
+ },
59283
+ },
59284
+ [
59285
+ column.sortable &&
59286
+ column.align === "right"
59287
+ ? _c(
59288
+ "v-icon",
59289
+ {
59290
+ staticClass:
59291
+ "zd-table-cell-sort-icon",
59292
+ attrs: {
59293
+ small: "",
59294
+ },
59295
+ },
59296
+ [
59297
+ _vm._v(
59298
+ "\n " +
59299
+ _vm._s(
59300
+ _vm.$getIcon(
59301
+ "chevronUp"
59302
+ )
59303
+ ) +
59304
+ "\n "
59305
+ ),
59306
+ ]
59307
+ )
59308
+ : _vm._e(),
59309
+ _vm._v(" "),
59310
+ _vm.instance.datasource.findOrderIndex(
59311
+ column.name
59312
+ ) >= 0
59313
+ ? _c(
59314
+ "span",
59315
+ {
59316
+ staticClass:
59317
+ "zd-table-cell-sort-order left",
59318
+ },
59319
+ [
59320
+ _vm._v(
59321
+ "\n " +
59322
+ _vm._s(
59323
+ _vm.instance.datasource.findOrderIndex(
59324
+ column.name
59325
+ ) + 1
59326
+ ) +
59327
+ "\n "
59328
+ ),
59329
+ ]
59330
+ )
59331
+ : _vm._e(),
59332
+ ],
59333
+ 1
59334
+ )
59335
+ : _vm._e(),
59336
+ _vm._v(" "),
59337
+ _c(
59102
59338
  "span",
59103
59339
  {
59104
- staticClass:
59105
- "zd-table-cell-sort",
59106
- },
59107
- [
59108
- column.sortable &&
59109
- column.align === "right"
59110
- ? _c(
59111
- "v-icon",
59112
- {
59113
- staticClass:
59114
- "zd-table-cell-sort-icon",
59115
- attrs: { small: "" },
59116
- },
59117
- [
59118
- _vm._v(
59119
- _vm._s(
59120
- _vm.$getIcon(
59121
- "chevronUp"
59122
- )
59123
- )
59124
- ),
59125
- ]
59340
+ class: [
59341
+ "zd-table-cell-name",
59342
+ {
59343
+ "overflow-hidden":
59344
+ column.overflow ===
59345
+ "hidden",
59346
+ "overflow-wrap":
59347
+ column.overflow ===
59348
+ "wrap",
59349
+ },
59350
+ !isNaN(column.overflow)
59351
+ ? "overflow-clamp overflow-clamp-" +
59352
+ column.overflow
59353
+ : "",
59354
+ ],
59355
+ on: {
59356
+ click: function ($event) {
59357
+ return _vm.instance.changeColumnOrder(
59358
+ column
59126
59359
  )
59127
- : _vm._e(),
59128
- _vm._v(" "),
59129
- _vm.instance.datasource.findOrderIndex(
59130
- column.name
59131
- ) >= 0
59132
- ? _c(
59133
- "span",
59134
- {
59135
- staticClass:
59136
- "zd-table-cell-sort-order left",
59137
- },
59138
- [
59139
- _vm._v(
59140
- _vm._s(
59141
- _vm.instance.datasource.findOrderIndex(
59142
- column.name
59143
- ) + 1
59144
- )
59145
- ),
59146
- ]
59360
+ },
59361
+ mouseenter: function (
59362
+ $event
59363
+ ) {
59364
+ return _vm.checkOverflow(
59365
+ $event
59147
59366
  )
59148
- : _vm._e(),
59149
- ],
59150
- 1
59151
- )
59152
- : _vm._e(),
59153
- _vm._v(" "),
59154
- _c(
59155
- "span",
59156
- {
59157
- class: [
59158
- "zd-table-cell-name",
59159
- {
59160
- "overflow-hidden":
59161
- column.overflow ===
59162
- "hidden",
59163
- "overflow-wrap":
59164
- column.overflow === "wrap",
59165
- },
59166
- !isNaN(column.overflow)
59167
- ? "overflow-clamp overflow-clamp-" +
59168
- column.overflow
59169
- : "",
59170
- ],
59171
- style: {
59172
- "min-width":
59173
- _vm.calcWidth(
59174
- column,
59175
- column.minWidth
59176
- ) || "unset",
59177
- "max-width":
59178
- _vm.calcWidth(
59179
- column,
59180
- column.maxWidth
59181
- ) || "unset",
59182
- },
59183
- on: {
59184
- mouseenter: function ($event) {
59185
- return _vm.checkOverflow(
59186
- $event
59187
- )
59188
- },
59189
- mouseleave: function ($event) {
59190
- return _vm.removeTooltip()
59367
+ },
59368
+ mouseleave: function (
59369
+ $event
59370
+ ) {
59371
+ return _vm.removeTooltip()
59372
+ },
59373
+ },
59191
59374
  },
59192
- },
59193
- },
59194
- [
59195
- _vm._v(
59196
- _vm._s(_vm.$t(column.label))
59375
+ [
59376
+ _vm._v(
59377
+ _vm._s(_vm.$t(column.label))
59378
+ ),
59379
+ ]
59197
59380
  ),
59381
+ _vm._v(" "),
59382
+ column.sortable &&
59383
+ column.align !== "right"
59384
+ ? _c(
59385
+ "span",
59386
+ {
59387
+ staticClass:
59388
+ "zd-table-cell-sort zd-table-cell-sort--right zd-ml-1",
59389
+ on: {
59390
+ click: function (
59391
+ $event
59392
+ ) {
59393
+ return _vm.instance.changeColumnOrder(
59394
+ column
59395
+ )
59396
+ },
59397
+ },
59398
+ },
59399
+ [
59400
+ column.sortable &&
59401
+ column.align !== "right"
59402
+ ? _c(
59403
+ "v-icon",
59404
+ {
59405
+ staticClass:
59406
+ "zd-table-cell-sort-icon",
59407
+ attrs: {
59408
+ small: "",
59409
+ },
59410
+ },
59411
+ [
59412
+ _vm._v(
59413
+ "\n " +
59414
+ _vm._s(
59415
+ _vm.$getIcon(
59416
+ "chevronUp"
59417
+ )
59418
+ ) +
59419
+ "\n "
59420
+ ),
59421
+ ]
59422
+ )
59423
+ : _vm._e(),
59424
+ _vm._v(" "),
59425
+ _vm.instance.datasource.findOrderIndex(
59426
+ column.name
59427
+ ) >= 0
59428
+ ? _c(
59429
+ "span",
59430
+ {
59431
+ staticClass:
59432
+ "zd-table-cell-sort-order",
59433
+ },
59434
+ [
59435
+ _vm._v(
59436
+ "\n " +
59437
+ _vm._s(
59438
+ _vm.instance.datasource.findOrderIndex(
59439
+ column.name
59440
+ ) + 1
59441
+ ) +
59442
+ "\n "
59443
+ ),
59444
+ ]
59445
+ )
59446
+ : _vm._e(),
59447
+ ],
59448
+ 1
59449
+ )
59450
+ : _vm._e(),
59198
59451
  ]
59199
- ),
59200
- _vm._v(" "),
59201
- column.sortable &&
59202
- column.align !== "right"
59203
- ? _c(
59452
+ : [
59453
+ _c(
59204
59454
  "span",
59205
59455
  {
59206
59456
  staticClass:
59207
- "zd-table-cell-sort",
59457
+ "zd-table-cell-name",
59208
59458
  },
59209
59459
  [
59210
- column.sortable &&
59211
- column.align !== "right"
59212
- ? _c(
59213
- "v-icon",
59214
- {
59215
- staticClass:
59216
- "zd-table-cell-sort-icon",
59217
- attrs: { small: "" },
59218
- },
59219
- [
59220
- _vm._v(
59221
- _vm._s(
59222
- _vm.$getIcon(
59223
- "chevronUp"
59224
- )
59225
- )
59226
- ),
59227
- ]
59228
- )
59229
- : _vm._e(),
59230
- _vm._v(" "),
59231
- _vm.instance.datasource.findOrderIndex(
59232
- column.name
59233
- ) >= 0
59234
- ? _c(
59235
- "span",
59236
- {
59237
- staticClass:
59238
- "zd-table-cell-sort-order",
59239
- },
59240
- [
59241
- _vm._v(
59242
- _vm._s(
59243
- _vm.instance.datasource.findOrderIndex(
59244
- column.name
59245
- ) + 1
59246
- )
59247
- ),
59248
- ]
59249
- )
59250
- : _vm._e(),
59251
- ],
59252
- 1
59253
- )
59254
- : _vm._e(),
59255
- ]
59256
- : [
59257
- _c(
59258
- "span",
59259
- {
59260
- staticClass: "zd-table-cell-name",
59261
- },
59262
- [
59263
- _vm._v(
59264
- _vm._s(_vm.$t(column.label))
59460
+ _vm._v(
59461
+ _vm._s(_vm.$t(column.label))
59462
+ ),
59463
+ ]
59265
59464
  ),
59266
- ]
59267
- ),
59268
- ],
59269
- ],
59270
- 2
59465
+ ],
59466
+ _vm._v(" "),
59467
+ _vm.instance.resizeColumns
59468
+ ? _c(
59469
+ "span",
59470
+ {
59471
+ staticClass:
59472
+ "zd-grid-resize-handle",
59473
+ on: {
59474
+ mousedown: function ($event) {
59475
+ return _vm.resizeMouseDownHandler(
59476
+ column,
59477
+ $event
59478
+ )
59479
+ },
59480
+ click: _vm.resizeClickHandler,
59481
+ },
59482
+ },
59483
+ [_vm._v("‖")]
59484
+ )
59485
+ : _vm._e(),
59486
+ ],
59487
+ 2
59488
+ ),
59489
+ ]
59271
59490
  )
59272
59491
  : _vm._e(),
59273
59492
  ]
@@ -59288,7 +59507,8 @@ var __vue_render__ = function () {
59288
59507
  return [
59289
59508
  _c("tr", [
59290
59509
  _c("td", {
59291
- style: "padding-top:" + _vm.scrollData.startHeight + "px",
59510
+ style:
59511
+ "padding-top: " + _vm.scrollData.startHeight + "px",
59292
59512
  attrs: { colspan: headers.length },
59293
59513
  }),
59294
59514
  ]),
@@ -59306,7 +59526,7 @@ var __vue_render__ = function () {
59306
59526
  return [
59307
59527
  _c("tr", [
59308
59528
  _c("td", {
59309
- style: "padding-top:" + _vm.scrollData.endHeight + "px",
59529
+ style: "padding-top: " + _vm.scrollData.endHeight + "px",
59310
59530
  attrs: { colspan: headers.length },
59311
59531
  }),
59312
59532
  ]),
@@ -59490,18 +59710,20 @@ var __vue_render__ = function () {
59490
59710
  width:
59491
59711
  _vm.calcWidth(
59492
59712
  column,
59493
- column.maxWidth ||
59494
- column.minWidth
59713
+ column.width,
59714
+ true
59495
59715
  ) || "unset",
59496
59716
  "min-width":
59497
59717
  _vm.calcWidth(
59498
59718
  column,
59499
- column.minWidth
59719
+ column.minWidth,
59720
+ true
59500
59721
  ) || "unset",
59501
59722
  "max-width":
59502
59723
  _vm.calcWidth(
59503
59724
  column,
59504
- column.maxWidth
59725
+ column.maxWidth,
59726
+ true
59505
59727
  ) || "unset",
59506
59728
  },
59507
59729
  },
@@ -59640,18 +59862,20 @@ var __vue_render__ = function () {
59640
59862
  width:
59641
59863
  _vm.calcWidth(
59642
59864
  column,
59643
- column.maxWidth ||
59644
- column.minWidth
59865
+ column.width,
59866
+ true
59645
59867
  ) || "unset",
59646
59868
  "min-width":
59647
59869
  _vm.calcWidth(
59648
59870
  column,
59649
- column.minWidth
59871
+ column.minWidth,
59872
+ true
59650
59873
  ) || "unset",
59651
59874
  "max-width":
59652
59875
  _vm.calcWidth(
59653
59876
  column,
59654
- column.maxWidth
59877
+ column.maxWidth,
59878
+ true
59655
59879
  ) || "unset",
59656
59880
  },
59657
59881
  on: {
@@ -59780,34 +60004,92 @@ var __vue_render__ = function () {
59780
60004
  },
59781
60005
  },
59782
60006
  },
59783
- _vm._l(
59784
- column.childrenProps,
59785
- function (child) {
59786
- return _c(
59787
- child.component,
59788
- _vm._b(
60007
+ [
60008
+ _c(
60009
+ "div",
60010
+ {
60011
+ directives: [
59789
60012
  {
59790
- key:
59791
- child.name +
59792
- _vm.rowKey(item),
59793
- tag: "component",
60013
+ name: "show",
60014
+ rawName: "v-show",
60015
+ value: headerIndex === 0,
60016
+ expression:
60017
+ "headerIndex === 0",
59794
60018
  },
59795
- "component",
59796
- Object.assign(
59797
- {},
59798
- child,
59799
- _vm.instance.getActionComponent(
59800
- child,
59801
- column,
59802
- item
60019
+ ],
60020
+ class: [
60021
+ "zd-tree-grid-expand",
60022
+ "level" + item.tree__level,
60023
+ ],
60024
+ },
60025
+ [
60026
+ (item.tree__children || [])
60027
+ .length > 0
60028
+ ? _c(
60029
+ "v-icon",
60030
+ {
60031
+ class: {
60032
+ opened:
60033
+ item.tree__opened,
60034
+ },
60035
+ attrs: { tabindex: "-1" },
60036
+ on: {
60037
+ click: function (
60038
+ $event
60039
+ ) {
60040
+ return _vm.instance.toggleExpand(
60041
+ item,
60042
+ index
60043
+ )
60044
+ },
60045
+ },
60046
+ },
60047
+ [
60048
+ _vm._v(
60049
+ "\n " +
60050
+ _vm._s(
60051
+ _vm.$getIcon(
60052
+ "chevronRight"
60053
+ )
60054
+ ) +
60055
+ "\n "
60056
+ ),
60057
+ ]
59803
60058
  )
59804
- ),
59805
- false
60059
+ : _vm._e(),
60060
+ ],
60061
+ 1
60062
+ ),
60063
+ _vm._v(" "),
60064
+ _vm._l(
60065
+ column.childrenProps,
60066
+ function (child) {
60067
+ return _c(
60068
+ child.component,
60069
+ _vm._b(
60070
+ {
60071
+ key:
60072
+ child.name +
60073
+ _vm.rowKey(item),
60074
+ tag: "component",
60075
+ },
60076
+ "component",
60077
+ Object.assign(
60078
+ {},
60079
+ child,
60080
+ _vm.instance.getActionComponent(
60081
+ child,
60082
+ column,
60083
+ item
60084
+ )
60085
+ ),
60086
+ false
60087
+ )
59806
60088
  )
59807
- )
59808
- }
59809
- ),
59810
- 1
60089
+ }
60090
+ ),
60091
+ ],
60092
+ 2
59811
60093
  ),
59812
60094
  ]
59813
60095
  : _vm._e(),
@@ -59912,8 +60194,8 @@ __vue_render__._withStripped = true;
59912
60194
  /* style */
59913
60195
  const __vue_inject_styles__ = function (inject) {
59914
60196
  if (!inject) return
59915
- inject("data-v-3cea1c94_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
59916
- ,inject("data-v-3cea1c94_1", { source: ".zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-inline-edit {\n justify-content: flex-end;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-inline-edit {\n justify-content: center;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon {\n display: flex;\n font-size: 18px;\n margin-right: var(--spacing-1);\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand {\n display: inline-block;\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level10 {\n width: 200px;\n}\n.zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
60197
+ inject("data-v-8a2baa58_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
60198
+ ,inject("data-v-8a2baa58_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 });
59917
60199
 
59918
60200
  };
59919
60201
  /* scoped */