@zeedhi/vuetify 1.73.0 → 1.75.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 (29) hide show
  1. package/dist/zd-vuetify.esm.js +875 -447
  2. package/dist/zd-vuetify.umd.js +875 -446
  3. package/package.json +26 -26
  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-text-input/ZdTextInput.d.ts +1 -0
  26. package/types/components/zd-textarea/ZdTextarea.d.ts +0 -3
  27. package/types/components/zd-tree/ZdTree.d.ts +7 -2
  28. package/types/components/zd-tree-grid/ZdTreeGridEditable.d.ts +1 -0
  29. package/types/index.d.ts +1 -0
@@ -159,7 +159,7 @@
159
159
 
160
160
  beforeCreate() {
161
161
  if (!this.$vuetify || this.$vuetify === this.$root) {
162
- throw new Error('Vuetify is not properly initialized, see https://vuetifyjs.com/getting-started/quick-start#bootstrapping-the-vuetify-object');
162
+ throw new Error('Vuetify is not properly initialized, see https://v2.vuetifyjs.com/getting-started/quick-start#bootstrapping-the-vuetify-object');
163
163
  }
164
164
  },
165
165
 
@@ -2212,7 +2212,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
2212
2212
  }
2213
2213
  Vuetify.install = install$1;
2214
2214
  Vuetify.installed = false;
2215
- Vuetify.version = "2.6.14";
2215
+ Vuetify.version = "2.6.15";
2216
2216
  Vuetify.config = {
2217
2217
  silent: false
2218
2218
  };
@@ -8397,9 +8397,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
8397
8397
  const {
8398
8398
  children,
8399
8399
  listeners,
8400
- props
8400
+ props,
8401
+ data
8401
8402
  } = ctx;
8402
- const data = {
8403
+ const newData = mergeData({
8403
8404
  staticClass: 'v-label',
8404
8405
  class: {
8405
8406
  'v-label--active': props.value,
@@ -8417,8 +8418,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
8417
8418
  position: props.absolute ? 'absolute' : 'relative'
8418
8419
  },
8419
8420
  ref: 'label'
8420
- };
8421
- return h('label', Colorable.options.methods.setTextColor(props.focused && props.color, data), children);
8421
+ }, data);
8422
+ return h('label', Colorable.options.methods.setTextColor(props.focused && props.color, newData), children);
8422
8423
  }
8423
8424
 
8424
8425
  });
@@ -10447,7 +10448,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
10447
10448
  },
10448
10449
 
10449
10450
  onKeyPress(e) {
10450
- if (this.multiple || !this.isInteractive || this.disableLookup) return;
10451
+ if (this.multiple || !this.isInteractive || this.disableLookup || e.key.length > 1 || e.ctrlKey || e.metaKey || e.altKey) return;
10451
10452
  const KEYBOARD_LOOKUP_THRESHOLD = 1000; // milliseconds
10452
10453
 
10453
10454
  const now = performance.now();
@@ -19547,13 +19548,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
19547
19548
 
19548
19549
  methods: {
19549
19550
  onKeyDown(e) {
19550
- if (e.keyCode !== keyCodes.shift) return;
19551
- this.shiftKeyDown = true;
19551
+ this.shiftKeyDown = e.keyCode === keyCodes.shift || e.shiftKey;
19552
19552
  },
19553
19553
 
19554
19554
  onKeyUp(e) {
19555
- if (e.keyCode !== keyCodes.shift) return;
19556
- this.shiftKeyDown = false;
19555
+ if (e.keyCode === keyCodes.shift || !e.shiftKey) {
19556
+ this.shiftKeyDown = false;
19557
+ }
19557
19558
  },
19558
19559
 
19559
19560
  toggleSelectAll(value) {
@@ -36838,7 +36839,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
36838
36839
  exports.default = Vuetify;
36839
36840
  Vuetify.install = install_1.install;
36840
36841
  Vuetify.installed = false;
36841
- Vuetify.version = "2.6.14";
36842
+ Vuetify.version = "2.6.15";
36842
36843
  Vuetify.config = {
36843
36844
  silent: false
36844
36845
  };
@@ -37787,6 +37788,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
37787
37788
  vuePropertyDecorator.Prop({ type: String, required: true }),
37788
37789
  __metadata("design:type", String)
37789
37790
  ], ZdComponent.prototype, "name", void 0);
37791
+ __decorate([
37792
+ PropWatch({ type: [Boolean, String], default: false }),
37793
+ __metadata("design:type", Object)
37794
+ ], ZdComponent.prototype, "allowDuplicate", void 0);
37790
37795
  __decorate([
37791
37796
  PropWatch({ type: [Boolean, String], default: false }),
37792
37797
  __metadata("design:type", Object)
@@ -38158,6 +38163,23 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38158
38163
  }
38159
38164
  IconRenderer.icons = {};
38160
38165
 
38166
+ function setFillHeight(element) {
38167
+ const parent = element.parentElement;
38168
+ if (parent) {
38169
+ parent.style.display = 'flex';
38170
+ parent.style.flexFlow = 'column';
38171
+ Array.from(parent.children).forEach((child) => {
38172
+ if (child === element) {
38173
+ child.style.flex = '1 1 auto';
38174
+ child.style.overflowY = 'auto';
38175
+ }
38176
+ else {
38177
+ child.style.flex = '0 0 auto';
38178
+ }
38179
+ });
38180
+ }
38181
+ }
38182
+
38161
38183
  /**
38162
38184
  * ApexChart component
38163
38185
  */
@@ -38171,6 +38193,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38171
38193
  const updateFn = (options) => this.$refs.instance.chart.updateOptions(options, false, true, true, true);
38172
38194
  this.instance.setViewUpdate(updateFn);
38173
38195
  this.instance.setViewGetIconHTML((icon) => IconRenderer.getIcon(icon, this.$root.$options.vuetify));
38196
+ if (this.instance.fillHeight) {
38197
+ setFillHeight(this.$el);
38198
+ }
38174
38199
  }
38175
38200
  setApexChartTheme() {
38176
38201
  let theme = '';
@@ -38193,9 +38218,21 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38193
38218
  __metadata("design:type", String)
38194
38219
  ], ZdApexChart.prototype, "chartType", void 0);
38195
38220
  __decorate([
38196
- PropWatch({ type: [Number, String], default: 'auto' }),
38221
+ PropWatch({ type: [Number, String], default: '100%' }),
38197
38222
  __metadata("design:type", Object)
38198
38223
  ], ZdApexChart.prototype, "height", void 0);
38224
+ __decorate([
38225
+ PropWatch({ type: [Number, String], default: 'auto' }),
38226
+ __metadata("design:type", Object)
38227
+ ], ZdApexChart.prototype, "minHeight", void 0);
38228
+ __decorate([
38229
+ PropWatch({ type: [Number, String], default: 'none' }),
38230
+ __metadata("design:type", Object)
38231
+ ], ZdApexChart.prototype, "maxHeight", void 0);
38232
+ __decorate([
38233
+ PropWatch({ type: [Boolean, String], default: false }),
38234
+ __metadata("design:type", Object)
38235
+ ], ZdApexChart.prototype, "fillHeight", void 0);
38199
38236
  __decorate([
38200
38237
  vuePropertyDecorator.Prop({ type: [Object, String], default: () => ({}) }),
38201
38238
  __metadata("design:type", Object)
@@ -38208,6 +38245,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38208
38245
  PropWatch({ type: [Number, String], default: '100%' }),
38209
38246
  __metadata("design:type", Object)
38210
38247
  ], ZdApexChart.prototype, "width", void 0);
38248
+ __decorate([
38249
+ PropWatch({ type: [Number, String], default: 'auto' }),
38250
+ __metadata("design:type", Object)
38251
+ ], ZdApexChart.prototype, "minWidth", void 0);
38252
+ __decorate([
38253
+ PropWatch({ type: [Number, String], default: 'none' }),
38254
+ __metadata("design:type", Object)
38255
+ ], ZdApexChart.prototype, "maxWidth", void 0);
38211
38256
  __decorate([
38212
38257
  PropWatch({ type: [Boolean, String], default: false }),
38213
38258
  __metadata("design:type", Boolean)
@@ -38235,7 +38280,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38235
38280
  var _c = _vm._self._c || _h;
38236
38281
  return _c(
38237
38282
  "div",
38238
- { staticClass: "apexcharts-container", attrs: { id: _vm.instance.name } },
38283
+ {
38284
+ staticClass: "apexcharts-container",
38285
+ style: {
38286
+ height: _vm.$formatSize(_vm.instance.height),
38287
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
38288
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
38289
+ width: _vm.$formatSize(_vm.instance.width),
38290
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
38291
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
38292
+ },
38293
+ attrs: { id: _vm.instance.name },
38294
+ },
38239
38295
  [
38240
38296
  _c("apexchart", {
38241
38297
  directives: [
@@ -38258,9 +38314,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38258
38314
  type: _vm.instance.chartType,
38259
38315
  options: _vm.instance.options,
38260
38316
  series: _vm.instance.series,
38261
- height: _vm.instance.height,
38317
+ height: "100%",
38262
38318
  name: _vm.instance.name,
38263
- width: _vm.instance.width,
38319
+ width: "100%",
38264
38320
  dark: _vm.instance.dark,
38265
38321
  light: _vm.instance.light,
38266
38322
  },
@@ -38298,7 +38354,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
38298
38354
  /* style */
38299
38355
  const __vue_inject_styles__$1s = function (inject) {
38300
38356
  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 });
38357
+ 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
38358
 
38303
38359
  };
38304
38360
  /* scoped */
@@ -39011,6 +39067,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39011
39067
  super(...arguments);
39012
39068
  this.instanceType = common.Card;
39013
39069
  }
39070
+ mounted() {
39071
+ if (this.instance.fillHeight) {
39072
+ setFillHeight(this.$el);
39073
+ }
39074
+ }
39014
39075
  };
39015
39076
  __decorate([
39016
39077
  PropWatch({ type: String, default: '' }),
@@ -39036,10 +39097,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39036
39097
  PropWatch({ type: [Boolean, String], default: false }),
39037
39098
  __metadata("design:type", Boolean)
39038
39099
  ], ZdCard.prototype, "flat", void 0);
39039
- __decorate([
39040
- PropWatch({ type: [Number, String] }),
39041
- __metadata("design:type", Object)
39042
- ], ZdCard.prototype, "height", void 0);
39043
39100
  __decorate([
39044
39101
  PropWatch({ type: [Boolean, String], default: false }),
39045
39102
  __metadata("design:type", Boolean)
@@ -39059,19 +39116,31 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39059
39116
  __decorate([
39060
39117
  PropWatch({ type: [Number, String] }),
39061
39118
  __metadata("design:type", Object)
39062
- ], ZdCard.prototype, "maxHeight", void 0);
39119
+ ], ZdCard.prototype, "height", void 0);
39063
39120
  __decorate([
39064
- PropWatch({ type: [Number, String] }),
39121
+ PropWatch({ type: [Number, String], default: 'auto' }),
39065
39122
  __metadata("design:type", Object)
39066
- ], ZdCard.prototype, "maxWidth", void 0);
39123
+ ], ZdCard.prototype, "minHeight", void 0);
39067
39124
  __decorate([
39068
- PropWatch({ type: [Number, String] }),
39125
+ PropWatch({ type: [Number, String], default: 'none' }),
39069
39126
  __metadata("design:type", Object)
39070
- ], ZdCard.prototype, "minHeight", void 0);
39127
+ ], ZdCard.prototype, "maxHeight", void 0);
39071
39128
  __decorate([
39072
39129
  PropWatch({ type: [Number, String] }),
39073
39130
  __metadata("design:type", Object)
39131
+ ], ZdCard.prototype, "width", void 0);
39132
+ __decorate([
39133
+ PropWatch({ type: [Number, String], default: 'auto' }),
39134
+ __metadata("design:type", Object)
39074
39135
  ], ZdCard.prototype, "minWidth", void 0);
