@zeedhi/vuetify 1.79.0 → 1.80.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.
@@ -7,7 +7,7 @@ import Sortable from 'sortablejs';
7
7
  import 'hooper/dist/hooper.css';
8
8
  import '@zeedhi/zd-vue-treeselect/dist/vue-treeselect.css';
9
9
  import Vue from 'vue';
10
- import { Prop, Component as Component$1, Watch } from 'vue-property-decorator';
10
+ import { Prop, Component as Component$1, Watch, Vue as Vue$1 } from 'vue-property-decorator';
11
11
  import { Component, AlertService, ComponentRender, ApexChart, Badge, Breadcrumbs, Button, ButtonGroup as ButtonGroup$1, Card, Carousel, Input, Form, Toggleable as Toggleable$1, Checkbox, CheckboxMultiple, Chip, CodeEditor, Col, CollapseCard, Container, TextInput, Number as Number$1, AutoNumeric, Currency, Dashboard, Date as Date$1, DateRange, DialogService, Divider, Dropdown, FileInput, Footer, ChildNotFoundError, Frame, FramePage, Iterable, Grid, GridEditable, Header, GridColumn, Column, Icon, Image as Image$1, Increment, IterableComponentRender, IterableColumnsButton, IterablePageComponent, IterablePagination, Select, IterablePageSize, IterablePageInfo, List, ListItem, ListGroup, Loading, LoadingService, Login, LoginButton, MasterDetail, Menu, MenuLink, MenuGroup, MenuButton, MenuSeparator, ModalService, ModalCloseButton, Month, Password, Progress, Radio, RangeSlider, Row as Row$1, Search, SelectableList, SelectMultiple, SelectTree, SelectTreeMultiple, SpeedDial, Steppers, SvgMap, Switch, Table, Tabs, Tag, Text, Textarea, Time, Tooltip, Tree, TreeGrid, TreeGridEditable, Icons as Icons$1 } from '@zeedhi/common';
12
12
  import Component$2, { createDecorator } from 'vue-class-component';
13
13
  import Prism$1 from 'prismjs';
@@ -16819,7 +16819,7 @@ const BaseSlideGroup = mixins(BaseItemGroup, Mobile).extend({
16819
16819
  }
16820
16820
 
16821
16821
  });
