@zeedhi/vuetify 1.73.0 → 1.74.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.
Files changed (28) hide show
  1. package/dist/zd-vuetify.esm.js +838 -432
  2. package/dist/zd-vuetify.umd.js +838 -431
  3. package/package.json +2 -2
  4. package/types/components/zd-apex-chart/ZdApexChart.d.ts +5 -0
  5. package/types/components/zd-card/ZdCard.d.ts +6 -4
  6. package/types/components/zd-carousel/ZdCarousel.d.ts +4 -3
  7. package/types/components/zd-code-editor/ZdCodeEditor.d.ts +8 -2
  8. package/types/components/zd-component/ZdComponent.d.ts +1 -0
  9. package/types/components/zd-container/ZdContainer.d.ts +5 -1
  10. package/types/components/zd-dashboard/ZdDashboard.d.ts +7 -1
  11. package/types/components/zd-form/ZdForm.d.ts +6 -9
  12. package/types/components/zd-frame/ZdFrame.d.ts +8 -3
  13. package/types/components/zd-grid/ZdGrid.d.ts +7 -6
  14. package/types/components/zd-grid/ZdGridEditable.d.ts +1 -0
  15. package/types/components/zd-grid/subcomponents/cell/ZdGridCellEdit.d.ts +1 -0
  16. package/types/components/zd-image/ZdImage.d.ts +8 -2
  17. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.d.ts +8 -3
  18. package/types/components/zd-list/ZdList.d.ts +6 -1
  19. package/types/components/zd-row/ZdRow.d.ts +5 -0
  20. package/types/components/zd-selectable-list/ZdSelectableList.d.ts +8 -0
  21. package/types/components/zd-table/ZdTable.d.ts +5 -0
  22. package/types/components/zd-tabs/ZdTab.d.ts +0 -1
  23. package/types/components/zd-tabs/ZdTabItem.d.ts +0 -1
  24. package/types/components/zd-tabs/ZdTabs.d.ts +4 -0
  25. package/types/components/zd-textarea/ZdTextarea.d.ts +0 -3
  26. package/types/components/zd-tree/ZdTree.d.ts +7 -2
  27. package/types/components/zd-tree-grid/ZdTreeGridEditable.d.ts +1 -0
  28. package/types/index.d.ts +1 -0
@@ -37787,6 +37787,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
37787
37787
  vuePropertyDecorator.Prop({ type: String, required: true }),
37788
37788
  __metadata("design:type", String)
37789
37789
  ], ZdComponent.prototype, "name", void 0);
37790
+ __decorate([
37791
+ PropWatch({ type: [Boolean, String], default: false }),
37792
+ __metadata("design:type", Object)
37793
+ ], ZdComponent.prototype, "allowDuplicate", void 0);
37790
37794
  __decorate([
37791
37795
  PropWatch({ type: [Boolean, String], default: false }),
37792
37796
  __metadata("design:type", Object)
@@ -38158,6 +38162,23 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38158
38162
  }
38159
38163
  IconRenderer.icons = {};
38160
38164
 
38165
+ function setFillHeight(element) {
38166
+ const parent = element.parentElement;
38167
+ if (parent) {
38168
+ parent.style.display = 'flex';
38169
+ parent.style.flexFlow = 'column';
38170
+ Array.from(parent.children).forEach((child) => {
38171
+ if (child === element) {
38172
+ child.style.flex = '1 1 auto';
38173
+ child.style.overflowY = 'auto';
38174
+ }
38175
+ else {
38176
+ child.style.flex = '0 0 auto';
38177
+ }
38178
+ });
38179
+ }
38180
+ }
38181
+
38161
38182
  /**
38162
38183
  * ApexChart component
38163
38184
  */
@@ -38171,6 +38192,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38171
38192
  const updateFn = (options) => this.$refs.instance.chart.updateOptions(options, false, true, true, true);
38172
38193
  this.instance.setViewUpdate(updateFn);
38173
38194
  this.instance.setViewGetIconHTML((icon) => IconRenderer.getIcon(icon, this.$root.$options.vuetify));
38195
+ if (this.instance.fillHeight) {
38196
+ setFillHeight(this.$el);
38197
+ }
38174
38198
  }
38175
38199
  setApexChartTheme() {
38176
38200
  let theme = '';
@@ -38193,9 +38217,21 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38193
38217
  __metadata("design:type", String)
38194
38218
  ], ZdApexChart.prototype, "chartType", void 0);
38195
38219
  __decorate([
38196
- PropWatch({ type: [Number, String], default: 'auto' }),
38220
+ PropWatch({ type: [Number, String], default: '100%' }),
38197
38221
  __metadata("design:type", Object)
38198
38222
  ], ZdApexChart.prototype, "height", void 0);
38223
+ __decorate([
38224
+ PropWatch({ type: [Number, String], default: 'auto' }),
38225
+ __metadata("design:type", Object)
38226
+ ], ZdApexChart.prototype, "minHeight", void 0);
38227
+ __decorate([
38228
+ PropWatch({ type: [Number, String], default: 'none' }),
38229
+ __metadata("design:type", Object)
38230
+ ], ZdApexChart.prototype, "maxHeight", void 0);
38231
+ __decorate([
38232
+ PropWatch({ type: [Boolean, String], default: false }),
38233
+ __metadata("design:type", Object)
38234
+ ], ZdApexChart.prototype, "fillHeight", void 0);
38199
38235
  __decorate([
38200
38236
  vuePropertyDecorator.Prop({ type: [Object, String], default: () => ({}) }),
38201
38237
  __metadata("design:type", Object)
@@ -38208,6 +38244,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38208
38244
  PropWatch({ type: [Number, String], default: '100%' }),
38209
38245
  __metadata("design:type", Object)
38210
38246
  ], ZdApexChart.prototype, "width", void 0);
38247
+ __decorate([
38248
+ PropWatch({ type: [Number, String], default: 'auto' }),
38249
+ __metadata("design:type", Object)
38250
+ ], ZdApexChart.prototype, "minWidth", void 0);
38251
+ __decorate([
38252
+ PropWatch({ type: [Number, String], default: 'none' }),
38253
+ __metadata("design:type", Object)
38254
+ ], ZdApexChart.prototype, "maxWidth", void 0);
38211
38255
  __decorate([
38212
38256
  PropWatch({ type: [Boolean, String], default: false }),
38213
38257
  __metadata("design:type", Boolean)
@@ -38235,7 +38279,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38235
38279
  var _c = _vm._self._c || _h;
38236
38280
  return _c(
38237
38281
  "div",
38238
- { staticClass: "apexcharts-container", attrs: { id: _vm.instance.name } },
38282
+ {
38283
+ staticClass: "apexcharts-container",
38284
+ style: {
38285
+ height: _vm.$formatSize(_vm.instance.height),
38286
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
38287
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
38288
+ width: _vm.$formatSize(_vm.instance.width),
38289
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
38290
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
38291
+ },
38292
+ attrs: { id: _vm.instance.name },
38293
+ },
38239
38294
  [
38240
38295
  _c("apexchart", {
38241
38296
  directives: [
@@ -38258,9 +38313,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38258
38313
  type: _vm.instance.chartType,
38259
38314
  options: _vm.instance.options,
38260
38315
  series: _vm.instance.series,
38261
- height: _vm.instance.height,
38316
+ height: "100%",
38262
38317
  name: _vm.instance.name,
38263
- width: _vm.instance.width,
38318
+ width: "100%",
38264
38319
  dark: _vm.instance.dark,
38265
38320
  light: _vm.instance.light,
38266
38321
  },
@@ -38298,7 +38353,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38298
38353
  /* style */
38299
38354
  const __vue_inject_styles__$1s = function (inject) {
38300
38355
  if (!inject) return
38301
- inject("data-v-0df63fea_0", { source: ".zd-apex-chart .apexcharts-toolbar {\n z-index: 0;\n}\n.zd-apex-chart .apexcharts-toolbar > div {\n transform: scale(0.8) !important;\n}\n.zd-apex-chart.theme--light .apexcharts-toolbar > div > .v-icon {\n color: #3b3b3b !important;\n}\n.zd-apex-chart.theme--light .apexcharts-tooltip {\n background: #fdfdfd !important;\n border: 1px solid #fdfdfd !important;\n color: #3b3b3b !important;\n z-index: 1;\n}\n.zd-apex-chart.theme--light .apexcharts-tooltip .apexcharts-tooltip-title {\n background: #eee !important;\n color: #3b3b3b !important;\n border-bottom: none !important;\n}\n.zd-apex-chart.theme--light .apexcharts-title-text {\n fill: #3b3b3b !important;\n}\n.zd-apex-chart.theme--light .apexcharts-xaxistooltip {\n background: #eee !important;\n border: 1px solid #d4d4d4 !important;\n}\n.zd-apex-chart.theme--light .apexcharts-xaxistooltip .apexcharts-xaxistooltip-text {\n color: #3b3b3b !important;\n}\n.zd-apex-chart.theme--light .apexcharts-xaxistooltip-bottom::before {\n border-bottom-color: #d4d4d4 !important;\n}\n.zd-apex-chart.theme--light .apexcharts-xaxistooltip-bottom::after {\n border-bottom-color: #d4d4d4 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-toolbar > div > .v-icon {\n color: #b8b8b8 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-tooltip {\n background: #1e1e1e !important;\n border: 1px solid #1e1e1e !important;\n color: #b8b8b8 !important;\n z-index: 1;\n}\n.zd-apex-chart.theme--dark .apexcharts-tooltip .apexcharts-tooltip-title {\n background: #101010 !important;\n color: #b8b8b8 !important;\n border-bottom: none !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-text {\n fill: #b8b8b8 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-title-text {\n fill: #b8b8b8 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-xaxistooltip {\n background: #101010 !important;\n border: 1px solid #252525 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-xaxistooltip .apexcharts-xaxistooltip-text {\n color: #b8b8b8 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-xaxistooltip-bottom::before {\n border-bottom-color: #252525 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-xaxistooltip-bottom::after {\n border-bottom-color: #252525 !important;\n}\n.apexcharts-overlay {\n z-index: 0 !important;\n}\n.apexcharts-container {\n height: 100%;\n}", map: undefined, media: undefined });
38356
+ inject("data-v-36e180b3_0", { source: ".zd-apex-chart .apexcharts-toolbar {\n z-index: 0;\n}\n.zd-apex-chart .apexcharts-toolbar > div {\n transform: scale(0.8) !important;\n}\n.zd-apex-chart.theme--light .apexcharts-toolbar > div > .v-icon {\n color: #3b3b3b !important;\n}\n.zd-apex-chart.theme--light .apexcharts-tooltip {\n background: #fdfdfd !important;\n border: 1px solid #fdfdfd !important;\n color: #3b3b3b !important;\n z-index: 1;\n}\n.zd-apex-chart.theme--light .apexcharts-tooltip .apexcharts-tooltip-title {\n background: #eee !important;\n color: #3b3b3b !important;\n border-bottom: none !important;\n}\n.zd-apex-chart.theme--light .apexcharts-title-text {\n fill: #3b3b3b !important;\n}\n.zd-apex-chart.theme--light .apexcharts-xaxistooltip {\n background: #eee !important;\n border: 1px solid #d4d4d4 !important;\n}\n.zd-apex-chart.theme--light .apexcharts-xaxistooltip .apexcharts-xaxistooltip-text {\n color: #3b3b3b !important;\n}\n.zd-apex-chart.theme--light .apexcharts-xaxistooltip-bottom::before {\n border-bottom-color: #d4d4d4 !important;\n}\n.zd-apex-chart.theme--light .apexcharts-xaxistooltip-bottom::after {\n border-bottom-color: #d4d4d4 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-toolbar > div > .v-icon {\n color: #b8b8b8 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-tooltip {\n background: #1e1e1e !important;\n border: 1px solid #1e1e1e !important;\n color: #b8b8b8 !important;\n z-index: 1;\n}\n.zd-apex-chart.theme--dark .apexcharts-tooltip .apexcharts-tooltip-title {\n background: #101010 !important;\n color: #b8b8b8 !important;\n border-bottom: none !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-text {\n fill: #b8b8b8 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-title-text {\n fill: #b8b8b8 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-xaxistooltip {\n background: #101010 !important;\n border: 1px solid #252525 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-xaxistooltip .apexcharts-xaxistooltip-text {\n color: #b8b8b8 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-xaxistooltip-bottom::before {\n border-bottom-color: #252525 !important;\n}\n.zd-apex-chart.theme--dark .apexcharts-xaxistooltip-bottom::after {\n border-bottom-color: #252525 !important;\n}\n.apexcharts-overlay {\n z-index: 0 !important;\n}\n.apexcharts-container {\n position: relative;\n overflow: hidden;\n}", map: undefined, media: undefined });
38302
38357
 
38303
38358
  };
38304
38359
  /* scoped */
@@ -39011,6 +39066,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39011
39066
  super(...arguments);
39012
39067
  this.instanceType = common.Card;
39013
39068
  }
39069
+ mounted() {
39070
+ if (this.instance.fillHeight) {
39071
+ setFillHeight(this.$el);
39072
+ }
39073
+ }
39014
39074
  };
39015
39075
  __decorate([
39016
39076
  PropWatch({ type: String, default: '' }),
@@ -39036,10 +39096,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39036
39096
  PropWatch({ type: [Boolean, String], default: false }),
39037
39097
  __metadata("design:type", Boolean)
39038
39098
  ], ZdCard.prototype, "flat", void 0);
39039
- __decorate([
39040
- PropWatch({ type: [Number, String] }),
39041
- __metadata("design:type", Object)
39042
- ], ZdCard.prototype, "height", void 0);
39043
39099
  __decorate([
39044
39100
  PropWatch({ type: [Boolean, String], default: false }),
39045
39101
  __metadata("design:type", Boolean)
@@ -39059,19 +39115,31 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39059
39115
  __decorate([
39060
39116
  PropWatch({ type: [Number, String] }),
39061
39117
  __metadata("design:type", Object)
39062
- ], ZdCard.prototype, "maxHeight", void 0);
39118
+ ], ZdCard.prototype, "height", void 0);
39063
39119
  __decorate([
39064
- PropWatch({ type: [Number, String] }),
39120
+ PropWatch({ type: [Number, String], default: 'auto' }),
39065
39121
  __metadata("design:type", Object)
39066
- ], ZdCard.prototype, "maxWidth", void 0);
39122
+ ], ZdCard.prototype, "minHeight", void 0);
39067
39123
  __decorate([
39068
- PropWatch({ type: [Number, String] }),
39124
+ PropWatch({ type: [Number, String], default: 'none' }),
39069
39125
  __metadata("design:type", Object)
39070
- ], ZdCard.prototype, "minHeight", void 0);
39126
+ ], ZdCard.prototype, "maxHeight", void 0);
39071
39127
  __decorate([
39072
39128
  PropWatch({ type: [Number, String] }),
39073
39129
  __metadata("design:type", Object)
39130
+ ], ZdCard.prototype, "width", void 0);
39131
+ __decorate([
39132
+ PropWatch({ type: [Number, String], default: 'auto' }),
39133
+ __metadata("design:type", Object)
39074
39134
  ], ZdCard.prototype, "minWidth", void 0);
39135
+ __decorate([
39136
+ PropWatch({ type: [Number, String], default: 'none' }),
39137
+ __metadata("design:type", Object)
39138
+ ], ZdCard.prototype, "maxWidth", void 0);
39139
+ __decorate([
39140
+ PropWatch({ type: [Boolean, String], default: false }),
39141
+ __metadata("design:type", Object)
39142
+ ], ZdCard.prototype, "fillHeight", void 0);
39075
39143
  __decorate([
39076
39144
  PropWatch({ type: [Boolean, String], default: false }),
39077
39145
  __metadata("design:type", Boolean)
@@ -39092,10 +39160,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39092
39160
  PropWatch({ type: String, default: '' }),
39093
39161
  __metadata("design:type", String)
39094
39162
  ], ZdCard.prototype, "to", void 0);
39095
- __decorate([
39096
- PropWatch({ type: [Number, String] }),
39097
- __metadata("design:type", Object)
39098
- ], ZdCard.prototype, "width", void 0);
39099
39163
  ZdCard = __decorate([
39100
39164
  vuePropertyDecorator.Component
39101
39165
  ], ZdCard);
@@ -39243,6 +39307,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39243
39307
  }, 200);
39244
39308
  }
39245
39309
  core.Metadata.setEnabledConsole(true);
39310
+ if (this.instance.fillHeight) {
39311
+ setFillHeight(this.$el);
39312
+ }
39246
39313
  }
39247
39314
  get paginationMode() {
39248
39315
  return this.instance.fractionPagination ? 'fraction' : undefined;
@@ -39334,9 +39401,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39334
39401
  __metadata("design:type", Object)
39335
39402
  ], ZdCarousel.prototype, "maxHeight", void 0);
39336
39403
  __decorate([
39337
- PropWatch({ type: [Number, String], default: 'none' }),
39404
+ PropWatch({ type: [Number, String], default: 'auto' }),
39338
39405
  __metadata("design:type", Object)
39339
39406
  ], ZdCarousel.prototype, "minHeight", void 0);
39407
+ __decorate([
39408
+ PropWatch({ type: [Boolean, String], default: false }),
39409
+ __metadata("design:type", Object)
39410
+ ], ZdCarousel.prototype, "fillHeight", void 0);
39340
39411
  __decorate([
39341
39412
  PropWatch({ type: [Boolean, String], default: true }),
39342
39413
  __metadata("design:type", Boolean)
@@ -39481,7 +39552,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39481
39552
  _vm.instance.buttonsOutside && _vm.instance.showArrows,
39482
39553
  },
39483
39554
  ],
39484
- style: _vm.instance.cssStyle,
39555
+ style: Object.assign(
39556
+ {},
39557
+ {
39558
+ height: _vm.$formatSize(_vm.instance.height),
39559
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
39560
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
39561
+ },
39562
+ _vm.$styleObject(_vm.instance.cssStyle)
39563
+ ),
39485
39564
  attrs: { id: _vm.instance.name },