39136
+ __decorate([
39137
+ PropWatch({ type: [Number, String], default: 'none' }),
39138
+ __metadata("design:type", Object)
39139
+ ], ZdCard.prototype, "maxWidth", void 0);
39140
+ __decorate([
39141
+ PropWatch({ type: [Boolean, String], default: false }),
39142
+ __metadata("design:type", Object)
39143
+ ], ZdCard.prototype, "fillHeight", void 0);
39075
39144
  __decorate([
39076
39145
  PropWatch({ type: [Boolean, String], default: false }),
39077
39146
  __metadata("design:type", Boolean)
@@ -39092,10 +39161,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39092
39161
  PropWatch({ type: String, default: '' }),
39093
39162
  __metadata("design:type", String)
39094
39163
  ], ZdCard.prototype, "to", void 0);
39095
- __decorate([
39096
- PropWatch({ type: [Number, String] }),
39097
- __metadata("design:type", Object)
39098
- ], ZdCard.prototype, "width", void 0);
39099
39164
  ZdCard = __decorate([
39100
39165
  vuePropertyDecorator.Component
39101
39166
  ], ZdCard);
@@ -39243,6 +39308,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39243
39308
  }, 200);
39244
39309
  }
39245
39310
  core.Metadata.setEnabledConsole(true);
39311
+ if (this.instance.fillHeight) {
39312
+ setFillHeight(this.$el);
39313
+ }
39246
39314
  }
39247
39315
  get paginationMode() {
39248
39316
  return this.instance.fractionPagination ? 'fraction' : undefined;
@@ -39334,9 +39402,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39334
39402
  __metadata("design:type", Object)
39335
39403
  ], ZdCarousel.prototype, "maxHeight", void 0);
39336
39404
  __decorate([
39337
- PropWatch({ type: [Number, String], default: 'none' }),
39405
+ PropWatch({ type: [Number, String], default: 'auto' }),
39338
39406
  __metadata("design:type", Object)
39339
39407
  ], ZdCarousel.prototype, "minHeight", void 0);
39408
+ __decorate([
39409
+ PropWatch({ type: [Boolean, String], default: false }),
39410
+ __metadata("design:type", Object)
39411
+ ], ZdCarousel.prototype, "fillHeight", void 0);
39340
39412
  __decorate([
39341
39413
  PropWatch({ type: [Boolean, String], default: true }),
39342
39414
  __metadata("design:type", Boolean)
@@ -39481,7 +39553,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39481
39553
  _vm.instance.buttonsOutside && _vm.instance.showArrows,
39482
39554
  },
39483
39555
  ],
39484
- style: _vm.instance.cssStyle,
39556
+ style: Object.assign(
39557
+ {},
39558
+ {
39559
+ height: _vm.$formatSize(_vm.instance.height),
39560
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
39561
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
39562
+ },
39563
+ _vm.$styleObject(_vm.instance.cssStyle)
39564
+ ),
39485
39565
  attrs: { id: _vm.instance.name },
39486
39566
  on: {
39487
39567
  click: function ($event) {
@@ -39504,9 +39584,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39504
39584
  key: _vm.hooperKey,
39505
39585
  ref: "carousel",
39506
39586
  style: {
39507
- height: _vm.$formatSize(_vm.instance.height),
39508
- maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
39509
- minHeight: _vm.$formatSize(_vm.instance.minHeight),
39587
+ height: "100%",
39510
39588
  },
39511
39589
  attrs: {
39512
39590
  autoPlay: _vm.instance.autoPlay,
@@ -39768,7 +39846,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
39768
39846
  /* style */
39769
39847
  const __vue_inject_styles__$1m = function (inject) {
39770
39848
  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 });
39849
+ 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
39850
 
39773
39851
  };
39774
39852
  /* scoped */
@@ -40514,6 +40592,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40514
40592
  created() {
40515
40593
  this.instance.setViewHighlight(this.highlight);
40516
40594
  }
40595
+ mounted() {
40596
+ if (this.instance.fillHeight) {
40597
+ setFillHeight(this.$el);
40598
+ }
40599
+ }
40517
40600
  highlight(code, language) {
40518
40601
  return Prism__default["default"].highlight(code, Prism__default["default"].languages[this.language], language);
40519
40602
  }
@@ -40523,13 +40606,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40523
40606
  __metadata("design:type", String)
40524
40607
  ], ZdCodeEditor.prototype, "copyIcon", void 0);
40525
40608
  __decorate([
40526
- PropWatch({ type: [String, Number], default: 'none' }),
40527
- __metadata("design:type", String)
40609
+ PropWatch({ type: [Number, String], default: 'auto' }),
40610
+ __metadata("design:type", Object)
40611
+ ], ZdCodeEditor.prototype, "height", void 0);
40612
+ __decorate([
40613
+ PropWatch({ type: [Number, String], default: 'auto' }),
40614
+ __metadata("design:type", Object)
40615
+ ], ZdCodeEditor.prototype, "minHeight", void 0);
40616
+ __decorate([
40617
+ PropWatch({ type: [Number, String], default: 'none' }),
40618
+ __metadata("design:type", Object)
40528
40619
  ], ZdCodeEditor.prototype, "maxHeight", void 0);
40529
40620
  __decorate([
40530
- PropWatch({ type: [String, Number], default: 'auto' }),
40531
- __metadata("design:type", String)
40532
- ], ZdCodeEditor.prototype, "height", void 0);
40621
+ PropWatch({ type: [Number, String], default: 'auto' }),
40622
+ __metadata("design:type", Object)
40623
+ ], ZdCodeEditor.prototype, "width", void 0);
40624
+ __decorate([
40625
+ PropWatch({ type: [Number, String], default: 'auto' }),
40626
+ __metadata("design:type", Object)
40627
+ ], ZdCodeEditor.prototype, "minWidth", void 0);
40628
+ __decorate([
40629
+ PropWatch({ type: [Number, String], default: 'none' }),
40630
+ __metadata("design:type", Object)
40631
+ ], ZdCodeEditor.prototype, "maxWidth", void 0);
40632
+ __decorate([
40633
+ PropWatch({ type: [Boolean, String], default: false }),
40634
+ __metadata("design:type", Object)
40635
+ ], ZdCodeEditor.prototype, "fillHeight", void 0);
40533
40636
  __decorate([
40534
40637
  PropWatch({ type: String, default: 'ts' }),
40535
40638
  __metadata("design:type", String)
@@ -40572,7 +40675,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40572
40675
  { "theme--dark": _vm.$isDark(this) },
40573
40676
  { "theme--light": _vm.$isLight(this) },
40574
40677
  ],
40575
- style: _vm.instance.cssStyle,
40678
+ style: Object.assign(
40679
+ {},
40680
+ {
40681
+ height: _vm.$formatSize(_vm.instance.height),
40682
+ width: _vm.$formatSize(_vm.instance.width),
40683
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
40684
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
40685
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
40686
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
40687
+ },
40688
+ _vm.$styleObject(_vm.instance.cssStyle)
40689
+ ),
40576
40690
  attrs: { id: _vm.instance.name },
40577
40691
  on: {
40578
40692
  click: function ($event) {
@@ -40591,10 +40705,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40591
40705
  "div",
40592
40706
  {
40593
40707
  staticClass: "zd-code-editor-container",
40594
- style: {
40595
- maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
40596
- height: _vm.$formatSize(_vm.instance.height),
40597
- },
40708
+ class: { "line-numbers": _vm.instance.showLineNumbers },
40598
40709
  },
40599
40710
  [
40600
40711
  _vm.instance.showLineNumbers
@@ -40694,7 +40805,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
40694
40805
  /* style */
40695
40806
  const __vue_inject_styles__$1i = function (inject) {
40696
40807
  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 });
40808
+ 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
40809
 
40699
40810
  };
40700
40811
  /* scoped */
@@ -41166,6 +41277,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41166
41277
  super(...arguments);
41167
41278
  this.instanceType = common.Container;
41168
41279
  }
41280
+ mounted() {
41281
+ if (this.instance.fillHeight) {
41282
+ setFillHeight(this.$el);
41283
+ }
41284
+ }
41169
41285
  };
41170
41286
  __decorate([
41171
41287
  PropWatch({ type: [Boolean, String], default: true }),
@@ -41183,14 +41299,26 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41183
41299
  PropWatch({ type: [Number, String], default: 'auto' }),
41184
41300
  __metadata("design:type", Object)
41185
41301
  ], ZdContainer.prototype, "height", void 0);
41302
+ __decorate([
41303
+ PropWatch({ type: [Number, String], default: 'auto' }),
41304
+ __metadata("design:type", Object)
41305
+ ], ZdContainer.prototype, "minHeight", void 0);
41186
41306
  __decorate([
41187
41307
  PropWatch({ type: [Number, String], default: 'none' }),
41188
41308
  __metadata("design:type", Object)
41189
41309
  ], ZdContainer.prototype, "maxHeight", void 0);
41310
+ __decorate([
41311
+ PropWatch({ type: [Number, String], default: '100%' }),
41312
+ __metadata("design:type", Object)
41313
+ ], ZdContainer.prototype, "width", void 0);
41314
+ __decorate([
41315
+ PropWatch({ type: [Number, String], default: 'auto' }),
41316
+ __metadata("design:type", Object)
41317
+ ], ZdContainer.prototype, "minWidth", void 0);
41190
41318
  __decorate([
41191
41319
  PropWatch({ type: [Number, String], default: 'none' }),
41192
41320
  __metadata("design:type", Object)
41193
- ], ZdContainer.prototype, "minHeight", void 0);
41321
+ ], ZdContainer.prototype, "maxWidth", void 0);
41194
41322
  ZdContainer = __decorate([
41195
41323
  vuePropertyDecorator.Component
41196
41324
  ], ZdContainer);
@@ -41215,17 +41343,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41215
41343
  expression: "instance.isVisible",
41216
41344
  },
41217
41345
  ],
41218
- class: [
41219
- "zd-container",
41220
- _vm.instance.cssClass,
41221
- { "fill-height": _vm.instance.fillHeight },
41222
- ],
41346
+ class: ["zd-container", _vm.instance.cssClass],
41223
41347
  style: Object.assign(
41224
41348
  {},
41225
41349
  {
41226
41350
  height: _vm.$formatSize(_vm.instance.height),
41227
41351
  minHeight: _vm.$formatSize(_vm.instance.minHeight),
41228
41352
  maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
41353
+ width: _vm.$formatSize(_vm.instance.width),
41354
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
41355
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
41229
41356
  overflow: _vm.instance.scrollView ? "hidden auto" : "none",
41230
41357
  },
41231
41358
  _vm.$styleObject(_vm.instance.cssStyle)
@@ -41268,11 +41395,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41268
41395
  /* style */
41269
41396
  const __vue_inject_styles__$1f = function (inject) {
41270
41397
  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 });