16822
- BaseSlideGroup.extend({
16822
+ var VSlideGroup = BaseSlideGroup.extend({
16823
16823
  name: 'v-slide-group',
16824
16824
 
16825
16825
  provide() {
@@ -26042,7 +26042,7 @@ var VSkeletonLoader = mixins(Elevatable, Measurable, Themeable).extend({
26042
26042
  });
26043
26043
 
26044
26044
  // Extensions
26045
- mixins(BaseItem, factory$1('slideGroup')
26045
+ var VSlideItem = mixins(BaseItem, factory$1('slideGroup')
26046
26046
  /* @vue/component */
26047
26047
  ).extend({
26048
26048
  name: 'v-slide-item'
@@ -38194,15 +38194,35 @@ let ZdApexChart = class ZdApexChart extends ZdComponentRender$1 {
38194
38194
  constructor() {
38195
38195
  super(...arguments);
38196
38196
  this.instanceType = ApexChart;
38197
+ this.breakpoints = [];
38197
38198
  }
38198
38199
  mounted() {
38200
+ var _a, _b;
38199
38201
  this.setApexChartTheme();
38200
- const updateFn = (options) => this.$refs.instance.chart.updateOptions(options, false, true, true, true);
38202
+ const updateFn = this.updateChart;
38201
38203
  this.instance.setViewUpdate(updateFn);
38202
38204
  this.instance.setViewGetIconHTML((icon) => IconRenderer.getIcon(icon, this.$root.$options.vuetify));
38203
38205
  if (this.instance.fillHeight) {
38204
38206
  setFillHeight(this.$el);
38205
38207
  }
38208
+ this.defaultOptions = Object.assign({}, this.$refs.instance.chart.w.config);
38209
+ this.breakpoints = ((_b = (_a = this.instance.options) === null || _a === void 0 ? void 0 : _a.parentResponsive) === null || _b === void 0 ? void 0 : _b.sort((a, b) => a.breakpoint - b.breakpoint)) || [];
38210
+ this.apexChartContainer = this.$refs.chartContainer;
38211
+ if (this.breakpoints.length) {
38212
+ this.resizeObserver = new ResizeObserver(this.handleResize);
38213
+ this.resizeObserver.observe(this.apexChartContainer);
38214
+ }
38215
+ }
38216
+ beforeDestroy() {
38217
+ var _a;
38218
+ (_a = this.resizeObserver) === null || _a === void 0 ? void 0 : _a.disconnect();
38219
+ }
38220
+ updateChart(options) {
38221
+ return new Promise((resolve) => {
38222
+ const { chart } = this.$refs.instance;
38223
+ chart.w.globals.selectedDataPoints = [];
38224
+ resolve(chart.updateOptions(options, false, true, true, true));
38225
+ });
38206
38226
  }
38207
38227
  setApexChartTheme() {
38208
38228
  let theme = '';
@@ -38219,6 +38239,20 @@ let ZdApexChart = class ZdApexChart extends ZdComponentRender$1 {
38219
38239
  } });
38220
38240
  this.instance.options = newOptions;
38221
38241
  }
38242
+ handleResize() {
38243
+ if (!this.breakpoints.length)
38244
+ return;
38245
+ const matchedOptions = this.breakpoints.find((bp) => this.apexChartContainer.clientWidth <= bp.breakpoint);
38246
+ if (matchedOptions) {
38247
+ this.instance.updateChart(matchedOptions.options);
38248
+ }
38249
+ else if (this.instance.options !== this.defaultOptions) {
38250
+ this.instance.updateChart(this.defaultOptions);
38251
+ }
38252
+ }
38253
+ drillUp() {
38254
+ this.instance.drillUp();
38255
+ }
38222
38256
  };
38223
38257
  __decorate([
38224
38258
  PropWatch({ type: String, default: 'line' }),
@@ -38288,6 +38322,7 @@ var __vue_render__$1t = function () {
38288
38322
  return _c(
38289
38323
  "div",
38290
38324
  {
38325
+ ref: "chartContainer",
38291
38326
  staticClass: "apexcharts-container",
38292
38327
  style: {
38293
38328
  height: _vm.$formatSize(_vm.instance.height),
@@ -38313,8 +38348,11 @@ var __vue_render__$1t = function () {
38313
38348
  class: [
38314
38349
  "zd-apex-chart",
38315
38350
  _vm.instance.cssClass,
38316
- { "theme--dark": _vm.$isDark(this) },
38317
- { "theme--light": _vm.$isLight(this) },
38351
+ {
38352
+ "theme--dark": _vm.$isDark(this),
38353
+ "theme--light": _vm.$isLight(this),
38354
+ "zd-apex-chart-drilled": _vm.instance.drillHistory.length > 0,
38355
+ },
38318
38356
  ],
38319
38357
  style: _vm.instance.cssStyle,
38320
38358
  attrs: {
@@ -38334,6 +38372,26 @@ var __vue_render__$1t = function () {
38334
38372
  },
38335
38373
  }),
38336
38374
  _vm._v(" "),
38375
+ _vm.instance.drillHistory.length > 0
38376
+ ? _c(
38377
+ "zd-button",
38378
+ _vm._b(
38379
+ {
38380
+ attrs: { name: "apexcharts-drill-button" },
38381
+ on: { click: _vm.drillUp },
38382
+ },
38383
+ "zd-button",
38384
+ {
38385
+ cssClass: "zd-apex-charts-drill-button",
38386
+ icon: true,
38387
+ iconName: "arrowLeft",
38388
+ small: true,
38389
+ },
38390
+ false
38391
+ )
38392
+ )
38393
+ : _vm._e(),
38394
+ _vm._v(" "),
38337
38395
  _c(
38338
38396
  "v-overlay",
38339
38397
  {
@@ -38361,7 +38419,7 @@ __vue_render__$1t._withStripped = true;
38361
38419
  /* style */
38362
38420
  const __vue_inject_styles__$1t = function (inject) {
38363
38421
  if (!inject) return
38364
- inject("data-v-5bef80a8_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 !important;\n}", map: undefined, media: undefined });
38422
+ inject("data-v-51426e9c_0", { source: ".zd-apex-chart.zd-apex-chart-drilled svg text.apexcharts-title-text {\n transform: translateX(20px);\n}\n.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 !important;\n}\n.apexcharts-container .zd-apex-charts-drill-button {\n position: absolute;\n top: 0px;\n left: 0px;\n}", map: undefined, media: undefined });
38365
38423
 
38366
38424
  };
38367
38425
  /* scoped */
@@ -41531,6 +41589,11 @@ let ZdTextInput = class ZdTextInput extends ZdInput$1 {
41531
41589
  this.instance.blur(event, this.$el);
41532
41590
  this.setPlaceholder();
41533
41591
  }
41592
+ setBlur() {
41593
+ Vue$1.nextTick(() => {
41594
+ this.$el.getElementsByTagName('input')[0].blur();
41595
+ });
41596
+ }
41534
41597
  getIconClickEvents() {
41535
41598
  const events = {};
41536
41599
  if (this.instance.events.appendIconClick) {
@@ -42522,20 +42585,23 @@ let ZdDate = class ZdDate extends __vue_component__$1f {
42522
42585
  this.instance.selectDate(date, event, this.$el);
42523
42586
  }
42524
42587
  getAllowedDates(date) {
42588
+ const parsedDate = this.instance.parseISODateValue(date);
42525
42589
  if (typeof this.instance.allowedDates === 'function') {
42526
- return this.instance.allowedDates(date);
42590
+ return this.instance.allowedDates(parsedDate);
42527
42591
  }
42528
42592
  if (typeof this.instance.allowedDates === 'undefined') {
42529
42593
  return true;
42530
42594
  }
42531
- return this.instance.allowedDates.indexOf(date) !== -1;
42595
+ return this.instance.allowedDates.indexOf(parsedDate) !== -1;
42532
42596
  }
42533
42597
  isPrintableKey(key) {
42534
42598
  return !!key && key.length === 1;
42535
42599
  }
42536
42600
  onChangeDatePicker() {
42537
42601
  const textInput = this.$refs.textInputInstance.$children[0];
42538
- this.instance.showDatePicker = false;
42602
+ if (!this.$isMobile()) {
42603
+ this.instance.showDatePicker = false;
42604
+ }
42539
42605
  textInput.validate(false);
42540
42606
  }
42541
42607
  setFocus(selectAll = false) {
@@ -42669,6 +42735,14 @@ __decorate([
42669
42735
  PropWatch({ type: String, default: '' }),
42670
42736
  __metadata("design:type", String)
42671
42737
  ], ZdDate.prototype, "helperValue", void 0);
42738
+ __decorate([
42739
+ PropWatch({ type: String, default: '' }),
42740
+ __metadata("design:type", String)
42741
+ ], ZdDate.prototype, "max", void 0);
42742
+ __decorate([
42743
+ PropWatch({ type: String, default: '' }),
42744
+ __metadata("design:type", String)
42745
+ ], ZdDate.prototype, "min", void 0);
42672
42746
  ZdDate = __decorate([
42673
42747
  Component$1
42674
42748
  ], ZdDate);
@@ -42749,54 +42823,131 @@ var __vue_render__$1b = function () {
42749
42823
  },
42750
42824
  [
42751
42825
  _vm._v(" "),
42752
- _c(
42753
- "v-date-picker",
42754
- _vm._b(
42755
- {
42756
- directives: [
42757
- {
42758
- name: "show",
42759
- rawName: "v-show",
42760
- value: _vm.instance.isVisible,
42761
- expression: "instance.isVisible",
42762
- },
42763
- ],
42764
- ref: "picker",
42765
- attrs: { "no-title": "" },
42766
- on: {
42767
- "hook:mounted": _vm.pickerMounted,
42768
- "hook:destroyed": _vm.pickerDestroyed,
42769
- "click:date": _vm.onSelectDate,
42770
- change: function ($event) {
42771
- return _vm.onChangeDatePicker()
42826
+ !_vm.instance.readonly
42827
+ ? _c(
42828
+ _vm.$isMobile() ? "v-dialog" : "span",
42829
+ {
42830
+ tag: "component",
42831
+ attrs: {
42832
+ width: "290px",
42833
+ persistent: "",
42834
+ "content-class": "zd-mx-0",
42772
42835
  },
42773
- },
42774
- model: {
42775
- value: _vm.instance.isoValue,
42776
- callback: function ($$v) {
42777
- _vm.$set(_vm.instance, "isoValue", $$v);
42836
+ model: {
42837
+ value: _vm.instance.showDatePicker,
42838
+ callback: function ($$v) {
42839
+ _vm.$set(_vm.instance, "showDatePicker", $$v);
42840
+ },
42841
+ expression: "instance.showDatePicker",
42778
42842
  },
42779
- expression: "instance.isoValue",
42780
42843
  },
42781
- },
42782
- "v-date-picker",
42783
- {
42784
- allowedDates: _vm.getAllowedDates,
42785
- color: _vm.instance.color,
42786
- dark: _vm.instance.dark,
42787
- firstDayOfWeek: _vm.instance.firstDayOfWeek,
42788
- fullWidth: _vm.instance.fullWidth,
42789
- light: _vm.instance.light,
42790
- locale: _vm.instance.locale,
42791
- scrollable: _vm.instance.scrollable,
42792
- showDatePicker: _vm.instance.showDatePicker,
42793
- showWeek: _vm.instance.showWeek,
42794
- type: _vm.instance.pickerType,
42795
- width: _vm.instance.width,
42796
- },
42797
- false
42798
- )
42799
- ),
42844
+ [
42845
+ _c(
42846
+ "v-date-picker",
42847
+ _vm._b(
42848
+ {
42849
+ ref: "picker",
42850
+ attrs: { "no-title": !_vm.$isMobile() },
42851
+ on: {
42852
+ "hook:mounted": _vm.pickerMounted,
42853
+ "hook:destroyed": _vm.pickerDestroyed,
42854
+ "click:date": _vm.onSelectDate,
42855
+ change: function ($event) {
42856
+ return _vm.onChangeDatePicker()
42857
+ },
42858
+ },
42859
+ model: {
42860
+ value: _vm.instance.isoValue,
42861
+ callback: function ($$v) {
42862
+ _vm.$set(_vm.instance, "isoValue", $$v);
42863
+ },
42864
+ expression: "instance.isoValue",
42865
+ },
42866
+ },
42867
+ "v-date-picker",
42868
+ {
42869
+ allowedDates: _vm.getAllowedDates,
42870
+ color: _vm.instance.color,
42871
+ dark: _vm.instance.dark,
42872
+ firstDayOfWeek: _vm.instance.firstDayOfWeek,
42873
+ fullWidth: _vm.instance.fullWidth,
42874
+ light: _vm.instance.light,
42875
+ locale: _vm.instance.locale,
42876
+ scrollable: _vm.instance.scrollable,
42877
+ showDatePicker: _vm.instance.showDatePicker,
42878
+ showWeek: _vm.instance.showWeek,
42879
+ type: _vm.instance.pickerType,
42880
+ width: _vm.$isMobile() ? "290px" : _vm.instance.width,
42881
+ max: _vm.instance.formatISODateValue(_vm.instance.max),
42882
+ min: _vm.instance.formatISODateValue(_vm.instance.min),
42883
+ },
42884
+ false
42885
+ ),
42886
+ [
42887
+ _vm.$isMobile()
42888
+ ? _c(
42889
+ "span",
42890
+ [
42891
+ _vm.$isMobile()
42892
+ ? _c(
42893
+ "zd-button",
42894
+ _vm._b(
42895
+ {
42896
+ attrs: {
42897
+ name:
42898
+ _vm.instance.name + "-done-button",
42899
+ },
42900
+ },
42901
+ "zd-button",
42902
+ {
42903
+ flat: true,
42904
+ label: "OK",
42905
+ events: {
42906
+ click: function () {
42907
+ _vm.instance.showDatePicker = false;
42908
+ _vm.setBlur();
42909
+ },
42910
+ },
42911
+ },
42912
+ false
42913
+ )
42914
+ )
42915
+ : _vm._e(),
42916
+ _vm._v(" "),
42917
+ _vm.$isMobile() && _vm.instance.clearable
42918
+ ? _c(
42919
+ "zd-button",
42920
+ _vm._b(
42921
+ {
42922
+ attrs: {
42923
+ name:
42924
+ _vm.instance.name + "-clear-button",
42925
+ },
42926
+ },
42927
+ "zd-button",
42928
+ {
42929
+ flat: true,
42930
+ label: "CLEAR",
42931
+ events: {
42932
+ click: function () {
42933
+ _vm.instance.isoValue = null;
42934
+ },
42935
+ },
42936
+ },
42937
+ false
42938
+ )
42939
+ )
42940
+ : _vm._e(),
42941
+ ],
42942
+ 1
42943
+ )
42944
+ : _vm._e(),
42945
+ ]
42946
+ ),
42947
+ ],
42948
+ 1
42949
+ )
42950
+ : _vm._e(),
42800
42951
  ],
42801
42952
  1
42802
42953
  ),
@@ -42847,7 +42998,7 @@ __vue_render__$1b._withStripped = true;
42847
42998
  /* style */
42848
42999
  const __vue_inject_styles__$1b = function (inject) {
42849
43000
  if (!inject) return
42850
- inject("data-v-3eea2326_0", { source: "div.v-picker--date .v-picker__body {\n background: transparent;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header {\n padding: var(--spacing-2) var(--spacing-4) var(--spacing-1) var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div button:not(:hover):not(:focus) {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-btn--icon {\n height: var(--icon-size);\n width: var(--icon-size);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value button {\n padding: 0;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table {\n margin-bottom: 12px;\n padding: 0 var(--spacing-4);\n height: 200px;\n margin-bottom: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table .v-btn.v-btn--active {\n color: var(--v-secondary-lighten4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--date .v-btn {\n width: 24px;\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month {\n padding-top: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month .v-btn {\n padding: 4px 0 7px 0;\n height: 24px;\n width: 56px;\n min-width: 56px;\n border-radius: var(--border);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month td {\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month tr:not(:last-child) td {\n padding-bottom: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table thead th {\n color: var(--zd-font-disabled-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent--text {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent {\n background: var(--zd-primary-base) !important;\n color: white !important;\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {\n color: var(--zd-primary-base) !important;\n}\n.zd-date-menu-activator .v-menu__activator.v-menu__activator--disabled {\n cursor: default;\n}\n.date-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.date-helper-values-button.with-label {\n margin-top: 20px;\n}\n.date-helper-values-option {\n cursor: pointer;\n}\n.date-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
43001
+ inject("data-v-34d81b8c_0", { source: "div.v-picker--date .v-picker__body {\n background: transparent;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header {\n padding: var(--spacing-2) var(--spacing-4) var(--spacing-1) var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div button:not(:hover):not(:focus) {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-btn--icon {\n height: var(--icon-size);\n width: var(--icon-size);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value button {\n padding: 0;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table {\n margin-bottom: 12px;\n padding: 0 var(--spacing-4);\n height: 200px;\n margin-bottom: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table .v-btn.v-btn--active {\n color: var(--v-secondary-lighten4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--date .v-btn {\n width: 24px;\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month {\n padding-top: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month .v-btn {\n padding: 4px 0 7px 0;\n height: 24px;\n width: 56px;\n min-width: 56px;\n border-radius: var(--border);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month td {\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month tr:not(:last-child) td {\n padding-bottom: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table thead th {\n color: var(--zd-font-disabled-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent--text {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent {\n background: var(--zd-primary-base) !important;\n color: white !important;\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {\n color: var(--zd-primary-base) !important;\n}\n.zd-date-menu-activator .v-menu__activator.v-menu__activator--disabled {\n cursor: default;\n}\n.date-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.date-helper-values-button.with-label {\n margin-top: 20px;\n}\n.date-helper-values-option {\n cursor: pointer;\n}\n.date-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
42851
43002
 
42852
43003
  };
42853
43004
  /* scoped */
@@ -42955,7 +43106,9 @@ let ZdDateRange = class ZdDateRange extends __vue_component__$1f {
42955
43106
  onChangeDatePicker() {
42956
43107
  const textInput = this.$refs.textInputInstance.$children[0];
42957
43108
  textInput.validate(false);
42958
- this.instance.showDatePicker = false;
43109
+ if (!this.$isMobile()) {
43110
+ this.instance.showDatePicker = false;
43111
+ }
42959
43112
  }
42960
43113
  setFocus(selectAll = false) {
42961
43114
  const { textInputInstance } = this.$refs;
@@ -43088,6 +43241,14 @@ __decorate([
43088
43241
  PropWatch({ type: [String, Array], default: () => [] }),
43089
43242
  __metadata("design:type", Object)
43090
43243
  ], ZdDateRange.prototype, "value", void 0);
43244
+ __decorate([
43245
+ PropWatch({ type: String, default: '' }),
43246
+ __metadata("design:type", String)
43247
+ ], ZdDateRange.prototype, "max", void 0);
43248
+ __decorate([
43249
+ PropWatch({ type: String, default: '' }),
43250
+ __metadata("design:type", String)
43251
+ ], ZdDateRange.prototype, "min", void 0);
43091
43252
  ZdDateRange = __decorate([
43092
43253
  Component$1
43093
43254
  ], ZdDateRange);
@@ -43168,52 +43329,141 @@ var __vue_render__$1a = function () {
43168
43329
  },
43169
43330
  [
43170
43331
  _vm._v(" "),
43171
- _c(
43172
- "v-date-picker",
43173
- _vm._b(
43174
- {
43175
- directives: [
43176
- {
43177
- name: "show",
43178
- rawName: "v-show",
43179
- value: _vm.instance.isVisible,
43180
- expression: "instance.isVisible",
43181
- },
43182
- ],
43183
- ref: "picker",
43184
- attrs: { "no-title": "", range: "" },
43185
- on: {
43186
- "hook:mounted": _vm.pickerMounted,
43187
- "hook:destroyed": _vm.pickerDestroyed,
43188
- change: function ($event) {
43189
- return _vm.onChangeDatePicker()
43332
+ !_vm.instance.readonly
43333
+ ? _c(
43334
+ _vm.$isMobile() ? "v-dialog" : "span",
43335
+ {
43336
+ tag: "component",
43337
+ attrs: {
43338
+ width: "290px",
43339
+ persistent: "",
43340
+ "content-class": "zd-mx-0",
43190
43341
  },
43191
- },
43192
- model: {
43193
- value: _vm.instance.isoRangeValue,
43194
- callback: function ($$v) {
43195
- _vm.$set(_vm.instance, "isoRangeValue", $$v);
43342
+ model: {
43343
+ value: _vm.instance.showDatePicker,
43344
+ callback: function ($$v) {
43345
+ _vm.$set(_vm.instance, "showDatePicker", $$v);
43346
+ },
43347
+ expression: "instance.showDatePicker",
43196
43348
  },
43197
- expression: "instance.isoRangeValue",
43198
43349
  },
43199
- },
43200
- "v-date-picker",
43201
- {
43202
- color: _vm.instance.color,
43203
- dark: _vm.instance.dark,
43204
- firstDayOfWeek: _vm.instance.firstDayOfWeek,
43205
- fullWidth: _vm.instance.fullWidth,
43206
- light: _vm.instance.light,
43207
- locale: _vm.instance.locale,
43208
- scrollable: _vm.instance.scrollable,
43209
- showDatePicker: _vm.instance.showDatePicker,
43210
- showWeek: _vm.instance.showWeek,
43211
- type: _vm.instance.pickerType,
43212
- width: _vm.instance.width,
43213
- },
43214
- false
43215
- )
43216
- ),
43350
+ [
43351
+ _c(
43352
+ "v-date-picker",
43353
+ _vm._b(
43354
+ {
43355
+ directives: [
43356
+ {
43357
+ name: "show",
43358
+ rawName: "v-show",
43359
+ value: _vm.instance.isVisible,
43360
+ expression: "instance.isVisible",
43361
+ },
43362
+ ],
43363
+ ref: "picker",
43364
+ attrs: { "no-title": !_vm.$isMobile(), range: "" },
43365
+ on: {
43366
+ "hook:mounted": _vm.pickerMounted,
43367
+ "hook:destroyed": _vm.pickerDestroyed,
43368
+ change: function ($event) {
43369
+ return _vm.onChangeDatePicker()
43370
+ },
43371
+ },
43372
+ model: {
43373
+ value: _vm.instance.isoRangeValue,
43374
+ callback: function ($$v) {
43375
+ _vm.$set(_vm.instance, "isoRangeValue", $$v);
43376
+ },
43377
+ expression: "instance.isoRangeValue",
43378
+ },
43379
+ },
43380
+ "v-date-picker",
43381
+ {
43382
+ color: _vm.instance.color,
43383
+ dark: _vm.instance.dark,
43384
+ firstDayOfWeek: _vm.instance.firstDayOfWeek,
43385
+ fullWidth: _vm.instance.fullWidth,
43386
+ light: _vm.instance.light,
43387
+ locale: _vm.instance.locale,
43388
+ scrollable: _vm.instance.scrollable,
43389
+ showDatePicker: _vm.instance.showDatePicker,
43390
+ showWeek: _vm.instance.showWeek,
43391
+ type: _vm.instance.pickerType,
43392
+ width: _vm.$isMobile() ? "290px" : _vm.instance.width,
43393
+ max: _vm.instance.formatISODateRangeValue(
43394
+ _vm.instance.max
43395
+ )[0],
43396
+ min: _vm.instance.formatISODateRangeValue(
43397
+ _vm.instance.min
43398
+ )[0],
43399
+ },
43400
+ false
43401
+ ),
43402
+ [
43403
+ _vm.$isMobile()
43404
+ ? _c(
43405
+ "span",
43406
+ [
43407
+ _vm.$isMobile()
43408
+ ? _c(
43409
+ "zd-button",
43410
+ _vm._b(
43411
+ {
43412
+ attrs: {
43413
+ name:
43414
+ _vm.instance.name + "-done-button",
43415
+ },
43416
+ },
43417
+ "zd-button",
43418
+ {
43419
+ flat: true,
43420
+ label: "OK",
43421
+ events: {
43422
+ click: function () {
43423
+ _vm.instance.showDatePicker = false;
43424
+ _vm.setBlur();
43425
+ },
43426
+ },
43427
+ },
43428
+ false
43429
+ )
43430
+ )
43431
+ : _vm._e(),
43432
+ _vm._v(" "),
43433
+ _vm.$isMobile() && _vm.instance.clearable
43434
+ ? _c(
43435
+ "zd-button",
43436
+ _vm._b(
43437
+ {
43438
+ attrs: {
43439
+ name:
43440
+ _vm.instance.name + "-clear-button",
43441
+ },
43442
+ },
43443
+ "zd-button",
43444
+ {
43445
+ flat: true,
43446
+ label: "CLEAR",
43447
+ events: {
43448
+ click: function () {
43449
+ _vm.instance.value = [];
43450
+ },
43451
+ },
43452
+ },
43453
+ false
43454
+ )
43455
+ )
43456
+ : _vm._e(),
43457
+ ],
43458
+ 1
43459
+ )
43460
+ : _vm._e(),
43461
+ ]
43462
+ ),
43463
+ ],
43464
+ 1
43465
+ )
43466
+ : _vm._e(),
43217
43467
  ],
43218
43468
  1
43219
43469
  ),
@@ -43265,7 +43515,7 @@ __vue_render__$1a._withStripped = true;
43265
43515
  /* style */
43266
43516
  const __vue_inject_styles__$1a = function (inject) {
43267
43517
  if (!inject) return
43268
- inject("data-v-7cad0609_0", { source: "div.v-picker--date .v-picker__body {\n background: transparent;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header {\n padding: var(--spacing-2) var(--spacing-4) var(--spacing-1) var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div button:not(:hover):not(:focus) {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-btn--icon {\n height: var(--icon-size);\n width: var(--icon-size);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value button {\n padding: 0;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table {\n margin-bottom: 12px;\n padding: 0 var(--spacing-4);\n height: 200px;\n margin-bottom: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table .v-btn.v-btn--active {\n color: var(--v-secondary-lighten4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--date .v-btn {\n width: 24px;\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month {\n padding-top: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month .v-btn {\n padding: 4px 0 7px 0;\n height: 24px;\n width: 56px;\n min-width: 56px;\n border-radius: var(--border);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month td {\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month tr:not(:last-child) td {\n padding-bottom: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table thead th {\n color: var(--zd-font-disabled-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent--text {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent {\n background: var(--zd-primary-base) !important;\n color: white !important;\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {\n color: var(--zd-primary-base) !important;\n}\n.zd-date-menu-activator .v-menu__activator.v-menu__activator--disabled {\n cursor: default;\n}\n.date-range-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.date-range-helper-values-button.with-label {\n margin-top: 20px;\n}\n.date-range-helper-values-option {\n cursor: pointer;\n}\n.date-range-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
43518
+ inject("data-v-137a58b0_0", { source: "div.v-picker--date .v-picker__body {\n background: transparent;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header {\n padding: var(--spacing-2) var(--spacing-4) var(--spacing-1) var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value:not(.v-date-picker-header__value--disabled) > div button:not(:hover):not(:focus) {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-btn--icon {\n height: var(--icon-size);\n width: var(--icon-size);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-header .v-date-picker-header__value button {\n padding: 0;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table {\n margin-bottom: 12px;\n padding: 0 var(--spacing-4);\n height: 200px;\n margin-bottom: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table .v-btn.v-btn--active {\n color: var(--v-secondary-lighten4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--date .v-btn {\n width: 24px;\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month {\n padding-top: var(--spacing-4);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month .v-btn {\n padding: 4px 0 7px 0;\n height: 24px;\n width: 56px;\n min-width: 56px;\n border-radius: var(--border);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month td {\n height: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table.v-date-picker-table--month tr:not(:last-child) td {\n padding-bottom: 24px;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table thead th {\n color: var(--zd-font-disabled-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent--text {\n color: var(--zd-primary-base) !important;\n}\ndiv.v-picker--date .v-picker__body .v-date-picker-table table tbody button.v-btn.accent {\n background: var(--zd-primary-base) !important;\n color: white !important;\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li {\n color: var(--zd-font-default-color);\n}\ndiv.v-picker--date .v-picker__body ul.v-date-picker-years li.primary--text {\n color: var(--zd-primary-base) !important;\n}\n.zd-date-menu-activator .v-menu__activator.v-menu__activator--disabled {\n cursor: default;\n}\n.date-range-helper-values-button {\n height: 24px !important;\n margin-left: 5px;\n margin-top: 0;\n}\n.date-range-helper-values-button.with-label {\n margin-top: 20px;\n}\n.date-range-helper-values-option {\n cursor: pointer;\n}\n.date-range-helper-values-option:hover {\n background-color: rgba(0, 0, 0, 0.03);\n}", map: undefined, media: undefined });
43269
43519
 
43270
43520
  };
43271
43521
  /* scoped */
@@ -48905,28 +49155,6 @@ let ZdTreeGridCellContent = class ZdTreeGridCellContent extends __vue_component_
48905
49155
  }
48906
49156
  return text;
48907
49157
  }
48908
- hasShowChevron(row) {
48909
- if (!this.fieldHasChild)
48910
- return true;
48911
- const rowHasChild = row[this.fieldHasChild];
48912
- let isVisibleChevron = true;
48913
- switch (rowHasChild) {
48914
- case '0':
48915
- case false:
48916
- case 0:
48917
- isVisibleChevron = false;
48918
- break;
48919
- case '1':
48920
- case true:
48921
- case 1:
48922
- isVisibleChevron = true;
48923
- break;
48924
- default:
48925
- isVisibleChevron = true;
48926
- break;
48927
- }
48928
- return isVisibleChevron;
48929
- }
48930
49158
  hasShowChevronInTreeGrid(headerIndex, selectable) {
48931
49159
  return headerIndex === 0 || (headerIndex === 1 && selectable);
48932
49160
  }
@@ -48955,14 +49183,14 @@ __decorate([
48955
49183
  Prop({ type: String, required: true }),
48956
49184
  __metadata("design:type", String)
48957
49185
  ], ZdTreeGridCellContent.prototype, "expandClass", void 0);
48958
- __decorate([
48959
- Prop({ type: String, required: true }),
48960
- __metadata("design:type", String)
48961
- ], ZdTreeGridCellContent.prototype, "fieldHasChild", void 0);
48962
49186
  __decorate([
48963
49187
  Prop({ type: Boolean, default: false }),
48964
49188
  __metadata("design:type", Boolean)
48965
49189
  ], ZdTreeGridCellContent.prototype, "hasUsingCellText", void 0);
49190
+ __decorate([
49191
+ Prop({ type: Function, required: true }),
49192
+ __metadata("design:type", Function)
49193
+ ], ZdTreeGridCellContent.prototype, "hasChildOnDemand", void 0);
48966
49194
  ZdTreeGridCellContent = __decorate([
48967
49195
  Component$2
48968
49196
  ], ZdTreeGridCellContent);
@@ -49030,8 +49258,8 @@ var __vue_render__$T = function () {
49030
49258
  {
49031
49259
  name: "show",
49032
49260
  rawName: "v-show",
49033
- value: _vm.hasShowChevron(_vm.row),
49034
- expression: "hasShowChevron(row)",
49261
+ value: _vm.hasChildOnDemand(_vm.row),
49262
+ expression: "hasChildOnDemand(row)",
49035
49263
  },
49036
49264
  ],
49037
49265
  class: { opened: _vm.row.tree__opened },
@@ -49085,7 +49313,7 @@ __vue_render__$T._withStripped = true;
49085
49313
  /* style */
49086
49314
  const __vue_inject_styles__$T = function (inject) {
49087
49315
  if (!inject) return
49088
- inject("data-v-4f6824ad_0", { source: ".zd-grid-cell-wrapper {\n display: flex;\n gap: 0.75rem;\n}\n.zd-grid-cell-align-right {\n justify-content: end;\n}\n.zd-grid-cell-align-left {\n justify-content: start;\n}\n.zd-grid-cell-align-center {\n justify-content: center;\n}", map: undefined, media: undefined });
49316
+ inject("data-v-f6232196_0", { source: ".zd-grid-cell-wrapper {\n display: flex;\n gap: 0.75rem;\n}\n.zd-grid-cell-align-right {\n justify-content: end;\n}\n.zd-grid-cell-align-left {\n justify-content: start;\n}\n.zd-grid-cell-align-center {\n justify-content: center;\n}", map: undefined, media: undefined });
49089
49317
 
49090
49318
  };
49091
49319
  /* scoped */
@@ -49114,28 +49342,6 @@ __vue_render__$T._withStripped = true;
49114
49342
  );
49115
49343
 
49116
49344
  let ZdTreeGridCellActionContent = class ZdTreeGridCellActionContent extends __vue_component__$W {
49117
- hasShowChevron(row) {
49118
- if (!this.fieldHasChild)
49119
- return true;
49120
- const rowHasChild = row[this.fieldHasChild];
49121
- let isVisibleChevron = true;
49122
- switch (rowHasChild) {
49123
- case '0':
49124
- case false:
49125
- case 0:
49126
- isVisibleChevron = false;
49127
- break;
49128
- case '1':
49129
- case true:
49130
- case 1:
49131
- isVisibleChevron = true;
49132
- break;
49133
- default:
49134
- isVisibleChevron = true;
49135
- break;
49136
- }
49137
- return isVisibleChevron;
49138
- }
49139
49345
  hasShowChevronInTreeGrid(headerIndex, selectable) {
49140
49346
  return headerIndex === 0 || (headerIndex === 1 && selectable);
49141
49347
  }
@@ -49144,10 +49350,6 @@ __decorate([
49144
49350
  Prop({ type: Number, required: true }),
49145
49351
  __metadata("design:type", Number)
49146
49352
  ], ZdTreeGridCellActionContent.prototype, "headerIndex", void 0);
49147
- __decorate([
49148
- Prop({ type: String, required: true }),
49149
- __metadata("design:type", String)
49150
- ], ZdTreeGridCellActionContent.prototype, "fieldHasChild", void 0);
49151
49353
  __decorate([
49152
49354
  Prop({ type: Boolean, required: true }),
49153
49355
  __metadata("design:type", Boolean)
@@ -49172,6 +49374,10 @@ __decorate([
49172
49374
  Prop({ type: Object, required: true }),
49173
49375
  __metadata("design:type", Object)
49174
49376
  ], ZdTreeGridCellActionContent.prototype, "row", void 0);
49377
+ __decorate([
49378
+ Prop({ type: Function, required: true }),
49379
+ __metadata("design:type", Function)
49380
+ ], ZdTreeGridCellActionContent.prototype, "hasChildOnDemand", void 0);
49175
49381
  ZdTreeGridCellActionContent = __decorate([
49176
49382
  Component$2
49177
49383
  ], ZdTreeGridCellActionContent);
@@ -49243,8 +49449,8 @@ var __vue_render__$S = function () {
49243
49449
  {
49244
49450
  name: "show",
49245
49451
  rawName: "v-show",
49246
- value: _vm.hasShowChevron(_vm.row),
49247
- expression: "hasShowChevron(row)",
49452
+ value: _vm.hasChildOnDemand(_vm.row),
49453
+ expression: "hasChildOnDemand(row)",
49248
49454
  },
49249
49455
  ],
49250
49456
  class: { opened: _vm.row.tree__opened },
@@ -50724,6 +50930,10 @@ __decorate([
50724
50930
  PropWatch({ type: [Boolean, String], default: false }),
50725
50931
  __metadata("design:type", Boolean)
50726
50932
  ], ZdSelect.prototype, "manualMode", void 0);
50933
+ __decorate([
50934
+ PropWatch({ type: [Boolean, String], default: false }),
50935
+ __metadata("design:type", Boolean)
50936
+ ], ZdSelect.prototype, "attach", void 0);
50727
50937
  __decorate([
50728
50938
  PropWatch({ type: String, default: 'SEARCH' }),
50729
50939
  __metadata("design:type", String)
@@ -50792,6 +51002,7 @@ var __vue_render__$K = function () {
50792
51002
  _vm.instance.clearable &&
50793
51003
  !_vm.instance.readonly &&
50794
51004
  !_vm.instance.disabled,
51005
+ attach: _vm.instance.attach,
50795
51006
  color: _vm.instance.color,
50796
51007
  dark: _vm.instance.dark,
50797
51008
  disabled: _vm.instance.disabled,
@@ -51035,7 +51246,7 @@ __vue_render__$K._withStripped = true;
51035
51246
  /* style */
51036
51247
  const __vue_inject_styles__$K = function (inject) {
51037
51248
  if (!inject) return
51038
- inject("data-v-0b97233f_0", { source: ".zd-select .v-input__control .v-input__slot .v-select__slot {\n position: static;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer {\n margin-right: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-left: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-top: 5px;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-inner, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-inner {\n padding-left: 0;\n padding-right: 0;\n}\n.zd-select.zd-select-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.zd-select.zd-select-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.zd-select.zd-select-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}\n.zd-select .v-select__selections {\n padding: 0;\n width: 172px;\n overflow: hidden;\n white-space: nowrap;\n flex-wrap: nowrap;\n text-overflow: ellipsis;\n}\n.zd-select .v-select__selections .v-select__selection {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n margin: 0;\n max-width: none;\n}\n.zd-select .v-select__selections .v-select__selection--disabled {\n opacity: 0.5;\n}\n.zd-select.zd-dense .v-input__append-inner, .zd-select.zd-dense .v-input__prepend-inner {\n margin-top: 0;\n}\n.zd-select-append-item .v-list-item__content {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-size);\n color: var(--v-primary-base);\n}\n.v-menu__content.zd-select-menu {\n box-shadow: var(--shadow-2);\n}\n.v-menu__content.zd-select-menu .v-select-list {\n padding: 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item {\n height: auto;\n min-height: 40px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__content {\n padding: var(--spacing-2) 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item:not(.theme--dark) {\n color: var(--zd-font-color);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__title {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n height: auto;\n line-height: unset;\n white-space: unset;\n overflow: auto;\n text-overflow: unset;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled .v-list-item__title {\n opacity: 0.5;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled.primary--text .v-list-item__title {\n color: inherit;\n}\n.v-menu__content.zd-select-menu.zd-dense .v-list-item {\n height: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu.zd-select-align-left .v-list-item__content .v-list-item__title {\n text-align: left;\n}\n.v-menu__content.zd-select-menu.zd-select-align-center .v-list-item__content .v-list-item__title {\n text-align: center;\n}\n.v-menu__content.zd-select-menu.zd-select-align-right .v-list-item__content .v-list-item__title {\n text-align: right;\n}", map: undefined, media: undefined });
51249
+ inject("data-v-4f61cc61_0", { source: ".zd-select .v-input__control .v-input__slot .v-select__slot {\n position: static;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer {\n margin-right: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-left: var(--spacing-1);\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-outer, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-outer {\n margin-top: 5px;\n}\n.zd-select .v-input__control .v-input__slot .v-select__slot .v-input__append-inner, .zd-select .v-input__control .v-input__slot .v-select__slot .v-input__prepend-inner {\n padding-left: 0;\n padding-right: 0;\n}\n.zd-select.zd-select-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.zd-select.zd-select-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.zd-select.zd-select-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}\n.zd-select .v-select__selections {\n padding: 0;\n width: 172px;\n overflow: hidden;\n white-space: nowrap;\n flex-wrap: nowrap;\n text-overflow: ellipsis;\n}\n.zd-select .v-select__selections .v-select__selection {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n margin: 0;\n max-width: none;\n}\n.zd-select .v-select__selections .v-select__selection--disabled {\n opacity: 0.5;\n}\n.zd-select.zd-dense .v-input__append-inner, .zd-select.zd-dense .v-input__prepend-inner {\n margin-top: 0;\n}\n.zd-select-append-item .v-list-item__content {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-size);\n color: var(--v-primary-base);\n}\n.v-menu__content.zd-select-menu {\n box-shadow: var(--shadow-2);\n}\n.v-menu__content.zd-select-menu .v-select-list {\n padding: 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item {\n height: auto;\n min-height: 40px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__content {\n padding: var(--spacing-2) 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item:not(.theme--dark) {\n color: var(--zd-font-color);\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item__title {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n height: auto;\n line-height: unset;\n white-space: unset;\n overflow: auto;\n text-overflow: unset;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled .v-list-item__title {\n opacity: 0.5;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item.v-list-item--disabled.primary--text .v-list-item__title {\n color: inherit;\n}\n.v-menu__content.zd-select-menu.zd-dense .v-list-item {\n height: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-menu__content.zd-select-menu.zd-select-align-left .v-list-item__content .v-list-item__title {\n text-align: left;\n}\n.v-menu__content.zd-select-menu.zd-select-align-center .v-list-item__content .v-list-item__title {\n text-align: center;\n}\n.v-menu__content.zd-select-menu.zd-select-align-right .v-list-item__content .v-list-item__title {\n text-align: right;\n}", map: undefined, media: undefined });
51039
51250
 
51040
51251
  };
51041
51252
  /* scoped */
@@ -53531,7 +53742,7 @@ let ZdModal = class ZdModal extends ZdComponent$1 {
53531
53742
  const el = (Array.isArray(ref) ? ref[0].$el : ref === null || ref === void 0 ? void 0 : ref.$el);
53532
53743
  return el || null;
53533
53744
  }
53534
- registerMousedown(modal) {
53745
+ registerDragEvents(modal) {
53535
53746
  const el = this.getModalEl(modal);
53536
53747
  if (!el)
53537
53748
  return;
@@ -53544,11 +53755,28 @@ let ZdModal = class ZdModal extends ZdComponent$1 {
53544
53755
  if (!this.dragHandle)
53545
53756
  return;
53546
53757
  this.dragHandle.addEventListener('mousedown', this.dragStart.bind(this, modal));
53758
+ this.dragHandle.addEventListener('touchstart', this.dragStart.bind(this, modal), { passive: false });
53547
53759
  }
53548
- unregisterMousedown(modal) {
53760
+ unregisterDragEvents(modal) {
53549
53761
  if (!this.dragHandle)
53550
53762
  return;
53551
53763
  this.dragHandle.removeEventListener('mousedown', this.dragStart.bind(this, modal));
53764
+ this.dragHandle.removeEventListener('touchstart', this.dragStart.bind(this, modal));
53765
+ }
53766
+ isTouchEvent(event) {
53767
+ return 'touches' in event;
53768
+ }
53769
+ getEventCoordinates(event) {
53770
+ if (this.isTouchEvent(event)) {
53771
+ return {
53772
+ x: event.touches[0].clientX,
53773
+ y: event.touches[0].clientY,
53774
+ };
53775
+ }
53776
+ return {
53777
+ x: event.clientX,
53778
+ y: event.clientY,
53779
+ };
53552
53780
  }
53553
53781
  dragStart(modal, event) {
53554
53782
  var _a, _b;
@@ -53556,26 +53784,35 @@ let ZdModal = class ZdModal extends ZdComponent$1 {
53556
53784
  return;
53557
53785
  const dragHandle = (_a = modal.dragHandle) === null || _a === void 0 ? void 0 : _a.replace('.', '');
53558
53786
  const targetElement = event.target;
53559
- const isDragHandleInvalid = dragHandle && !targetElement.className.includes(dragHandle);
53787
+ const isDragHandleInvalid = dragHandle && !targetElement.classList.contains(dragHandle);
53560
53788
  if (isDragHandleInvalid) {
53561
53789
  return;
53562
53790
  }
53563
53791
  const isEventTargetInvalid = event && event.target && !((_b = event.target
53564
- .parentElement) === null || _b === void 0 ? void 0 : _b.className.includes(`zd-modal-card-${modal.name}`));
53792
+ .parentElement) === null || _b === void 0 ? void 0 : _b.classList.contains(`zd-modal-card-${modal.name}`));
53565
53793
  const isDragHandleMissing = !dragHandle;
53566
53794
  if (isEventTargetInvalid && isDragHandleMissing) {
53567
53795
  return;
53568
53796
  }
53569
53797
  this.modalDragged = modal;
53570
- this.x = event.clientX;
53571
- this.y = event.clientY;
53572
- document.addEventListener('mousemove', this.dragMove);
53573
- document.addEventListener('mouseup', this.dragEnd);
53798
+ const { x, y } = this.getEventCoordinates(event);
53799
+ this.x = x;
53800
+ this.y = y;
53801
+ if (this.isTouchEvent(event)) {
53802
+ document.addEventListener('touchmove', this.dragMove, { passive: false });
53803
+ document.addEventListener('touchend', this.dragEnd);
53804
+ }
53805
+ else {
53806
+ document.addEventListener('mousemove', this.dragMove);
53807
+ document.addEventListener('mouseup', this.dragEnd);
53808
+ }
53574
53809
  }
53575
53810
  dragEnd() {
53576
53811
  this.modalDragged = undefined;
53577
53812
  document.removeEventListener('mousemove', this.dragMove);
53578
53813
  document.removeEventListener('mouseup', this.dragEnd);
53814
+ document.removeEventListener('touchmove', this.dragMove);
53815
+ document.removeEventListener('touchend', this.dragEnd);
53579
53816
  }
53580
53817
  dragMove(event) {
53581
53818
  var _a;
@@ -53585,8 +53822,9 @@ let ZdModal = class ZdModal extends ZdComponent$1 {
53585
53822
  if (!modalEl)
53586
53823
  return;
53587
53824
  event.preventDefault();
53588
- const dy = event.clientY - this.y;
53589
- const dx = event.clientX - this.x;
53825
+ const { x, y } = this.getEventCoordinates(event);
53826
+ const dy = y - this.y;
53827
+ const dx = x - this.x;
53590
53828
  const toNum = (str) => Number(str.slice(0, -2));
53591
53829
  const toPx = (num) => `${num}px`;
53592
53830
  const threshold = 1;
@@ -53601,8 +53839,8 @@ let ZdModal = class ZdModal extends ZdComponent$1 {
53601
53839
  && (window.innerWidth / 2) - 2 * (left + dx) >= 0) {
53602
53840
  modalEl.style.left = toPx(left + dx);
53603
53841
  }
53604
- this.x = event.clientX;
53605
- this.y = event.clientY;
53842
+ this.x = x;
53843
+ this.y = y;
53606
53844
  }
53607
53845
  }
53608
53846
  getContentClass(modal) {
@@ -53696,10 +53934,10 @@ var __vue_render__$u = function () {
53696
53934
  style: modal.cssStyle,
53697
53935
  on: {
53698
53936
  "hook:mounted": function ($event) {
53699
- modal.draggable && _vm.registerMousedown(modal);
53937
+ modal.draggable && _vm.registerDragEvents(modal);
53700
53938
  },
53701
53939
  "hook:destroyed": function ($event) {
53702
- return _vm.unregisterMousedown(modal)
53940
+ return _vm.unregisterDragEvents(modal)
53703
53941
  },
53704
53942
  },
53705
53943
  },
@@ -53763,7 +54001,7 @@ __vue_render__$u._withStripped = true;
53763
54001
  /* style */
53764
54002
  const __vue_inject_styles__$u = function (inject) {
53765
54003
  if (!inject) return
53766
- inject("data-v-176ef89b_0", { source: ".zd-modal-title {\n padding-bottom: 0px;\n}\n.zd-modal-container {\n padding: 0;\n cursor: default;\n}\n.zd-modal-flex {\n width: 100%;\n}\n.zd-modal-draggable {\n position: relative;\n}\n.zd-modal-draggable-handle {\n cursor: grab;\n cursor: -moz-grab;\n cursor: -webkit-grab;\n}\n.zd-modal-draggable-handle:active {\n cursor: grabbing;\n cursor: -moz-grabbing;\n cursor: -webkit-grabbing;\n}\n.zd-modal-content > .zd-modal-card > .zd-modal-title {\n padding: var(--zd-default-padding);\n padding-bottom: 0px;\n font-size: var(--zd-font-title-size);\n font-weight: var(--zd-font-title-weight);\n color: var(--zd-font-color);\n}\n.zd-modal-content > .zd-modal-card > .zd-modal-card-text {\n padding: var(--zd-default-padding);\n display: flex;\n flex: 1 1 auto;\n}", map: undefined, media: undefined });
54004
+ inject("data-v-12867ee3_0", { source: ".zd-modal-title {\n padding-bottom: 0px;\n}\n.zd-modal-container {\n padding: 0;\n cursor: default;\n}\n.zd-modal-flex {\n width: 100%;\n}\n.zd-modal-draggable {\n position: relative;\n}\n.zd-modal-draggable-handle {\n cursor: grab;\n cursor: -moz-grab;\n cursor: -webkit-grab;\n}\n.zd-modal-draggable-handle:active {\n cursor: grabbing;\n cursor: -moz-grabbing;\n cursor: -webkit-grabbing;\n}\n.zd-modal-content > .zd-modal-card > .zd-modal-title {\n padding: var(--zd-default-padding);\n padding-bottom: 0px;\n font-size: var(--zd-font-title-size);\n font-weight: var(--zd-font-title-weight);\n color: var(--zd-font-color);\n}\n.zd-modal-content > .zd-modal-card > .zd-modal-card-text {\n padding: var(--zd-default-padding);\n display: flex;\n flex: 1 1 auto;\n}", map: undefined, media: undefined });
53767
54005
 
53768
54006
  };
53769
54007
  /* scoped */
@@ -55813,8 +56051,18 @@ let ZdSelectTree = class ZdSelectTree extends ZdTextInput$1 {
55813
56051
  }
55814
56052
  }
55815
56053
  mounted() {
56054
+ if (this.instance.parent instanceof Form && (this === null || this === void 0 ? void 0 : this.$parent)) {
56055
+ this.$parent.register(this);
56056
+ }
56057
+ this.instance.setViewResetValidation(this.resetValidation);
55816
56058
  this.addListeners();
55817
56059
  }
56060
+ validate() {
56061
+ return this.instance.validate();
56062
+ }
56063
+ resetValidation() {
56064
+ this.instance.resetValidation();
56065
+ }
55818
56066
  focus(event) {
55819
56067
  this.focused = true;
55820
56068
  this.instance.validationError = '';
@@ -55917,6 +56165,10 @@ __decorate([
55917
56165
  Prop({ type: [Boolean, String], default: false }),
55918
56166
  __metadata("design:type", Object)
55919
56167
  ], ZdSelectTree.prototype, "fetchOnDemand", void 0);
56168
+ __decorate([
56169
+ Prop({ type: [String], default: '' }),
56170
+ __metadata("design:type", String)
56171
+ ], ZdSelectTree.prototype, "fieldHasChild", void 0);
55920
56172
  __decorate([
55921
56173
  Prop({ type: [Number, String], default: undefined }),
55922
56174
  __metadata("design:type", Object)
@@ -57515,6 +57767,9 @@ let ZdTabs = class ZdTabs extends ZdComponentRender$1 {
57515
57767
  if (this.instance.fillHeight) {
57516
57768
  setFillHeight(this.$el);
57517
57769
  }
57770
+ I18n.registerChangeListener(() => {
57771
+ this.$refs.tabs.callSlider();
57772
+ });
57518
57773
  }
57519
57774
  };
57520
57775
  __decorate([
@@ -57537,6 +57792,10 @@ __decorate([
57537
57792
  PropWatch({ type: [Boolean, String], default: false }),
57538
57793
  __metadata("design:type", Object)
57539
57794
  ], ZdTabs.prototype, "fillHeight", void 0);
57795
+ __decorate([
57796
+ PropWatch({ type: [Boolean, String], default: false }),
57797
+ __metadata("design:type", Boolean)
57798
+ ], ZdTabs.prototype, "touchless", void 0);
57540
57799
  __decorate([
57541
57800
  Prop({ type: Array, default: () => [] }),
57542
57801
  __metadata("design:type", Array)
@@ -57581,6 +57840,7 @@ var __vue_render__$c = function () {
57581
57840
  _c(
57582
57841
  "v-tabs",
57583
57842
  {
57843
+ ref: "tabs",
57584
57844
  attrs: {
57585
57845
  "show-arrows": "",
57586
57846
  dark: _vm.instance.dark,
@@ -57643,7 +57903,11 @@ var __vue_render__$c = function () {
57643
57903
  _c(
57644
57904
  "v-tabs-items",
57645
57905
  {
57646
- attrs: { dark: _vm.instance.dark, light: _vm.instance.light },
57906
+ attrs: {
57907
+ dark: _vm.instance.dark,
57908
+ light: _vm.instance.light,
57909
+ touchless: _vm.instance.touchless,
57910
+ },
57647
57911
  model: {
57648
57912
  value: _vm.instance.activeTab,
57649
57913
  callback: function ($$v) {
@@ -57699,11 +57963,11 @@ __vue_render__$c._withStripped = true;
57699
57963
  /* style */
57700
57964
  const __vue_inject_styles__$c = function (inject) {
57701
57965
  if (!inject) return
57702
- 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 });
57966
+ inject("data-v-f3ce5dca_0", { source: ".zd-tabs[data-v-f3ce5dca] {\n display: flex;\n flex-direction: column;\n}\n.zd-tabs[data-v-f3ce5dca] .v-tabs-bar,\n.zd-tabs[data-v-f3ce5dca] .v-tabs-items {\n background-color: transparent;\n}\n.zd-tabs[data-v-f3ce5dca] .v-tabs-bar {\n height: auto;\n}\n.zd-tabs[data-v-f3ce5dca] .v-tabs-bar .v-tabs-slider-wrapper {\n bottom: -1px;\n}\n.zd-tabs[data-v-f3ce5dca] .v-tabs-bar__content {\n border-bottom: solid 1px var(--v-grey-lighten4);\n}\n.zd-tabs[data-v-f3ce5dca] .v-tabs {\n margin-bottom: var(--spacing-4);\n}\n.zd-tabs[data-v-f3ce5dca] .v-tabs .v-slide-group__next,\n.zd-tabs[data-v-f3ce5dca] .v-tabs .v-slide-group__prev {\n flex-basis: 30px;\n min-width: 30px;\n}\n.zd-tabs[data-v-f3ce5dca] .v-tabs .v-slide-group__next .v-icon,\n.zd-tabs[data-v-f3ce5dca] .v-tabs .v-slide-group__prev .v-icon {\n font-size: 18px;\n}\n.zd-tabs[data-v-f3ce5dca] .v-tabs {\n flex-grow: 0;\n}\n.zd-tabs[data-v-f3ce5dca] .v-tabs-items {\n flex-grow: 1;\n overflow-y: auto;\n}\n.zd-tabs[data-v-f3ce5dca] .v-tabs-items .v-window__container {\n height: 100% !important;\n}", map: undefined, media: undefined });
57703
57967
 
57704
57968
  };
57705
57969
  /* scoped */
57706
- const __vue_scope_id__$c = "data-v-96a6dab6";
57970
+ const __vue_scope_id__$c = "data-v-f3ce5dca";
57707
57971
  /* module identifier */
57708
57972
  const __vue_module_identifier__$c = undefined;
57709
57973
  /* functional template */
@@ -58071,6 +58335,29 @@ let ZdText = class ZdText extends ZdComponent$1 {
58071
58335
  constructor() {
58072
58336
  super(...arguments);
58073
58337
  this.instanceType = Text;
58338
+ this.parentWidth = 0;
58339
+ }
58340
+ handleResize() {
58341
+ if (this.parentWidth && this.textResize.fontSize) {
58342
+ const proportion = this.parentElement.clientWidth / this.parentWidth;
58343
+ const MIN = this.textResize.min || 0;
58344
+ const MAX = this.textResize.max || Infinity;
58345
+ this.$el.style.fontSize = `${Math.min(Math.max(this.textResize.fontSize * proportion, MIN), MAX)}px`;
58346
+ }
58347
+ }
58348
+ mounted() {
58349
+ var _a;
58350
+ this.parentElement = this.$el.parentElement;
58351
+ if (this.instance.textResize) {
58352
+ this.$el.style.fontSize = `${this.instance.textResize.fontSize}px`;
58353
+ this.parentWidth = ((_a = this.parentElement) === null || _a === void 0 ? void 0 : _a.clientWidth) || 0;
58354
+ this.resizeObserver = new ResizeObserver(this.handleResize);
58355
+ this.resizeObserver.observe(this.parentElement);
58356
+ }
58357
+ }
58358
+ destroyed() {
58359
+ var _a;
58360
+ (_a = this.resizeObserver) === null || _a === void 0 ? void 0 : _a.disconnect();
58074
58361
  }
58075
58362
  };
58076
58363
  __decorate([
@@ -58085,6 +58372,10 @@ __decorate([
58085
58372
  PropWatch({ type: String, default: 'p' }),
58086
58373
  __metadata("design:type", String)
58087
58374
  ], ZdText.prototype, "tag", void 0);
58375
+ __decorate([
58376
+ PropWatch({ type: Object, default: undefined }),
58377
+ __metadata("design:type", Object)
58378
+ ], ZdText.prototype, "textResize", void 0);
58088
58379
  ZdText = __decorate([
58089
58380
  Component$1({
58090
58381
  components: { ZdRender },
@@ -58486,7 +58777,9 @@ let ZdTime = class ZdTime extends __vue_component__$1f {
58486
58777
  mounted() {
58487
58778
  const textInput = this.$refs.textInputInstance.$children[0].$el.getElementsByTagName('input')[0];
58488
58779
  textInput.addEventListener('blur', () => {
58489
- this.instance.showTimePicker = false;
58780
+ if (!this.$isMobile()) {
58781
+ this.instance.showTimePicker = false;
58782
+ }
58490
58783
  });
58491
58784
  if (this.$isMobile()) {
58492
58785
  this.setMobileProps(textInput);
@@ -58664,136 +58957,200 @@ var __vue_render__$6 = function () {
58664
58957
  "div",
58665
58958
  { staticClass: "zd-time", attrs: { id: _vm.instance.name } },
58666
58959
  [
58667
- !_vm.$isMobile()
58668
- ? [
58669
- _c(
58670
- "v-menu",
58671
- {
58672
- directives: [
58673
- {
58674
- name: "show",
58675
- rawName: "v-show",
58676
- value: _vm.instance.isVisible,
58677
- expression: "instance.isVisible",
58960
+ _c(
58961
+ "v-menu",
58962
+ {
58963
+ directives: [
58964
+ {
58965
+ name: "show",
58966
+ rawName: "v-show",
58967
+ value: _vm.instance.isVisible,
58968
+ expression: "instance.isVisible",
58969
+ },
58970
+ ],
58971
+ ref: "timeMenu",
58972
+ attrs: {
58973
+ "offset-overflow": "",
58974
+ "offset-y": "",
58975
+ "input-activator": "",
58976
+ "min-width": "290px",
58977
+ transition: "scale-transition",
58978
+ dark: _vm.instance.dark,
58979
+ light: _vm.instance.light,
58980
+ "close-on-content-click": false,
58981
+ disabled: _vm.instance.disabled || _vm.instance.readonly,
58982
+ },
58983
+ scopedSlots: _vm._u([
58984
+ {
58985
+ key: "activator",
58986
+ fn: function (ref) {
58987
+ var on = ref.on;
58988
+ return [
58989
+ _c("zd-text-input", {
58990
+ ref: "textInputInstance",
58991
+ attrs: {
58992
+ name: _vm.instance.name + "_text-input",
58993
+ mask: _vm.getTimeMask,
58994
+ "instance-object": _vm.instance,
58995
+ events: _vm.getEvents(on),
58996
+ autofill: false,
58997
+ },
58998
+ on: { input: _vm.input },
58999
+ }),
59000
+ ]
59001
+ },
59002
+ },
59003
+ ]),
59004
+ model: {
59005
+ value: _vm.instance.showTimePicker,
59006
+ callback: function ($$v) {
59007
+ _vm.$set(_vm.instance, "showTimePicker", $$v);
59008
+ },
59009
+ expression: "instance.showTimePicker",
59010
+ },
59011
+ },
59012
+ [
59013
+ _vm._v(" "),
59014
+ !_vm.instance.readonly
59015
+ ? _c(
59016
+ _vm.$isMobile() ? "v-dialog" : "span",
59017
+ {
59018
+ tag: "component",
59019
+ attrs: {
59020
+ width: "290px",
59021
+ persistent: "",
59022
+ "content-class": "zd-mx-0",
58678
59023
  },
58679
- ],
58680
- ref: "timeMenu",
58681
- attrs: {
58682
- "offset-overflow": "",
58683
- "offset-y": "",
58684
- "input-activator": "",
58685
- "min-width": "290px",
58686
- transition: "scale-transition",
58687
- dark: _vm.instance.dark,
58688
- light: _vm.instance.light,
58689
- "close-on-content-click": false,
58690
- disabled: _vm.instance.disabled || _vm.instance.readonly,
58691
- },
58692
- scopedSlots: _vm._u(
58693
- [
58694
- {
58695
- key: "activator",
58696
- fn: function (ref) {
58697
- var on = ref.on;
58698
- return [
58699
- _c("zd-text-input", {
58700
- ref: "textInputInstance",
58701
- attrs: {
58702
- name: _vm.instance.name + "_text-input",
58703
- mask: _vm.getTimeMask,
58704
- "instance-object": _vm.instance,
58705
- events: _vm.getEvents(on),
58706
- autofill: false,
58707
- },
58708
- on: { input: _vm.input },
58709
- }),
58710
- ]
58711
- },
59024
+ model: {
59025
+ value: _vm.instance.showTimePicker,
59026
+ callback: function ($$v) {
59027
+ _vm.$set(_vm.instance, "showTimePicker", $$v);
58712
59028
  },
58713
- ],
58714
- null,
58715
- false,
58716
- 386348313
58717
- ),
58718
- model: {
58719
- value: _vm.instance.showTimePicker,
58720
- callback: function ($$v) {
58721
- _vm.$set(_vm.instance, "showTimePicker", $$v);
59029
+ expression: "instance.showTimePicker",
58722
59030
  },
58723
- expression: "instance.showTimePicker",
58724
59031
  },
58725
- },
58726
- [
58727
- _vm._v(" "),
58728
- _c(
58729
- "v-time-picker",
58730
- _vm._b(
58731
- {
58732
- directives: [
58733
- {
58734
- name: "show",
58735
- rawName: "v-show",
58736
- value: _vm.instance.isVisible,
58737
- expression: "instance.isVisible",
59032
+ [
59033
+ _c(
59034
+ "v-time-picker",
59035
+ _vm._b(
59036
+ {
59037
+ directives: [
59038
+ {
59039
+ name: "show",
59040
+ rawName: "v-show",
59041
+ value: _vm.instance.isVisible,
59042
+ expression: "instance.isVisible",
59043
+ },
59044
+ ],
59045
+ ref: "picker",
59046
+ attrs: {
59047
+ "allowed-hours": _vm.instance.allowedHours,
59048
+ "allowed-minutes": _vm.instance.allowedMinutes,
59049
+ "allowed-seconds": _vm.instance.allowedSeconds,
59050
+ max: _vm.pickerMaxTime,
59051
+ min: _vm.pickerMinTime,
59052
+ name: _vm.instance.name,
59053
+ dark: _vm.instance.dark,
59054
+ light: _vm.instance.light,
58738
59055
  },
58739
- ],
58740
- ref: "picker",
58741
- attrs: {
58742
- "allowed-hours": _vm.instance.allowedHours,
58743
- "allowed-minutes": _vm.instance.allowedMinutes,
58744
- "allowed-seconds": _vm.instance.allowedSeconds,
58745
- max: _vm.pickerMaxTime,
58746
- min: _vm.pickerMinTime,
58747
- name: _vm.instance.name,
58748
- dark: _vm.instance.dark,
58749
- light: _vm.instance.light,
58750
- },
58751
- on: {
58752
- "hook:mounted": _vm.pickerMounted,
58753
- "hook:destroyed": _vm.pickerDestroyed,
58754
- "click:time": _vm.onSelectTime,
58755
- change: function ($event) {
58756
- return _vm.onChangeTimePicker()
59056
+ on: {
59057
+ "hook:mounted": _vm.pickerMounted,
59058
+ "hook:destroyed": _vm.pickerDestroyed,
59059
+ "click:time": _vm.onSelectTime,
59060
+ change: function ($event) {
59061
+ return _vm.onChangeTimePicker()
59062
+ },
58757
59063
  },
58758
- },
58759
- model: {
58760
- value: _vm.instance.isoValue,
58761
- callback: function ($$v) {
58762
- _vm.$set(_vm.instance, "isoValue", $$v);
59064
+ model: {
59065
+ value: _vm.instance.isoValue,
59066
+ callback: function ($$v) {
59067
+ _vm.$set(_vm.instance, "isoValue", $$v);
59068
+ },
59069
+ expression: "instance.isoValue",
58763
59070
  },
58764
- expression: "instance.isoValue",
58765
59071
  },
58766
- },
58767
- "v-time-picker",
58768
- {
58769
- ampmInTitle: _vm.instance.ampmInTitle,
58770
- color: _vm.instance.color,
58771
- format: _vm.instance.timeFormat,
58772
- fullWidth: _vm.instance.fullWidth,
58773
- useSeconds: _vm.instance.useSeconds,
58774
- scrollable: _vm.instance.scrollable,
58775
- },
58776
- false
58777
- )
58778
- ),
58779
- ],
58780
- 1
58781
- ),
58782
- ]
58783
- : [
58784
- _c("zd-text-input", {
58785
- ref: "textInputInstance",
58786
- attrs: {
58787
- name: _vm.instance.name + "_text-input",
58788
- "instance-object": _vm.instance,
58789
- autofill: false,
58790
- type: "text",
58791
- mask: "",
58792
- },
58793
- }),
58794
- ],
59072
+ "v-time-picker",
59073
+ {
59074
+ ampmInTitle: _vm.instance.ampmInTitle,
59075
+ color: _vm.instance.color,
59076
+ format: _vm.instance.timeFormat,
59077
+ fullWidth: _vm.instance.fullWidth,
59078
+ useSeconds: _vm.instance.useSeconds,
59079
+ scrollable: _vm.instance.scrollable,
59080
+ width: _vm.$isMobile() ? "290px" : _vm.instance.width,
59081
+ },
59082
+ false
59083
+ ),
59084
+ [
59085
+ _vm.$isMobile()
59086
+ ? _c(
59087
+ "span",
59088
+ [
59089
+ _vm.$isMobile()
59090
+ ? _c(
59091
+ "zd-button",
59092
+ _vm._b(
59093
+ {
59094
+ attrs: {
59095
+ name:
59096
+ _vm.instance.name + "-done-button",
59097
+ },
59098
+ },
59099
+ "zd-button",
59100
+ {
59101
+ flat: true,
59102
+ label: "OK",
59103
+ events: {
59104
+ click: function () {
59105
+ _vm.instance.showTimePicker = false;
59106
+ _vm.setBlur();
59107
+ },
59108
+ },
59109
+ },
59110
+ false
59111
+ )
59112
+ )
59113
+ : _vm._e(),
59114
+ _vm._v(" "),
59115
+ _vm.$isMobile() && _vm.instance.clearable
59116
+ ? _c(
59117
+ "zd-button",
59118
+ _vm._b(
59119
+ {
59120
+ attrs: {
59121
+ name:
59122
+ _vm.instance.name + "-clear-button",
59123
+ },
59124
+ },
59125
+ "zd-button",
59126
+ {
59127
+ flat: true,
59128
+ label: "CLEAR",
59129
+ events: {
59130
+ click: function () {
59131
+ _vm.instance.isoValue = null;
59132
+ },
59133
+ },
59134
+ },
59135
+ false
59136
+ )
59137
+ )
59138
+ : _vm._e(),
59139
+ ],
59140
+ 1
59141
+ )
59142
+ : _vm._e(),
59143
+ ]
59144
+ ),
59145
+ ],
59146
+ 1
59147
+ )
59148
+ : _vm._e(),
59149
+ ],
59150
+ 1
59151
+ ),
58795
59152
  ],
58796
- 2
59153
+ 1
58797
59154
  )
58798
59155
  };
58799
59156
  var __vue_staticRenderFns__$6 = [];
@@ -58802,7 +59159,7 @@ __vue_render__$6._withStripped = true;
58802
59159
  /* style */
58803
59160
  const __vue_inject_styles__$6 = function (inject) {
58804
59161
  if (!inject) return
58805
- inject("data-v-21cfb8e4_0", { source: ".zd-time input[type=time] {\n -webkit-appearance: none;\n}\n.zd-time input[type=time]::-webkit-inner-spin-button, .zd-time input[type=time]::-webkit-calendar-picker-indicator {\n display: none;\n -webkit-appearance: none;\n}", map: undefined, media: undefined });
59162
+ inject("data-v-e8f3b86c_0", { source: ".zd-time input[type=time] {\n -webkit-appearance: none;\n}\n.zd-time input[type=time]::-webkit-inner-spin-button, .zd-time input[type=time]::-webkit-calendar-picker-indicator {\n display: none;\n -webkit-appearance: none;\n}", map: undefined, media: undefined });
58806
59163
 
58807
59164
  };
58808
59165
  /* scoped */
@@ -58963,8 +59320,8 @@ var __vue_render__$5 = function () {
58963
59320
  nudgeRight: _vm.instance.right ? _vm.instance.nudge : undefined,
58964
59321
  nudgeTop: _vm.instance.top ? _vm.instance.nudge : undefined,
58965
59322
  openOnClick: _vm.instance.openOnClick,
58966
- openOnFocus: _vm.instance.openOnFocus,
58967
- openOnHover: _vm.instance.openOnHover,
59323
+ openOnFocus: !_vm.$isMobile() && _vm.instance.openOnFocus,
59324
+ openOnHover: !_vm.$isMobile() && _vm.instance.openOnHover,
58968
59325
  right: _vm.instance.right,
58969
59326
  top: _vm.instance.top,
58970
59327
  },
@@ -58979,7 +59336,7 @@ __vue_render__$5._withStripped = true;
58979
59336
  /* style */
58980
59337
  const __vue_inject_styles__$5 = function (inject) {
58981
59338
  if (!inject) return
58982
- inject("data-v-043522aa_0", { source: ".v-tooltip__content {\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n}\n.v-tooltip__content.menuable__content__active {\n opacity: 0.9 !important;\n}", map: undefined, media: undefined });
59339
+ inject("data-v-219472aa_0", { source: ".v-tooltip__content {\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n}\n.v-tooltip__content.menuable__content__active {\n opacity: 0.9 !important;\n}", map: undefined, media: undefined });
58983
59340
 
58984
59341
  };
58985
59342
  /* scoped */
@@ -59840,6 +60197,9 @@ let ZdTreeGrid = class ZdTreeGrid extends ZdGrid$1 {
59840
60197
  }
59841
60198
  this.orderColumnVisibility();
59842
60199
  }
60200
+ hasChildOnDemand(row) {
60201
+ return this.instance.treeDataStructure.hasChildOnDemand(row);
60202
+ }
59843
60203
  };
59844
60204
  __decorate([
59845
60205
  PropWatch({ type: String, default: '' }),
@@ -60527,8 +60887,8 @@ var __vue_render__$1 = function () {
60527
60887
  headerIndex: headerIndex,
60528
60888
  selectable:
60529
60889
  _vm.instance.selectable,
60530
- fieldHasChild:
60531
- _vm.instance.fieldHasChild,
60890
+ hasChildOnDemand:
60891
+ _vm.hasChildOnDemand,
60532
60892
  toggleExpand:
60533
60893
  _vm.toggleExpand,
60534
60894
  rowIndex: index,
@@ -60575,8 +60935,8 @@ var __vue_render__$1 = function () {
60575
60935
  rowIndex: index,
60576
60936
  getActionComponent:
60577
60937
  _vm.getActionComponent,
60578
- fieldHasChild:
60579
- _vm.instance.fieldHasChild,
60938
+ hasChildOnDemand:
60939
+ _vm.hasChildOnDemand,
60580
60940
  selectable:
60581
60941
  _vm.instance.selectable,
60582
60942
  },
@@ -60695,8 +61055,8 @@ __vue_render__$1._withStripped = true;
60695
61055
  /* style */
60696
61056
  const __vue_inject_styles__$1 = function (inject) {
60697
61057
  if (!inject) return
60698
- inject("data-v-7742283a_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-toolbar .zd-search {\n max-width: 200px;\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 })
60699
- ,inject("data-v-7742283a_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 });
61058
+ inject("data-v-259fcf26_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-toolbar .zd-search {\n max-width: 200px;\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 })
61059
+ ,inject("data-v-259fcf26_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 });
60700
61060
 
60701
61061
  };
60702
61062
  /* scoped */
@@ -61651,9 +62011,8 @@ var __vue_render__ = function () {
61651
62011
  selectable:
61652
62012
  _vm.instance
61653
62013
  .selectable,
61654
- fieldHasChild:
61655
- _vm.instance
61656
- .fieldHasChild,
62014
+ hasChildOnDemand:
62015
+ _vm.hasChildOnDemand,
61657
62016
  toggleExpand:
61658
62017
  _vm.toggleExpand,
61659
62018
  rowIndex: index,
@@ -61708,8 +62067,8 @@ var __vue_render__ = function () {
61708
62067
  rowIndex: index,
61709
62068
  getActionComponent:
61710
62069
  _vm.getActionComponent,
61711
- fieldHasChild:
61712
- _vm.instance.fieldHasChild,
62070
+ hasChildOnDemand:
62071
+ _vm.hasChildOnDemand,
61713
62072
  selectable:
61714
62073
  _vm.instance.selectable,
61715
62074
  },
@@ -61828,8 +62187,8 @@ __vue_render__._withStripped = true;
61828
62187
  /* style */
61829
62188
  const __vue_inject_styles__ = function (inject) {
61830
62189
  if (!inject) return
61831
- inject("data-v-171113f1_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-toolbar .zd-search {\n max-width: 200px;\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 })
61832
- ,inject("data-v-171113f1_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 max-height: 22px;\n}", map: undefined, media: undefined });
62190
+ inject("data-v-897ef0f6_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-toolbar .zd-search {\n max-width: 200px;\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 })
62191
+ ,inject("data-v-897ef0f6_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 max-height: 22px;\n}", map: undefined, media: undefined });
61833
62192
 
61834
62193
  };
61835
62194
  /* scoped */
@@ -62277,6 +62636,8 @@ const Zeedhi = {
62277
62636
  VToolbar,
62278
62637
  VToolbarItems,
62279
62638
  VSimpleCheckbox,
62639
+ VSlideGroup,
62640
+ VSlideItem,
62280
62641
  },
62281
62642
  directives: {
62282
62643
  Touch: directives.Touch,