39486
39565
  on: {
39487
39566
  click: function ($event) {
@@ -39504,9 +39583,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39504
39583
  key: _vm.hooperKey,
39505
39584
  ref: "carousel",
39506
39585
  style: {
39507
- height: _vm.$formatSize(_vm.instance.height),
39508
- maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
39509
- minHeight: _vm.$formatSize(_vm.instance.minHeight),
39586
+ height: "100%",
39510
39587
  },
39511
39588
  attrs: {
39512
39589
  autoPlay: _vm.instance.autoPlay,
@@ -39768,7 +39845,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39768
39845
  /* style */
39769
39846
  const __vue_inject_styles__$1m = function (inject) {
39770
39847
  if (!inject) return
39771
- inject("data-v-5d9a0ba9_0", { source: ".zd-carousel {\n height: 100%;\n}\n.zd-carousel section.hooper {\n outline: none;\n}\n.zd-carousel section.hooper * {\n outline: none;\n}\n.zd-carousel section.hooper .hooper-list .hooper-slide {\n align-self: center;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination {\n padding: 0;\n width: 100%;\n height: 50px;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination .hooper-indicators {\n margin: 0 auto;\n display: block;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination .hooper-indicators li {\n display: inline-block;\n margin: 0 var(--spacing-2);\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination .hooper-indicators li .hooper-indicator {\n width: 18px;\n height: 18px;\n border-radius: 50%;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.show-background {\n background: rgba(0, 0, 0, 0.3);\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--light .hooper-indicator {\n opacity: 0.25;\n background-color: black;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--light .hooper-indicator.is-active {\n opacity: 0.6;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--light .hooper-indicator:hover:not(.is-active) {\n opacity: 0.4;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--dark {\n color: white;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--dark .hooper-indicator {\n opacity: 0.5;\n background-color: white;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--dark .hooper-indicator.is-active {\n opacity: 0.8;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--dark .hooper-indicator:hover:not(.is-active) {\n opacity: 0.6;\n}\n.zd-carousel section.hooper .hooper-list button.hooper-prev {\n padding: 0;\n}\n.zd-carousel section.hooper .hooper-list button.hooper-next {\n padding: 0;\n}\n.zd-carousel section.hooper .hooper-list .prev-button, .zd-carousel section.hooper .hooper-list .next-button {\n transition: 0.1s;\n}\n.zd-carousel section.hooper .hooper-list ul.hooper-track, .zd-carousel section.hooper .hooper-list ol.hooper-indicators {\n padding-left: 0;\n}\n.zd-carousel section.hooper .hooper-list .hooper-progress-inner {\n background-color: var(--v-primary-base);\n}\n.zd-carousel.buttons-outside section.hooper {\n width: calc(100% - 2 * var(--spacing-8));\n margin-left: var(--spacing-8);\n}\n.zd-carousel.buttons-outside section.hooper .hooper-list .hooper-navigation button.hooper-prev {\n left: calc(-1 * var(--spacing-8));\n}\n.zd-carousel.buttons-outside section.hooper .hooper-list .hooper-navigation button.hooper-next {\n right: calc(-1 * var(--spacing-8));\n}", map: undefined, media: undefined });
39848
+ inject("data-v-6fdfda82_0", { source: ".zd-carousel {\n height: 100%;\n}\n.zd-carousel section.hooper {\n outline: none;\n}\n.zd-carousel section.hooper * {\n outline: none;\n}\n.zd-carousel section.hooper .hooper-list .hooper-slide {\n align-self: center;\n}\n.zd-carousel section.hooper .hooper-list .hooper-slide > .row {\n height: 100%;\n align-items: center;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination {\n padding: 0;\n width: 100%;\n height: 50px;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination .hooper-indicators {\n margin: 0 auto;\n display: block;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination .hooper-indicators li {\n display: inline-block;\n margin: 0 var(--spacing-2);\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination .hooper-indicators li .hooper-indicator {\n width: 18px;\n height: 18px;\n border-radius: 50%;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.show-background {\n background: rgba(0, 0, 0, 0.3);\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--light .hooper-indicator {\n opacity: 0.25;\n background-color: black;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--light .hooper-indicator.is-active {\n opacity: 0.6;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--light .hooper-indicator:hover:not(.is-active) {\n opacity: 0.4;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--dark {\n color: white;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--dark .hooper-indicator {\n opacity: 0.5;\n background-color: white;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--dark .hooper-indicator.is-active {\n opacity: 0.8;\n}\n.zd-carousel section.hooper .hooper-list .hooper-pagination.theme--dark .hooper-indicator:hover:not(.is-active) {\n opacity: 0.6;\n}\n.zd-carousel section.hooper .hooper-list button.hooper-prev {\n padding: 0;\n}\n.zd-carousel section.hooper .hooper-list button.hooper-next {\n padding: 0;\n}\n.zd-carousel section.hooper .hooper-list .prev-button, .zd-carousel section.hooper .hooper-list .next-button {\n transition: 0.1s;\n}\n.zd-carousel section.hooper .hooper-list ul.hooper-track, .zd-carousel section.hooper .hooper-list ol.hooper-indicators {\n padding-left: 0;\n}\n.zd-carousel section.hooper .hooper-list .hooper-progress-inner {\n background-color: var(--v-primary-base);\n}\n.zd-carousel.buttons-outside section.hooper {\n width: calc(100% - 2 * var(--spacing-8));\n margin-left: var(--spacing-8);\n}\n.zd-carousel.buttons-outside section.hooper .hooper-list .hooper-navigation button.hooper-prev {\n left: calc(-1 * var(--spacing-8));\n}\n.zd-carousel.buttons-outside section.hooper .hooper-list .hooper-navigation button.hooper-next {\n right: calc(-1 * var(--spacing-8));\n}", map: undefined, media: undefined });
39772
39849
 
39773
39850
  };
39774
39851
  /* scoped */
@@ -40514,6 +40591,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40514
40591
  created() {
40515
40592
  this.instance.setViewHighlight(this.highlight);
40516
40593
  }
40594
+ mounted() {
40595
+ if (this.instance.fillHeight) {
40596
+ setFillHeight(this.$el);
40597
+ }
40598
+ }
40517
40599
  highlight(code, language) {
40518
40600
  return Prism__default["default"].highlight(code, Prism__default["default"].languages[this.language], language);
40519
40601
  }
@@ -40523,13 +40605,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40523
40605
  __metadata("design:type", String)
40524
40606
  ], ZdCodeEditor.prototype, "copyIcon", void 0);
40525
40607
  __decorate([
40526
- PropWatch({ type: [String, Number], default: 'none' }),
40527
- __metadata("design:type", String)
40608
+ PropWatch({ type: [Number, String], default: 'auto' }),
40609
+ __metadata("design:type", Object)
40610
+ ], ZdCodeEditor.prototype, "height", void 0);
40611
+ __decorate([
40612
+ PropWatch({ type: [Number, String], default: 'auto' }),
40613
+ __metadata("design:type", Object)
40614
+ ], ZdCodeEditor.prototype, "minHeight", void 0);
40615
+ __decorate([
40616
+ PropWatch({ type: [Number, String], default: 'none' }),
40617
+ __metadata("design:type", Object)
40528
40618
  ], ZdCodeEditor.prototype, "maxHeight", void 0);
40529
40619
  __decorate([
40530
- PropWatch({ type: [String, Number], default: 'auto' }),
40531
- __metadata("design:type", String)
40532
- ], ZdCodeEditor.prototype, "height", void 0);
40620
+ PropWatch({ type: [Number, String], default: 'auto' }),
40621
+ __metadata("design:type", Object)
40622
+ ], ZdCodeEditor.prototype, "width", void 0);
40623
+ __decorate([
40624
+ PropWatch({ type: [Number, String], default: 'auto' }),
40625
+ __metadata("design:type", Object)
40626
+ ], ZdCodeEditor.prototype, "minWidth", void 0);
40627
+ __decorate([
40628
+ PropWatch({ type: [Number, String], default: 'none' }),
40629
+ __metadata("design:type", Object)
40630
+ ], ZdCodeEditor.prototype, "maxWidth", void 0);
40631
+ __decorate([
40632
+ PropWatch({ type: [Boolean, String], default: false }),
40633
+ __metadata("design:type", Object)
40634
+ ], ZdCodeEditor.prototype, "fillHeight", void 0);
40533
40635
  __decorate([
40534
40636
  PropWatch({ type: String, default: 'ts' }),
40535
40637
  __metadata("design:type", String)
@@ -40572,7 +40674,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40572
40674
  { "theme--dark": _vm.$isDark(this) },
40573
40675
  { "theme--light": _vm.$isLight(this) },
40574
40676
  ],
40575
- style: _vm.instance.cssStyle,
40677
+ style: Object.assign(
40678
+ {},
40679
+ {
40680
+ height: _vm.$formatSize(_vm.instance.height),
40681
+ width: _vm.$formatSize(_vm.instance.width),
40682
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
40683
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
40684
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
40685
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
40686
+ },
40687
+ _vm.$styleObject(_vm.instance.cssStyle)
40688
+ ),
40576
40689
  attrs: { id: _vm.instance.name },
40577
40690
  on: {
40578
40691
  click: function ($event) {
@@ -40591,10 +40704,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40591
40704
  "div",
40592
40705
  {
40593
40706
  staticClass: "zd-code-editor-container",
40594
- style: {
40595
- maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
40596
- height: _vm.$formatSize(_vm.instance.height),
40597
- },
40707
+ class: { "line-numbers": _vm.instance.showLineNumbers },
40598
40708
  },
40599
40709
  [
40600
40710
  _vm.instance.showLineNumbers
@@ -40694,7 +40804,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40694
40804
  /* style */
40695
40805
  const __vue_inject_styles__$1i = function (inject) {
40696
40806
  if (!inject) return
40697
- inject("data-v-2a2ade79_0", { source: ".zd-code-editor {\n position: relative;\n}\n.zd-code-editor-clipboard-button {\n position: absolute;\n top: 10px;\n right: 10px;\n background-color: var(--v-grey-lighten5);\n opacity: 0;\n transition: 0.3s all ease-in;\n}\n.zd-code-editor-clipboard-button .v-icon {\n color: var(--v-grey-base);\n font-size: 18px;\n}\n.zd-code-editor:hover .zd-code-editor-clipboard-button {\n opacity: 1;\n}\n.zd-code-editor-container {\n position: relative;\n background-color: var(--v-grey-lighten5);\n min-height: 45px;\n display: flex;\n border: solid var(--regular) var(--v-grey-lighten5);\n overflow: auto;\n}\n.zd-code-editor-container:focus-within {\n border: solid var(--regular) var(--v-primary-base);\n}\n.zd-code-editor-container .zd-code-editor-line-numbers {\n min-height: 45px;\n width: 30px;\n overflow: hidden;\n flex-shrink: 0;\n margin-top: 0;\n font-size: 0.9em;\n padding: 10px 3px;\n font-family: Consolas, Monaco, \"Andale Mono\", \"Ubuntu Mono\", monospace;\n background: var(--v-grey-lighten4);\n color: var(--zd-font-color);\n position: sticky;\n top: 0;\n left: 0;\n display: grid;\n gap: 0.25rem;\n}\n.zd-code-editor-container .zd-code-editor-line-numbers .zd-code-editor-line-number {\n text-align: right;\n white-space: nowrap;\n}\n.zd-code-editor-container pre {\n padding: 10px;\n margin: 0;\n background: transparent;\n -moz-tab-size: 4;\n -ms-flex-positive: 2;\n -o-tab-size: 4;\n -webkit-box-flex: 2;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n flex-grow: 2;\n outline: none;\n tab-size: 4;\n font-weight: 500;\n font-size: 0.9em;\n font-family: Consolas, Monaco, \"Andale Mono\", \"Ubuntu Mono\", monospace;\n overflow: hidden;\n color: var(--zd-font-color);\n}\n.zd-code-editor.theme--dark .zd-code-editor-clipboard-button {\n background-color: #383838;\n}\n.zd-code-editor.theme--dark .zd-code-editor-clipboard-button .v-icon {\n color: var(--v-grey-lighten4);\n font-size: 18px;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container {\n border: solid var(--regular) var(--v-grey-darken3);\n background: #383838;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container .zd-code-editor-line-numbers {\n background: var(--v-grey-darken3);\n color: var(--v-grey-lighten4);\n}\n.zd-code-editor.theme--dark .zd-code-editor-container pre {\n text-shadow: 0 1px #2c2c2c;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container pre span.token.property, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.tag, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.boolean, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.number, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.constant, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.symbol, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.deleted {\n color: #ff6fd3;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container pre span.token.atrule, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.attr-value, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.keyword {\n color: #00acf6;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container pre span.token.function, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.class-name {\n color: #ff7692;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container pre span.token.selector, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.attr-name, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.string, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.char, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.builtin, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.inserted {\n color: #77b300;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container pre span.token.operator {\n background: none;\n}", map: undefined, media: undefined });
40807
+ inject("data-v-dfba4c06_0", { source: ".zd-code-editor {\n position: relative;\n display: flex;\n overflow: auto;\n}\n.zd-code-editor-clipboard-button {\n position: absolute;\n top: 10px;\n right: 10px;\n background-color: var(--v-grey-lighten5);\n opacity: 0;\n transition: 0.3s all ease-in;\n}\n.zd-code-editor-clipboard-button .v-icon {\n color: var(--v-grey-base);\n font-size: 18px;\n}\n.zd-code-editor:hover .zd-code-editor-clipboard-button {\n opacity: 1;\n}\n.zd-code-editor-container {\n position: relative;\n background-color: var(--v-grey-lighten5);\n min-height: 45px;\n display: flex;\n border: solid var(--regular) var(--v-grey-lighten5);\n overflow: auto;\n width: 100%;\n}\n.zd-code-editor-container.line-numbers {\n background: linear-gradient(to right, var(--v-grey-lighten4), var(--v-grey-lighten4) 40px, var(--v-grey-lighten5) 40px, var(--v-grey-lighten5));\n}\n.zd-code-editor-container:focus-within {\n border: solid var(--regular) var(--v-primary-base);\n}\n.zd-code-editor-container .zd-code-editor-line-numbers {\n min-height: 45px;\n width: 40px;\n flex-shrink: 0;\n margin-top: 0;\n font-size: 0.9em;\n padding: 10px 3px;\n font-family: Consolas, Monaco, \"Andale Mono\", \"Ubuntu Mono\", monospace;\n background: var(--v-grey-lighten4);\n color: var(--zd-font-color);\n position: sticky;\n left: 0;\n display: flex;\n flex-direction: column;\n height: fit-content;\n}\n.zd-code-editor-container .zd-code-editor-line-numbers .zd-code-editor-line-number {\n text-align: right;\n white-space: nowrap;\n}\n.zd-code-editor-container pre {\n padding: 10px;\n margin: 0;\n background: transparent;\n -moz-tab-size: 4;\n -ms-flex-positive: 2;\n -o-tab-size: 4;\n -webkit-box-flex: 2;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n flex-grow: 2;\n outline: none;\n tab-size: 4;\n font-weight: 500;\n font-size: 0.9em;\n font-family: Consolas, Monaco, \"Andale Mono\", \"Ubuntu Mono\", monospace;\n overflow: hidden;\n color: var(--zd-font-color);\n}\n.zd-code-editor.theme--dark .zd-code-editor-clipboard-button {\n background-color: #383838;\n}\n.zd-code-editor.theme--dark .zd-code-editor-clipboard-button .v-icon {\n color: var(--v-grey-lighten4);\n font-size: 18px;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container {\n border: solid var(--regular) var(--v-grey-darken3);\n background: #383838;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container .zd-code-editor-line-numbers {\n background: var(--v-grey-darken3);\n color: var(--v-grey-lighten4);\n}\n.zd-code-editor.theme--dark .zd-code-editor-container pre {\n text-shadow: 0 1px #2c2c2c;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container pre span.token.property, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.tag, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.boolean, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.number, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.constant, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.symbol, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.deleted {\n color: #ff6fd3;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container pre span.token.atrule, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.attr-value, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.keyword {\n color: #00acf6;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container pre span.token.function, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.class-name {\n color: #ff7692;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container pre span.token.selector, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.attr-name, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.string, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.char, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.builtin, .zd-code-editor.theme--dark .zd-code-editor-container pre span.token.inserted {\n color: #77b300;\n}\n.zd-code-editor.theme--dark .zd-code-editor-container pre span.token.operator {\n background: none;\n}", map: undefined, media: undefined });
40698
40808
 
40699
40809
  };
40700
40810
  /* scoped */
@@ -41166,6 +41276,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41166
41276
  super(...arguments);
41167
41277
  this.instanceType = common.Container;
41168
41278
  }
41279
+ mounted() {
41280
+ if (this.instance.fillHeight) {
41281
+ setFillHeight(this.$el);
41282
+ }
41283
+ }
41169
41284
  };
41170
41285
  __decorate([
41171
41286
  PropWatch({ type: [Boolean, String], default: true }),
@@ -41183,14 +41298,26 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41183
41298
  PropWatch({ type: [Number, String], default: 'auto' }),
41184
41299
  __metadata("design:type", Object)
41185
41300
  ], ZdContainer.prototype, "height", void 0);
41301
+ __decorate([
41302
+ PropWatch({ type: [Number, String], default: 'auto' }),
41303
+ __metadata("design:type", Object)
41304
+ ], ZdContainer.prototype, "minHeight", void 0);
41186
41305
  __decorate([
41187
41306
  PropWatch({ type: [Number, String], default: 'none' }),
41188
41307
  __metadata("design:type", Object)
41189
41308
  ], ZdContainer.prototype, "maxHeight", void 0);
41309
+ __decorate([
41310
+ PropWatch({ type: [Number, String], default: '100%' }),
41311
+ __metadata("design:type", Object)
41312
+ ], ZdContainer.prototype, "width", void 0);
41313
+ __decorate([
41314
+ PropWatch({ type: [Number, String], default: 'auto' }),
41315
+ __metadata("design:type", Object)
41316
+ ], ZdContainer.prototype, "minWidth", void 0);
41190
41317
  __decorate([
41191
41318
  PropWatch({ type: [Number, String], default: 'none' }),
41192
41319
  __metadata("design:type", Object)
41193
- ], ZdContainer.prototype, "minHeight", void 0);
41320
+ ], ZdContainer.prototype, "maxWidth", void 0);
41194
41321
  ZdContainer = __decorate([
41195
41322
  vuePropertyDecorator.Component
41196
41323
  ], ZdContainer);
@@ -41215,17 +41342,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41215
41342
  expression: "instance.isVisible",
41216
41343
  },
41217
41344
  ],