41398
+ inject("data-v-77ffafc6_0", { source: ".zd-container[data-v-77ffafc6] {\n padding: var(--zd-default-padding);\n}", map: undefined, media: undefined });
41272
41399
 
41273
41400
  };
41274
41401
  /* scoped */
41275
- const __vue_scope_id__$1f = "data-v-a056e4b6";
41402
+ const __vue_scope_id__$1f = "data-v-77ffafc6";
41276
41403
  /* module identifier */
41277
41404
  const __vue_module_identifier__$1f = undefined;
41278
41405
  /* functional template */
@@ -41306,25 +41433,29 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41306
41433
  }
41307
41434
  appendIconClick(event) {
41308
41435
  this.$refs.instance.focus();
41309
- this.instance.appendIconClick(event, this.$el);
41436
+ const newEvent = this.cloneClickEvent(event);
41437
+ this.instance.appendIconClick(newEvent, this.$el);
41310
41438
  // update internal value case if it was changed by the previous method call
41311
41439
  this.$nextTick(() => this.updateInstanceValue());
41312
41440
  }
41313
41441
  appendOuterIconClick(event) {
41314
41442
  this.$refs.instance.focus();
41315
- this.instance.appendOuterIconClick(event, this.$el);
41443
+ const newEvent = this.cloneClickEvent(event);
41444
+ this.instance.appendOuterIconClick(newEvent, this.$el);
41316
41445
  // update internal value case if it was changed by the previous method call
41317
41446
  this.$nextTick(() => this.updateInstanceValue());
41318
41447
  }
41319
41448
  prependIconClick(event) {
41320
41449
  this.$refs.instance.focus();
41321
- this.instance.prependIconClick(event, this.$el);
41450
+ const newEvent = this.cloneClickEvent(event);
41451
+ this.instance.prependIconClick(newEvent, this.$el);
41322
41452
  // update internal value case if it was changed by the previous method call
41323
41453
  this.$nextTick(() => this.updateInstanceValue());
41324
41454
  }
41325
41455
  prependOuterIconClick(event) {
41326
41456
  this.$refs.instance.focus();
41327
- this.instance.prependOuterIconClick(event, this.$el);
41457
+ const newEvent = this.cloneClickEvent(event);
41458
+ this.instance.prependOuterIconClick(newEvent, this.$el);
41328
41459
  // update internal value case if it was changed by the previous method call
41329
41460
  this.$nextTick(() => this.updateInstanceValue());
41330
41461
  }
@@ -41334,6 +41465,22 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41334
41465
  instanceRef.updateValue(true);
41335
41466
  }
41336
41467
  }
41468
+ cloneClickEvent(event) {
41469
+ if (!event)
41470
+ return undefined;
41471
+ const clone = {};
41472
+ /* eslint-disable guard-for-in, no-restricted-syntax */
41473
+ for (const key in event) {
41474
+ const desc = Object.getOwnPropertyDescriptor(event, key);
41475
+ if (desc && (desc.get || desc.set))
41476
+ Object.defineProperty(clone, key, desc);
41477
+ else
41478
+ clone[key] = event[key];
41479
+ }
41480
+ Object.setPrototypeOf(clone, event);
41481
+ clone.defaultPrevented = false;
41482
+ return clone;
41483
+ }
41337
41484
  get maskProp() {
41338
41485
  return () => this.instance.getMaskValue();
41339
41486
  }
@@ -41837,6 +41984,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41837
41984
  forceFallback: true,
41838
41985
  });
41839
41986
  }
41987
+ if (this.instance.fillHeight) {
41988
+ setFillHeight(this.$el);
41989
+ }
41840
41990
  }
41841
41991
  setData(event) {
41842
41992
  const card = event.item.querySelector('.dashboard-div-card');
@@ -41869,24 +42019,25 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41869
42019
  this.instance.cards.forEach((card) => {
41870
42020
  if (this.resizeCardId === card.cardId) {
41871
42021
  if (this.instance.heightAdjust) {
41872
- const heightAdjust = Number(this.instance.heightAdjust);
42022
+ const heightAdjust = Number(this.instance.heightAdjust) >= (window.innerHeight / 2)
42023
+ ? window.innerHeight / 4 : Number(this.instance.heightAdjust);
41873
42024
  if (dy >= heightAdjust) {
41874
42025
  card.height = Number(card.height) + heightAdjust;
41875
42026
  this.resizeY = event.clientY;
41876
42027
  }
41877
- else if (dy <= heightAdjust * -1) {
42028
+ else if (dy <= (heightAdjust * -1)) {
41878
42029
  card.height = Number(card.height) - heightAdjust;
41879
42030
  this.resizeY = event.clientY;
41880
42031
  }
41881
42032
  }
41882
42033
  else {
41883
- card.height = (this.resizeHeight + dy);
42034
+ card.height = this.resizeHeight + dy;
41884
42035
  }
41885
- if (dx > this.widthDashboardContainer / 12 && card.width < 12) {
42036
+ if (dx > this.widthDashboardContainer / 12 && Number(card.width) < 12) {
41886
42037
  card.width = Number(card.width) + 1;
41887
42038
  this.resizeX = event.clientX;
41888
42039
  }
41889
- else if (dx < 0 && Math.abs(dx) > this.widthDashboardContainer / 12 && card.width > 1) {
42040
+ else if (dx < 0 && Math.abs(dx) > this.widthDashboardContainer / 12 && Number(card.width) > 1) {
41890
42041
  card.width = Number(card.width) - 1;
41891
42042
  this.resizeX = event.clientX;
41892
42043
  }
@@ -41949,9 +42100,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
41949
42100
  __metadata("design:type", Object)
41950
42101
  ], ZdDashboard.prototype, "removePadding", void 0);
41951
42102
  __decorate([
41952
- PropWatch({ type: [Number, String], default: '' }),
42103
+ PropWatch({ type: [Number, String], default: 'auto' }),
41953
42104
  __metadata("design:type", Object)
41954
42105
  ], ZdDashboard.prototype, "height", void 0);
42106
+ __decorate([
42107
+ PropWatch({ type: [Number, String], default: 'auto' }),
42108
+ __metadata("design:type", Object)
42109
+ ], ZdDashboard.prototype, "minHeight", void 0);
42110
+ __decorate([
42111
+ PropWatch({ type: [Number, String], default: 'none' }),
42112
+ __metadata("design:type", Object)
42113
+ ], ZdDashboard.prototype, "maxHeight", void 0);
42114
+ __decorate([
42115
+ PropWatch({ type: [Number, String], default: '100%' }),
42116
+ __metadata("design:type", Object)
42117
+ ], ZdDashboard.prototype, "width", void 0);
42118
+ __decorate([
42119
+ PropWatch({ type: [Number, String], default: 'auto' }),
42120
+ __metadata("design:type", Object)
42121
+ ], ZdDashboard.prototype, "minWidth", void 0);
42122
+ __decorate([
42123
+ PropWatch({ type: [Number, String], default: 'none' }),
42124
+ __metadata("design:type", Object)
42125
+ ], ZdDashboard.prototype, "maxWidth", void 0);
42126
+ __decorate([
42127
+ PropWatch({ type: [Boolean, String], default: false }),
42128
+ __metadata("design:type", Object)
42129
+ ], ZdDashboard.prototype, "fillHeight", void 0);
41955
42130
  __decorate([
41956
42131
  PropWatch({ type: [Number, String], default: '' }),
41957
42132
  __metadata("design:type", Object)
@@ -42000,7 +42175,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42000
42175
  name: "container-dashboard" + _vm.instance.name,
42001
42176
  cssStyle: Object.assign(
42002
42177
  {},
42003
- { height: _vm.$formatSize(_vm.instance.height) },
42178
+ {
42179
+ height: _vm.$formatSize(_vm.instance.height),
42180
+ width: _vm.$formatSize(_vm.instance.width),
42181
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
42182
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
42183
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
42184
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
42185
+ },
42004
42186
  _vm.$styleObject(_vm.instance.cssStyle)
42005
42187
  ),
42006
42188
  },
@@ -42008,13 +42190,29 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42008
42190
  [
42009
42191
  [
42010
42192
  _c(
42011
- "zd-header",
42012
- _vm._b(
42013
- { attrs: { isVisible: _vm.instance.editingMode } },
42014
- "zd-header",
42015
- _vm.instance.editHeader,
42016
- false
42017
- )
42193
+ "span",
42194
+ {
42195
+ directives: [
42196
+ {
42197
+ name: "show",
42198
+ rawName: "v-show",
42199
+ value: _vm.instance.showEditHeader,
42200
+ expression: "instance.showEditHeader",
42201
+ },
42202
+ ],
42203
+ },
42204
+ [
42205
+ _c(
42206
+ "zd-header",
42207
+ _vm._b(
42208
+ { attrs: { isVisible: _vm.instance.editingMode } },
42209
+ "zd-header",
42210
+ _vm.instance.editHeader,
42211
+ false
42212
+ )
42213
+ ),
42214
+ ],
42215
+ 1
42018
42216
  ),
42019
42217
  ],
42020
42218
  _vm._v(" "),
@@ -42180,7 +42378,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
42180
42378
  /* style */
42181
42379
  const __vue_inject_styles__$1b = function (inject) {
42182
42380
  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 });
42381
+ inject("data-v-c5ea8082_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
42382
 
42185
42383
  };
42186
42384
  /* scoped */
@@ -44310,46 +44508,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44310
44508
  constructor() {
44311
44509
  super(...arguments);
44312
44510
  this.instanceType = common.Form;
44313
- /**
44314
- * Height of the form rows, excluding the fillHeight row
44315
- */
44316
- this.inputHeight = 0;
44317
44511
  this.form = {};
44318
44512
  }
44319
44513
  mounted() {
44320
44514
  this.form = this.$refs.form;
44321
- this.row = this.$refs.row;
44322
44515
  if (this.form) {
44323
44516
  this.instance.setViewValidate(this.form.validate);
44324
44517
  this.instance.setViewResetValidation(this.form.resetValidation);
44325
44518
  }
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);
44519
+ if (this.instance.fillHeight) {
44520
+ setFillHeight(this.$el);
44521
+ }
44353
44522
  }
44354
44523
  submit(event) {
44355
44524
  var _a;
@@ -44383,9 +44552,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44383
44552
  __metadata("design:type", String)
44384
44553
  ], ZdForm.prototype, "justify", void 0);
44385
44554
  __decorate([
44386
- PropWatch({ type: [Number, String] }),
44555
+ PropWatch({ type: [Number, String], default: 'auto' }),
44387
44556
  __metadata("design:type", Object)
44388
44557
  ], ZdForm.prototype, "height", void 0);
44558
+ __decorate([
44559
+ PropWatch({ type: [Number, String], default: 'auto' }),
44560
+ __metadata("design:type", Object)
44561
+ ], ZdForm.prototype, "minHeight", void 0);
44562
+ __decorate([
44563
+ PropWatch({ type: [Number, String], default: 'none' }),
44564
+ __metadata("design:type", Object)
44565
+ ], ZdForm.prototype, "maxHeight", void 0);
44566
+ __decorate([
44567
+ PropWatch({ type: [Number, String], default: '100%' }),
44568
+ __metadata("design:type", Object)
44569
+ ], ZdForm.prototype, "width", void 0);
44570
+ __decorate([
44571
+ PropWatch({ type: [Number, String], default: 'auto' }),
44572
+ __metadata("design:type", Object)
44573
+ ], ZdForm.prototype, "minWidth", void 0);
44574
+ __decorate([
44575
+ PropWatch({ type: [Number, String], default: 'none' }),
44576
+ __metadata("design:type", Object)
44577
+ ], ZdForm.prototype, "maxWidth", void 0);
44578
+ __decorate([
44579
+ PropWatch({ type: [Boolean, String], default: false }),
44580
+ __metadata("design:type", Object)
44581
+ ], ZdForm.prototype, "fillHeight", void 0);
44389
44582
  __decorate([
44390
44583
  vuePropertyDecorator.Prop({ type: Object, default: () => ({}) }),
44391
44584
  __metadata("design:type", Object)
@@ -44418,7 +44611,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44418
44611
  class: ["zd-form", "zd-form-fill-height", _vm.instance.cssClass],
44419
44612
  style: Object.assign(
44420
44613
  {},
44421
- { height: _vm.$formatSize(_vm.instance.height) },
44614
+ {
44615
+ height: _vm.$formatSize(_vm.instance.height),
44616
+ width: _vm.$formatSize(_vm.instance.width),
44617
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
44618
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
44619
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
44620
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
44621
+ },
44422
44622
  _vm.$styleObject(_vm.instance.cssStyle)
44423
44623
  ),
44424
44624
  attrs: { id: _vm.instance.name, name: _vm.instance.name },
@@ -44430,74 +44630,69 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44430
44630
  },
44431
44631
  },
44432
44632
  [
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: [
44449
- {
44450
- name: "show",
44451
- rawName: "v-show",
44452
- value: _vm.isChildVisible(child),
44453
- expression: "isChildVisible(child)",
44454
- },
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 },
44633
+ _vm.instance.childrenProps.length
44634
+ ? _c(
44635
+ "v-row",
44636
+ {
44637
+ ref: "row",
44638
+ attrs: {
44639
+ dense: "",
44640
+ justify: _vm.instance.justify,
44641
+ align: _vm.instance.align,
44472
44642
  },
44473
- "v-col",
44474
- _vm.instance.childrenGrid[child.name],
44475
- false
44476
- ),
44477
- [
44478
- _c(
44479
- child.component,
44643
+ },
44644
+ _vm._l(_vm.instance.childrenProps, function (child) {
44645
+ return _c(
44646
+ "v-col",
44480
44647
  _vm._b(
44481
44648
  {
44482
- tag: "component",
44483
- attrs: { parent: _vm.instance },
44484
- on: {
44485
- "update:value": function ($event) {
44486
- _vm.instance.value[child.name] = $event;
44649
+ directives: [
44650
+ {
44651
+ name: "show",
44652
+ rawName: "v-show",
44653
+ value: _vm.isChildVisible(child),
44654
+ expression: "isChildVisible(child)",
44487
44655
  },
44656
+ ],
44657
+ key: child.name,
44658
+ style: {
44659
+ height: _vm.$formatSize(child.height || "auto"),
44660
+ minHeight: _vm.$formatSize(child.minHeight || "auto"),
44661
+ maxHeight: _vm.$formatSize(child.maxHeight || "none"),
44488
44662
  },
44663
+ attrs: { name: child.name },
44489
44664
  },
44490
- "component",
44491
- child,
44665
+ "v-col",
44666
+ _vm.instance.childrenGrid[child.name],
44492
44667
  false
44493
- )
44494
- ),
44495
- ],
44668
+ ),
44669
+ [
44670
+ _c(
44671
+ child.component,
44672
+ _vm._b(
44673
+ {
44674
+ tag: "component",
44675
+ attrs: { parent: _vm.instance },
44676
+ on: {
44677
+ "update:value": function ($event) {
44678
+ _vm.instance.value[child.name] = $event;
44679
+ },
44680
+ },
44681
+ },
44682
+ "component",
44683
+ Object.assign({}, child, {
44684
+ cssClass: (child.cssClass || "") + " zd-form-child",
44685
+ }),
44686
+ false
44687
+ )
44688
+ ),
44689
+ ],
44690
+ 1
44691
+ )
44692
+ }),
44496
44693
  1
44497
44694
  )
44498
- }),
44499
- 1
44500
- ),
44695
+ : _vm._e(),
44501
44696
  _vm._v(" "),
44502
44697
  _vm._t("default"),
44503
44698
  ],
@@ -44510,7 +44705,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44510
44705
  /* style */
44511
44706
  const __vue_inject_styles__$13 = function (inject) {
44512
44707
  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 });
44708
+ 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
44709
 
44515
44710
  };
44516
44711
  /* scoped */
@@ -44546,6 +44741,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44546
44741
  super(...arguments);
44547
44742
  this.instanceType = common.Frame;
44548
44743
  }
44744
+ mounted() {
44745
+ if (this.instance.fillHeight) {
44746
+ setFillHeight(this.$el);
44747
+ }
44748
+ }
44549
44749
  };
44550
44750
  __decorate([
44551
44751
  PropWatch({ type: String, default: '' }),
@@ -44584,17 +44784,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44584
44784
  __metadata("design:type", Number)
44585
44785
  ], ZdFrame.prototype, "cacheDuration", void 0);
44586
44786
  __decorate([
44587
- PropWatch({ type: [String, Number], default: 'auto' }),
44787
+ PropWatch({ type: [Number, String], default: 'auto' }),
44588
44788
  __metadata("design:type", Object)
44589
44789
  ], ZdFrame.prototype, "height", void 0);
44590
44790
  __decorate([
44591
- PropWatch({ type: [String, Number], default: 'none' }),
44791
+ PropWatch({ type: [Number, String], default: 'auto' }),
44792
+ __metadata("design:type", Object)
44793
+ ], ZdFrame.prototype, "minHeight", void 0);
44794
+ __decorate([
44795
+ PropWatch({ type: [Number, String], default: 'none' }),
44592
44796
  __metadata("design:type", Object)
44593
44797
  ], ZdFrame.prototype, "maxHeight", void 0);
44594
44798
  __decorate([
44595
- PropWatch({ type: [String, Number], default: 'none' }),
44799
+ PropWatch({ type: [Number, String], default: '100%' }),
44800
+ __metadata("design:type", Object)
44801
+ ], ZdFrame.prototype, "width", void 0);
44802
+ __decorate([
44803
+ PropWatch({ type: [Number, String], default: 'auto' }),
44596
44804
  __metadata("design:type", Object)
44597
- ], ZdFrame.prototype, "minHeight", void 0);
44805
+ ], ZdFrame.prototype, "minWidth", void 0);
44806
+ __decorate([
44807
+ PropWatch({ type: [Number, String], default: 'none' }),
44808
+ __metadata("design:type", Object)
44809
+ ], ZdFrame.prototype, "maxWidth", void 0);
44810
+ __decorate([
44811
+ PropWatch({ type: [Boolean, String], default: false }),
44812
+ __metadata("design:type", Object)
44813
+ ], ZdFrame.prototype, "fillHeight", void 0);
44598
44814
  ZdFrame = __decorate([
44599
44815
  vuePropertyDecorator.Component
44600
44816
  ], ZdFrame);
@@ -44624,8 +44840,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44624
44840
  {},
44625
44841
  {
44626
44842
  height: _vm.$formatSize(_vm.instance.height),
44627
- minHeight: _vm.$formatSize(_vm.instance.minHeight),
44843
+ width: _vm.$formatSize(_vm.instance.width),
44628
44844
  maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
44845
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
44846
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
44847
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
44629
44848
  },
44630
44849
  _vm.$styleObject(_vm.instance.cssStyle)
44631
44850
  ),
@@ -44655,7 +44874,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44655
44874
  /* style */
44656
44875
  const __vue_inject_styles__$12 = function (inject) {
44657
44876
  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 });
44877
+ 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
44878
 
44660
44879
  };
44661
44880
  /* scoped */
@@ -44913,58 +45132,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
44913
45132
  }, 0);
44914
45133
  }
44915
45134
  mounted() {
44916
- this.setHeight();
44917
45135
  if (this.instance.dragColumns) {
44918
45136
  this.initDragColumns();
44919
45137
  }
44920
45138
  this.setViewGetWidth();
44921
45139
  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
45140
  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);
45141
+ setFillHeight(this.$el);
44968
45142
  }
44969
45143
  }
44970
45144
  setViewGetWidth() {
@@ -45319,13 +45493,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45319
45493
  }),
45320
45494
  __metadata("design:type", Array)
45321
45495
  ], 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