41218
- class: [
41219
- "zd-container",
41220
- _vm.instance.cssClass,
41221
- { "fill-height": _vm.instance.fillHeight },
41222
- ],
41345
+ class: ["zd-container", _vm.instance.cssClass],
41223
41346
  style: Object.assign(
41224
41347
  {},
41225
41348
  {
41226
41349
  height: _vm.$formatSize(_vm.instance.height),
41227
41350
  minHeight: _vm.$formatSize(_vm.instance.minHeight),
41228
41351
  maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
41352
+ width: _vm.$formatSize(_vm.instance.width),
41353
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
41354
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
41229
41355
  overflow: _vm.instance.scrollView ? "hidden auto" : "none",
41230
41356
  },
41231
41357
  _vm.$styleObject(_vm.instance.cssStyle)
@@ -41268,11 +41394,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41268
41394
  /* style */
41269
41395
  const __vue_inject_styles__$1f = function (inject) {
41270
41396
  if (!inject) return
41271
- inject("data-v-a056e4b6_0", { source: ".zd-container[data-v-a056e4b6] {\n padding: var(--zd-default-padding);\n}", map: undefined, media: undefined });
41397
+ inject("data-v-77ffafc6_0", { source: ".zd-container[data-v-77ffafc6] {\n padding: var(--zd-default-padding);\n}", map: undefined, media: undefined });
41272
41398
 
41273
41399
  };
41274
41400
  /* scoped */
41275
- const __vue_scope_id__$1f = "data-v-a056e4b6";
41401
+ const __vue_scope_id__$1f = "data-v-77ffafc6";
41276
41402
  /* module identifier */
41277
41403
  const __vue_module_identifier__$1f = undefined;
41278
41404
  /* functional template */
@@ -41837,6 +41963,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41837
41963
  forceFallback: true,
41838
41964
  });
41839
41965
  }
41966
+ if (this.instance.fillHeight) {
41967
+ setFillHeight(this.$el);
41968
+ }
41840
41969
  }
41841
41970
  setData(event) {
41842
41971
  const card = event.item.querySelector('.dashboard-div-card');
@@ -41949,9 +42078,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41949
42078
  __metadata("design:type", Object)
41950
42079
  ], ZdDashboard.prototype, "removePadding", void 0);
41951
42080
  __decorate([
41952
- PropWatch({ type: [Number, String], default: '' }),
42081
+ PropWatch({ type: [Number, String], default: 'auto' }),
41953
42082
  __metadata("design:type", Object)
41954
42083
  ], ZdDashboard.prototype, "height", void 0);
42084
+ __decorate([
42085
+ PropWatch({ type: [Number, String], default: 'auto' }),
42086
+ __metadata("design:type", Object)
42087
+ ], ZdDashboard.prototype, "minHeight", void 0);
42088
+ __decorate([
42089
+ PropWatch({ type: [Number, String], default: 'none' }),
42090
+ __metadata("design:type", Object)
42091
+ ], ZdDashboard.prototype, "maxHeight", void 0);
42092
+ __decorate([
42093
+ PropWatch({ type: [Number, String], default: '100%' }),
42094
+ __metadata("design:type", Object)
42095
+ ], ZdDashboard.prototype, "width", void 0);
42096
+ __decorate([
42097
+ PropWatch({ type: [Number, String], default: 'auto' }),
42098
+ __metadata("design:type", Object)
42099
+ ], ZdDashboard.prototype, "minWidth", void 0);
42100
+ __decorate([
42101
+ PropWatch({ type: [Number, String], default: 'none' }),
42102
+ __metadata("design:type", Object)
42103
+ ], ZdDashboard.prototype, "maxWidth", void 0);
42104
+ __decorate([
42105
+ PropWatch({ type: [Boolean, String], default: false }),
42106
+ __metadata("design:type", Object)
42107
+ ], ZdDashboard.prototype, "fillHeight", void 0);
41955
42108
  __decorate([
41956
42109
  PropWatch({ type: [Number, String], default: '' }),
41957
42110
  __metadata("design:type", Object)
@@ -42000,7 +42153,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42000
42153
  name: "container-dashboard" + _vm.instance.name,
42001
42154
  cssStyle: Object.assign(
42002
42155
  {},
42003
- { height: _vm.$formatSize(_vm.instance.height) },
42156
+ {
42157
+ height: _vm.$formatSize(_vm.instance.height),
42158
+ width: _vm.$formatSize(_vm.instance.width),
42159
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
42160
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
42161
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
42162
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
42163
+ },
42004
42164
  _vm.$styleObject(_vm.instance.cssStyle)
42005
42165
  ),
42006
42166
  },
@@ -42008,13 +42168,29 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42008
42168
  [
42009
42169
  [
42010
42170
  _c(
42011
- "zd-header",
42012
- _vm._b(
42013
- { attrs: { isVisible: _vm.instance.editingMode } },
42014
- "zd-header",
42015
- _vm.instance.editHeader,
42016
- false
42017
- )
42171
+ "span",
42172
+ {
42173
+ directives: [
42174
+ {
42175
+ name: "show",
42176
+ rawName: "v-show",
42177
+ value: _vm.instance.showEditHeader,
42178
+ expression: "instance.showEditHeader",
42179
+ },
42180
+ ],
42181
+ },
42182
+ [
42183
+ _c(
42184
+ "zd-header",
42185
+ _vm._b(
42186
+ { attrs: { isVisible: _vm.instance.editingMode } },
42187
+ "zd-header",
42188
+ _vm.instance.editHeader,
42189
+ false
42190
+ )
42191
+ ),
42192
+ ],
42193
+ 1
42018
42194
  ),
42019
42195
  ],
42020
42196
  _vm._v(" "),
@@ -42180,7 +42356,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42180
42356
  /* style */
42181
42357
  const __vue_inject_styles__$1b = function (inject) {
42182
42358
  if (!inject) return
42183
- inject("data-v-6b1f34e2_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 overflow: auto;\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 });
42359
+ inject("data-v-11f7d9bd_0", { source: ".zd-dashboard {\n display: flex;\n flex-direction: column;\n cursor: auto;\n padding: 0px !important;\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 overflow: auto;\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 });
42184
42360
 
42185
42361
  };
42186
42362
  /* scoped */
@@ -44310,46 +44486,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44310
44486
  constructor() {
44311
44487
  super(...arguments);
44312
44488
  this.instanceType = common.Form;
44313
- /**
44314
- * Height of the form rows, excluding the fillHeight row
44315
- */
44316
- this.inputHeight = 0;
44317
44489
  this.form = {};
44318
44490
  }
44319
44491
  mounted() {
44320
44492
  this.form = this.$refs.form;
44321
- this.row = this.$refs.row;
44322
44493
  if (this.form) {
44323
44494
  this.instance.setViewValidate(this.form.validate);
44324
44495
  this.instance.setViewResetValidation(this.form.resetValidation);
44325
44496
  }
44326
- this.updateFillHeight();
44327
- window.addEventListener('resize', this.onResize);
44328
- }
44329
- destroyed() {
44330
- window.removeEventListener('resize', this.onResize);
44331
- }
44332
- onResize() {
44333
- this.updateFillHeight();
44334
- }
44335
- updateFillHeight() {
44336
- if (!this.hasFillHeight)
44337
- return;
44338
- this.inputHeight = 0;
44339
- let lastTop = 0;
44340
- Array.from(this.row.children).forEach((child) => {
44341
- const { top } = child.getBoundingClientRect();
44342
- if (top <= lastTop)
44343
- return;
44344
- lastTop = top;
44345
- if (child.classList.contains('zd-input-fill-height')) {
44346
- this.inputHeight -= child.clientHeight;
44347
- }
44348
- this.inputHeight += child.clientHeight;
44349
- });
44350
- }
44351
- get hasFillHeight() {
44352
- return this.instance.childrenProps.some((child) => child.fillHeight);
44497
+ if (this.instance.fillHeight) {
44498
+ setFillHeight(this.$el);
44499
+ }
44353
44500
  }
44354
44501
  submit(event) {
44355
44502
  var _a;
@@ -44383,9 +44530,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44383
44530
  __metadata("design:type", String)
44384
44531
  ], ZdForm.prototype, "justify", void 0);
44385
44532
  __decorate([
44386
- PropWatch({ type: [Number, String] }),
44533
+ PropWatch({ type: [Number, String], default: 'auto' }),
44387
44534
  __metadata("design:type", Object)
44388
44535
  ], ZdForm.prototype, "height", void 0);
44536
+ __decorate([
44537
+ PropWatch({ type: [Number, String], default: 'auto' }),
44538
+ __metadata("design:type", Object)
44539
+ ], ZdForm.prototype, "minHeight", void 0);
44540
+ __decorate([
44541
+ PropWatch({ type: [Number, String], default: 'none' }),
44542
+ __metadata("design:type", Object)
44543
+ ], ZdForm.prototype, "maxHeight", void 0);
44544
+ __decorate([
44545
+ PropWatch({ type: [Number, String], default: '100%' }),
44546
+ __metadata("design:type", Object)
44547
+ ], ZdForm.prototype, "width", void 0);
44548
+ __decorate([
44549
+ PropWatch({ type: [Number, String], default: 'auto' }),
44550
+ __metadata("design:type", Object)
44551
+ ], ZdForm.prototype, "minWidth", void 0);
44552
+ __decorate([
44553
+ PropWatch({ type: [Number, String], default: 'none' }),
44554
+ __metadata("design:type", Object)
44555
+ ], ZdForm.prototype, "maxWidth", void 0);
44556
+ __decorate([
44557
+ PropWatch({ type: [Boolean, String], default: false }),
44558
+ __metadata("design:type", Object)
44559
+ ], ZdForm.prototype, "fillHeight", void 0);
44389
44560
  __decorate([
44390
44561
  vuePropertyDecorator.Prop({ type: Object, default: () => ({}) }),
44391
44562
  __metadata("design:type", Object)
@@ -44418,7 +44589,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44418
44589
  class: ["zd-form", "zd-form-fill-height", _vm.instance.cssClass],
44419
44590
  style: Object.assign(
44420
44591
  {},
44421
- { height: _vm.$formatSize(_vm.instance.height) },
44592
+ {
44593
+ height: _vm.$formatSize(_vm.instance.height),
44594
+ width: _vm.$formatSize(_vm.instance.width),
44595
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
44596
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
44597
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
44598
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
44599
+ },
44422
44600
  _vm.$styleObject(_vm.instance.cssStyle)
44423
44601
  ),
44424
44602
  attrs: { id: _vm.instance.name, name: _vm.instance.name },
@@ -44430,74 +44608,69 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44430
44608
  },
44431
44609
  },
44432
44610
  [
44433
- _c(
44434
- "v-row",
44435
- {
44436
- ref: "row",
44437
- attrs: {
44438
- dense: "",
44439
- justify: _vm.instance.justify,
44440
- align: _vm.instance.align,
44441
- },
44442
- },
44443
- _vm._l(_vm.instance.childrenProps, function (child) {
44444
- return _c(
44445
- "v-col",
44446
- _vm._b(
44447
- {
44448
- directives: [
44611
+ _vm.instance.childrenProps.length
44612
+ ? _c(
44613
+ "v-row",
44614
+ {
44615
+ ref: "row",
44616
+ attrs: {
44617
+ dense: "",
44618
+ justify: _vm.instance.justify,
44619
+ align: _vm.instance.align,
44620
+ },
44621
+ },
44622
+ _vm._l(_vm.instance.childrenProps, function (child) {
44623
+ return _c(
44624
+ "v-col",
44625
+ _vm._b(
44449
44626
  {
44450
- name: "show",
44451
- rawName: "v-show",
44452
- value: _vm.isChildVisible(child),
44453
- expression: "isChildVisible(child)",
44627
+ directives: [
44628
+ {
44629
+ name: "show",
44630
+ rawName: "v-show",
44631
+ value: _vm.isChildVisible(child),
44632
+ expression: "isChildVisible(child)",
44633
+ },
44634
+ ],
44635
+ key: child.name,
44636
+ style: {
44637
+ height: _vm.$formatSize(child.height || "auto"),
44638
+ minHeight: _vm.$formatSize(child.minHeight || "auto"),
44639
+ maxHeight: _vm.$formatSize(child.maxHeight || "none"),
44640
+ },
44641
+ attrs: { name: child.name },
44454
44642
  },
44455
- ],
44456
- key: child.name,
44457
- class: [
44458
- {
44459
- "zd-input-fill-height": !!child.fillHeight,
44460
- },
44461
- ],
44462
- style: {
44463
- height: child.fillHeight
44464
- ? "calc(100% - " + _vm.$formatSize(_vm.inputHeight) + ")"
44465
- : "auto",
44466
- minHeight:
44467
- child.fillHeight && child.fillHeight !== true
44468
- ? _vm.$formatSize(child.fillHeight)
44469
- : "auto",
44470
- },
44471
- attrs: { name: child.name },
44472
- },
44473
- "v-col",
44474
- _vm.instance.childrenGrid[child.name],
44475
- false
44476
- ),
44477
- [
44478
- _c(
44479
- child.component,
44480
- _vm._b(
44481
- {
44482
- tag: "component",
44483
- attrs: { parent: _vm.instance },
44484
- on: {
44485
- "update:value": function ($event) {
44486
- _vm.instance.value[child.name] = $event;
44487
- },
44488
- },
44489
- },
44490
- "component",
44491
- child,
44643
+ "v-col",
44644
+ _vm.instance.childrenGrid[child.name],
44492
44645
  false
44493
- )
44494
- ),
44495
- ],
44646
+ ),
44647
+ [
44648
+ _c(
44649
+ child.component,
44650
+ _vm._b(
44651
+ {
44652
+ tag: "component",
44653
+ attrs: { parent: _vm.instance },
44654
+ on: {
44655
+ "update:value": function ($event) {
44656
+ _vm.instance.value[child.name] = $event;
44657
+ },
44658
+ },
44659
+ },
44660
+ "component",
44661
+ Object.assign({}, child, {
44662
+ cssClass: (child.cssClass || "") + " zd-form-child",
44663
+ }),
44664
+ false
44665
+ )
44666
+ ),
44667
+ ],
44668
+ 1
44669
+ )
44670
+ }),
44496
44671
  1
44497
44672
  )
44498
- }),
44499
- 1
44500
- ),
44673
+ : _vm._e(),
44501
44674
  _vm._v(" "),
44502
44675
  _vm._t("default"),
44503
44676
  ],
@@ -44510,7 +44683,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44510
44683
  /* style */
44511
44684
  const __vue_inject_styles__$13 = function (inject) {
44512
44685
  if (!inject) return
44513
- inject("data-v-3b667e56_0", { source: ".zd-form {\n overflow-x: hidden;\n padding-bottom: 4px;\n}\n.zd-form > .row {\n height: 100%;\n align-content: flex-start;\n}", map: undefined, media: undefined });
44686
+ inject("data-v-28a85c8a_0", { source: ".zd-form {\n overflow-x: hidden;\n padding-bottom: 4px;\n}\n.zd-form > .row {\n height: 100%;\n align-content: flex-start;\n margin: 0 -12px;\n}\n.zd-form > .row.row--dense {\n margin: 0 -4px;\n}", map: undefined, media: undefined });
44514
44687
 
44515
44688
  };
44516
44689
  /* scoped */
@@ -44546,6 +44719,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44546
44719
  super(...arguments);
44547
44720
  this.instanceType = common.Frame;
44548
44721
  }
44722
+ mounted() {
44723
+ if (this.instance.fillHeight) {
44724
+ setFillHeight(this.$el);
44725
+ }
44726
+ }
44549
44727
  };
44550
44728
  __decorate([
44551
44729
  PropWatch({ type: String, default: '' }),
@@ -44584,17 +44762,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44584
44762
  __metadata("design:type", Number)
44585
44763
  ], ZdFrame.prototype, "cacheDuration", void 0);
44586
44764
  __decorate([
44587
- PropWatch({ type: [String, Number], default: 'auto' }),
44765
+ PropWatch({ type: [Number, String], default: 'auto' }),
44588
44766
  __metadata("design:type", Object)
44589
44767
  ], ZdFrame.prototype, "height", void 0);
44590
44768
  __decorate([
44591
- PropWatch({ type: [String, Number], default: 'none' }),
44769
+ PropWatch({ type: [Number, String], default: 'auto' }),
44770
+ __metadata("design:type", Object)
44771
+ ], ZdFrame.prototype, "minHeight", void 0);
44772
+ __decorate([
44773
+ PropWatch({ type: [Number, String], default: 'none' }),
44592
44774
  __metadata("design:type", Object)
44593
44775
  ], ZdFrame.prototype, "maxHeight", void 0);
44594
44776
  __decorate([
44595
- PropWatch({ type: [String, Number], default: 'none' }),
44777
+ PropWatch({ type: [Number, String], default: '100%' }),
44596
44778
  __metadata("design:type", Object)
44597
- ], ZdFrame.prototype, "minHeight", void 0);
44779
+ ], ZdFrame.prototype, "width", void 0);
44780
+ __decorate([
44781
+ PropWatch({ type: [Number, String], default: 'auto' }),
44782
+ __metadata("design:type", Object)
44783
+ ], ZdFrame.prototype, "minWidth", void 0);
44784
+ __decorate([
44785
+ PropWatch({ type: [Number, String], default: 'none' }),
44786
+ __metadata("design:type", Object)
44787
+ ], ZdFrame.prototype, "maxWidth", void 0);
44788
+ __decorate([
44789
+ PropWatch({ type: [Boolean, String], default: false }),
44790
+ __metadata("design:type", Object)
44791
+ ], ZdFrame.prototype, "fillHeight", void 0);
44598
44792
  ZdFrame = __decorate([
44599
44793
  vuePropertyDecorator.Component
44600
44794
  ], ZdFrame);
@@ -44624,8 +44818,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44624
44818
  {},
44625
44819
  {
44626
44820
  height: _vm.$formatSize(_vm.instance.height),
44627
- minHeight: _vm.$formatSize(_vm.instance.minHeight),
44821
+ width: _vm.$formatSize(_vm.instance.width),
44628
44822
  maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
44823
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
44824
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
44825
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
44629
44826
  },
44630
44827
  _vm.$styleObject(_vm.instance.cssStyle)
44631
44828
  ),
@@ -44655,7 +44852,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44655
44852
  /* style */
44656
44853
  const __vue_inject_styles__$12 = function (inject) {
44657
44854
  if (!inject) return
44658
- inject("data-v-2c5980a4_0", { source: ".zd-frame {\n height: inherit;\n width: inherit;\n}\n.zd-frame .v-progress-circular {\n left: 50%;\n transform: translateX(-50%);\n}", map: undefined, media: undefined });
44855
+ inject("data-v-1b1fa5e4_0", { source: ".zd-frame {\n height: inherit;\n width: inherit;\n}\n.zd-frame .v-progress-circular {\n margin: var(--spacing-4) auto;\n left: 50%;\n transform: translateX(-50%);\n}", map: undefined, media: undefined });
44659
44856
 
44660
44857
  };
44661
44858
  /* scoped */
@@ -44913,58 +45110,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44913
45110
  }, 0);
44914
45111
  }