45496
  __decorate([
45330
45497
  vuePropertyDecorator.Prop({
45331
45498
  type: Array,
@@ -45369,33 +45536,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45369
45536
  __metadata("design:type", String)
45370
45537
  ], ZdGrid.prototype, "headerCellTextColor", void 0);
45371
45538
  __decorate([
45372
- PropWatch({
45373
- type: [Number, String],
45374
- default: undefined,
45375
- }),
45539
+ PropWatch({ type: [Number, String], default: 'auto' }),
45376
45540
  __metadata("design:type", Object)
45377
45541
  ], ZdGrid.prototype, "height", void 0);
45378
45542
  __decorate([
45379
- PropWatch({
45380
- type: [Number, String],
45381
- default: undefined,
45382
- }),
45543
+ PropWatch({ type: [Number, String], default: 'auto' }),
45544
+ __metadata("design:type", Object)
45545
+ ], ZdGrid.prototype, "minHeight", void 0);
45546
+ __decorate([
45547
+ PropWatch({ type: [Number, String], default: 'none' }),
45383
45548
  __metadata("design:type", Object)
45384
45549
  ], ZdGrid.prototype, "maxHeight", void 0);
45385
45550
  __decorate([
45386
- PropWatch({
45387
- type: [Number, String],
45388
- default: undefined,
45389
- }),
45551
+ PropWatch({ type: [Number, String], default: '100%' }),
45390
45552
  __metadata("design:type", Object)
45391
- ], ZdGrid.prototype, "gridHeight", void 0);
45553
+ ], ZdGrid.prototype, "width", void 0);
45392
45554
  __decorate([
45393
- PropWatch({
45394
- type: [Number, String],
45395
- default: undefined,
45396
- }),
45555
+ PropWatch({ type: [Number, String], default: 'auto' }),
45397
45556
  __metadata("design:type", Object)
45398
- ], ZdGrid.prototype, "gridMaxHeight", void 0);
45557
+ ], ZdGrid.prototype, "minWidth", void 0);
45558
+ __decorate([
45559
+ PropWatch({ type: [Number, String], default: 'none' }),
45560
+ __metadata("design:type", Object)
45561
+ ], ZdGrid.prototype, "maxWidth", void 0);
45562
+ __decorate([
45563
+ PropWatch({ type: [Boolean, String], default: false }),
45564
+ __metadata("design:type", Object)
45565
+ ], ZdGrid.prototype, "fillHeight", void 0);
45399
45566
  __decorate([
45400
45567
  vuePropertyDecorator.Prop({
45401
45568
  type: [String, Function],
@@ -45536,14 +45703,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45536
45703
  class: [
45537
45704
  "zd-grid",
45538
45705
  _vm.instance.cssClass,
45539
- { "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
45540
45706
  { "zd-grid-loading": _vm.instance.datasource.loading },
45541
45707
  ],
45542
45708
  style: [
45543
45709
  _vm.cssColorVars,
45544
- _vm.instance.gridHeight
45545
- ? { height: _vm.$formatSize(_vm.instance.gridHeight) }
45546
- : {},
45710
+ {
45711
+ height: _vm.$formatSize(_vm.instance.height),
45712
+ width: _vm.$formatSize(_vm.instance.width),
45713
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
45714
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
45715
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
45716
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
45717
+ },
45547
45718
  _vm.$styleObject(_vm.instance.cssStyle),
45548
45719
  ],
45549
45720
  attrs: {
@@ -45556,7 +45727,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
45556
45727
  "hide-default-footer": "",
45557
45728
  name: _vm.instance.name,
45558
45729
  headers: _vm.instance.columns,
45559
- height: _vm.instance.height,
45560
45730
  items: _vm.getData(),
45561
45731
  search: _vm.instance.datasource.search,
45562
45732
  dense: _vm.instance.dense,
@@ -46323,7 +46493,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46323
46493
  /* style */
46324
46494
  const __vue_inject_styles__$10 = function (inject) {
46325
46495
  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 });
46496
+ 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
46497
 
46328
46498
  };
46329
46499
  /* scoped */
@@ -46559,14 +46729,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
46559
46729
  class: [
46560
46730
  "zd-grid",
46561
46731
  _vm.instance.cssClass,
46562
- { "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
46563
46732
  { "zd-grid-loading": _vm.instance.datasource.loading },
46564
46733
  ],
46565
46734
  style: [
46566
46735
  _vm.cssColorVars,
46567
- _vm.instance.gridHeight
46568
- ? { height: _vm.$formatSize(_vm.instance.gridHeight) }
46569
- : {},
46736
+ {
46737
+ height: _vm.$formatSize(_vm.instance.height),
46738
+ width: _vm.$formatSize(_vm.instance.width),
46739
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
46740
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
46741
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
46742
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
46743
+ },
46570
46744
  _vm.$styleObject(_vm.instance.cssStyle),
46571
46745
  ],
46572
46746
  attrs: {
@@ -47197,6 +47371,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
47197
47371
  _vm.getWidthStyle,
47198
47372
  column: column,
47199
47373
  row: item,
47374
+ rowKey: _vm.rowKey(item),
47200
47375
  rowStyle: rowStyle,
47201
47376
  cellsApplied:
47202
47377
  cellsApplied,
@@ -47443,8 +47618,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
47443
47618
  /* style */
47444
47619
  const __vue_inject_styles__$$ = function (inject) {
47445
47620
  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 });
47621
+ 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 })
47622
+ ,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
47623
 
47449
47624
  };
47450
47625
  /* scoped */
@@ -48542,6 +48717,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48542
48717
  vuePropertyDecorator.Prop({ type: Object, required: true }),
48543
48718
  __metadata("design:type", Object)
48544
48719
  ], ZdGridCellEdit.prototype, "row", void 0);
48720
+ __decorate([
48721
+ vuePropertyDecorator.Prop({ type: [String, Number], required: true }),
48722
+ __metadata("design:type", Object)
48723
+ ], ZdGridCellEdit.prototype, "rowKey", void 0);
48545
48724
  __decorate([
48546
48725
  vuePropertyDecorator.Prop({ type: Function, required: true }),
48547
48726
  __metadata("design:type", Function)
@@ -48590,7 +48769,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48590
48769
  _c(
48591
48770
  _vm.column.componentProps.component,
48592
48771
  _vm._b(
48593
- { tag: "component" },
48772
+ { key: _vm.column.name + "-" + _vm.rowKey, tag: "component" },
48594
48773
  "component",
48595
48774
  _vm.getEditableComponent(_vm.column, _vm.row, _vm.cellProps),
48596
48775
  false
@@ -48606,7 +48785,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48606
48785
  /* style */
48607
48786
  const __vue_inject_styles__$T = function (inject) {
48608
48787
  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 });
48788
+ 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
48789
 
48611
48790
  };
48612
48791
  /* scoped */
@@ -48986,6 +49165,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48986
49165
  super(...arguments);
48987
49166
  this.instanceType = common.Image;
48988
49167
  }
49168
+ mounted() {
49169
+ if (this.instance.fillHeight) {
49170
+ setFillHeight(this.$el);
49171
+ }
49172
+ }
48989
49173
  };
48990
49174
  __decorate([
48991
49175
  PropWatch({ type: String, default: '' }),
@@ -48999,10 +49183,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
48999
49183
  PropWatch({ type: String, default: '' }),
49000
49184
  __metadata("design:type", String)
49001
49185
  ], ZdImage.prototype, "errorImageText", void 0);
49002
- __decorate([
49003
- PropWatch({ type: String, default: '' }),
49004
- __metadata("design:type", String)
49005
- ], ZdImage.prototype, "height", void 0);
49006
49186
  __decorate([
49007
49187
  PropWatch({ type: String, default: '' }),
49008
49188
  __metadata("design:type", String)
@@ -49012,9 +49192,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49012
49192
  __metadata("design:type", String)
49013
49193
  ], ZdImage.prototype, "src", void 0);
49014
49194
  __decorate([
49015
- PropWatch({ type: String, default: '' }),
49016
- __metadata("design:type", String)
49195
+ PropWatch({ type: [Number, String], default: 'auto' }),
49196
+ __metadata("design:type", Object)
49197
+ ], ZdImage.prototype, "height", void 0);
49198
+ __decorate([
49199
+ PropWatch({ type: [Number, String], default: 'auto' }),
49200
+ __metadata("design:type", Object)
49201
+ ], ZdImage.prototype, "minHeight", void 0);
49202
+ __decorate([
49203
+ PropWatch({ type: [Number, String], default: 'none' }),
49204
+ __metadata("design:type", Object)
49205
+ ], ZdImage.prototype, "maxHeight", void 0);
49206
+ __decorate([
49207
+ PropWatch({ type: [Number, String], default: 'auto' }),
49208
+ __metadata("design:type", Object)
49017
49209
  ], ZdImage.prototype, "width", void 0);
49210
+ __decorate([
49211
+ PropWatch({ type: [Number, String], default: 'auto' }),
49212
+ __metadata("design:type", Object)
49213
+ ], ZdImage.prototype, "minWidth", void 0);
49214
+ __decorate([
49215
+ PropWatch({ type: [Number, String], default: 'none' }),
49216
+ __metadata("design:type", Object)
49217
+ ], ZdImage.prototype, "maxWidth", void 0);
49218
+ __decorate([
49219
+ PropWatch({ type: [Boolean, String], default: false }),
49220
+ __metadata("design:type", Object)
49221
+ ], ZdImage.prototype, "fillHeight", void 0);
49018
49222
  ZdImage = __decorate([
49019
49223
  vuePropertyDecorator.Component
49020
49224
  ], ZdImage);
@@ -49040,7 +49244,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49040
49244
  },
49041
49245
  ],
49042
49246
  class: ["zd-image", _vm.instance.cssClass],
49043
- style: _vm.instance.cssStyle,
49247
+ style: Object.assign(
49248
+ {},
49249
+ {
49250
+ height: _vm.$formatSize(_vm.instance.height),
49251
+ width: _vm.$formatSize(_vm.instance.width),
49252
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
49253
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
49254
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
49255
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
49256
+ },
49257
+ _vm.$styleObject(_vm.instance.cssStyle)
49258
+ ),
49044
49259
  attrs: { id: _vm.instance.name, name: _vm.instance.name },
49045
49260
  },
49046
49261
  [
@@ -49060,7 +49275,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49060
49275
  {
49061
49276
  src: _vm.instance.errorImagePath,
49062
49277
  alt: _vm.instance.alt,
49063
- style: _vm.instance.getStyle(),
49064
49278
  },
49065
49279
  false
49066
49280
  )
@@ -49094,6 +49308,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49094
49308
  },
49095
49309
  ],
49096
49310
  staticClass: "zd-image-valid",
49311
+ style: { objectFit: _vm.instance.objectFit },
49097
49312
  on: {
49098
49313
  click: function ($event) {
49099
49314
  return _vm.click($event)
@@ -49116,7 +49331,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49116
49331
  {
49117
49332
  src: _vm.instance.src,
49118
49333
  alt: _vm.instance.alt,
49119
- style: _vm.instance.getStyle(),
49120
49334
  },
49121
49335
  false
49122
49336
  )
@@ -49132,7 +49346,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49132
49346
  /* style */
49133
49347
  const __vue_inject_styles__$Q = function (inject) {
49134
49348
  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 });
49349
+ 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
49350
 
49137
49351
  };
49138
49352
  /* scoped */
@@ -49317,6 +49531,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49317
49531
  super(...arguments);
49318
49532
  this.instanceType = common.IterableComponentRender;
49319
49533
  }
49534
+ mounted() {
49535
+ if (this.instance.fillHeight) {
49536
+ setFillHeight(this.$el);
49537
+ }
49538
+ }
49320
49539
  };
49321
49540
  __decorate([
49322
49541
  vuePropertyDecorator.Prop({
@@ -49381,26 +49600,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49381
49600
  __metadata("design:type", Array)
49382
49601
  ], ZdIterableComponentRender.prototype, "noResultSlot", void 0);
49383
49602
  __decorate([
49384
- PropWatch({
49385
- type: [Number, String],
49386
- default: 'auto',
49387
- }),
49603
+ PropWatch({ type: [Number, String], default: 'auto' }),
49388
49604
  __metadata("design:type", Object)
49389
49605
  ], ZdIterableComponentRender.prototype, "height", void 0);
49390
49606
  __decorate([
49391
- PropWatch({
49392
- type: [Number, String],
49393
- default: 'none',
49394
- }),
49607
+ PropWatch({ type: [Number, String], default: 'auto' }),
49608
+ __metadata("design:type", Object)
49609
+ ], ZdIterableComponentRender.prototype, "minHeight", void 0);
49610
+ __decorate([
49611
+ PropWatch({ type: [Number, String], default: 'none' }),
49395
49612
  __metadata("design:type", Object)
49396
49613
  ], ZdIterableComponentRender.prototype, "maxHeight", void 0);
49397
49614
  __decorate([
49398
- PropWatch({
49399
- type: [Number, String],
49400
- default: 'none',
49401
- }),
49615
+ PropWatch({ type: [Number, String], default: '100%' }),
49402
49616
  __metadata("design:type", Object)
49403
- ], ZdIterableComponentRender.prototype, "minHeight", void 0);
49617
+ ], ZdIterableComponentRender.prototype, "width", void 0);
49618
+ __decorate([
49619
+ PropWatch({ type: [Number, String], default: 'auto' }),
49620
+ __metadata("design:type", Object)
49621
+ ], ZdIterableComponentRender.prototype, "minWidth", void 0);
49622
+ __decorate([
49623
+ PropWatch({ type: [Number, String], default: 'none' }),
49624
+ __metadata("design:type", Object)
49625
+ ], ZdIterableComponentRender.prototype, "maxWidth", void 0);
49626
+ __decorate([
49627
+ PropWatch({ type: [Boolean, String], default: false }),
49628
+ __metadata("design:type", Object)
49629
+ ], ZdIterableComponentRender.prototype, "fillHeight", void 0);
49404
49630
  ZdIterableComponentRender = __decorate([
49405
49631
  vuePropertyDecorator.Component
49406
49632
  ], ZdIterableComponentRender);