44915
45112
  mounted() {
44916
- this.setHeight();
44917
45113
  if (this.instance.dragColumns) {
44918
45114
  this.initDragColumns();
44919
45115
  }
44920
45116
  this.setViewGetWidth();
44921
45117
  this.updateFixedColumnsAction();
44922
- }
44923
- setHeight() {
44924
- const { gridTopSlot, grid, gridFooter } = this.$refs;
44925
- const header = gridTopSlot === null || gridTopSlot === void 0 ? void 0 : gridTopSlot.$el;
44926
- const footer = gridFooter === null || gridFooter === void 0 ? void 0 : gridFooter.$el;
44927
- if (!grid)
44928
- return;
44929
- const padding = this.getParentsPadding(grid.$el);
44930
- const headerHeight = this.getElementFullHeight(header);
44931
- const footerHeight = this.getElementFullHeight(footer);
44932
45118
  if (this.instance.fillHeight) {
44933
- this.instance.height = `${window.innerHeight - padding}px`;
44934
- }
44935
- if (this.instance.height) {
44936
- if (typeof this.instance.height === 'string'
44937
- && this.instance.height.slice(-1) === '%') {
44938
- const totalHeight = window.innerHeight - (headerHeight + footerHeight + padding);
44939
- this.instance.height = (parseFloat(this.instance.height) / 100) * totalHeight;
44940
- }
44941
- else {
44942
- this.instance.height = parseFloat(this.instance.height)
44943
- - (headerHeight + footerHeight);
44944
- }
44945
- }
44946
- if (this.instance.maxHeight) {
44947
- const gridWrapper = grid.$el
44948
- .getElementsByClassName('v-data-table__wrapper');
44949
- if (gridWrapper.length) {
44950
- if (typeof this.instance.maxHeight === 'string'
44951
- && this.instance.maxHeight.slice(-1) === '%') {
44952
- const totalHeight = window.innerHeight - (headerHeight + footerHeight + padding);
44953
- const maxHeight = `${(parseFloat(this.instance.maxHeight) / 100) * totalHeight}px`;
44954
- gridWrapper[0].style.maxHeight = maxHeight;
44955
- }
44956
- else {
44957
- const maxHeight = `${parseFloat(this.instance.maxHeight)
44958
- - (headerHeight + footerHeight)}px`;
44959
- gridWrapper[0].style.maxHeight = maxHeight;
44960
- }
44961
- }
44962
- }
44963
- if (this.instance.gridHeight) {
44964
- grid.$el.style.height = this.$formatSize(this.instance.gridHeight);
44965
- }
44966
- if (this.instance.gridMaxHeight) {
44967
- grid.$el.style.maxHeight = this.$formatSize(this.instance.gridMaxHeight);
45119
+ setFillHeight(this.$el);
44968
45120
  }
44969
45121
  }
44970
45122
  setViewGetWidth() {
@@ -45319,13 +45471,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45319
45471
  }),
45320
45472
  __metadata("design:type", Array)
45321
45473
  ], ZdGrid.prototype, "errorSlot", void 0);