@@ -49423,8 +49649,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49423
49649
  {},
49424
49650
  {
49425
49651
  height: _vm.$formatSize(_vm.instance.height),
49426
- minHeight: _vm.$formatSize(_vm.instance.minHeight),
49652
+ width: _vm.$formatSize(_vm.instance.width),
49427
49653
  maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
49654
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
49655
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
49656
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
49428
49657
  },
49429
49658
  _vm.$styleObject(_vm.instance.cssStyle)
49430
49659
  ),
@@ -49623,11 +49852,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
49623
49852
  /* style */
49624
49853
  const __vue_inject_styles__$N = function (inject) {
49625
49854
  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 });
49855
+ 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
49856
 
49628
49857
  };
49629
49858
  /* scoped */
49630
- const __vue_scope_id__$N = "data-v-4445014a";
49859
+ const __vue_scope_id__$N = "data-v-543a2c06";
49631
49860
  /* module identifier */
49632
49861
  const __vue_module_identifier__$N = undefined;
49633
49862
  /* functional template */
@@ -50731,6 +50960,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
50731
50960
  super(...arguments);
50732
50961
  this.instanceType = common.List;
50733
50962
  }
50963
+ mounted() {
50964
+ if (this.instance.fillHeight) {
50965
+ setFillHeight(this.$el);
50966
+ }
50967
+ }
50734
50968
  isLastItem(index) {
50735
50969
  return index + 1 === this.instance.items.length;
50736
50970
  }
@@ -50771,14 +51005,30 @@ If you're seeing "$attrs is readonly", it's caused by this`);
50771
51005
  PropWatch({ type: [Number, String], default: 'auto' }),
50772
51006
  __metadata("design:type", Object)
50773
51007
  ], ZdList.prototype, "height", void 0);
51008
+ __decorate([
51009
+ PropWatch({ type: [Number, String], default: 'auto' }),
51010
+ __metadata("design:type", Object)
51011
+ ], ZdList.prototype, "minHeight", void 0);
50774
51012
  __decorate([
50775
51013
  PropWatch({ type: [Number, String], default: 'none' }),
50776
51014
  __metadata("design:type", Object)
50777
51015
  ], ZdList.prototype, "maxHeight", void 0);
51016
+ __decorate([
51017
+ PropWatch({ type: [Number, String], default: '100%' }),
51018
+ __metadata("design:type", Object)
51019
+ ], ZdList.prototype, "width", void 0);
51020
+ __decorate([
51021
+ PropWatch({ type: [Number, String], default: 'auto' }),
51022
+ __metadata("design:type", Object)
51023
+ ], ZdList.prototype, "minWidth", void 0);
50778
51024
  __decorate([
50779
51025
  PropWatch({ type: [Number, String], default: 'none' }),
50780
51026
  __metadata("design:type", Object)
50781
- ], ZdList.prototype, "minHeight", void 0);
51027
+ ], ZdList.prototype, "maxWidth", void 0);
51028
+ __decorate([
51029
+ PropWatch({ type: [Boolean, String], default: false }),
51030
+ __metadata("design:type", Object)
51031
+ ], ZdList.prototype, "fillHeight", void 0);
50782
51032
  __decorate([
50783
51033
  vuePropertyDecorator.Prop({ type: Array, default: () => ([]) }),
50784
51034
  __metadata("design:type", Array)
@@ -50824,6 +51074,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
50824
51074
  height: _vm.instance.height,
50825
51075
  minHeight: _vm.instance.minHeight,
50826
51076
  maxHeight: _vm.instance.maxHeight,
51077
+ width: _vm.instance.width,
51078
+ minWidth: _vm.instance.minWidth,
51079
+ maxWidth: _vm.instance.maxWidth,
50827
51080
  },
50828
51081
  },
50829
51082
  [
@@ -50864,7 +51117,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
50864
51117
  /* style */
50865
51118
  const __vue_inject_styles__$H = function (inject) {
50866
51119
  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 });
51120
+ 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
51121
 
50869
51122
  };
50870
51123
  /* scoped */
@@ -54004,6 +54257,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54004
54257
  super(...arguments);
54005
54258
  this.instanceType = common.Row;
54006
54259
  }
54260
+ mounted() {
54261
+ if (this.instance.fillHeight) {
54262
+ setFillHeight(this.$el);
54263
+ }
54264
+ }
54007
54265
  };
54008
54266
  __decorate([
54009
54267
  PropWatch({ type: String }),
@@ -54021,6 +54279,22 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54021
54279
  PropWatch({ type: [Boolean, String], default: false }),
54022
54280
  __metadata("design:type", Boolean)
54023
54281
  ], ZdRow.prototype, "noGutters", void 0);
54282
+ __decorate([
54283
+ PropWatch({ type: [Number, String], default: 'auto' }),
54284
+ __metadata("design:type", Object)
54285
+ ], ZdRow.prototype, "height", void 0);
54286
+ __decorate([
54287
+ PropWatch({ type: [Number, String], default: 'auto' }),
54288
+ __metadata("design:type", Object)
54289
+ ], ZdRow.prototype, "minHeight", void 0);
54290
+ __decorate([
54291
+ PropWatch({ type: [Number, String], default: 'none' }),
54292
+ __metadata("design:type", Object)
54293
+ ], ZdRow.prototype, "maxHeight", void 0);
54294
+ __decorate([
54295
+ PropWatch({ type: [Boolean, String], default: false }),
54296
+ __metadata("design:type", Object)
54297
+ ], ZdRow.prototype, "fillHeight", void 0);
54024
54298
  ZdRow = __decorate([
54025
54299
  vuePropertyDecorator.Component
54026
54300
  ], ZdRow);
@@ -54045,8 +54319,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54045
54319
  expression: "instance.isVisible",
54046
54320
  },
54047
54321
  ],
54048
- class: _vm.instance.cssClass,
54049
- style: _vm.instance.cssStyle,
54322
+ class: ["zd-row", _vm.instance.cssClass],
54323
+ style: Object.assign(
54324
+ {},
54325
+ {
54326
+ height: _vm.$formatSize(_vm.instance.height),
54327
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
54328
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
54329
+ },
54330
+ _vm.$styleObject(_vm.instance.cssStyle)
54331
+ ),
54050
54332
  attrs: {
54051
54333
  id: _vm.instance.name,
54052
54334
  name: _vm.instance.name,
@@ -54082,15 +54364,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54082
54364
  __vue_render__$n._withStripped = true;
54083
54365
 
54084
54366
  /* style */
54085
- const __vue_inject_styles__$n = undefined;
54367
+ const __vue_inject_styles__$n = function (inject) {
54368
+ if (!inject) return
54369
+ 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 });
54370
+
54371
+ };
54086
54372
  /* scoped */
54087
54373
  const __vue_scope_id__$n = undefined;
54088
54374
  /* module identifier */
54089
54375
  const __vue_module_identifier__$n = undefined;
54090
54376
  /* functional template */
54091
54377
  const __vue_is_functional_template__$n = false;
54092
- /* style inject */
54093
-
54094
54378
  /* style inject SSR */
54095
54379
 
54096
54380
  /* style inject shadow dom */
@@ -54105,7 +54389,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54105
54389
  __vue_is_functional_template__$n,
54106
54390
  __vue_module_identifier__$n,
54107
54391
  false,
54108
- undefined,
54392
+ createInjector,
54109
54393
  undefined,
54110
54394
  undefined
54111
54395
  );
@@ -54217,6 +54501,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54217
54501
  change() {
54218
54502
  this.instance.change(undefined, this.$el);
54219
54503
  }
54504
+ mounted() {
54505
+ if (this.instance.fillHeight) {
54506
+ setFillHeight(this.$el);
54507
+ }
54508
+ }
54220
54509
  };
54221
54510
  __decorate([
54222
54511
  PropWatch({ type: [String], default: '' }),
@@ -54238,6 +54527,34 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54238
54527
  PropWatch({ type: [Number, String], default: undefined }),
54239
54528
  __metadata("design:type", Object)
54240
54529
  ], ZdSelectableList.prototype, "value", void 0);
54530
+ __decorate([
54531
+ PropWatch({ type: [Number, String], default: 'auto' }),
54532
+ __metadata("design:type", Object)
54533
+ ], ZdSelectableList.prototype, "height", void 0);
54534
+ __decorate([
54535
+ PropWatch({ type: [Number, String], default: 'auto' }),
54536
+ __metadata("design:type", Object)
54537
+ ], ZdSelectableList.prototype, "minHeight", void 0);
54538
+ __decorate([
54539
+ PropWatch({ type: [Number, String], default: 'none' }),
54540
+ __metadata("design:type", Object)
54541
+ ], ZdSelectableList.prototype, "maxHeight", void 0);
54542
+ __decorate([
54543
+ PropWatch({ type: [Number, String], default: '100%' }),
54544
+ __metadata("design:type", Object)
54545
+ ], ZdSelectableList.prototype, "width", void 0);
54546
+ __decorate([
54547
+ PropWatch({ type: [Number, String], default: 'auto' }),
54548
+ __metadata("design:type", Object)
54549
+ ], ZdSelectableList.prototype, "minWidth", void 0);
54550
+ __decorate([
54551
+ PropWatch({ type: [Number, String], default: 'none' }),
54552
+ __metadata("design:type", Object)
54553
+ ], ZdSelectableList.prototype, "maxWidth", void 0);
54554
+ __decorate([
54555
+ PropWatch({ type: [Boolean, String], default: false }),
54556
+ __metadata("design:type", Object)
54557
+ ], ZdSelectableList.prototype, "fillHeight", void 0);
54241
54558
  ZdSelectableList = __decorate([
54242
54559
  vuePropertyDecorator.Component
54243
54560
  ], ZdSelectableList);
@@ -54263,7 +54580,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54263
54580
  },
54264
54581
  ],
54265
54582
  class: ["zd-selectable-list", _vm.instance.cssClass],
54266
- style: _vm.instance.cssStyle,
54583
+ style: Object.assign(
54584
+ {},
54585
+ {
54586
+ height: _vm.$formatSize(_vm.instance.height),
54587
+ width: _vm.$formatSize(_vm.instance.width),
54588
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
54589
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
54590
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
54591
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
54592
+ },
54593
+ _vm.$styleObject(_vm.instance.cssStyle)
54594
+ ),
54267
54595
  attrs: {
54268
54596
  activeClass: _vm.instance.activeClass,
54269
54597
  dark: _vm.instance.dark,
@@ -54296,9 +54624,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54296
54624
  elevation: _vm.instance.elevation,
54297
54625
  expand: _vm.instance.expand,
54298
54626
  tile: _vm.instance.tile,
54299
- height: _vm.instance.height,
54300
- minHeight: _vm.instance.minHeight,
54301
- maxHeight: _vm.instance.maxHeight,
54627
+ height: "100%",
54302
54628
  },
54303
54629
  },
54304
54630
  [
@@ -54342,7 +54668,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
54342
54668
  /* style */
54343
54669
  const __vue_inject_styles__$l = function (inject) {
54344
54670
  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 });
54671
+ 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
54672
 
54347
54673
  };
54348
54674
  /* scoped */
@@ -55460,7 +55786,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
55460
55786
  /* style */
55461
55787
  const __vue_inject_styles__$j = function (inject) {
55462
55788
  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 });
55789
+ 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
55790
 
55465
55791
  };
55466
55792
  /* scoped */
@@ -55840,7 +56166,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
55840
56166
  /* style */
55841
56167
  const __vue_inject_styles__$i = function (inject) {
55842
56168
  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 })
56169
+ 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
56170
  ,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
56171
 
55846
56172
  };
@@ -56580,6 +56906,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56580
56906
  super(...arguments);
56581
56907
  this.instanceType = common.Table;
56582
56908
  }
56909
+ mounted() {
56910
+ if (this.instance.fillHeight) {
56911
+ setFillHeight(this.$el);
56912
+ }
56913
+ }
56583
56914
  };
56584
56915
  __decorate([
56585
56916
  vuePropertyDecorator.Prop({ type: Object, default: () => ({}) }),
@@ -56593,6 +56924,22 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56593
56924
  PropWatch({ type: [Boolean, String], default: true }),
56594
56925
  __metadata("design:type", Boolean)
56595
56926
  ], ZdTable.prototype, "showTableHead", void 0);
56927
+ __decorate([
56928
+ PropWatch({ type: [Number, String], default: 'auto' }),
56929
+ __metadata("design:type", Object)
56930
+ ], ZdTable.prototype, "height", void 0);
56931
+ __decorate([
56932
+ PropWatch({ type: [Number, String], default: 'auto' }),
56933
+ __metadata("design:type", Object)
56934
+ ], ZdTable.prototype, "minHeight", void 0);
56935
+ __decorate([
56936
+ PropWatch({ type: [Number, String], default: 'none' }),
56937
+ __metadata("design:type", Object)
56938
+ ], ZdTable.prototype, "maxHeight", void 0);
56939
+ __decorate([
56940
+ PropWatch({ type: [Boolean, String], default: false }),
56941
+ __metadata("design:type", Object)
56942
+ ], ZdTable.prototype, "fillHeight", void 0);
56596
56943
  ZdTable = __decorate([
56597
56944
  vuePropertyDecorator.Component
56598
56945
  ], ZdTable);
@@ -56607,106 +56954,126 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56607
56954
  var _h = _vm.$createElement;
56608
56955
  var _c = _vm._self._c || _h;
56609
56956
  return _c(
56610
- "table",
56957
+ "div",
56611
56958
  {
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,
56959
+ staticClass: "zd-table-container",
56960
+ style: {
56961
+ height: _vm.$formatSize(_vm.instance.height),
56962
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
56963
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
56632
56964
  },
56633
56965
  },
56634
56966
  [
56635
- _vm.instance.caption.isVisible
56636
- ? _c(
56637
- "caption",
56967
+ _c(
56968
+ "table",
56969
+ {
56970
+ directives: [
56638
56971
  {
56639
- class: ["zd-table-caption", "text-" + _vm.instance.caption.align],
56972
+ name: "show",
56973
+ rawName: "v-show",
56974
+ value: _vm.instance.isVisible,
56975
+ expression: "instance.isVisible",
56640
56976
  },
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(),
56977
+ ],
56978
+ class: [
56979
+ _vm.instance.cssClass,
56980
+ "zd-table",
56981
+ {
56982
+ "zd-table-fill-width": _vm.instance.fillWidth,
56983
+ },
56984
+ ],
56985
+ style: _vm.instance.cssStyle,
56986
+ attrs: {
56987
+ id: _vm.instance.name,
56988
+ dark: _vm.instance.dark,
56989
+ light: _vm.instance.light,
56990
+ },
56991
+ },
56992
+ [
56993
+ _vm.instance.caption.isVisible
56994
+ ? _c(
56995
+ "caption",
56996
+ {
56997
+ class: [
56998
+ "zd-table-caption",
56999
+ "text-" + _vm.instance.caption.align,
57000
+ ],
57001
+ },
57002
+ [
57003
+ _vm._v(
57004
+ "\n " +
57005
+ _vm._s(_vm.$t(_vm.instance.caption.label)) +
57006
+ "\n "
57007
+ ),
56703
57008
  ]
56704
- }),
56705
- ],
56706
- 2
56707
- )
56708
- }),
56709
- 0
57009
+ )
57010
+ : _vm._e(),
57011
+ _vm._v(" "),
57012
+ _vm.instance.showTableHead
57013
+ ? _c("thead", [
57014
+ _c(
57015
+ "tr",
57016
+ [
57017
+ _vm._l(_vm.instance.columns, function (column, index) {
57018
+ return [
57019
+ column.isVisible
57020
+ ? _c(
57021
+ "th",
57022
+ { key: index, class: ["text-" + column.align] },
57023
+ [
57024
+ _vm._v(
57025
+ "\n " +
57026
+ _vm._s(_vm.$t(column.label)) +
57027
+ "\n "
57028
+ ),
57029
+ ]
57030
+ )
57031
+ : _vm._e(),
57032
+ ]
57033
+ }),
57034
+ ],
57035
+ 2
57036
+ ),
57037
+ ])
57038
+ : _vm._e(),
57039
+ _vm._v(" "),
57040
+ _c(
57041
+ "tbody",
57042
+ _vm._l(_vm.instance.datasource.data, function (row) {
57043
+ return _c(
57044
+ "tr",
57045
+ { key: row[_vm.instance.datasource.uniqueKey] },
57046
+ [
57047
+ _vm._l(_vm.instance.columns, function (column, index) {
57048
+ return [
57049
+ column.isVisible
57050
+ ? _c("td", {
57051
+ key: index,
57052
+ class: ["text-" + column.align],
57053
+ style:
57054
+ "min-width: " +
57055
+ column.minWidth +
57056
+ "; max-width: " +
57057
+ column.maxWidth +
57058
+ ";",
57059
+ domProps: {
57060
+ innerHTML: _vm._s(
57061
+ _vm.$sanitize(
57062
+ column.formatter(row[column.name])
57063
+ )
57064
+ ),
57065
+ },
57066
+ })
57067
+ : _vm._e(),
57068
+ ]
57069
+ }),
57070
+ ],
57071
+ 2
57072
+ )
57073
+ }),
57074
+ 0
57075
+ ),
57076
+ ]
56710
57077
  ),
56711
57078
  ]
56712
57079
  )
@@ -56717,7 +57084,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56717
57084
  /* style */
56718
57085
  const __vue_inject_styles__$d = function (inject) {
56719
57086
  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 });
57087
+ 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
57088
 
56722
57089
  };
56723
57090
  /* scoped */
@@ -56762,15 +57129,32 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56762
57129
  clickTab(event, index) {
56763
57130
  this.instance.beforeChange(event, index, this.$el);
56764
57131
  }
57132
+ mounted() {
57133
+ if (this.instance.fillHeight) {
57134
+ setFillHeight(this.$el);
57135
+ }
57136
+ }
56765
57137
  };
56766
57138
  __decorate([
56767
57139
  PropWatch({ type: [Number, String], default: 0 }),
56768
57140
  __metadata("design:type", Number)
56769
57141
  ], ZdTabs.prototype, "activeTab", void 0);
56770
57142
  __decorate([
56771
- PropWatch({ type: [Number, String] }),
57143
+ PropWatch({ type: [Number, String], default: 'auto' }),
56772
57144
  __metadata("design:type", Object)
56773
57145
  ], ZdTabs.prototype, "height", void 0);
57146
+ __decorate([
57147
+ PropWatch({ type: [Number, String], default: 'auto' }),
57148
+ __metadata("design:type", Object)
57149
+ ], ZdTabs.prototype, "minHeight", void 0);
57150
+ __decorate([
57151
+ PropWatch({ type: [Number, String], default: 'none' }),
57152
+ __metadata("design:type", Object)
57153
+ ], ZdTabs.prototype, "maxHeight", void 0);
57154
+ __decorate([
57155
+ PropWatch({ type: [Boolean, String], default: false }),
57156
+ __metadata("design:type", Object)
57157
+ ], ZdTabs.prototype, "fillHeight", void 0);
56774
57158
  __decorate([
56775
57159
  vuePropertyDecorator.Prop({ type: Array, default: () => [] }),
56776
57160
  __metadata("design:type", Array)
@@ -56802,7 +57186,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56802
57186
  class: ["zd-tabs", _vm.instance.cssClass],
56803
57187
  style: Object.assign(
56804
57188
  {},
56805
- { height: _vm.$formatSize(_vm.instance.height) },
57189
+ {
57190
+ height: _vm.$formatSize(_vm.instance.height),
57191
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
57192
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
57193
+ },
56806
57194
  _vm.$styleObject(_vm.instance.cssStyle)
56807
57195
  ),
56808
57196
  attrs: { id: _vm.instance.name, name: _vm.instance.name },
@@ -56906,7 +57294,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56906
57294
  {
56907
57295
  index: index,
56908
57296
  children: tab.children,
56909
- flex: tab.flex,
56910
57297
  name: _vm.instance.name + "-tab-item-" + index,
56911
57298
  lazyLoad: tab.lazyLoad,
56912
57299
  },
@@ -56930,11 +57317,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56930
57317
  /* style */
56931
57318
  const __vue_inject_styles__$c = function (inject) {
56932
57319
  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 });
57320
+ 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
57321
 
56935
57322
  };
56936
57323
  /* scoped */
56937
- const __vue_scope_id__$c = "data-v-0700f23a";
57324
+ const __vue_scope_id__$c = "data-v-96a6dab6";
56938
57325
  /* module identifier */
56939
57326
  const __vue_module_identifier__$c = undefined;
56940
57327
  /* functional template */
@@ -56981,10 +57368,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
56981
57368
  PropWatch({ type: String }),
56982
57369
  __metadata("design:type", String)
56983
57370
  ], ZdTab.prototype, "tabTitle", void 0);
56984
- __decorate([
56985
- PropWatch({ type: Boolean }),
56986
- __metadata("design:type", Boolean)
56987
- ], ZdTab.prototype, "flex", void 0);
56988
57371
  __decorate([
56989
57372
  PropWatch({ type: String }),
56990
57373
  __metadata("design:type", String)
@@ -57082,10 +57465,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
57082
57465
  PropWatch({ type: Number }),
57083
57466
  __metadata("design:type", Number)
57084
57467
  ], ZdTabItem.prototype, "index", void 0);
57085
- __decorate([
57086
- PropWatch({ type: Boolean }),
57087
- __metadata("design:type", Boolean)
57088
- ], ZdTabItem.prototype, "flex", void 0);
57089
57468
  __decorate([
57090
57469
  PropWatch({ type: Boolean }),
57091
57470
  __metadata("design:type", Boolean)
@@ -57127,12 +57506,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
57127
57506
  [
57128
57507
  _c(
57129
57508
  "v-container",
57130
- {
57131
- class: {
57132
- "zd-tabs-tab-item-container-flex": _vm.flex,
57133
- },
57134
- attrs: { fluid: "" },
57135
- },
57509
+ { attrs: { fluid: "" } },
57136
57510
  [
57137
57511
  _vm._l(_vm.children, function (child, index) {
57138
57512
  return _c(
@@ -57160,11 +57534,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
57160
57534
  /* style */
57161
57535
  const __vue_inject_styles__$a = function (inject) {
57162
57536
  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 });
57537
+ 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
57538
 
57165
57539
  };
57166
57540
  /* scoped */
57167
- const __vue_scope_id__$a = "data-v-f6ae0120";
57541
+ const __vue_scope_id__$a = "data-v-a94346d8";
57168
57542
  /* module identifier */
57169
57543
  const __vue_module_identifier__$a = undefined;
57170
57544
  /* functional template */
@@ -57454,16 +57828,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
57454
57828
  }
57455
57829
  mounted() {
57456
57830
  this.setPlaceholder('textarea');
57831
+ if (this.instance.fillHeight) {
57832
+ setFillHeight(this.$el);
57833
+ if (this.$el.parentElement && this.instance.cssClass.indexOf('zd-form-child') !== -1) {
57834
+ setFillHeight(this.$el.parentElement);
57835
+ }
57836
+ }
57457
57837
  }
57458
57838
  blur(event) {
57459
57839
  this.instance.blur(event, this.$el);
57460
57840
  this.setPlaceholder('textarea');
57461
57841
  }
57462
- get cssVars() {
57463
- return {
57464
- '--zd-textarea-height': this.instance.height,
57465
- };
57466
- }
57467
57842
  };
57468
57843
  __decorate([
57469
57844
  PropWatch({ type: [Boolean, String], default: false }),
@@ -57572,12 +57947,27 @@ If you're seeing "$attrs is readonly", it's caused by this`);
57572
57947
  !!_vm.instance.prependIcon && !_vm.instance.prefix,