45322
- __decorate([
45323
- PropWatch({
45324
- type: [Boolean, String],
45325
- default: false,
45326
- }),
45327
- __metadata("design:type", Object)
45328
- ], ZdGrid.prototype, "fillHeight", void 0);
45329
45474
  __decorate([
45330
45475
  vuePropertyDecorator.Prop({
45331
45476
  type: Array,
@@ -45369,33 +45514,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45369
45514
  __metadata("design:type", String)
45370
45515
  ], ZdGrid.prototype, "headerCellTextColor", void 0);
45371
45516
  __decorate([
45372
- PropWatch({
45373
- type: [Number, String],
45374
- default: undefined,
45375
- }),
45517
+ PropWatch({ type: [Number, String], default: 'auto' }),
45376
45518
  __metadata("design:type", Object)
45377
45519
  ], ZdGrid.prototype, "height", void 0);
45378
45520
  __decorate([
45379
- PropWatch({
45380
- type: [Number, String],
45381
- default: undefined,
45382
- }),
45521
+ PropWatch({ type: [Number, String], default: 'auto' }),
45522
+ __metadata("design:type", Object)
45523
+ ], ZdGrid.prototype, "minHeight", void 0);
45524
+ __decorate([
45525
+ PropWatch({ type: [Number, String], default: 'none' }),
45383
45526
  __metadata("design:type", Object)
45384
45527
  ], ZdGrid.prototype, "maxHeight", void 0);
45385
45528
  __decorate([
45386
- PropWatch({
45387
- type: [Number, String],
45388
- default: undefined,
45389
- }),
45529
+ PropWatch({ type: [Number, String], default: '100%' }),
45390
45530
  __metadata("design:type", Object)
45391
- ], ZdGrid.prototype, "gridHeight", void 0);
45531
+ ], ZdGrid.prototype, "width", void 0);
45392
45532
  __decorate([
45393
- PropWatch({
45394
- type: [Number, String],
45395
- default: undefined,
45396
- }),
45533
+ PropWatch({ type: [Number, String], default: 'auto' }),
45534
+ __metadata("design:type", Object)
45535
+ ], ZdGrid.prototype, "minWidth", void 0);
45536
+ __decorate([
45537
+ PropWatch({ type: [Number, String], default: 'none' }),
45538
+ __metadata("design:type", Object)
45539
+ ], ZdGrid.prototype, "maxWidth", void 0);
45540
+ __decorate([
45541
+ PropWatch({ type: [Boolean, String], default: false }),
45397
45542
  __metadata("design:type", Object)
45398
- ], ZdGrid.prototype, "gridMaxHeight", void 0);
45543
+ ], ZdGrid.prototype, "fillHeight", void 0);
45399
45544
  __decorate([
45400
45545
  vuePropertyDecorator.Prop({
45401
45546
  type: [String, Function],
@@ -45536,14 +45681,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45536
45681
  class: [
45537
45682
  "zd-grid",
45538
45683
  _vm.instance.cssClass,
45539
- { "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
45540
45684
  { "zd-grid-loading": _vm.instance.datasource.loading },
45541
45685
  ],
45542
45686
  style: [
45543
45687
  _vm.cssColorVars,
45544
- _vm.instance.gridHeight
45545
- ? { height: _vm.$formatSize(_vm.instance.gridHeight) }
45546
- : {},
45688
+ {
45689
+ height: _vm.$formatSize(_vm.instance.height),
45690
+ width: _vm.$formatSize(_vm.instance.width),
45691
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
45692
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
45693
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
45694
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
45695
+ },
45547
45696
  _vm.$styleObject(_vm.instance.cssStyle),
45548
45697
  ],
45549
45698
  attrs: {
@@ -45556,7 +45705,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45556
45705
  "hide-default-footer": "",
45557
45706
  name: _vm.instance.name,
45558
45707
  headers: _vm.instance.columns,
45559
- height: _vm.instance.height,
45560
45708
  items: _vm.getData(),
45561
45709
  search: _vm.instance.datasource.search,
45562
45710
  dense: _vm.instance.dense,
@@ -46323,7 +46471,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46323
46471
  /* style */
46324
46472
  const __vue_inject_styles__$10 = function (inject) {
46325
46473
  if (!inject) return
46326
- inject("data-v-a61a1640_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.text-center .zd-table-header-cell {\n justify-content: center;\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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 td.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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 });
46474
+ inject("data-v-2c72ade1_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\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 flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\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.text-center .zd-table-header-cell {\n justify-content: center;\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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 td.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\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 });
46327
46475
 
46328
46476
  };
46329
46477
  /* scoped */
@@ -46559,14 +46707,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46559
46707
  class: [
46560
46708
  "zd-grid",
46561
46709
  _vm.instance.cssClass,
46562
- { "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
46563
46710
  { "zd-grid-loading": _vm.instance.datasource.loading },
46564
46711
  ],
46565
46712
  style: [
46566
46713
  _vm.cssColorVars,
46567
- _vm.instance.gridHeight
46568
- ? { height: _vm.$formatSize(_vm.instance.gridHeight) }
46569
- : {},
46714
+ {
46715
+ height: _vm.$formatSize(_vm.instance.height),
46716
+ width: _vm.$formatSize(_vm.instance.width),
46717
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
46718
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
46719
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
46720
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
46721
+ },
46570
46722
  _vm.$styleObject(_vm.instance.cssStyle),
46571
46723
  ],
46572
46724
  attrs: {
@@ -47197,6 +47349,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
47197
47349
  _vm.getWidthStyle,
47198
47350
  column: column,
47199
47351
  row: item,
47352
+ rowKey: _vm.rowKey(item),
47200
47353
  rowStyle: rowStyle,
47201
47354
  cellsApplied:
47202
47355
  cellsApplied,
@@ -47443,8 +47596,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
47443
47596
  /* style */
47444
47597
  const __vue_inject_styles__$$ = function (inject) {
47445
47598
  if (!inject) return
47446
- inject("data-v-262354c4_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.text-center .zd-table-header-cell {\n justify-content: center;\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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 td.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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 })
47447
- ,inject("data-v-262354c4_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 {\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:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text: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 });
47599
+ inject("data-v-09891360_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\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 flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\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.text-center .zd-table-header-cell {\n justify-content: center;\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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 td.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\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 })
47600
+ ,inject("data-v-09891360_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 {\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:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text: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 });
47448
47601
 
47449
47602
  };
47450
47603
  /* scoped */
@@ -48542,6 +48695,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48542
48695
  vuePropertyDecorator.Prop({ type: Object, required: true }),
48543
48696
  __metadata("design:type", Object)
48544
48697
  ], ZdGridCellEdit.prototype, "row", void 0);
48698
+ __decorate([
48699
+ vuePropertyDecorator.Prop({ type: [String, Number], required: true }),
48700
+ __metadata("design:type", Object)
48701
+ ], ZdGridCellEdit.prototype, "rowKey", void 0);
48545
48702
  __decorate([
48546
48703
  vuePropertyDecorator.Prop({ type: Function, required: true }),
48547
48704
  __metadata("design:type", Function)
@@ -48590,7 +48747,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48590
48747
  _c(
48591
48748
  _vm.column.componentProps.component,
48592
48749
  _vm._b(
48593
- { tag: "component" },
48750
+ { key: _vm.column.name + "-" + _vm.rowKey, tag: "component" },
48594
48751
  "component",
48595
48752
  _vm.getEditableComponent(_vm.column, _vm.row, _vm.cellProps),
48596
48753
  false
@@ -48606,7 +48763,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48606
48763
  /* style */
48607
48764
  const __vue_inject_styles__$T = function (inject) {
48608
48765
  if (!inject) return
48609
- inject("data-v-2a27d7cc_0", { source: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", map: undefined, media: undefined });
48766
+ inject("data-v-41954a8d_0", { source: "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", map: undefined, media: undefined });
48610
48767
 
48611
48768
  };
48612
48769
  /* scoped */
@@ -48986,6 +49143,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48986
49143
  super(...arguments);
48987
49144
  this.instanceType = common.Image;
48988
49145
  }
49146
+ mounted() {
49147
+ if (this.instance.fillHeight) {
49148
+ setFillHeight(this.$el);
49149
+ }
49150
+ }
48989
49151
  };
48990
49152
  __decorate([
48991
49153
  PropWatch({ type: String, default: '' }),
@@ -48999,10 +49161,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48999
49161
  PropWatch({ type: String, default: '' }),
49000
49162
  __metadata("design:type", String)
49001
49163
  ], ZdImage.prototype, "errorImageText", void 0);
49002
- __decorate([
49003
- PropWatch({ type: String, default: '' }),
49004
- __metadata("design:type", String)
49005
- ], ZdImage.prototype, "height", void 0);
49006
49164
  __decorate([
49007
49165
  PropWatch({ type: String, default: '' }),
49008
49166
  __metadata("design:type", String)
@@ -49012,9 +49170,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49012
49170
  __metadata("design:type", String)
49013
49171
  ], ZdImage.prototype, "src", void 0);
49014
49172
  __decorate([
49015
- PropWatch({ type: String, default: '' }),
49016
- __metadata("design:type", String)
49173
+ PropWatch({ type: [Number, String], default: 'auto' }),
49174
+ __metadata("design:type", Object)
49175
+ ], ZdImage.prototype, "height", void 0);
49176
+ __decorate([
49177
+ PropWatch({ type: [Number, String], default: 'auto' }),
49178
+ __metadata("design:type", Object)
49179
+ ], ZdImage.prototype, "minHeight", void 0);
49180
+ __decorate([
49181
+ PropWatch({ type: [Number, String], default: 'none' }),
49182
+ __metadata("design:type", Object)
49183
+ ], ZdImage.prototype, "maxHeight", void 0);
49184
+ __decorate([
49185
+ PropWatch({ type: [Number, String], default: 'auto' }),
49186
+ __metadata("design:type", Object)
49017
49187
  ], ZdImage.prototype, "width", void 0);
49188
+ __decorate([
49189
+ PropWatch({ type: [Number, String], default: 'auto' }),
49190
+ __metadata("design:type", Object)
49191
+ ], ZdImage.prototype, "minWidth", void 0);
49192
+ __decorate([
49193
+ PropWatch({ type: [Number, String], default: 'none' }),
49194
+ __metadata("design:type", Object)
49195
+ ], ZdImage.prototype, "maxWidth", void 0);
49196
+ __decorate([
49197
+ PropWatch({ type: [Boolean, String], default: false }),
49198
+ __metadata("design:type", Object)
49199
+ ], ZdImage.prototype, "fillHeight", void 0);
49018
49200
  ZdImage = __decorate([
49019
49201
  vuePropertyDecorator.Component
49020
49202
  ], ZdImage);
@@ -49040,7 +49222,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49040
49222
  },
49041
49223
  ],
49042
49224
  class: ["zd-image", _vm.instance.cssClass],
49043
- style: _vm.instance.cssStyle,
49225
+ style: Object.assign(
49226
+ {},
49227
+ {
49228
+ height: _vm.$formatSize(_vm.instance.height),
49229
+ width: _vm.$formatSize(_vm.instance.width),
49230
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
49231
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
49232
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
49233
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
49234
+ },
49235
+ _vm.$styleObject(_vm.instance.cssStyle)
49236
+ ),
49044
49237
  attrs: { id: _vm.instance.name, name: _vm.instance.name },
49045
49238
  },
49046
49239
  [
@@ -49060,7 +49253,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49060
49253
  {
49061
49254
  src: _vm.instance.errorImagePath,
49062
49255
  alt: _vm.instance.alt,
49063
- style: _vm.instance.getStyle(),
49064
49256
  },
49065
49257
  false
49066
49258
  )
@@ -49094,6 +49286,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49094
49286
  },
49095
49287
  ],
49096
49288
  staticClass: "zd-image-valid",
49289
+ style: { objectFit: _vm.instance.objectFit },
49097
49290
  on: {
49098
49291
  click: function ($event) {
49099
49292
  return _vm.click($event)
@@ -49116,7 +49309,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49116
49309
  {
49117
49310
  src: _vm.instance.src,
49118
49311
  alt: _vm.instance.alt,
49119
- style: _vm.instance.getStyle(),
49120
49312
  },
49121
49313
  false
49122
49314
  )
@@ -49132,7 +49324,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49132
49324
  /* style */
49133
49325
  const __vue_inject_styles__$Q = function (inject) {
49134
49326
  if (!inject) return
49135
- inject("data-v-6f1e1cb8_0", { source: ".zd-image {\n position: relative;\n}\n.zd-image img.zd-image-not-found {\n background-color: #f8f8f8;\n object-fit: scale-down !important;\n padding: 10px;\n}\n.zd-image .zd-image-error-text {\n position: absolute;\n bottom: var(--spacing-5);\n width: 100%;\n text-align: center;\n font-style: normal;\n font-size: 16px;\n line-height: var(--zd-font-title-size);\n color: var(--zd-font-color);\n}", map: undefined, media: undefined });
49327
+ inject("data-v-0b89e040_0", { source: ".zd-image {\n position: relative;\n display: inline-block;\n overflow: hidden;\n}\n.zd-image img {\n height: 100%;\n width: 100%;\n}\n.zd-image img.zd-image-not-found {\n background-color: #f8f8f8;\n object-fit: scale-down !important;\n padding: 10px;\n}\n.zd-image .zd-image-error-text {\n position: absolute;\n bottom: var(--spacing-5);\n width: 100%;\n text-align: center;\n font-style: normal;\n font-size: 16px;\n line-height: var(--zd-font-title-size);\n color: var(--zd-font-color);\n}", map: undefined, media: undefined });
49136
49328
 
49137
49329
  };
49138
49330
  /* scoped */
@@ -49317,6 +49509,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49317
49509
  super(...arguments);
49318
49510
  this.instanceType = common.IterableComponentRender;
49319
49511
  }
49512
+ mounted() {
49513
+ if (this.instance.fillHeight) {
49514
+ setFillHeight(this.$el);
49515
+ }
49516
+ }
49320
49517
  };
49321
49518
  __decorate([
49322
49519
  vuePropertyDecorator.Prop({
@@ -49381,26 +49578,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49381
49578
  __metadata("design:type", Array)
49382
49579
  ], ZdIterableComponentRender.prototype, "noResultSlot", void 0);
49383
49580
  __decorate([
49384
- PropWatch({
49385
- type: [Number, String],
49386
- default: 'auto',
49387
- }),
49581
+ PropWatch({ type: [Number, String], default: 'auto' }),
49388
49582
  __metadata("design:type", Object)
49389
49583
  ], ZdIterableComponentRender.prototype, "height", void 0);
49390
49584
  __decorate([
49391
- PropWatch({
49392
- type: [Number, String],
49393
- default: 'none',
49394
- }),
49585
+ PropWatch({ type: [Number, String], default: 'auto' }),
49586
+ __metadata("design:type", Object)
49587
+ ], ZdIterableComponentRender.prototype, "minHeight", void 0);
49588
+ __decorate([
49589
+ PropWatch({ type: [Number, String], default: 'none' }),
49395
49590
  __metadata("design:type", Object)
49396
49591
  ], ZdIterableComponentRender.prototype, "maxHeight", void 0);
49397
49592
  __decorate([
49398
- PropWatch({
49399
- type: [Number, String],
49400
- default: 'none',
49401
- }),
49593
+ PropWatch({ type: [Number, String], default: '100%' }),
49402
49594
  __metadata("design:type", Object)
49403
- ], ZdIterableComponentRender.prototype, "minHeight", void 0);
49595
+ ], ZdIterableComponentRender.prototype, "width", void 0);
49596
+ __decorate([
49597
+ PropWatch({ type: [Number, String], default: 'auto' }),
49598
+ __metadata("design:type", Object)
49599
+ ], ZdIterableComponentRender.prototype, "minWidth", void 0);
49600
+ __decorate([
49601
+ PropWatch({ type: [Number, String], default: 'none' }),
49602
+ __metadata("design:type", Object)
49603
+ ], ZdIterableComponentRender.prototype, "maxWidth", void 0);
49604
+ __decorate([
49605
+ PropWatch({ type: [Boolean, String], default: false }),
49606
+ __metadata("design:type", Object)
49607
+ ], ZdIterableComponentRender.prototype, "fillHeight", void 0);
49404
49608
  ZdIterableComponentRender = __decorate([
49405
49609
  vuePropertyDecorator.Component
49406
49610
  ], ZdIterableComponentRender);
@@ -49423,8 +49627,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49423
49627
  {},
49424
49628
  {
49425
49629
  height: _vm.$formatSize(_vm.instance.height),
49426
- minHeight: _vm.$formatSize(_vm.instance.minHeight),
49630
+ width: _vm.$formatSize(_vm.instance.width),
49427
49631
  maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
49632
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
49633
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
49634
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
49428
49635
  },
49429
49636
  _vm.$styleObject(_vm.instance.cssStyle)
49430
49637
  ),
@@ -49623,11 +49830,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49623
49830
  /* style */
49624
49831
  const __vue_inject_styles__$N = function (inject) {
49625
49832
  if (!inject) return
49626
- inject("data-v-4445014a_0", { source: ".zd-iterable-component-render[data-v-4445014a] {\n width: 100%;\n display: flex;\n flex-direction: column;\n}\n.zd-iterable-component-render .error--text[data-v-4445014a],\n.zd-iterable-component-render .no--data[data-v-4445014a] {\n text-align: center;\n width: 100%;\n font-size: 14px;\n}\n.zd-iterable-component-render .no--data[data-v-4445014a] {\n color: rgba(0, 0, 0, 0.38);\n}\n.zd-iterable-component-render .zd-iterable-toolbar[data-v-4445014a] {\n display: flex;\n justify-content: space-between;\n margin-bottom: 16px;\n align-items: center;\n width: 100%;\n}\n.zd-iterable-component-render .zd-iterable-content[data-v-4445014a] {\n overflow: auto;\n}\n.zd-iterable-component-render .zd-iterable-footer[data-v-4445014a] {\n padding: 5px 0;\n display: flex;\n width: 100%;\n}", map: undefined, media: undefined });
49833
+ inject("data-v-543a2c06_0", { source: ".zd-iterable-component-render[data-v-543a2c06] {\n width: 100%;\n display: flex;\n flex-direction: column;\n}\n.zd-iterable-component-render .error--text[data-v-543a2c06],\n.zd-iterable-component-render .no--data[data-v-543a2c06] {\n text-align: center;\n width: 100%;\n font-size: 14px;\n}\n.zd-iterable-component-render .no--data[data-v-543a2c06] {\n color: rgba(0, 0, 0, 0.38);\n}\n.zd-iterable-component-render .zd-iterable-toolbar[data-v-543a2c06] {\n display: flex;\n justify-content: space-between;\n margin-bottom: 16px;\n align-items: center;\n width: 100%;\n}\n.zd-iterable-component-render .zd-iterable-content[data-v-543a2c06] {\n overflow: auto;\n}\n.zd-iterable-component-render .zd-iterable-footer[data-v-543a2c06] {\n padding: 5px 0;\n display: flex;\n width: 100%;\n}", map: undefined, media: undefined });
49627
49834
 
49628
49835
  };
49629
49836
  /* scoped */
49630
- const __vue_scope_id__$N = "data-v-4445014a";
49837
+ const __vue_scope_id__$N = "data-v-543a2c06";
49631
49838
  /* module identifier */
49632
49839
  const __vue_module_identifier__$N = undefined;
49633
49840
  /* functional template */
@@ -50731,6 +50938,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
50731
50938
  super(...arguments);
50732
50939
  this.instanceType = common.List;
50733
50940
  }
50941
+ mounted() {
50942
+ if (this.instance.fillHeight) {
50943
+ setFillHeight(this.$el);
50944
+ }
50945
+ }
50734
50946
  isLastItem(index) {
50735
50947
  return index + 1 === this.instance.items.length;
50736
50948
  }
@@ -50771,14 +50983,30 @@ If you're seeing "$attrs is readonly", it's caused by this`);
50771
50983
  PropWatch({ type: [Number, String], default: 'auto' }),
50772
50984
  __metadata("design:type", Object)
50773
50985
  ], ZdList.prototype, "height", void 0);
50986
+ __decorate([
50987
+ PropWatch({ type: [Number, String], default: 'auto' }),
50988
+ __metadata("design:type", Object)
50989
+ ], ZdList.prototype, "minHeight", void 0);
50774
50990
  __decorate([
50775
50991
  PropWatch({ type: [Number, String], default: 'none' }),
50776
50992
  __metadata("design:type", Object)
50777
50993
  ], ZdList.prototype, "maxHeight", void 0);
50994
+ __decorate([
50995
+ PropWatch({ type: [Number, String], default: '100%' }),
50996
+ __metadata("design:type", Object)
50997
+ ], ZdList.prototype, "width", void 0);
50998
+ __decorate([
50999
+ PropWatch({ type: [Number, String], default: 'auto' }),
51000
+ __metadata("design:type", Object)
51001
+ ], ZdList.prototype, "minWidth", void 0);
50778
51002
  __decorate([
50779
51003
  PropWatch({ type: [Number, String], default: 'none' }),
50780
51004
  __metadata("design:type", Object)
50781
- ], ZdList.prototype, "minHeight", void 0);
51005
+ ], ZdList.prototype, "maxWidth", void 0);
51006
+ __decorate([
51007
+ PropWatch({ type: [Boolean, String], default: false }),
51008
+ __metadata("design:type", Object)
51009
+ ], ZdList.prototype, "fillHeight", void 0);
50782
51010
  __decorate([
50783
51011
  vuePropertyDecorator.Prop({ type: Array, default: () => ([]) }),
50784
51012
  __metadata("design:type", Array)
@@ -50824,6 +51052,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
50824
51052
  height: _vm.instance.height,
50825
51053
  minHeight: _vm.instance.minHeight,
50826
51054
  maxHeight: _vm.instance.maxHeight,
51055
+ width: _vm.instance.width,
51056
+ minWidth: _vm.instance.minWidth,
51057
+ maxWidth: _vm.instance.maxWidth,
50827
51058
  },
50828
51059
  },
50829
51060
  [
@@ -50864,7 +51095,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
50864
51095
  /* style */
50865
51096
  const __vue_inject_styles__$H = function (inject) {
50866
51097
  if (!inject) return
50867
- inject("data-v-3b2f260e_0", { source: ".zd-list.v-list--dense .zd-list-group.v-list-item--three-line {\n min-height: 76px;\n}\n.zd-list .v-list-item .v-list-item__icon {\n flex-direction: column;\n justify-content: center;\n align-self: center;\n height: auto;\n}\n.zd-list .v-list-item .v-list-item__icon.v-list-group__header__prepend-icon {\n margin: 4px 16px 4px 0;\n}\n.zd-list .v-list-item .v-list-item__icon.v-list-group__header__append-icon {\n margin: 4px 0 4px 16px;\n}\n.zd-list .zd-list-item-title {\n font-size: var(--zd-font-body4-size);\n font-weight: var(--zd-font-body4-weight);\n}\n.zd-list .zd-list-item-subtitle {\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n}", map: undefined, media: undefined });
51098
+ inject("data-v-46f30238_0", { source: ".zd-list {\n overflow: auto;\n}\n.zd-list.v-list--dense .zd-list-group.v-list-item--three-line {\n min-height: 76px;\n}\n.zd-list .v-list-item .v-list-item__icon {\n flex-direction: column;\n justify-content: center;\n align-self: center;\n height: auto;\n}\n.zd-list .v-list-item .v-list-item__icon.v-list-group__header__prepend-icon {\n margin: 4px 16px 4px 0;\n}\n.zd-list .v-list-item .v-list-item__icon.v-list-group__header__append-icon {\n margin: 4px 0 4px 16px;\n}\n.zd-list .zd-list-item-title {\n font-size: var(--zd-font-body4-size);\n font-weight: var(--zd-font-body4-weight);\n}\n.zd-list .zd-list-item-subtitle {\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n}", map: undefined, media: undefined });
50868
51099
 
50869
51100
  };
50870
51101
  /* scoped */
@@ -54004,6 +54235,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54004
54235
  super(...arguments);
54005
54236
  this.instanceType = common.Row;
54006
54237
  }
54238
+ mounted() {
54239
+ if (this.instance.fillHeight) {
54240
+ setFillHeight(this.$el);
54241
+ }
54242
+ }
54007
54243
  };
54008
54244
  __decorate([
54009
54245
  PropWatch({ type: String }),
@@ -54021,6 +54257,22 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54021
54257
  PropWatch({ type: [Boolean, String], default: false }),
54022
54258
  __metadata("design:type", Boolean)
54023
54259
  ], ZdRow.prototype, "noGutters", void 0);
54260
+ __decorate([
54261
+ PropWatch({ type: [Number, String], default: 'auto' }),
54262
+ __metadata("design:type", Object)
54263
+ ], ZdRow.prototype, "height", void 0);
54264
+ __decorate([
54265
+ PropWatch({ type: [Number, String], default: 'auto' }),
54266
+ __metadata("design:type", Object)
54267
+ ], ZdRow.prototype, "minHeight", void 0);
54268
+ __decorate([
54269
+ PropWatch({ type: [Number, String], default: 'none' }),
54270
+ __metadata("design:type", Object)
54271
+ ], ZdRow.prototype, "maxHeight", void 0);
54272
+ __decorate([
54273
+ PropWatch({ type: [Boolean, String], default: false }),
54274
+ __metadata("design:type", Object)
54275
+ ], ZdRow.prototype, "fillHeight", void 0);
54024
54276
  ZdRow = __decorate([
54025
54277
  vuePropertyDecorator.Component
54026
54278
  ], ZdRow);
@@ -54045,8 +54297,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54045
54297
  expression: "instance.isVisible",
54046
54298
  },
54047
54299
  ],
54048
- class: _vm.instance.cssClass,
54049
- style: _vm.instance.cssStyle,
54300
+ class: ["zd-row", _vm.instance.cssClass],
54301
+ style: Object.assign(
54302
+ {},
54303
+ {
54304
+ height: _vm.$formatSize(_vm.instance.height),
54305
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
54306
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
54307
+ },
54308
+ _vm.$styleObject(_vm.instance.cssStyle)
54309
+ ),
54050
54310
  attrs: {
54051
54311
  id: _vm.instance.name,
54052
54312
  name: _vm.instance.name,
@@ -54082,15 +54342,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54082
54342
  __vue_render__$n._withStripped = true;
54083
54343
 
54084
54344
  /* style */
54085
- const __vue_inject_styles__$n = undefined;
54345
+ const __vue_inject_styles__$n = function (inject) {
54346
+ if (!inject) return
54347
+ inject("data-v-e2373b1c_0", { source: ".zd-row.row {\n margin: 0 -12px;\n}\n.zd-row.row.row--dense {\n margin: 0 -4px;\n}", map: undefined, media: undefined });
54348
+
54349
+ };
54086
54350
  /* scoped */
54087
54351
  const __vue_scope_id__$n = undefined;
54088
54352
  /* module identifier */
54089
54353
  const __vue_module_identifier__$n = undefined;
54090
54354
  /* functional template */
54091
54355
  const __vue_is_functional_template__$n = false;
54092
- /* style inject */
54093
-
54094
54356
  /* style inject SSR */
54095
54357
 
54096
54358
  /* style inject shadow dom */
@@ -54105,7 +54367,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54105
54367
  __vue_is_functional_template__$n,
54106
54368
  __vue_module_identifier__$n,
54107
54369
  false,
54108
- undefined,
54370
+ createInjector,
54109
54371
  undefined,
54110
54372
  undefined
54111
54373
  );
@@ -54217,8 +54479,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54217
54479
  change() {
54218
54480
  this.instance.change(undefined, this.$el);
54219
54481
  }
54220
- };
54221
- __decorate([
54482
+ mounted() {
54483
+ if (this.instance.fillHeight) {
54484
+ setFillHeight(this.$el);
54485
+ }
54486
+ }
54487
+ };
54488
+ __decorate([
54222
54489
  PropWatch({ type: [String], default: '' }),
54223
54490
  __metadata("design:type", String)
54224
54491
  ], ZdSelectableList.prototype, "activeClass", void 0);
@@ -54238,6 +54505,34 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54238
54505
  PropWatch({ type: [Number, String], default: undefined }),
54239
54506
  __metadata("design:type", Object)
54240
54507
  ], ZdSelectableList.prototype, "value", void 0);
54508
+ __decorate([
54509
+ PropWatch({ type: [Number, String], default: 'auto' }),
54510
+ __metadata("design:type", Object)
54511
+ ], ZdSelectableList.prototype, "height", void 0);
54512
+ __decorate([
54513
+ PropWatch({ type: [Number, String], default: 'auto' }),
54514
+ __metadata("design:type", Object)
54515
+ ], ZdSelectableList.prototype, "minHeight", void 0);
54516
+ __decorate([
54517
+ PropWatch({ type: [Number, String], default: 'none' }),
54518
+ __metadata("design:type", Object)
54519
+ ], ZdSelectableList.prototype, "maxHeight", void 0);
54520
+ __decorate([
54521
+ PropWatch({ type: [Number, String], default: '100%' }),
54522
+ __metadata("design:type", Object)
54523
+ ], ZdSelectableList.prototype, "width", void 0);
54524
+ __decorate([
54525
+ PropWatch({ type: [Number, String], default: 'auto' }),
54526
+ __metadata("design:type", Object)
54527
+ ], ZdSelectableList.prototype, "minWidth", void 0);
54528
+ __decorate([
54529
+ PropWatch({ type: [Number, String], default: 'none' }),
54530
+ __metadata("design:type", Object)
54531
+ ], ZdSelectableList.prototype, "maxWidth", void 0);
54532
+ __decorate([
54533
+ PropWatch({ type: [Boolean, String], default: false }),
54534
+ __metadata("design:type", Object)
54535
+ ], ZdSelectableList.prototype, "fillHeight", void 0);
54241
54536
  ZdSelectableList = __decorate([
54242
54537
  vuePropertyDecorator.Component
54243
54538
  ], ZdSelectableList);
@@ -54263,7 +54558,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54263
54558
  },
54264
54559
  ],
54265
54560
  class: ["zd-selectable-list", _vm.instance.cssClass],
54266
- style: _vm.instance.cssStyle,
54561
+ style: Object.assign(
54562
+ {},
54563
+ {
54564
+ height: _vm.$formatSize(_vm.instance.height),
54565
+ width: _vm.$formatSize(_vm.instance.width),
54566
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
54567
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
54568
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
54569
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
54570
+ },
54571
+ _vm.$styleObject(_vm.instance.cssStyle)
54572
+ ),
54267
54573
  attrs: {
54268
54574
  activeClass: _vm.instance.activeClass,
54269
54575
  dark: _vm.instance.dark,
@@ -54296,9 +54602,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54296
54602
  elevation: _vm.instance.elevation,
54297
54603
  expand: _vm.instance.expand,
54298
54604
  tile: _vm.instance.tile,
54299
- height: _vm.instance.height,
54300
- minHeight: _vm.instance.minHeight,
54301
- maxHeight: _vm.instance.maxHeight,
54605
+ height: "100%",
54302
54606
  },
54303
54607
  },
54304
54608
  [
@@ -54342,7 +54646,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54342
54646
  /* style */
54343
54647
  const __vue_inject_styles__$l = function (inject) {
54344
54648
  if (!inject) return
54345
- inject("data-v-463a5f31_0", { source: ".zd-list.v-list--dense .zd-list-group.v-list-item--three-line {\n min-height: 76px;\n}\n.zd-list .v-list-item .v-list-item__icon {\n flex-direction: column;\n justify-content: center;\n align-self: center;\n height: auto;\n}\n.zd-list .v-list-item .v-list-item__icon.v-list-group__header__prepend-icon {\n margin: 4px 16px 4px 0;\n}\n.zd-list .v-list-item .v-list-item__icon.v-list-group__header__append-icon {\n margin: 4px 0 4px 16px;\n}\n.zd-list .zd-list-item-title {\n font-size: var(--zd-font-body4-size);\n font-weight: var(--zd-font-body4-weight);\n}\n.zd-list .zd-list-item-subtitle {\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n}", map: undefined, media: undefined });
54649
+ inject("data-v-9dbfb210_0", { source: ".zd-list {\n overflow: auto;\n}\n.zd-list.v-list--dense .zd-list-group.v-list-item--three-line {\n min-height: 76px;\n}\n.zd-list .v-list-item .v-list-item__icon {\n flex-direction: column;\n justify-content: center;\n align-self: center;\n height: auto;\n}\n.zd-list .v-list-item .v-list-item__icon.v-list-group__header__prepend-icon {\n margin: 4px 16px 4px 0;\n}\n.zd-list .v-list-item .v-list-item__icon.v-list-group__header__append-icon {\n margin: 4px 0 4px 16px;\n}\n.zd-list .zd-list-item-title {\n font-size: var(--zd-font-body4-size);\n font-weight: var(--zd-font-body4-weight);\n}\n.zd-list .zd-list-item-subtitle {\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n}", map: undefined, media: undefined });
54346
54650
 
54347
54651
  };
54348
54652
  /* scoped */
@@ -55460,7 +55764,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
55460
55764
  /* style */
55461
55765
  const __vue_inject_styles__$j = function (inject) {
55462
55766
  if (!inject) return
55463
- inject("data-v-073f22d6_0", { source: ".zd-select-tree-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.zd-select-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n margin-top: var(--spacing-1);\n}\n.zd-select-tree.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item {\n background: #555;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item, .zd-select-tree.theme--dark .vue-treeselect__multi-value-item .vue-treeselect__value-remove {\n color: #fff;\n}\n.zd-select-tree .vue-treeselect__control {\n border-radius: var(--border);\n height: 34px;\n}\n.zd-select-tree .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 32px;\n}\n.zd-select-tree .vue-treeselect__control-arrow-container svg {\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\n}\n.zd-select-tree .zd-select-tree-label {\n font-weight: var(--zd-font-body1-weight);\n pointer-events: none;\n line-height: 1rem;\n position: relative;\n top: -1px;\n}\n.zd-select-tree .zd-select-tree-label p {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-select-tree.zd-select-tree-disabled {\n opacity: 0.5;\n}\n.zd-select-tree .vue-treeselect__single-value, .zd-select-tree input {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n cursor: text;\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-label {\n color: var(--v-error-base) !important;\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-details {\n color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control {\n border-color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control-arrow-container svg, .zd-select-tree.zd-select-tree-error .vue-treeselect__x-container svg {\n color: var(--v-error-base);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-select-tree-error .zd-select-tree-append-outer-icon {\n color: var(--v-error-base);\n}\n.zd-select-tree .vue-treeselect--focused .vue-treeselect__control-arrow-container svg, .zd-select-tree .vue-treeselect--focused .vue-treeselect__x-container svg {\n color: var(--v-primary-base);\n}\n.zd-select-tree .zd-select-tree-details {\n min-height: 13px;\n font-size: 11px;\n display: flex;\n flex: 1 0 auto;\n max-width: 100%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.6);\n line-height: 1;\n position: relative;\n top: 1px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-details {\n min-height: 11px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control {\n height: 24px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 22px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense .zd-select-tree-append-outer-icon {\n margin-top: 20px;\n}\n.zd-select-tree.zd-dense.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 4px;\n}\n.zd-select-tree.zd-no-helper .zd-select-tree-details {\n display: none;\n}\n.zd-select-tree.zd-no-border .vue-treeselect__control {\n border: none !important;\n}\n.zd-select-tree .zd-select-tree-container {\n display: flex;\n position: relative;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon, .zd-select-tree .zd-select-tree-append-outer-icon {\n font-size: var(--icon-size-small);\n margin-top: 25px;\n height: 16px;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon {\n margin-right: 8px;\n}\n.zd-select-tree.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 10px;\n}\n.zd-select-tree .zd-select-tree-append-outer-icon {\n margin-left: 8px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__label {\n padding-left: 10px;\n}\n.vue-treeselect__menu-container .vue-treeselect__icon-warning {\n display: none;\n}\n.vue-treeselect__menu-container .vue-treeselect__option--disabled {\n opacity: 0.5;\n}\n.vue-treeselect__menu .vue-treeselect__list > * {\n color: var(--zd-font-color) !important;\n font-size: var(--zd-font-body1-size) !important;\n font-family: var(--font-family) !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option {\n display: flex !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option-arrow-container {\n display: flex !important;\n}\n.vue-treeselect__menu-container .vue-treeselect__option::before {\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 0;\n box-sizing: inherit;\n height: inherit;\n}\n.vue-treeselect__menu-container .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n background: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__label {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n font-family: var(--font-family);\n color: var(--zd-font-color);\n}\n.vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__label-container .vue-treeselect__label, .vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__option-arrow {\n color: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__option:not(.vue-treeselect__option--hide) {\n position: relative;\n display: flex;\n}\n.vue-treeselect__menu-container .vue-treeselect__option-arrow-container:not(.vue-treeselect__option--hide) {\n align-items: center;\n display: flex;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option::before {\n background-color: #000;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option:hover::before {\n opacity: 0.04;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.1;\n}\n.vue-treeselect__menu-container.theme--dark > div {\n background-color: #1e1e1e;\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__label {\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--highlight {\n background-color: transparent;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option::before {\n background-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option:hover::before {\n opacity: 0.08;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.2;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__checkbox:not(.vue-treeselect__checkbox--checked):not(.vue-treeselect__checkbox--indeterminate) {\n background-color: transparent;\n border-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--selected .vue-treeselect__count {\n opacity: 0.8;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__menu {\n border-color: #1e1e1e;\n}", map: undefined, media: undefined });
55767
+ inject("data-v-073f22d6_0", { source: ".zd-select-tree-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.zd-select-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n margin-top: var(--spacing-1);\n padding-bottom: 2px;\n}\n.zd-select-tree.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item {\n background: #555;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item, .zd-select-tree.theme--dark .vue-treeselect__multi-value-item .vue-treeselect__value-remove {\n color: #fff;\n}\n.zd-select-tree .vue-treeselect__control {\n border-radius: var(--border);\n height: 34px;\n}\n.zd-select-tree .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 32px;\n}\n.zd-select-tree .vue-treeselect__control-arrow-container svg {\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\n}\n.zd-select-tree .zd-select-tree-label {\n font-weight: var(--zd-font-body1-weight);\n pointer-events: none;\n line-height: 1rem;\n position: relative;\n top: -1px;\n}\n.zd-select-tree .zd-select-tree-label p {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-select-tree.zd-select-tree-disabled {\n opacity: 0.5;\n}\n.zd-select-tree .vue-treeselect__single-value, .zd-select-tree input {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n cursor: text;\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-label {\n color: var(--v-error-base) !important;\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-details {\n color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control {\n border-color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control-arrow-container svg, .zd-select-tree.zd-select-tree-error .vue-treeselect__x-container svg {\n color: var(--v-error-base);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-select-tree-error .zd-select-tree-append-outer-icon {\n color: var(--v-error-base);\n}\n.zd-select-tree .vue-treeselect--focused .vue-treeselect__control-arrow-container svg, .zd-select-tree .vue-treeselect--focused .vue-treeselect__x-container svg {\n color: var(--v-primary-base);\n}\n.zd-select-tree .zd-select-tree-details {\n min-height: 13px;\n font-size: 11px;\n display: flex;\n flex: 1 0 auto;\n max-width: 100%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.6);\n line-height: 1;\n position: relative;\n top: 1px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-details {\n min-height: 11px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control {\n height: 24px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 22px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense .zd-select-tree-append-outer-icon {\n margin-top: 20px;\n}\n.zd-select-tree.zd-dense.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 4px;\n}\n.zd-select-tree.zd-no-helper .zd-select-tree-details {\n display: none;\n}\n.zd-select-tree.zd-no-border .vue-treeselect__control {\n border: none !important;\n}\n.zd-select-tree .zd-select-tree-container {\n display: flex;\n position: relative;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon, .zd-select-tree .zd-select-tree-append-outer-icon {\n font-size: var(--icon-size-small);\n margin-top: 25px;\n height: 16px;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon {\n margin-right: 8px;\n}\n.zd-select-tree.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 10px;\n}\n.zd-select-tree .zd-select-tree-append-outer-icon {\n margin-left: 8px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__label {\n padding-left: 10px;\n}\n.vue-treeselect__menu-container .vue-treeselect__icon-warning {\n display: none;\n}\n.vue-treeselect__menu-container .vue-treeselect__option--disabled {\n opacity: 0.5;\n}\n.vue-treeselect__menu .vue-treeselect__list > * {\n color: var(--zd-font-color) !important;\n font-size: var(--zd-font-body1-size) !important;\n font-family: var(--font-family) !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option {\n display: flex !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option-arrow-container {\n display: flex !important;\n}\n.vue-treeselect__menu-container .vue-treeselect__option::before {\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 0;\n box-sizing: inherit;\n height: inherit;\n}\n.vue-treeselect__menu-container .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n background: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__label {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n font-family: var(--font-family);\n color: var(--zd-font-color);\n}\n.vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__label-container .vue-treeselect__label, .vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__option-arrow {\n color: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__option:not(.vue-treeselect__option--hide) {\n position: relative;\n display: flex;\n}\n.vue-treeselect__menu-container .vue-treeselect__option-arrow-container:not(.vue-treeselect__option--hide) {\n align-items: center;\n display: flex;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option::before {\n background-color: #000;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option:hover::before {\n opacity: 0.04;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.1;\n}\n.vue-treeselect__menu-container.theme--dark > div {\n background-color: #1e1e1e;\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__label {\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--highlight {\n background-color: transparent;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option::before {\n background-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option:hover::before {\n opacity: 0.08;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.2;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__checkbox:not(.vue-treeselect__checkbox--checked):not(.vue-treeselect__checkbox--indeterminate) {\n background-color: transparent;\n border-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--selected .vue-treeselect__count {\n opacity: 0.8;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__menu {\n border-color: #1e1e1e;\n}", map: undefined, media: undefined });
55464
55768
 
55465
55769
  };
55466
55770
  /* scoped */
@@ -55840,7 +56144,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
55840
56144
  /* style */
55841
56145
  const __vue_inject_styles__$i = function (inject) {
55842
56146
  if (!inject) return
55843
- inject("data-v-55d57032_0", { source: ".zd-select-tree-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.zd-select-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n margin-top: var(--spacing-1);\n}\n.zd-select-tree.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item {\n background: #555;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item, .zd-select-tree.theme--dark .vue-treeselect__multi-value-item .vue-treeselect__value-remove {\n color: #fff;\n}\n.zd-select-tree .vue-treeselect__control {\n border-radius: var(--border);\n height: 34px;\n}\n.zd-select-tree .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 32px;\n}\n.zd-select-tree .vue-treeselect__control-arrow-container svg {\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\n}\n.zd-select-tree .zd-select-tree-label {\n font-weight: var(--zd-font-body1-weight);\n pointer-events: none;\n line-height: 1rem;\n position: relative;\n top: -1px;\n}\n.zd-select-tree .zd-select-tree-label p {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-select-tree.zd-select-tree-disabled {\n opacity: 0.5;\n}\n.zd-select-tree .vue-treeselect__single-value, .zd-select-tree input {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n cursor: text;\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-label {\n color: var(--v-error-base) !important;\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-details {\n color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control {\n border-color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control-arrow-container svg, .zd-select-tree.zd-select-tree-error .vue-treeselect__x-container svg {\n color: var(--v-error-base);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-select-tree-error .zd-select-tree-append-outer-icon {\n color: var(--v-error-base);\n}\n.zd-select-tree .vue-treeselect--focused .vue-treeselect__control-arrow-container svg, .zd-select-tree .vue-treeselect--focused .vue-treeselect__x-container svg {\n color: var(--v-primary-base);\n}\n.zd-select-tree .zd-select-tree-details {\n min-height: 13px;\n font-size: 11px;\n display: flex;\n flex: 1 0 auto;\n max-width: 100%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.6);\n line-height: 1;\n position: relative;\n top: 1px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-details {\n min-height: 11px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control {\n height: 24px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 22px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense .zd-select-tree-append-outer-icon {\n margin-top: 20px;\n}\n.zd-select-tree.zd-dense.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 4px;\n}\n.zd-select-tree.zd-no-helper .zd-select-tree-details {\n display: none;\n}\n.zd-select-tree.zd-no-border .vue-treeselect__control {\n border: none !important;\n}\n.zd-select-tree .zd-select-tree-container {\n display: flex;\n position: relative;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon, .zd-select-tree .zd-select-tree-append-outer-icon {\n font-size: var(--icon-size-small);\n margin-top: 25px;\n height: 16px;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon {\n margin-right: 8px;\n}\n.zd-select-tree.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 10px;\n}\n.zd-select-tree .zd-select-tree-append-outer-icon {\n margin-left: 8px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__label {\n padding-left: 10px;\n}\n.vue-treeselect__menu-container .vue-treeselect__icon-warning {\n display: none;\n}\n.vue-treeselect__menu-container .vue-treeselect__option--disabled {\n opacity: 0.5;\n}\n.vue-treeselect__menu .vue-treeselect__list > * {\n color: var(--zd-font-color) !important;\n font-size: var(--zd-font-body1-size) !important;\n font-family: var(--font-family) !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option {\n display: flex !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option-arrow-container {\n display: flex !important;\n}\n.vue-treeselect__menu-container .vue-treeselect__option::before {\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 0;\n box-sizing: inherit;\n height: inherit;\n}\n.vue-treeselect__menu-container .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n background: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__label {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n font-family: var(--font-family);\n color: var(--zd-font-color);\n}\n.vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__label-container .vue-treeselect__label, .vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__option-arrow {\n color: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__option:not(.vue-treeselect__option--hide) {\n position: relative;\n display: flex;\n}\n.vue-treeselect__menu-container .vue-treeselect__option-arrow-container:not(.vue-treeselect__option--hide) {\n align-items: center;\n display: flex;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option::before {\n background-color: #000;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option:hover::before {\n opacity: 0.04;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.1;\n}\n.vue-treeselect__menu-container.theme--dark > div {\n background-color: #1e1e1e;\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__label {\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--highlight {\n background-color: transparent;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option::before {\n background-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option:hover::before {\n opacity: 0.08;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.2;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__checkbox:not(.vue-treeselect__checkbox--checked):not(.vue-treeselect__checkbox--indeterminate) {\n background-color: transparent;\n border-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--selected .vue-treeselect__count {\n opacity: 0.8;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__menu {\n border-color: #1e1e1e;\n}", map: undefined, media: undefined })
56147
+ inject("data-v-55d57032_0", { source: ".zd-select-tree-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.zd-select-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n margin-top: var(--spacing-1);\n padding-bottom: 2px;\n}\n.zd-select-tree.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item {\n background: #555;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item, .zd-select-tree.theme--dark .vue-treeselect__multi-value-item .vue-treeselect__value-remove {\n color: #fff;\n}\n.zd-select-tree .vue-treeselect__control {\n border-radius: var(--border);\n height: 34px;\n}\n.zd-select-tree .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 32px;\n}\n.zd-select-tree .vue-treeselect__control-arrow-container svg {\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\n}\n.zd-select-tree .zd-select-tree-label {\n font-weight: var(--zd-font-body1-weight);\n pointer-events: none;\n line-height: 1rem;\n position: relative;\n top: -1px;\n}\n.zd-select-tree .zd-select-tree-label p {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-select-tree.zd-select-tree-disabled {\n opacity: 0.5;\n}\n.zd-select-tree .vue-treeselect__single-value, .zd-select-tree input {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n cursor: text;\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-label {\n color: var(--v-error-base) !important;\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-details {\n color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control {\n border-color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control-arrow-container svg, .zd-select-tree.zd-select-tree-error .vue-treeselect__x-container svg {\n color: var(--v-error-base);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-select-tree-error .zd-select-tree-append-outer-icon {\n color: var(--v-error-base);\n}\n.zd-select-tree .vue-treeselect--focused .vue-treeselect__control-arrow-container svg, .zd-select-tree .vue-treeselect--focused .vue-treeselect__x-container svg {\n color: var(--v-primary-base);\n}\n.zd-select-tree .zd-select-tree-details {\n min-height: 13px;\n font-size: 11px;\n display: flex;\n flex: 1 0 auto;\n max-width: 100%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.6);\n line-height: 1;\n position: relative;\n top: 1px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-details {\n min-height: 11px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control {\n height: 24px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 22px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense .zd-select-tree-append-outer-icon {\n margin-top: 20px;\n}\n.zd-select-tree.zd-dense.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 4px;\n}\n.zd-select-tree.zd-no-helper .zd-select-tree-details {\n display: none;\n}\n.zd-select-tree.zd-no-border .vue-treeselect__control {\n border: none !important;\n}\n.zd-select-tree .zd-select-tree-container {\n display: flex;\n position: relative;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon, .zd-select-tree .zd-select-tree-append-outer-icon {\n font-size: var(--icon-size-small);\n margin-top: 25px;\n height: 16px;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon {\n margin-right: 8px;\n}\n.zd-select-tree.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 10px;\n}\n.zd-select-tree .zd-select-tree-append-outer-icon {\n margin-left: 8px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__label {\n padding-left: 10px;\n}\n.vue-treeselect__menu-container .vue-treeselect__icon-warning {\n display: none;\n}\n.vue-treeselect__menu-container .vue-treeselect__option--disabled {\n opacity: 0.5;\n}\n.vue-treeselect__menu .vue-treeselect__list > * {\n color: var(--zd-font-color) !important;\n font-size: var(--zd-font-body1-size) !important;\n font-family: var(--font-family) !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option {\n display: flex !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option-arrow-container {\n display: flex !important;\n}\n.vue-treeselect__menu-container .vue-treeselect__option::before {\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 0;\n box-sizing: inherit;\n height: inherit;\n}\n.vue-treeselect__menu-container .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n background: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__label {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n font-family: var(--font-family);\n color: var(--zd-font-color);\n}\n.vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__label-container .vue-treeselect__label, .vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__option-arrow {\n color: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__option:not(.vue-treeselect__option--hide) {\n position: relative;\n display: flex;\n}\n.vue-treeselect__menu-container .vue-treeselect__option-arrow-container:not(.vue-treeselect__option--hide) {\n align-items: center;\n display: flex;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option::before {\n background-color: #000;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option:hover::before {\n opacity: 0.04;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.1;\n}\n.vue-treeselect__menu-container.theme--dark > div {\n background-color: #1e1e1e;\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__label {\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--highlight {\n background-color: transparent;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option::before {\n background-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option:hover::before {\n opacity: 0.08;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.2;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__checkbox:not(.vue-treeselect__checkbox--checked):not(.vue-treeselect__checkbox--indeterminate) {\n background-color: transparent;\n border-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--selected .vue-treeselect__count {\n opacity: 0.8;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__menu {\n border-color: #1e1e1e;\n}", map: undefined, media: undefined })
55844
56148
  ,inject("data-v-55d57032_1", { source: ".zd-select-tree-multiple .vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 1px 0;\n line-height: 16px;\n}\n.zd-select-tree-multiple .vue-treeselect--multi .vue-treeselect__input {\n padding-top: 0;\n padding-bottom: 0;\n line-height: 15px;\n}\n.vue-treeselect__menu-container .select-all {\n height: 40px;\n min-height: 40px;\n padding-left: 26px;\n}\n.vue-treeselect__menu-container .select-all .v-icon.mdi-checkbox-marked {\n color: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .select-all .v-list-item__content {\n height: 40px;\n}\n.vue-treeselect__menu-container .select-all .v-list-item__action {\n margin: 0;\n}\n.vue-treeselect__menu-container .select-all .v-list-item__title {\n height: auto;\n padding-left: 4px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__limit-tip {\n padding-top: 0;\n}\n.vue-treeselect__limit-tip-text {\n padding: 0;\n margin: 0;\n}", map: undefined, media: undefined });
55845
56149
 
55846
56150
  };
@@ -56580,6 +56884,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56580
56884
  super(...arguments);
56581
56885
  this.instanceType = common.Table;
56582
56886
  }
56887
+ mounted() {
56888
+ if (this.instance.fillHeight) {
56889
+ setFillHeight(this.$el);
56890
+ }
56891
+ }
56583
56892
  };
56584
56893
  __decorate([
56585
56894
  vuePropertyDecorator.Prop({ type: Object, default: () => ({}) }),
@@ -56593,6 +56902,22 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56593
56902
  PropWatch({ type: [Boolean, String], default: true }),
56594
56903
  __metadata("design:type", Boolean)
56595
56904
  ], ZdTable.prototype, "showTableHead", void 0);
56905
+ __decorate([
56906
+ PropWatch({ type: [Number, String], default: 'auto' }),
56907
+ __metadata("design:type", Object)
56908
+ ], ZdTable.prototype, "height", void 0);
56909
+ __decorate([
56910
+ PropWatch({ type: [Number, String], default: 'auto' }),
56911
+ __metadata("design:type", Object)
56912
+ ], ZdTable.prototype, "minHeight", void 0);
56913
+ __decorate([
56914
+ PropWatch({ type: [Number, String], default: 'none' }),
56915
+ __metadata("design:type", Object)
56916
+ ], ZdTable.prototype, "maxHeight", void 0);
56917
+ __decorate([
56918
+ PropWatch({ type: [Boolean, String], default: false }),
56919
+ __metadata("design:type", Object)
56920
+ ], ZdTable.prototype, "fillHeight", void 0);
56596
56921
  ZdTable = __decorate([
56597
56922
  vuePropertyDecorator.Component
56598
56923
  ], ZdTable);
@@ -56607,106 +56932,126 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56607
56932
  var _h = _vm.$createElement;
56608
56933
  var _c = _vm._self._c || _h;
56609
56934
  return _c(
56610
- "table",
56935
+ "div",
56611
56936
  {
56612
- directives: [
56613
- {
56614
- name: "show",
56615
- rawName: "v-show",
56616
- value: _vm.instance.isVisible,
56617
- expression: "instance.isVisible",
56618
- },
56619
- ],
56620
- class: [
56621
- _vm.instance.cssClass,
56622
- "zd-table",
56623
- {
56624
- "zd-table-fill-width": _vm.instance.fillWidth,
56625
- },
56626
- ],
56627
- style: _vm.instance.cssStyle,
56628
- attrs: {
56629
- id: _vm.instance.name,
56630
- dark: _vm.instance.dark,
56631
- light: _vm.instance.light,
56937
+ staticClass: "zd-table-container",
56938
+ style: {
56939
+ height: _vm.$formatSize(_vm.instance.height),
56940
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
56941
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
56632
56942
  },
56633
56943
  },
56634
56944
  [
56635
- _vm.instance.caption.isVisible
56636
- ? _c(
56637
- "caption",
56945
+ _c(
56946
+ "table",
56947
+ {
56948
+ directives: [
56638
56949
  {
56639
- class: ["zd-table-caption", "text-" + _vm.instance.caption.align],
56950
+ name: "show",
56951
+ rawName: "v-show",
56952
+ value: _vm.instance.isVisible,
56953
+ expression: "instance.isVisible",
56640
56954
  },
56641
- [
56642
- _vm._v(
56643
- "\n " + _vm._s(_vm.$t(_vm.instance.caption.label)) + "\n "
56644
- ),
56645
- ]
56646
- )
56647
- : _vm._e(),
56648
- _vm._v(" "),
56649
- _vm.instance.showTableHead
56650
- ? _c("thead", [
56651
- _c(
56652
- "tr",
56653
- [
56654
- _vm._l(_vm.instance.columns, function (column, index) {
56655
- return [
56656
- column.isVisible
56657
- ? _c(
56658
- "th",
56659
- { key: index, class: ["text-" + column.align] },
56660
- [
56661
- _vm._v(
56662
- "\n " +
56663
- _vm._s(_vm.$t(column.label)) +
56664
- "\n "
56665
- ),
56666
- ]
56667
- )
56668
- : _vm._e(),
56669
- ]
56670
- }),
56671
- ],
56672
- 2
56673
- ),
56674
- ])
56675
- : _vm._e(),
56676
- _vm._v(" "),
56677
- _c(
56678
- "tbody",
56679
- _vm._l(_vm.instance.datasource.data, function (row) {
56680
- return _c(
56681
- "tr",
56682
- { key: row[_vm.instance.datasource.uniqueKey] },
56683
- [
56684
- _vm._l(_vm.instance.columns, function (column, index) {
56685
- return [
56686
- column.isVisible
56687
- ? _c("td", {
56688
- key: index,
56689
- class: ["text-" + column.align],
56690
- style:
56691
- "min-width: " +
56692
- column.minWidth +
56693
- "; max-width: " +
56694
- column.maxWidth +
56695
- ";",
56696
- domProps: {
56697
- innerHTML: _vm._s(
56698
- _vm.$sanitize(column.formatter(row[column.name]))
56699
- ),
56700
- },
56701
- })
56702
- : _vm._e(),
56955
+ ],
56956
+ class: [
56957
+ _vm.instance.cssClass,
56958
+ "zd-table",
56959
+ {
56960
+ "zd-table-fill-width": _vm.instance.fillWidth,
56961
+ },
56962
+ ],
56963
+ style: _vm.instance.cssStyle,
56964
+ attrs: {
56965
+ id: _vm.instance.name,
56966
+ dark: _vm.instance.dark,
56967
+ light: _vm.instance.light,
56968
+ },
56969
+ },
56970
+ [
56971
+ _vm.instance.caption.isVisible
56972
+ ? _c(
56973
+ "caption",
56974
+ {
56975
+ class: [
56976
+ "zd-table-caption",
56977
+ "text-" + _vm.instance.caption.align,
56978
+ ],
56979
+ },
56980
+ [
56981
+ _vm._v(
56982
+ "\n " +
56983
+ _vm._s(_vm.$t(_vm.instance.caption.label)) +
56984
+ "\n "
56985
+ ),
56703
56986
  ]
56704
- }),
56705
- ],
56706
- 2
56707
- )
56708
- }),
56709
- 0
56987
+ )
56988
+ : _vm._e(),
56989
+ _vm._v(" "),
56990
+ _vm.instance.showTableHead
56991
+ ? _c("thead", [
56992
+ _c(
56993
+ "tr",
56994
+ [
56995
+ _vm._l(_vm.instance.columns, function (column, index) {
56996
+ return [
56997
+ column.isVisible
56998
+ ? _c(
56999
+ "th",
57000
+ { key: index, class: ["text-" + column.align] },
57001
+ [
57002
+ _vm._v(
57003
+ "\n " +
57004
+ _vm._s(_vm.$t(column.label)) +
57005
+ "\n "
57006
+ ),
57007
+ ]
57008
+ )
57009
+ : _vm._e(),
57010
+ ]
57011
+ }),
57012
+ ],
57013
+ 2
57014
+ ),
57015
+ ])
57016
+ : _vm._e(),
57017
+ _vm._v(" "),
57018
+ _c(
57019
+ "tbody",
57020
+ _vm._l(_vm.instance.datasource.data, function (row) {
57021
+ return _c(
57022
+ "tr",
57023
+ { key: row[_vm.instance.datasource.uniqueKey] },
57024
+ [
57025
+ _vm._l(_vm.instance.columns, function (column, index) {
57026
+ return [
57027
+ column.isVisible
57028
+ ? _c("td", {
57029
+ key: index,
57030
+ class: ["text-" + column.align],
57031
+ style:
57032
+ "min-width: " +
57033
+ column.minWidth +
57034
+ "; max-width: " +
57035
+ column.maxWidth +
57036
+ ";",
57037
+ domProps: {
57038
+ innerHTML: _vm._s(
57039
+ _vm.$sanitize(
57040
+ column.formatter(row[column.name])
57041
+ )
57042
+ ),
57043
+ },
57044
+ })
57045
+ : _vm._e(),
57046
+ ]
57047
+ }),
57048
+ ],
57049
+ 2
57050
+ )
57051
+ }),
57052
+ 0
57053
+ ),
57054
+ ]
56710
57055
  ),
56711
57056
  ]
56712
57057
  )
@@ -56717,7 +57062,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56717
57062
  /* style */
56718
57063
  const __vue_inject_styles__$d = function (inject) {
56719
57064
  if (!inject) return
56720
- inject("data-v-08f22f82_0", { source: ".zd-table-fill-width {\n width: 100%;\n}\n.zd-table-caption {\n border: var(--regular) solid #dedede;\n border-bottom: 0;\n padding: 12px;\n}\ntable.zd-table, .zd-table tr, .zd-table td {\n border-collapse: collapse;\n}\ntable.zd-table, .zd-table tr, .zd-table td, .zd-table th {\n border: var(--regular) solid #dedede;\n padding: 12px;\n vertical-align: top;\n}", map: undefined, media: undefined });
57065
+ inject("data-v-2eb5aab8_0", { source: ".zd-table-container {\n overflow: auto;\n}\n.zd-table-fill-width {\n width: 100%;\n}\n.zd-table-caption {\n border: var(--regular) solid #dedede;\n border-bottom: 0;\n padding: 12px;\n}\ntable.zd-table, .zd-table tr, .zd-table td {\n border-collapse: collapse;\n}\ntable.zd-table, .zd-table tr, .zd-table td, .zd-table th {\n border: var(--regular) solid #dedede;\n padding: 12px;\n vertical-align: top;\n}", map: undefined, media: undefined });
56721
57066
 
56722
57067
  };
56723
57068
  /* scoped */
@@ -56762,15 +57107,32 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56762
57107
  clickTab(event, index) {
56763
57108
  this.instance.beforeChange(event, index, this.$el);
56764
57109
  }
57110
+ mounted() {
57111
+ if (this.instance.fillHeight) {
57112
+ setFillHeight(this.$el);
57113
+ }
57114
+ }
56765
57115
  };
56766
57116
  __decorate([
56767
57117
  PropWatch({ type: [Number, String], default: 0 }),
56768
57118
  __metadata("design:type", Number)
56769
57119
  ], ZdTabs.prototype, "activeTab", void 0);
56770
57120
  __decorate([
56771
- PropWatch({ type: [Number, String] }),
57121
+ PropWatch({ type: [Number, String], default: 'auto' }),
56772
57122
  __metadata("design:type", Object)
56773
57123
  ], ZdTabs.prototype, "height", void 0);
57124
+ __decorate([
57125
+ PropWatch({ type: [Number, String], default: 'auto' }),
57126
+ __metadata("design:type", Object)
57127
+ ], ZdTabs.prototype, "minHeight", void 0);
57128
+ __decorate([
57129
+ PropWatch({ type: [Number, String], default: 'none' }),
57130
+ __metadata("design:type", Object)
57131
+ ], ZdTabs.prototype, "maxHeight", void 0);
57132
+ __decorate([
57133
+ PropWatch({ type: [Boolean, String], default: false }),
57134
+ __metadata("design:type", Object)
57135
+ ], ZdTabs.prototype, "fillHeight", void 0);
56774
57136
  __decorate([
56775
57137
  vuePropertyDecorator.Prop({ type: Array, default: () => [] }),
56776
57138
  __metadata("design:type", Array)
@@ -56802,7 +57164,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56802
57164
  class: ["zd-tabs", _vm.instance.cssClass],
56803
57165
  style: Object.assign(
56804
57166
  {},
56805
- { height: _vm.$formatSize(_vm.instance.height) },
57167
+ {
57168
+ height: _vm.$formatSize(_vm.instance.height),
57169
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
57170
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
57171
+ },
56806
57172
  _vm.$styleObject(_vm.instance.cssStyle)
56807
57173
  ),
56808
57174
  attrs: { id: _vm.instance.name, name: _vm.instance.name },
@@ -56906,7 +57272,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56906
57272
  {
56907
57273
  index: index,
56908
57274
  children: tab.children,
56909
- flex: tab.flex,
56910
57275
  name: _vm.instance.name + "-tab-item-" + index,
56911
57276
  lazyLoad: tab.lazyLoad,
56912
57277
  },
@@ -56930,11 +57295,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56930
57295
  /* style */
56931
57296
  const __vue_inject_styles__$c = function (inject) {
56932
57297
  if (!inject) return
56933
- inject("data-v-0700f23a_0", { source: ".zd-tabs[data-v-0700f23a] {\n display: flex;\n flex-direction: column;\n}\n.zd-tabs[data-v-0700f23a] .v-tabs-bar,\n.zd-tabs[data-v-0700f23a] .v-tabs-items {\n background-color: transparent;\n}\n.zd-tabs[data-v-0700f23a] .v-tabs-bar {\n height: auto;\n}\n.zd-tabs[data-v-0700f23a] .v-tabs-bar .v-tabs-slider-wrapper {\n bottom: -1px;\n}\n.zd-tabs[data-v-0700f23a] .v-tabs-bar__content {\n border-bottom: solid 1px var(--v-grey-lighten4);\n}\n.zd-tabs[data-v-0700f23a] .v-tabs {\n margin-bottom: var(--spacing-4);\n}\n.zd-tabs[data-v-0700f23a] .v-tabs .v-slide-group__next,\n.zd-tabs[data-v-0700f23a] .v-tabs .v-slide-group__prev {\n flex-basis: 30px;\n min-width: 30px;\n}\n.zd-tabs[data-v-0700f23a] .v-tabs .v-slide-group__next .v-icon,\n.zd-tabs[data-v-0700f23a] .v-tabs .v-slide-group__prev .v-icon {\n font-size: 18px;\n}\n.zd-tabs[data-v-0700f23a] .v-tabs {\n flex-grow: 0;\n}\n.zd-tabs[data-v-0700f23a] .v-tabs-items {\n flex-grow: 1;\n}\n.zd-tabs[data-v-0700f23a] .v-tabs-items .v-window__container {\n height: 100% !important;\n}", map: undefined, media: undefined });
57298
+ inject("data-v-96a6dab6_0", { source: ".zd-tabs[data-v-96a6dab6] {\n display: flex;\n flex-direction: column;\n}\n.zd-tabs[data-v-96a6dab6] .v-tabs-bar,\n.zd-tabs[data-v-96a6dab6] .v-tabs-items {\n background-color: transparent;\n}\n.zd-tabs[data-v-96a6dab6] .v-tabs-bar {\n height: auto;\n}\n.zd-tabs[data-v-96a6dab6] .v-tabs-bar .v-tabs-slider-wrapper {\n bottom: -1px;\n}\n.zd-tabs[data-v-96a6dab6] .v-tabs-bar__content {\n border-bottom: solid 1px var(--v-grey-lighten4);\n}\n.zd-tabs[data-v-96a6dab6] .v-tabs {\n margin-bottom: var(--spacing-4);\n}\n.zd-tabs[data-v-96a6dab6] .v-tabs .v-slide-group__next,\n.zd-tabs[data-v-96a6dab6] .v-tabs .v-slide-group__prev {\n flex-basis: 30px;\n min-width: 30px;\n}\n.zd-tabs[data-v-96a6dab6] .v-tabs .v-slide-group__next .v-icon,\n.zd-tabs[data-v-96a6dab6] .v-tabs .v-slide-group__prev .v-icon {\n font-size: 18px;\n}\n.zd-tabs[data-v-96a6dab6] .v-tabs {\n flex-grow: 0;\n}\n.zd-tabs[data-v-96a6dab6] .v-tabs-items {\n flex-grow: 1;\n overflow-y: auto;\n}\n.zd-tabs[data-v-96a6dab6] .v-tabs-items .v-window__container {\n height: 100% !important;\n}", map: undefined, media: undefined });
56934
57299
 
56935
57300
  };
56936
57301
  /* scoped */
56937
- const __vue_scope_id__$c = "data-v-0700f23a";
57302
+ const __vue_scope_id__$c = "data-v-96a6dab6";
56938
57303
  /* module identifier */
56939
57304
  const __vue_module_identifier__$c = undefined;
56940
57305
  /* functional template */
@@ -56981,10 +57346,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56981
57346
  PropWatch({ type: String }),
56982
57347
  __metadata("design:type", String)
56983
57348
  ], ZdTab.prototype, "tabTitle", void 0);
56984
- __decorate([
56985
- PropWatch({ type: Boolean }),
56986
- __metadata("design:type", Boolean)
56987
- ], ZdTab.prototype, "flex", void 0);
56988
57349
  __decorate([
56989
57350
  PropWatch({ type: String }),
56990
57351
  __metadata("design:type", String)
@@ -57082,10 +57443,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
57082
57443
  PropWatch({ type: Number }),
57083
57444
  __metadata("design:type", Number)
57084
57445
  ], ZdTabItem.prototype, "index", void 0);
57085
- __decorate([
57086
- PropWatch({ type: Boolean }),
57087
- __metadata("design:type", Boolean)
57088
- ], ZdTabItem.prototype, "flex", void 0);
57089
57446
  __decorate([
57090
57447
  PropWatch({ type: Boolean }),
57091
57448
  __metadata("design:type", Boolean)
@@ -57127,12 +57484,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
57127
57484
  [
57128
57485
  _c(
57129
57486
  "v-container",
57130
- {
57131
- class: {
57132
- "zd-tabs-tab-item-container-flex": _vm.flex,
57133
- },
57134
- attrs: { fluid: "" },
57135
- },
57487
+ { attrs: { fluid: "" } },
57136
57488
  [
57137
57489
  _vm._l(_vm.children, function (child, index) {
57138
57490
  return _c(
@@ -57160,11 +57512,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
57160
57512
  /* style */
57161
57513
  const __vue_inject_styles__$a = function (inject) {
57162
57514
  if (!inject) return
57163
- inject("data-v-f6ae0120_0", { source: ".zd-tabs-tab-item[data-v-f6ae0120] {\n transition: none;\n}\n.zd-tabs-tab-item > .container[data-v-f6ae0120] {\n padding: 0;\n}\n.zd-tabs .zd-tabs-tab-item[data-v-f6ae0120] {\n height: 100%;\n}\n.zd-tabs .zd-tabs-tab-item .zd-tabs-tab-item-container-flex[data-v-f6ae0120] {\n display: flex;\n flex-direction: column;\n}\n.zd-tabs .zd-tabs-tab-item .container[data-v-f6ae0120] {\n height: 100%;\n}", map: undefined, media: undefined });
57515
+ inject("data-v-a94346d8_0", { source: ".zd-tabs-tab-item[data-v-a94346d8] {\n transition: none;\n}\n.zd-tabs-tab-item > .container[data-v-a94346d8] {\n padding: 0;\n}\n.zd-tabs .zd-tabs-tab-item[data-v-a94346d8] {\n height: 100%;\n}\n.zd-tabs .zd-tabs-tab-item .container[data-v-a94346d8] {\n height: 100%;\n}", map: undefined, media: undefined });
57164
57516
 
57165
57517
  };
57166
57518
  /* scoped */
57167
- const __vue_scope_id__$a = "data-v-f6ae0120";
57519
+ const __vue_scope_id__$a = "data-v-a94346d8";
57168
57520
  /* module identifier */
57169
57521
  const __vue_module_identifier__$a = undefined;
57170
57522
  /* functional template */
@@ -57454,16 +57806,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
57454
57806
  }
57455
57807
  mounted() {
57456
57808
  this.setPlaceholder('textarea');
57809
+ if (this.instance.fillHeight) {
57810
+ setFillHeight(this.$el);
57811
+ if (this.$el.parentElement && this.instance.cssClass.indexOf('zd-form-child') !== -1) {
57812
+ setFillHeight(this.$el.parentElement);
57813
+ }
57814
+ }
57457
57815
  }
57458
57816
  blur(event) {
57459
57817
  this.instance.blur(event, this.$el);
57460
57818
  this.setPlaceholder('textarea');
57461
57819
  }
57462
- get cssVars() {
57463
- return {
57464
- '--zd-textarea-height': this.instance.height,
57465
- };
57466
- }
57467
57820
  };
57468
57821
  __decorate([
57469
57822
  PropWatch({ type: [Boolean, String], default: false }),
@@ -57572,12 +57925,27 @@ If you're seeing "$attrs is readonly", it's caused by this`);
57572
57925
  !!_vm.instance.prependIcon && !_vm.instance.prefix,
57573
57926
  "v-textarea--no-resize": !_vm.instance.resize,
57574
57927
  "zd-input-required": _vm.instance.validations.required,
57575
- "fill-height": _vm.instance.fillHeight,
57576
57928
  },
57577
57929
  "zd-text-align-" +
57578
57930
  (_vm.instance.reverse ? "right" : _vm.instance.align),
57579
57931
  ],
57580
- style: Object.assign({}, _vm.instance.cssStyle, _vm.cssVars),
57932
+ style: Object.assign({}, _vm.instance.cssStyle, {
57933
+ height:
57934
+ _vm.instance.fillHeight ||
57935
+ _vm.instance.cssClass.indexOf("zd-form-child") !== -1
57936
+ ? undefined
57937
+ : _vm.$formatSize(_vm.instance.height),
57938
+ minHeight:
57939
+ _vm.instance.fillminHeight ||
57940
+ _vm.instance.cssClass.indexOf("zd-form-child") !== -1
57941
+ ? undefined
57942
+ : _vm.$formatSize(_vm.instance.minHeight),
57943
+ maxHeight:
57944
+ _vm.instance.fillmaxHeight ||
57945
+ _vm.instance.cssClass.indexOf("zd-form-child") !== -1
57946
+ ? undefined
57947
+ : _vm.$formatSize(_vm.instance.maxHeight),
57948
+ }),
57581
57949
  attrs: {
57582
57950
  id: _vm.instance.name,
57583
57951
  name: _vm.instance.name,
@@ -57671,7 +58039,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
57671
58039
  /* style */
57672
58040
  const __vue_inject_styles__$7 = function (inject) {
57673
58041
  if (!inject) return
57674
- inject("data-v-14e085b8_0", { source: ".v-input.zd-textarea > .v-input__control > .v-input__slot {\n height: auto;\n}\n.v-input.zd-textarea.fill-height {\n height: 100% !important;\n}\n.v-input.zd-textarea.fill-height .v-input__control, .v-input.zd-textarea.fill-height .v-input__slot, .v-input.zd-textarea.fill-height .v-text-field__slot {\n height: 100% !important;\n}\n.v-input.zd-textarea:not(.fill-height) {\n height: var(--zd-textarea-height) !important;\n}\n.v-input.zd-textarea:not(.fill-height) .v-input__control, .v-input.zd-textarea:not(.fill-height) .v-input__slot, .v-input.zd-textarea:not(.fill-height) .v-text-field__slot {\n height: var(--zd-textarea-height) !important;\n}\n.v-input.zd-textarea textarea {\n margin: var(--spacing-2);\n line-height: unset;\n}\n.v-input.zd-textarea.zd-text-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.v-input.zd-textarea.zd-text-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.v-input.zd-textarea.zd-text-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}\n.v-input.zd-textarea .v-input__append-inner, .v-input.zd-textarea .v-input__prepend-inner {\n align-self: flex-start;\n margin-top: var(--spacing-2);\n}\n.v-input.zd-textarea .v-input__append-inner .v-input__icon, .v-input.zd-textarea .v-input__prepend-inner .v-input__icon {\n height: var(--icon-size-small);\n width: var(--icon-size-small);\n min-width: var(--icon-size-small);\n}\n.v-input.zd-textarea .v-input__append-inner .v-input__icon .v-icon, .v-input.zd-textarea .v-input__prepend-inner .v-input__icon .v-icon {\n font-size: var(--icon-size-small);\n}\n.v-input.zd-textarea.zd-no-border:not(.error--text) .v-input__append-inner,\n.v-input.zd-textarea.zd-no-border:not(.error--text) .v-input__prepend-inner {\n margin-top: 0;\n}\n.v-input.zd-textarea.zd-no-border:not(.error--text) > .v-input__control > .v-input__slot textarea {\n margin-top: 0;\n margin-bottom: 0;\n}", map: undefined, media: undefined });
58042
+ inject("data-v-486fa668_0", { source: ".v-input.zd-textarea {\n height: 100%;\n}\n.v-input.zd-textarea > .v-input__control {\n height: 100%;\n}\n.v-input.zd-textarea > .v-input__control > .v-input__slot {\n height: auto;\n flex: 1 1 auto;\n}\n.v-input.zd-textarea > .v-input__control > .v-text-field__details {\n flex: 0 0 auto;\n}\n.v-input.zd-textarea textarea {\n margin: var(--spacing-2);\n line-height: unset;\n}\n.v-input.zd-textarea.zd-text-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.v-input.zd-textarea.zd-text-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.v-input.zd-textarea.zd-text-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}\n.v-input.zd-textarea .v-input__append-inner, .v-input.zd-textarea .v-input__prepend-inner {\n align-self: flex-start;\n margin-top: var(--spacing-2);\n}\n.v-input.zd-textarea .v-input__append-inner .v-input__icon, .v-input.zd-textarea .v-input__prepend-inner .v-input__icon {\n height: var(--icon-size-small);\n width: var(--icon-size-small);\n min-width: var(--icon-size-small);\n}\n.v-input.zd-textarea .v-input__append-inner .v-input__icon .v-icon, .v-input.zd-textarea .v-input__prepend-inner .v-input__icon .v-icon {\n font-size: var(--icon-size-small);\n}\n.v-input.zd-textarea.zd-no-border:not(.error--text) .v-input__append-inner,\n.v-input.zd-textarea.zd-no-border:not(.error--text) .v-input__prepend-inner {\n margin-top: 0;\n}\n.v-input.zd-textarea.zd-no-border:not(.error--text) > .v-input__control > .v-input__slot textarea {\n margin-top: 0;\n margin-bottom: 0;\n}", map: undefined, media: undefined });
57675
58043
 
57676
58044
  };
57677
58045
  /* scoped */
@@ -58461,6 +58829,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
58461
58829
  this.setAfterTitleMargin();
58462
58830
  this.nodeChange();
58463
58831
  this.$watch('$refs.tree.nodes', this.nodeChange, { deep: true });
58832
+ if (this.instance.fillHeight) {
58833
+ setFillHeight(this.$el);
58834
+ }
58464
58835
  }
58465
58836
  dataChange() {
58466
58837
  this.instance.createNodesFromDatasource();
@@ -58599,13 +58970,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
58599
58970
  __metadata("design:type", Boolean)
58600
58971
  ], ZdTree.prototype, "checkbox", void 0);
58601
58972
  __decorate([
58602
- vuePropertyDecorator.Prop({ type: [Number, String], default: '' }),
58973
+ PropWatch({ type: [Number, String], default: 'auto' }),
58974
+ __metadata("design:type", Object)
58975
+ ], ZdTree.prototype, "height", void 0);
58976
+ __decorate([
58977
+ PropWatch({ type: [Number, String], default: 'auto' }),
58978
+ __metadata("design:type", Object)
58979
+ ], ZdTree.prototype, "minHeight", void 0);
58980
+ __decorate([
58981
+ PropWatch({ type: [Number, String], default: 'none' }),
58603
58982
  __metadata("design:type", Object)
58604
58983
  ], ZdTree.prototype, "maxHeight", void 0);
58605
58984
  __decorate([
58606
- vuePropertyDecorator.Prop({ type: [Number, String], default: '' }),
58985
+ PropWatch({ type: [Number, String], default: '100%' }),
58986
+ __metadata("design:type", Object)
58987
+ ], ZdTree.prototype, "width", void 0);
58988
+ __decorate([
58989
+ PropWatch({ type: [Number, String], default: 'auto' }),
58607
58990
  __metadata("design:type", Object)
58608
- ], ZdTree.prototype, "height", void 0);
58991
+ ], ZdTree.prototype, "minWidth", void 0);
58992
+ __decorate([
58993
+ PropWatch({ type: [Number, String], default: 'none' }),
58994
+ __metadata("design:type", Object)
58995
+ ], ZdTree.prototype, "maxWidth", void 0);
58996
+ __decorate([
58997
+ PropWatch({ type: [Boolean, String], default: false }),
58998
+ __metadata("design:type", Object)
58999
+ ], ZdTree.prototype, "fillHeight", void 0);
58609
59000
  __decorate([
58610
59001
  vuePropertyDecorator.Prop({ type: [String, Number, Boolean], default: false }),
58611
59002
  __metadata("design:type", Object)
@@ -58651,19 +59042,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
58651
59042
  "zd-tree",
58652
59043
  { "theme--dark": _vm.$isDark(this) },
58653
59044
  { "theme--light": _vm.$isLight(this) },
58654
- { "zd-tree-flex": _vm.instance.height || _vm.instance.maxHeight },
58655
59045
  ],
58656
59046
  style: [_vm.cssColorVars].concat(
58657
59047
  _vm.$styleObject(_vm.instance.cssStyle),
58658
59048
  [
58659
- _vm.instance.height
58660
- ? { height: _vm.$formatSize(_vm.instance.height) }
58661
- : {},
58662
- ],
58663
- [
58664
- _vm.instance.maxHeight
58665
- ? { height: _vm.$formatSize(_vm.instance.maxHeight) }
58666
- : {},
59049
+ {
59050
+ height: _vm.$formatSize(_vm.instance.height),
59051
+ width: _vm.$formatSize(_vm.instance.width),
59052
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
59053
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
59054
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
59055
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
59056
+ },
58667
59057
  ]
58668
59058
  ),
58669
59059
  attrs: { id: _vm.instance.name },
@@ -58945,7 +59335,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
58945
59335
  /* style */
58946
59336
  const __vue_inject_styles__$2 = function (inject) {
58947
59337
  if (!inject) return
58948
- inject("data-v-61d810b1_0", { source: ".zd-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-weight: normal;\n}\n.zd-tree-toolbar {\n display: flex;\n}\n.zd-tree-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-tree-container {\n overflow: auto;\n}\n.zd-tree.theme--light .sl-vue-tree-title {\n color: var(--zd-font-color);\n}\n.zd-tree.theme--light .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #eee;\n}\n.zd-tree.theme--dark .sl-vue-tree-title {\n color: #fff;\n}\n.zd-tree.theme--dark .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #616161;\n}\n.zd-tree .sl-vue-tree-title {\n display: flex;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node {\n padding-top: 3px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item {\n height: 30px;\n line-height: 30px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item {\n background-color: var(--current-row-color);\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item .sl-vue-tree-toggle .v-icon {\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-toggle span .v-icon {\n margin: 0px 1px 0px 1px;\n padding-bottom: 1.4px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-gap {\n width: 32px;\n}\n.zd-tree .sl-vue-tree-nodes-list .item-title.has-children {\n font-weight: 700;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align {\n padding-left: 26px;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align.is-clickable {\n cursor: pointer;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align.v-icon {\n padding-left: 4px;\n}\n.zd-tree .sl-vue-tree-node-item .zd-tree-checkbox {\n padding: 0px 3px 3px 0px;\n}", map: undefined, media: undefined });
59338
+ inject("data-v-669fad04_0", { source: ".zd-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-weight: normal;\n overflow: auto;\n}\n.zd-tree-toolbar {\n display: flex;\n}\n.zd-tree.theme--light .sl-vue-tree-title {\n color: var(--zd-font-color);\n}\n.zd-tree.theme--light .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #eee;\n}\n.zd-tree.theme--dark .sl-vue-tree-title {\n color: #fff;\n}\n.zd-tree.theme--dark .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #616161;\n}\n.zd-tree .sl-vue-tree-title {\n display: flex;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node {\n padding-top: 3px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item {\n height: 30px;\n line-height: 30px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item {\n background-color: var(--current-row-color);\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item .sl-vue-tree-toggle .v-icon {\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-toggle span .v-icon {\n margin: 0px 1px 0px 1px;\n padding-bottom: 1.4px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-gap {\n width: 32px;\n}\n.zd-tree .sl-vue-tree-nodes-list .item-title.has-children {\n font-weight: 700;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align {\n padding-left: 26px;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align.is-clickable {\n cursor: pointer;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align.v-icon {\n padding-left: 4px;\n}\n.zd-tree .sl-vue-tree-node-item .zd-tree-checkbox {\n padding: 0px 3px 3px 0px;\n}", map: undefined, media: undefined });
58949
59339
 
58950
59340
  };
58951
59341
  /* scoped */
@@ -59115,16 +59505,20 @@ If you're seeing "$attrs is readonly", it's caused by this`);
59115
59505
  "zd-grid",
59116
59506
  "zd-tree-grid",
59117
59507
  _vm.instance.cssClass,
59118
- { "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
59119
59508
  { "theme--dark": _vm.$isDark(this) },
59120
59509
  { "theme--light": _vm.$isLight(this) },
59121
59510
  { "zd-grid-loading": _vm.instance.datasource.loading },
59122
59511
  ],
59123
59512
  style: [
59124
59513
  _vm.cssColorVars,
59125
- _vm.instance.gridHeight
59126
- ? { height: _vm.$formatSize(_vm.instance.gridHeight) }
59127
- : {},
59514
+ {
59515
+ height: _vm.$formatSize(_vm.instance.height),
59516
+ width: _vm.$formatSize(_vm.instance.width),
59517
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
59518
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
59519
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
59520
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
59521
+ },
59128
59522
  _vm.$styleObject(_vm.instance.cssStyle),
59129
59523
  ],
59130
59524
  attrs: {
@@ -60001,8 +60395,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
60001
60395
  /* style */
60002
60396
  const __vue_inject_styles__$1 = function (inject) {
60003
60397
  if (!inject) return
60004
- inject("data-v-10fca9ca_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.text-center .zd-table-header-cell {\n justify-content: center;\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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 td.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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 })
60005
- ,inject("data-v-10fca9ca_1", { source: ".zd-tree-grid .zd-table-cell-text-first {\n display: inline-flex;\n width: 100%;\n}\n.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 text-align: end;\n vertical-align: baseline;\n height: 10px;\n display: inline-block;\n}\n.zd-tree-grid .zd-tree-grid-expand-action {\n height: 100%;\n display: inline-grid;\n justify-content: end;\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 });
60398
+ inject("data-v-194f9d22_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\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 flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\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.text-center .zd-table-header-cell {\n justify-content: center;\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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 td.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\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 })
60399
+ ,inject("data-v-194f9d22_1", { source: ".zd-tree-grid .zd-table-cell-text-first {\n display: inline-flex;\n width: 100%;\n}\n.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 text-align: end;\n vertical-align: baseline;\n height: 10px;\n display: inline-block;\n}\n.zd-tree-grid .zd-tree-grid-expand-action {\n height: 100%;\n display: inline-grid;\n justify-content: end;\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 });
60006
60400
 
60007
60401
  };
60008
60402
  /* scoped */
@@ -60244,10 +60638,20 @@ If you're seeing "$attrs is readonly", it's caused by this`);
60244
60638
  "zd-tree-grid",
60245
60639
  "zd-tree-grid-editable",
60246
60640
  _vm.instance.cssClass,
60247
- { "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
60248
60641
  { "zd-grid-loading": _vm.instance.datasource.loading },
60249
60642
  ],
60250
- style: [_vm.cssColorVars, _vm.$styleObject(_vm.instance.cssStyle)],
60643
+ style: [
60644
+ _vm.cssColorVars,
60645
+ {
60646
+ height: _vm.$formatSize(_vm.instance.height),
60647
+ width: _vm.$formatSize(_vm.instance.width),
60648
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
60649
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
60650
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
60651
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
60652
+ },
60653
+ _vm.$styleObject(_vm.instance.cssStyle),
60654
+ ],
60251
60655
  attrs: {
60252
60656
  id: _vm.instance.name,
60253
60657
  "fixed-header": "",
@@ -60877,6 +61281,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
60877
61281
  column: column,
60878
61282
  row: item,
60879
61283
  rowStyle: rowStyle,
61284
+ rowKey:
61285
+ _vm.rowKey(item),
60880
61286
  cellsApplied:
60881
61287
  cellsApplied,
60882
61288
  isEdited:
@@ -61212,8 +61618,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
61212
61618
  /* style */
61213
61619
  const __vue_inject_styles__ = function (inject) {
61214
61620
  if (!inject) return
61215
- inject("data-v-f4dc69e2_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.text-center .zd-table-header-cell {\n justify-content: center;\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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 td.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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 })
61216
- ,inject("data-v-f4dc69e2_1", { source: ".zd-tree-grid-editable table tbody tr td.zd-table-cell .zd-table-cell-text-first {\n display: inline-flex;\n width: 100%;\n}\n.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-tree-grid-editable-cell-wrapper, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-tree-grid-editable-cell-wrapper {\n display: flex;\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 width: 100%;\n padding: 0 0.5rem;\n position: relative;\n display: block;\n height: 1.25rem;\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: 0;\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: 0;\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 {\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:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text: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: 23px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level2 {\n width: 46px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level3 {\n width: 69px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level4 {\n width: 92px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level5 {\n width: 115px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level6 {\n width: 138px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level7 {\n width: 161px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level8 {\n width: 184px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level9 {\n width: 207px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level10 {\n width: 230px;\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 });
61621
+ inject("data-v-114bb09f_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\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 flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\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.text-center .zd-table-header-cell {\n justify-content: center;\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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 td.zd-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\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: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\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 })
61622
+ ,inject("data-v-114bb09f_1", { source: ".zd-tree-grid-editable table tbody tr td.zd-table-cell .zd-table-cell-text-first {\n display: inline-flex;\n width: 100%;\n}\n.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-tree-grid-editable-cell-wrapper, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-tree-grid-editable-cell-wrapper {\n display: flex;\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 width: 100%;\n padding: 0 0.5rem;\n position: relative;\n display: block;\n height: 1.25rem;\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: 0;\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: 0;\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 {\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:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text: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: 23px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level2 {\n width: 46px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level3 {\n width: 69px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level4 {\n width: 92px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level5 {\n width: 115px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level6 {\n width: 138px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level7 {\n width: 161px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level8 {\n width: 184px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level9 {\n width: 207px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level10 {\n width: 230px;\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 });
61217
61623
 
61218
61624
  };
61219
61625
  /* scoped */
@@ -61801,6 +62207,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
61801
62207
  exports.ZdTreeGridEditable = script;
61802
62208
  exports.components = components;
61803
62209
  exports["default"] = Zeedhi;
62210
+ exports.setFillHeight = setFillHeight;
61804
62211
 
61805
62212
  Object.defineProperty(exports, '__esModule', { value: true });
61806
62213