57573
57948
  "v-textarea--no-resize": !_vm.instance.resize,
57574
57949
  "zd-input-required": _vm.instance.validations.required,
57575
- "fill-height": _vm.instance.fillHeight,
57576
57950
  },
57577
57951
  "zd-text-align-" +
57578
57952
  (_vm.instance.reverse ? "right" : _vm.instance.align),
57579
57953
  ],
57580
- style: Object.assign({}, _vm.instance.cssStyle, _vm.cssVars),
57954
+ style: Object.assign({}, _vm.instance.cssStyle, {
57955
+ height:
57956
+ _vm.instance.fillHeight ||
57957
+ _vm.instance.cssClass.indexOf("zd-form-child") !== -1
57958
+ ? undefined
57959
+ : _vm.$formatSize(_vm.instance.height),
57960
+ minHeight:
57961
+ _vm.instance.fillminHeight ||
57962
+ _vm.instance.cssClass.indexOf("zd-form-child") !== -1
57963
+ ? undefined
57964
+ : _vm.$formatSize(_vm.instance.minHeight),
57965
+ maxHeight:
57966
+ _vm.instance.fillmaxHeight ||
57967
+ _vm.instance.cssClass.indexOf("zd-form-child") !== -1
57968
+ ? undefined
57969
+ : _vm.$formatSize(_vm.instance.maxHeight),
57970
+ }),
57581
57971
  attrs: {
57582
57972
  id: _vm.instance.name,
57583
57973
  name: _vm.instance.name,
@@ -57671,7 +58061,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
57671
58061
  /* style */
57672
58062
  const __vue_inject_styles__$7 = function (inject) {
57673
58063
  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 });
58064
+ 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
58065
 
57676
58066
  };
57677
58067
  /* scoped */
@@ -58461,6 +58851,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
58461
58851
  this.setAfterTitleMargin();
58462
58852
  this.nodeChange();
58463
58853
  this.$watch('$refs.tree.nodes', this.nodeChange, { deep: true });
58854
+ if (this.instance.fillHeight) {
58855
+ setFillHeight(this.$el);
58856
+ }
58464
58857
  }
58465
58858
  dataChange() {
58466
58859
  this.instance.createNodesFromDatasource();
@@ -58599,13 +58992,33 @@ If you're seeing "$attrs is readonly", it's caused by this`);
58599
58992
  __metadata("design:type", Boolean)
58600
58993
  ], ZdTree.prototype, "checkbox", void 0);
58601
58994
  __decorate([
58602
- vuePropertyDecorator.Prop({ type: [Number, String], default: '' }),
58995
+ PropWatch({ type: [Number, String], default: 'auto' }),
58996
+ __metadata("design:type", Object)
58997
+ ], ZdTree.prototype, "height", void 0);
58998
+ __decorate([
58999
+ PropWatch({ type: [Number, String], default: 'auto' }),
59000
+ __metadata("design:type", Object)
59001
+ ], ZdTree.prototype, "minHeight", void 0);
59002
+ __decorate([
59003
+ PropWatch({ type: [Number, String], default: 'none' }),
58603
59004
  __metadata("design:type", Object)
58604
59005
  ], ZdTree.prototype, "maxHeight", void 0);
58605
59006
  __decorate([
58606
- vuePropertyDecorator.Prop({ type: [Number, String], default: '' }),
59007
+ PropWatch({ type: [Number, String], default: '100%' }),
59008
+ __metadata("design:type", Object)
59009
+ ], ZdTree.prototype, "width", void 0);
59010
+ __decorate([
59011
+ PropWatch({ type: [Number, String], default: 'auto' }),
58607
59012
  __metadata("design:type", Object)
58608
- ], ZdTree.prototype, "height", void 0);
59013
+ ], ZdTree.prototype, "minWidth", void 0);
59014
+ __decorate([
59015
+ PropWatch({ type: [Number, String], default: 'none' }),
59016
+ __metadata("design:type", Object)
59017
+ ], ZdTree.prototype, "maxWidth", void 0);
59018
+ __decorate([
59019
+ PropWatch({ type: [Boolean, String], default: false }),
59020
+ __metadata("design:type", Object)
59021
+ ], ZdTree.prototype, "fillHeight", void 0);
58609
59022
  __decorate([
58610
59023
  vuePropertyDecorator.Prop({ type: [String, Number, Boolean], default: false }),
58611
59024
  __metadata("design:type", Object)
@@ -58651,19 +59064,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
58651
59064
  "zd-tree",
58652
59065
  { "theme--dark": _vm.$isDark(this) },
58653
59066
  { "theme--light": _vm.$isLight(this) },
58654
- { "zd-tree-flex": _vm.instance.height || _vm.instance.maxHeight },
58655
59067
  ],
58656
59068
  style: [_vm.cssColorVars].concat(
58657
59069
  _vm.$styleObject(_vm.instance.cssStyle),
58658
59070
  [
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
- : {},
59071
+ {
59072
+ height: _vm.$formatSize(_vm.instance.height),
59073
+ width: _vm.$formatSize(_vm.instance.width),
59074
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
59075
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
59076
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
59077
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
59078
+ },
58667
59079
  ]
58668
59080
  ),
58669
59081
  attrs: { id: _vm.instance.name },
@@ -58945,7 +59357,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
58945
59357
  /* style */
58946
59358
  const __vue_inject_styles__$2 = function (inject) {
58947
59359
  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 });
59360
+ 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
59361
 
58950
59362
  };
58951
59363
  /* scoped */
@@ -59115,16 +59527,20 @@ If you're seeing "$attrs is readonly", it's caused by this`);
59115
59527
  "zd-grid",
59116
59528
  "zd-tree-grid",
59117
59529
  _vm.instance.cssClass,
59118
- { "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
59119
59530
  { "theme--dark": _vm.$isDark(this) },
59120
59531
  { "theme--light": _vm.$isLight(this) },
59121
59532
  { "zd-grid-loading": _vm.instance.datasource.loading },
59122
59533
  ],
59123
59534
  style: [
59124
59535
  _vm.cssColorVars,
59125
- _vm.instance.gridHeight
59126
- ? { height: _vm.$formatSize(_vm.instance.gridHeight) }
59127
- : {},
59536
+ {
59537
+ height: _vm.$formatSize(_vm.instance.height),
59538
+ width: _vm.$formatSize(_vm.instance.width),
59539
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
59540
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
59541
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
59542
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
59543
+ },
59128
59544
  _vm.$styleObject(_vm.instance.cssStyle),
59129
59545
  ],
59130
59546
  attrs: {
@@ -60001,8 +60417,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
60001
60417
  /* style */
60002
60418
  const __vue_inject_styles__$1 = function (inject) {
60003
60419
  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 });
60420
+ inject("data-v-4a95d090_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 })
60421
+ ,inject("data-v-4a95d090_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.level1 {\n width: 24px !important;\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
60422
 
60007
60423
  };
60008
60424
  /* scoped */
@@ -60244,10 +60660,20 @@ If you're seeing "$attrs is readonly", it's caused by this`);
60244
60660
  "zd-tree-grid",
60245
60661
  "zd-tree-grid-editable",
60246
60662
  _vm.instance.cssClass,
60247
- { "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
60248
60663
  { "zd-grid-loading": _vm.instance.datasource.loading },
60249
60664
  ],
60250
- style: [_vm.cssColorVars, _vm.$styleObject(_vm.instance.cssStyle)],
60665
+ style: [
60666
+ _vm.cssColorVars,
60667
+ {
60668
+ height: _vm.$formatSize(_vm.instance.height),
60669
+ width: _vm.$formatSize(_vm.instance.width),
60670
+ maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
60671
+ minHeight: _vm.$formatSize(_vm.instance.minHeight),
60672
+ maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
60673
+ minWidth: _vm.$formatSize(_vm.instance.minWidth),
60674
+ },
60675
+ _vm.$styleObject(_vm.instance.cssStyle),
60676
+ ],
60251
60677
  attrs: {
60252
60678
  id: _vm.instance.name,
60253
60679
  "fixed-header": "",
@@ -60877,6 +61303,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
60877
61303
  column: column,
60878
61304
  row: item,
60879
61305
  rowStyle: rowStyle,
61306
+ rowKey:
61307
+ _vm.rowKey(item),
60880
61308
  cellsApplied:
60881
61309
  cellsApplied,
60882
61310
  isEdited:
@@ -61212,8 +61640,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
61212
61640
  /* style */
61213
61641
  const __vue_inject_styles__ = function (inject) {
61214
61642
  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 });
61643
+ 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 })
61644
+ ,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
61645
 
61218
61646
  };
61219
61647
  /* scoped */
@@ -61801,6 +62229,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
61801
62229
  exports.ZdTreeGridEditable = script;
61802
62230
  exports.components = components;
61803
62231
  exports["default"] = Zeedhi;
62232
+ exports.setFillHeight = setFillHeight;
61804
62233
 
61805
62234
  Object.defineProperty(exports, '__esModule', { value: true });
61806
62235