@zeedhi/vuetify 1.53.0 → 1.56.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,8 +7,8 @@ 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, Watch } from 'vue-property-decorator';
11
- import { Component as Component$1, 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, Icon, Image as Image$1, Increment, 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';
10
+ import { Prop, Component as Component$1, Watch } from 'vue-property-decorator';
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, Icon, Image as Image$1, Increment, 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';
14
14
  import 'prismjs/themes/prism.css';
@@ -2221,7 +2221,7 @@ class Vuetify {
2221
2221
  }
2222
2222
  Vuetify.install = install$1;
2223
2223
  Vuetify.installed = false;
2224
- Vuetify.version = "2.6.6";
2224
+ Vuetify.version = "2.6.7";
2225
2225
  Vuetify.config = {
2226
2226
  silent: false
2227
2227
  };
@@ -7539,9 +7539,11 @@ var VListItem = baseMixins$p.extend().extend({
7539
7539
  };
7540
7540
  data[this.to ? 'nativeOn' : 'on'] = { ...data[this.to ? 'nativeOn' : 'on'],
7541
7541
  keydown: e => {
7542
- /* istanbul ignore else */
7543
- if (e.keyCode === keyCodes.enter) this.click(e);
7544
- this.$emit('keydown', e);
7542
+ if (!this.disabled) {
7543
+ /* istanbul ignore else */
7544
+ if (e.keyCode === keyCodes.enter) this.click(e);
7545
+ this.$emit('keydown', e);
7546
+ }
7545
7547
  }
7546
7548
  };
7547
7549
  if (this.inactive) tag = 'div';
@@ -9982,7 +9984,9 @@ var VSelect = baseMixins$j.extend().extend({
9982
9984
  },
9983
9985
 
9984
9986
  computedCounterValue() {
9985
- const value = this.multiple ? this.selectedItems : (this.getText(this.selectedItems[0]) || '').toString();
9987
+ var _this$getText;
9988
+
9989
+ const value = this.multiple ? this.selectedItems : ((_this$getText = this.getText(this.selectedItems[0])) != null ? _this$getText : '').toString();
9986
9990
 
9987
9991
  if (typeof this.counterValue === 'function') {
9988
9992
  return this.counterValue(value);
@@ -10459,7 +10463,9 @@ var VSelect = baseMixins$j.extend().extend({
10459
10463
  this.keyboardLookupPrefix += e.key.toLowerCase();
10460
10464
  this.keyboardLookupLastTime = now;
10461
10465
  const index = this.allItems.findIndex(item => {
10462
- const text = (this.getText(item) || '').toString();
10466
+ var _this$getText2;
10467
+
10468
+ const text = ((_this$getText2 = this.getText(item)) != null ? _this$getText2 : '').toString();
10463
10469
  return text.toLowerCase().startsWith(this.keyboardLookupPrefix);
10464
10470
  });
10465
10471
  const item = this.allItems[index];
@@ -11976,9 +11982,13 @@ var VDialog = baseMixins$i.extend({
11976
11982
 
11977
11983
  this.$nextTick(() => {
11978
11984
  this.$nextTick(() => {
11979
- if (!this.$refs.content.contains(document.activeElement)) {
11985
+ var _this$$refs$dialog;
11986
+
11987
+ if (!((_this$$refs$dialog = this.$refs.dialog) != null && _this$$refs$dialog.contains(document.activeElement))) {
11988
+ var _this$$refs$dialog2;
11989
+
11980
11990
  this.previousActiveElement = document.activeElement;
11981
- this.$refs.content.focus();
11991
+ (_this$$refs$dialog2 = this.$refs.dialog) == null ? void 0 : _this$$refs$dialog2.focus();
11982
11992
  }
11983
11993
 
11984
11994
  this.bind();
@@ -12024,14 +12034,14 @@ var VDialog = baseMixins$i.extend({
12024
12034
  if (!e || !this.retainFocus) return;
12025
12035
  const target = e.target;
12026
12036
 
12027
- if (!!target && // It isn't the document or the dialog body
12028
- ![document, this.$refs.content].includes(target) && // It isn't inside the dialog body
12029
- !this.$refs.content.contains(target) && // We're the topmost dialog
12037
+ if (!!target && this.$refs.dialog && // It isn't the document or the dialog body
12038
+ ![document, this.$refs.dialog].includes(target) && // It isn't inside the dialog body
12039
+ !this.$refs.dialog.contains(target) && // We're the topmost dialog
12030
12040
  this.activeZIndex >= this.getMaxZIndex() && // It isn't inside a dependent element (like a menu)
12031
12041
  !this.getOpenDependentElements().some(el => el.contains(target)) // So we must have focused something outside the dialog and its children
12032
12042
  ) {
12033
12043
  // Find and focus the first available element inside the dialog
12034
- const focusable = this.$refs.content.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])');
12044
+ const focusable = this.$refs.dialog.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])');
12035
12045
  const el = [...focusable].find(el => !el.hasAttribute('disabled'));
12036
12046
  el && el.focus();
12037
12047
  }
@@ -12048,7 +12058,6 @@ var VDialog = baseMixins$i.extend({
12048
12058
  class: this.contentClasses,
12049
12059
  attrs: {
12050
12060
  role: 'dialog',
12051
- tabindex: this.isActive ? 0 : undefined,
12052
12061
  'aria-modal': this.hideOverlay ? undefined : 'true',
12053
12062
  ...this.getScopeIdAttrs()
12054
12063
  },
@@ -12077,6 +12086,9 @@ var VDialog = baseMixins$i.extend({
12077
12086
  genInnerContent() {
12078
12087
  const data = {
12079
12088
  class: this.classes,
12089
+ attrs: {
12090
+ tabindex: this.isActive ? 0 : undefined
12091
+ },
12080
12092
  ref: 'dialog',
12081
12093
  directives: [{
12082
12094
  name: 'click-outside',
@@ -16445,7 +16457,6 @@ const BaseSlideGroup = mixins(BaseItemGroup, Mobile).extend({
16445
16457
  }
16446
16458
  },
16447
16459
  data: () => ({
16448
- internalItemsLength: 0,
16449
16460
  isOverflowing: false,
16450
16461
  resizeTimeout: 0,
16451
16462
  startX: 0,
@@ -16536,13 +16547,30 @@ const BaseSlideGroup = mixins(BaseItemGroup, Mobile).extend({
16536
16547
 
16537
16548
  },
16538
16549
 
16539
- beforeUpdate() {
16540
- this.internalItemsLength = (this.$children || []).length;
16541
- },
16550
+ mounted() {
16551
+ if (typeof ResizeObserver !== 'undefined') {
16552
+ const obs = new ResizeObserver(() => {
16553
+ this.onResize();
16554
+ });
16555
+ obs.observe(this.$el);
16556
+ obs.observe(this.$refs.content);
16557
+ this.$on('hook:destroyed', () => {
16558
+ obs.disconnect();
16559
+ });
16560
+ } else {
16561
+ let itemsLength = 0;
16562
+ this.$on('hook:beforeUpdate', () => {
16563
+ var _this$$refs$content;
16542
16564
 
16543
- updated() {
16544
- if (this.internalItemsLength === (this.$children || []).length) return;
16545
- this.setWidths();
16565
+ itemsLength = (((_this$$refs$content = this.$refs.content) == null ? void 0 : _this$$refs$content.children) || []).length;
16566
+ });
16567
+ this.$on('hook:updated', () => {
16568
+ var _this$$refs$content2;
16569
+
16570
+ if (itemsLength === (((_this$$refs$content2 = this.$refs.content) == null ? void 0 : _this$$refs$content2.children) || []).length) return;
16571
+ this.setWidths();
16572
+ });
16573
+ }
16546
16574
  },
16547
16575
 
16548
16576
  methods: {
@@ -24393,7 +24421,6 @@ var VOtpInput = baseMixins$b.extend().extend({
24393
24421
  plain: Boolean
24394
24422
  },
24395
24423
  data: () => ({
24396
- badInput: false,
24397
24424
  initialValue: null,
24398
24425
  isBooted: false,
24399
24426
  otp: []
@@ -24408,10 +24435,6 @@ var VOtpInput = baseMixins$b.extend().extend({
24408
24435
  ...VTextField.options.computed.classes.call(this),
24409
24436
  'v-otp-input--plain': this.plain
24410
24437
  };
24411
- },
24412
-
24413
- isDirty() {
24414
- return VInput.options.computed.isDirty.call(this) || this.badInput;
24415
24438
  }
24416
24439
 
24417
24440
  },
@@ -24513,18 +24536,17 @@ var VOtpInput = baseMixins$b.extend().extend({
24513
24536
  min: this.type === 'number' ? 0 : null
24514
24537
  },
24515
24538
  attrs: { ...this.attrs$,
24539
+ autocomplete: 'one-time-code',
24516
24540
  disabled: this.isDisabled,
24517
24541
  readonly: this.isReadonly,
24518
24542
  type: this.type,
24519
24543
  id: `${this.computedId}--${otpIdx}`,
24520
- class: `otp-field-box--${otpIdx}`,
24521
- maxlength: 1
24544
+ class: `otp-field-box--${otpIdx}`
24522
24545
  },
24523
24546
  on: Object.assign(listeners, {
24524
24547
  blur: this.onBlur,
24525
24548
  input: e => this.onInput(e, otpIdx),
24526
24549
  focus: e => this.onFocus(e, otpIdx),
24527
- paste: e => this.onPaste(e, otpIdx),
24528
24550
  keydown: this.onKeyDown,
24529
24551
  keyup: e => this.onKeyUp(e, otpIdx)
24530
24552
  }),
@@ -24568,22 +24590,31 @@ var VOtpInput = baseMixins$b.extend().extend({
24568
24590
  }
24569
24591
  },
24570
24592
 
24571
- onInput(e, otpIdx) {
24593
+ onInput(e, index) {
24594
+ const maxCursor = +this.length - 1;
24572
24595
  const target = e.target;
24573
24596
  const value = target.value;
24574
- this.applyValue(otpIdx, target.value, () => {
24575
- this.internalValue = this.otp.join('');
24576
- });
24577
- this.badInput = target.validity && target.validity.badInput;
24578
- const nextIndex = otpIdx + 1;
24597
+ const inputDataArray = (value == null ? void 0 : value.split('')) || [];
24598
+ const newOtp = [...this.otp];
24579
24599
 
24580
- if (value) {
24581
- if (nextIndex < +this.length) {
24582
- this.changeFocus(nextIndex);
24583
- } else {
24584
- this.clearFocus(otpIdx);
24585
- this.onCompleted();
24586
- }
24600
+ for (let i = 0; i < inputDataArray.length; i++) {
24601
+ const appIdx = index + i;
24602
+ if (appIdx > maxCursor) break;
24603
+ newOtp[appIdx] = inputDataArray[i].toString();
24604
+ }
24605
+
24606
+ if (!inputDataArray.length) {
24607
+ newOtp.splice(index, 1);
24608
+ }
24609
+
24610
+ this.otp = newOtp;
24611
+ this.internalValue = this.otp.join('');
24612
+
24613
+ if (index + inputDataArray.length >= +this.length) {
24614
+ this.onCompleted();
24615
+ this.clearFocus(index);
24616
+ } else if (inputDataArray.length) {
24617
+ this.changeFocus(index + inputDataArray.length);
24587
24618
  }
24588
24619
  },
24589
24620
 
@@ -24615,39 +24646,6 @@ var VOtpInput = baseMixins$b.extend().extend({
24615
24646
  VInput.options.methods.onMouseUp.call(this, e);
24616
24647
  },
24617
24648
 
24618
- onPaste(event, index) {
24619
- var _event$clipboardData;
24620
-
24621
- const maxCursor = +this.length - 1;
24622
- const inputVal = event == null ? void 0 : (_event$clipboardData = event.clipboardData) == null ? void 0 : _event$clipboardData.getData('Text');
24623
- const inputDataArray = (inputVal == null ? void 0 : inputVal.split('')) || [];
24624
- event.preventDefault();
24625
- const newOtp = [...this.otp];
24626
-
24627
- for (let i = 0; i < inputDataArray.length; i++) {
24628
- const appIdx = index + i;
24629
- if (appIdx > maxCursor) break;
24630
- newOtp[appIdx] = inputDataArray[i].toString();
24631
- }
24632
-
24633
- this.otp = newOtp;
24634
- this.internalValue = this.otp.join('');
24635
- const targetFocus = Math.min(index + inputDataArray.length, maxCursor);
24636
- this.changeFocus(targetFocus);
24637
-
24638
- if (newOtp.length === +this.length) {
24639
- this.onCompleted();
24640
- this.clearFocus(targetFocus);
24641
- }
24642
- },
24643
-
24644
- applyValue(index, inputVal, next) {
24645
- const newOtp = [...this.otp];
24646
- newOtp[index] = inputVal;
24647
- this.otp = newOtp;
24648
- next();
24649
- },
24650
-
24651
24649
  changeFocus(index) {
24652
24650
  this.onFocus(undefined, index || 0);
24653
24651
  },
@@ -27538,6 +27536,16 @@ var VTabs = baseMixins$4.extend().extend({
27538
27536
  },
27539
27537
 
27540
27538
  mounted() {
27539
+ if (typeof ResizeObserver !== 'undefined') {
27540
+ const obs = new ResizeObserver(() => {
27541
+ this.onResize();
27542
+ });
27543
+ obs.observe(this.$el);
27544
+ this.$on('hook:destroyed', () => {
27545
+ obs.disconnect();
27546
+ });
27547
+ }
27548
+
27541
27549
  this.$nextTick(() => {
27542
27550
  window.setTimeout(this.callSlider, 30);
27543
27551
  });
@@ -36837,7 +36845,7 @@ var Vuetify = /*#__PURE__*/function () {
36837
36845
  exports.default = Vuetify;
36838
36846
  Vuetify.install = install_1.install;
36839
36847
  Vuetify.installed = false;
36840
- Vuetify.version = "2.6.6";
36848
+ Vuetify.version = "2.6.7";
36841
36849
  Vuetify.config = {
36842
36850
  silent: false
36843
36851
  };
@@ -37631,7 +37639,7 @@ let ZdComponent = ZdComponent_1 = class ZdComponent extends Vue {
37631
37639
  constructor() {
37632
37640
  super(...arguments);
37633
37641
  this.instance = {};
37634
- this.instanceType = Component$1;
37642
+ this.instanceType = Component;
37635
37643
  this.createdFromObject = false;
37636
37644
  }
37637
37645
  created() {
@@ -37790,14 +37798,14 @@ __decorate([
37790
37798
  ], ZdComponent.prototype, "keyMap", void 0);
37791
37799
  __decorate([
37792
37800
  Prop({ type: Object }),
37793
- __metadata("design:type", Component$1)
37801
+ __metadata("design:type", Component)
37794
37802
  ], ZdComponent.prototype, "parent", void 0);
37795
37803
  __decorate([
37796
37804
  Prop({ type: Object }),
37797
- __metadata("design:type", Component$1)
37805
+ __metadata("design:type", Component)
37798
37806
  ], ZdComponent.prototype, "instanceObject", void 0);
37799
37807
  ZdComponent = ZdComponent_1 = __decorate([
37800
- Component
37808
+ Component$1
37801
37809
  ], ZdComponent);
37802
37810
  var ZdComponent$1 = ZdComponent;
37803
37811
 
@@ -37811,7 +37819,7 @@ let ZdAlert = class ZdAlert extends ZdComponent$1 {
37811
37819
  }
37812
37820
  };
37813
37821
  ZdAlert = __decorate([
37814
- Component,
37822
+ Component$1,
37815
37823
  __metadata("design:paramtypes", [])
37816
37824
  ], ZdAlert);
37817
37825
  var script$1f = ZdAlert;
@@ -38085,7 +38093,7 @@ __decorate([
38085
38093
  __metadata("design:type", String)
38086
38094
  ], ZdComponentRender.prototype, "component", void 0);
38087
38095
  ZdComponentRender = __decorate([
38088
- Component
38096
+ Component$1
38089
38097
  ], ZdComponentRender);
38090
38098
  var ZdComponentRender$1 = ZdComponentRender;
38091
38099
 
@@ -38178,7 +38186,7 @@ __decorate([
38178
38186
  __metadata("design:type", String)
38179
38187
  ], ZdApexChart.prototype, "loadColor", void 0);
38180
38188
  ZdApexChart = __decorate([
38181
- Component
38189
+ Component$1
38182
38190
  ], ZdApexChart);
38183
38191
  var script$1e = ZdApexChart;
38184
38192
 
@@ -38301,7 +38309,7 @@ __decorate([
38301
38309
  __metadata("design:type", Boolean)
38302
38310
  ], ZdBadge.prototype, "showBadgeCounter", void 0);
38303
38311
  ZdBadge = __decorate([
38304
- Component
38312
+ Component$1
38305
38313
  ], ZdBadge);
38306
38314
  var script$1d = ZdBadge;
38307
38315
 
@@ -38424,7 +38432,7 @@ __decorate([
38424
38432
  __metadata("design:type", Boolean)
38425
38433
  ], ZdBreadcrumbs.prototype, "small", void 0);
38426
38434
  ZdBreadcrumbs = __decorate([
38427
- Component
38435
+ Component$1
38428
38436
  ], ZdBreadcrumbs);
38429
38437
  var script$1c = ZdBreadcrumbs;
38430
38438
 
@@ -38630,7 +38638,7 @@ __decorate([
38630
38638
  __metadata("design:type", Object)
38631
38639
  ], ZdButton.prototype, "width", void 0);
38632
38640
  ZdButton = __decorate([
38633
- Component
38641
+ Component$1
38634
38642
  ], ZdButton);
38635
38643
  var ZdButton$1 = ZdButton;
38636
38644
 
@@ -38732,7 +38740,7 @@ __vue_render__$1j._withStripped = true;
38732
38740
  /* style */
38733
38741
  const __vue_inject_styles__$1j = function (inject) {
38734
38742
  if (!inject) return
38735
- inject("data-v-5c5a5758_0", { source: ".v-btn.zd-button,\na.v-btn.zd-button,\nbutton.v-btn.zd-button {\n letter-spacing: unset;\n text-transform: none;\n}\n.v-btn.zd-button.v-btn:not(.v-btn--fab),\na.v-btn.zd-button.v-btn:not(.v-btn--fab),\nbutton.v-btn.zd-button.v-btn:not(.v-btn--fab) {\n box-shadow: none;\n}\n.v-btn.zd-button.v-size--default,\na.v-btn.zd-button.v-size--default,\nbutton.v-btn.zd-button.v-size--default {\n min-width: 0;\n}\n.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded),\na.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded),\nbutton.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded) {\n border-radius: var(--border);\n padding: var(--spacing-2) var(--spacing-4);\n}\n.v-btn.zd-button.v-btn.v-size--default,\na.v-btn.zd-button.v-btn.v-size--default,\nbutton.v-btn.zd-button.v-btn.v-size--default {\n min-height: var(--spacing-6);\n}\n.v-btn.zd-button.v-btn.v-size--default.v-btn--icon,\na.v-btn.zd-button.v-btn.v-size--default.v-btn--icon,\nbutton.v-btn.zd-button.v-btn.v-size--default.v-btn--icon {\n min-width: var(--spacing-6);\n}\n.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab),\na.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab),\nbutton.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab) {\n height: auto;\n width: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab).v-btn--icon,\na.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab).v-btn--icon,\nbutton.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab).v-btn--icon {\n padding: 0;\n min-width: 24px;\n}\n.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab),\na.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab),\nbutton.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab) {\n height: auto;\n min-height: 56px;\n padding: 0 var(--spacing-4);\n}\n.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab).v-btn--icon,\na.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab).v-btn--icon,\nbutton.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab).v-btn--icon {\n min-width: 56px;\n}\n.v-btn.zd-button.v-btn--outlined,\na.v-btn.zd-button.v-btn--outlined,\nbutton.v-btn.zd-button.v-btn--outlined {\n border: var(--regular) solid;\n}\n.v-btn.zd-button .v-btn__content .v-icon,\na.v-btn.zd-button .v-btn__content .v-icon,\nbutton.v-btn.zd-button .v-btn__content .v-icon {\n height: var(--icon-size);\n width: var(--icon-size);\n}\n.v-btn.zd-button .v-btn__content .v-icon--left,\na.v-btn.zd-button .v-btn__content .v-icon--left,\nbutton.v-btn.zd-button .v-btn__content .v-icon--left {\n margin-right: var(--spacing-2);\n margin-left: 0;\n}\n.v-btn.zd-button .v-btn__content .v-icon--right,\na.v-btn.zd-button .v-btn__content .v-icon--right,\nbutton.v-btn.zd-button .v-btn__content .v-icon--right {\n margin-right: 0;\n margin-left: var(--spacing-2);\n}", map: undefined, media: undefined });
38743
+ inject("data-v-24241a72_0", { source: ".v-btn.zd-button,\na.v-btn.zd-button,\nbutton.v-btn.zd-button {\n letter-spacing: unset;\n text-transform: none;\n}\n.v-btn.zd-button.v-btn:not(.v-btn--fab),\na.v-btn.zd-button.v-btn:not(.v-btn--fab),\nbutton.v-btn.zd-button.v-btn:not(.v-btn--fab) {\n box-shadow: none;\n}\n.v-btn.zd-button.v-size--default,\na.v-btn.zd-button.v-size--default,\nbutton.v-btn.zd-button.v-size--default {\n min-width: 0;\n}\n.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded),\na.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded),\nbutton.v-btn.zd-button.v-btn:not(.v-btn--round, .v-btn--rounded) {\n border-radius: var(--border);\n padding: var(--spacing-2) var(--spacing-4);\n}\n.v-btn.zd-button.v-btn.v-size--default,\na.v-btn.zd-button.v-btn.v-size--default,\nbutton.v-btn.zd-button.v-btn.v-size--default {\n min-height: var(--spacing-6);\n}\n.v-btn.zd-button.v-btn.v-size--default.v-btn--icon,\na.v-btn.zd-button.v-btn.v-size--default.v-btn--icon,\nbutton.v-btn.zd-button.v-btn.v-size--default.v-btn--icon {\n min-width: var(--spacing-6);\n}\n.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab),\na.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab),\nbutton.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab) {\n height: auto;\n width: auto;\n min-height: 24px;\n padding: 0 var(--spacing-4);\n}\n.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab).v-btn--icon,\na.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab).v-btn--icon,\nbutton.v-btn.zd-button.v-btn.v-size--small:not(.v-btn--fab).v-btn--icon {\n padding: 0;\n min-width: 24px;\n}\n.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab),\na.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab),\nbutton.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab) {\n height: auto;\n min-height: 56px;\n padding: 0 var(--spacing-4);\n}\n.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab).v-btn--icon,\na.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab).v-btn--icon,\nbutton.v-btn.zd-button.v-btn.v-size--large:not(.v-btn--fab).v-btn--icon {\n min-width: 56px;\n}\n.v-btn.zd-button.v-btn--outlined,\na.v-btn.zd-button.v-btn--outlined,\nbutton.v-btn.zd-button.v-btn--outlined {\n border: var(--regular) solid;\n}\n.v-btn.zd-button .v-btn__content .v-icon,\na.v-btn.zd-button .v-btn__content .v-icon,\nbutton.v-btn.zd-button .v-btn__content .v-icon {\n height: var(--icon-size);\n width: var(--icon-size);\n}\n.v-btn.zd-button .v-btn__content .v-icon--left,\na.v-btn.zd-button .v-btn__content .v-icon--left,\nbutton.v-btn.zd-button .v-btn__content .v-icon--left {\n margin-right: var(--spacing-1);\n}\n.v-btn.zd-button .v-btn__content .v-icon--right,\na.v-btn.zd-button .v-btn__content .v-icon--right,\nbutton.v-btn.zd-button .v-btn__content .v-icon--right {\n margin-left: var(--spacing-1);\n}", map: undefined, media: undefined });
38736
38744
 
38737
38745
  };
38738
38746
  /* scoped */
@@ -38837,7 +38845,7 @@ __decorate([
38837
38845
  __metadata("design:type", Array)
38838
38846
  ], ZdButtonGroup.prototype, "children", void 0);
38839
38847
  ZdButtonGroup = __decorate([
38840
- Component
38848
+ Component$1
38841
38849
  ], ZdButtonGroup);
38842
38850
  var script$1b = ZdButtonGroup;
38843
38851
 
@@ -39047,7 +39055,7 @@ __decorate([
39047
39055
  __metadata("design:type", Object)
39048
39056
  ], ZdCard.prototype, "width", void 0);
39049
39057
  ZdCard = __decorate([
39050
- Component
39058
+ Component$1
39051
39059
  ], ZdCard);
39052
39060
  var script$1a = ZdCard;
39053
39061
 
@@ -39397,7 +39405,7 @@ __decorate([
39397
39405
  __metadata("design:returntype", void 0)
39398
39406
  ], ZdCarousel.prototype, "changeIsVisible", null);
39399
39407
  ZdCarousel = __decorate([
39400
- Component
39408
+ Component$1
39401
39409
  ], ZdCarousel);
39402
39410
  var script$19 = ZdCarousel;
39403
39411
 
@@ -39870,7 +39878,7 @@ __decorate([
39870
39878
  __metadata("design:type", Object)
39871
39879
  ], ZdInput.prototype, "value", void 0);
39872
39880
  ZdInput = __decorate([
39873
- Component
39881
+ Component$1
39874
39882
  ], ZdInput);
39875
39883
  var ZdInput$1 = ZdInput;
39876
39884
 
@@ -39892,7 +39900,7 @@ __decorate([
39892
39900
  __metadata("design:type", Object)
39893
39901
  ], ZdToggleable.prototype, "trueValue", void 0);
39894
39902
  ZdToggleable = __decorate([
39895
- Component
39903
+ Component$1
39896
39904
  ], ZdToggleable);
39897
39905
  var ZdToggleable$1 = ZdToggleable;
39898
39906
 
@@ -39910,7 +39918,7 @@ let ZdCheckbox = class ZdCheckbox extends ZdToggleable$1 {
39910
39918
  }
39911
39919
  };
39912
39920
  ZdCheckbox = __decorate([
39913
- Component
39921
+ Component$1
39914
39922
  ], ZdCheckbox);
39915
39923
  var script$18 = ZdCheckbox;
39916
39924
 
@@ -40077,7 +40085,7 @@ __decorate([
40077
40085
  __metadata("design:type", Object)
40078
40086
  ], ZdCheckboxMultiple.prototype, "vertical", void 0);
40079
40087
  ZdCheckboxMultiple = __decorate([
40080
- Component
40088
+ Component$1
40081
40089
  ], ZdCheckboxMultiple);
40082
40090
  var script$17 = ZdCheckboxMultiple;
40083
40091
 
@@ -40279,7 +40287,7 @@ __decorate([
40279
40287
  __metadata("design:type", Boolean)
40280
40288
  ], ZdChip.prototype, "xSmall", void 0);
40281
40289
  ZdChip = __decorate([
40282
- Component
40290
+ Component$1
40283
40291
  ], ZdChip);
40284
40292
  var script$16 = ZdChip;
40285
40293
 
@@ -40484,7 +40492,7 @@ __decorate([
40484
40492
  __metadata("design:type", Object)
40485
40493
  ], ZdCodeEditor.prototype, "staticCode", void 0);
40486
40494
  ZdCodeEditor = __decorate([
40487
- Component
40495
+ Component$1
40488
40496
  ], ZdCodeEditor);
40489
40497
  var script$15 = ZdCodeEditor;
40490
40498
 
@@ -40686,7 +40694,7 @@ __decorate([
40686
40694
  __metadata("design:type", Object)
40687
40695
  ], ZdCol.prototype, "offset", void 0);
40688
40696
  ZdCol = __decorate([
40689
- Component
40697
+ Component$1
40690
40698
  ], ZdCol);
40691
40699
  var script$14 = ZdCol;
40692
40700
 
@@ -40864,7 +40872,7 @@ __decorate([
40864
40872
  __metadata("design:type", Boolean)
40865
40873
  ], ZdCollapseCard.prototype, "readonly", void 0);
40866
40874
  ZdCollapseCard = __decorate([
40867
- Component
40875
+ Component$1
40868
40876
  ], ZdCollapseCard);
40869
40877
  var script$13 = ZdCollapseCard;
40870
40878
 
@@ -41119,7 +41127,7 @@ __decorate([
41119
41127
  __metadata("design:type", Object)
41120
41128
  ], ZdContainer.prototype, "minHeight", void 0);
41121
41129
  ZdContainer = __decorate([
41122
- Component
41130
+ Component$1
41123
41131
  ], ZdContainer);
41124
41132
  var script$12 = ZdContainer;
41125
41133
 
@@ -41354,7 +41362,7 @@ __decorate([
41354
41362
  __metadata("design:type", Object)
41355
41363
  ], ZdTextInput.prototype, "value", void 0);
41356
41364
  ZdTextInput = __decorate([
41357
- Component
41365
+ Component$1
41358
41366
  ], ZdTextInput);
41359
41367
  var ZdTextInput$1 = ZdTextInput;
41360
41368
 
@@ -41412,6 +41420,7 @@ var __vue_render__$18 = function () {
41412
41420
  },
41413
41421
  "zd-text-align-" +
41414
41422
  (_vm.instance.reverse ? "right" : _vm.instance.align),
41423
+ _vm.instance.type === "color" ? "zd-color-type" : "",
41415
41424
  ],
41416
41425
  style: _vm.instance.cssStyle,
41417
41426
  attrs: {
@@ -41523,7 +41532,7 @@ __vue_render__$18._withStripped = true;
41523
41532
  /* style */
41524
41533
  const __vue_inject_styles__$18 = function (inject) {
41525
41534
  if (!inject) return
41526
- inject("data-v-60a42fc6_0", { source: ".zd-text-input__affix, .v-input.zd-text-input.zd-text-input--suffix .v-input__append-inner > .zd-text-input__append .zd-text-input__append__suffix, .v-input.zd-text-input > .v-input__control > .v-input__slot .v-text-field__prefix {\n font-weight: var(--zd-font-body2-weight);\n color: var(--v-grey-lighten2);\n font-size: var(--zd-font-body2-size);\n line-height: 15px;\n padding: 3px 0 4px 0;\n}\n.zd-input.v-input.v-input--is-readonly > .v-input__control > .v-input__slot {\n background-color: var(--v-grey-lighten5);\n}\n.zd-input.v-input.v-input--is-readonly.theme--dark > .v-input__control > .v-input__slot {\n background-color: var(--v-grey-darken2);\n}\n.v-input.zd-text-input {\n padding-top: var(--spacing-4);\n}\n.v-input.zd-text-input .v-input__prepend-outer {\n margin-right: var(--spacing-1);\n}\n.v-input.zd-text-input .v-input__append-outer {\n margin-left: var(--spacing-1);\n}\n.v-input.zd-text-input .v-input__prepend-outer, .v-input.zd-text-input .v-input__append-outer {\n margin-top: calc(var(--spacing-7) / 2 - var(--icon-size) / 2);\n margin-bottom: calc(var(--spacing-7) / 2 - var(--icon-size) / 2);\n}\n.v-input.zd-text-input .v-input__append-inner, .v-input.zd-text-input .v-input__prepend-inner {\n padding: 0;\n margin: 0;\n align-self: unset;\n}\n.v-input.zd-text-input .v-input__prepend-outer .v-icon, .v-input.zd-text-input .v-input__append-outer .v-icon, .v-input.zd-text-input .v-input__append-inner .v-icon, .v-input.zd-text-input .v-input__prepend-inner .v-icon {\n font-size: var(--icon-size);\n}\n.v-input.zd-text-input > .v-input__control > .v-input__slot .v-text-field__prefix {\n padding-left: var(--spacing-2);\n}\n.v-input.zd-text-input > .v-input__control > .v-input__slot .v-text-field__slot {\n position: static;\n}\n.v-input.zd-text-input.v-text-field--reverse > .v-input__control > .v-input__slot label {\n left: auto !important;\n}\n.v-input.zd-text-input.zd-text-input--suffix .v-input__append-inner > .zd-text-input__append {\n align-items: center;\n display: inline-flex;\n flex: 1 0 auto;\n justify-content: center;\n}\n.v-input.zd-text-input.zd-text-input--suffix .v-input__append-inner > .zd-text-input__append .zd-text-input__append__suffix {\n padding-right: var(--spacing-2);\n}\n.v-input.zd-text-input.zd-text-input--prepend-icon > .v-input__control > .v-input__slot > .v-input__prepend-inner {\n padding: 0;\n}\n.v-input.zd-text-input.zd-text-input--append-icon > .v-input__control > .v-input__slot > .v-input__append-inner {\n padding: 0;\n}\n.v-input.zd-text-input.zd-dense .v-input__prepend-outer, .v-input.zd-text-input.zd-dense .v-input__append-outer {\n margin-top: calc(var(--icon-size) / 2 - var(--icon-size) / 2);\n margin-bottom: calc(var(--icon-size) / 2 - var(--icon-size) / 2);\n}\n.v-input.zd-text-input.zd-dense .v-input__prepend-outer .v-icon, .v-input.zd-text-input.zd-dense .v-input__append-outer .v-icon, .v-input.zd-text-input.zd-dense .v-input__append-inner .v-icon, .v-input.zd-text-input.zd-dense .v-input__prepend-inner .v-icon {\n font-size: var(--icon-size-small);\n}\n.v-input.zd-text-input.zd-dense .v-input__slot .v-text-field__prefix {\n height: auto;\n}\n.v-input.zd-text-input.zd-no-border:not(.error--text) .v-input__append-inner:last-child,\n.v-input.zd-text-input.zd-no-border:not(.error--text) .v-input__prepend-inner:first-child {\n margin: 0;\n}\n.v-input.zd-text-input.zd-no-border:not(.error--text) > .v-input__control > .v-input__slot input {\n padding: 0;\n}\n.v-input.zd-text-input.zd-text-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.v-input.zd-text-input.zd-text-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.v-input.zd-text-input.zd-text-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}", map: undefined, media: undefined });
41535
+ inject("data-v-5ab905d8_0", { source: ".zd-text-input__affix, .v-input.zd-text-input.zd-text-input--suffix .v-input__append-inner > .zd-text-input__append .zd-text-input__append__suffix, .v-input.zd-text-input > .v-input__control > .v-input__slot .v-text-field__prefix {\n font-weight: var(--zd-font-body2-weight);\n color: var(--v-grey-lighten2);\n font-size: var(--zd-font-body2-size);\n line-height: 15px;\n padding: 3px 0 4px 0;\n}\n.zd-input.v-input.v-input--is-readonly > .v-input__control > .v-input__slot {\n background-color: var(--v-grey-lighten5);\n}\n.zd-input.v-input.v-input--is-readonly.theme--dark > .v-input__control > .v-input__slot {\n background-color: var(--v-grey-darken2);\n}\n.v-input.zd-text-input {\n padding-top: var(--spacing-4);\n}\n.v-input.zd-text-input .v-input__prepend-outer {\n margin-right: var(--spacing-1);\n}\n.v-input.zd-text-input .v-input__append-outer {\n margin-left: var(--spacing-1);\n}\n.v-input.zd-text-input .v-input__prepend-outer, .v-input.zd-text-input .v-input__append-outer {\n margin-top: calc(var(--spacing-7) / 2 - var(--icon-size) / 2);\n margin-bottom: calc(var(--spacing-7) / 2 - var(--icon-size) / 2);\n}\n.v-input.zd-text-input .v-input__append-inner, .v-input.zd-text-input .v-input__prepend-inner {\n padding: 0;\n margin: 0;\n align-self: unset;\n}\n.v-input.zd-text-input .v-input__prepend-outer .v-icon, .v-input.zd-text-input .v-input__append-outer .v-icon, .v-input.zd-text-input .v-input__append-inner .v-icon, .v-input.zd-text-input .v-input__prepend-inner .v-icon {\n font-size: var(--icon-size);\n}\n.v-input.zd-text-input > .v-input__control > .v-input__slot .v-text-field__prefix {\n padding-left: var(--spacing-2);\n}\n.v-input.zd-text-input > .v-input__control > .v-input__slot .v-text-field__slot {\n position: static;\n}\n.v-input.zd-text-input.v-text-field--reverse > .v-input__control > .v-input__slot label {\n left: auto !important;\n}\n.v-input.zd-text-input.zd-text-input--suffix .v-input__append-inner > .zd-text-input__append {\n align-items: center;\n display: inline-flex;\n flex: 1 0 auto;\n justify-content: center;\n}\n.v-input.zd-text-input.zd-text-input--suffix .v-input__append-inner > .zd-text-input__append .zd-text-input__append__suffix {\n padding-right: var(--spacing-2);\n}\n.v-input.zd-text-input.zd-text-input--prepend-icon > .v-input__control > .v-input__slot > .v-input__prepend-inner {\n padding: 0;\n}\n.v-input.zd-text-input.zd-text-input--append-icon > .v-input__control > .v-input__slot > .v-input__append-inner {\n padding: 0;\n}\n.v-input.zd-text-input.zd-dense .v-input__prepend-outer, .v-input.zd-text-input.zd-dense .v-input__append-outer {\n margin-top: calc(var(--icon-size) / 2 - var(--icon-size) / 2);\n margin-bottom: calc(var(--icon-size) / 2 - var(--icon-size) / 2);\n}\n.v-input.zd-text-input.zd-dense .v-input__prepend-outer .v-icon, .v-input.zd-text-input.zd-dense .v-input__append-outer .v-icon, .v-input.zd-text-input.zd-dense .v-input__append-inner .v-icon, .v-input.zd-text-input.zd-dense .v-input__prepend-inner .v-icon {\n font-size: var(--icon-size-small);\n}\n.v-input.zd-text-input.zd-dense .v-input__slot .v-text-field__prefix {\n height: auto;\n}\n.v-input.zd-text-input.zd-no-border:not(.error--text) .v-input__append-inner:last-child,\n.v-input.zd-text-input.zd-no-border:not(.error--text) .v-input__prepend-inner:first-child {\n margin: 0;\n}\n.v-input.zd-text-input.zd-no-border:not(.error--text) > .v-input__control > .v-input__slot input {\n padding: 0;\n}\n.v-input.zd-text-input.zd-text-align-left > .v-input__control > .v-input__slot input {\n text-align: left;\n}\n.v-input.zd-text-input.zd-color-type > .v-input__control > .v-input__slot input {\n padding: 0;\n cursor: pointer;\n max-height: 22px;\n}\n.v-input.zd-text-input.zd-color-type:not(.zd-dense) > .v-input__control > .v-input__slot input {\n max-height: 34px;\n}\n.v-input.zd-text-input.zd-text-align-center > .v-input__control > .v-input__slot input {\n text-align: center;\n}\n.v-input.zd-text-input.zd-text-align-right > .v-input__control > .v-input__slot input {\n text-align: right;\n}", map: undefined, media: undefined });
41527
41536
 
41528
41537
  };
41529
41538
  /* scoped */
@@ -41600,7 +41609,7 @@ __decorate([
41600
41609
  __metadata("design:type", Object)
41601
41610
  ], ZdNumber.prototype, "value", void 0);
41602
41611
  ZdNumber = __decorate([
41603
- Component
41612
+ Component$1
41604
41613
  ], ZdNumber);
41605
41614
  var ZdNumber$1 = ZdNumber;
41606
41615
 
@@ -41688,7 +41697,7 @@ __decorate([
41688
41697
  __metadata("design:type", Object)
41689
41698
  ], ZdCurrency.prototype, "mask", void 0);
41690
41699
  ZdCurrency = __decorate([
41691
- Component
41700
+ Component$1
41692
41701
  ], ZdCurrency);
41693
41702
  var script$11 = ZdCurrency;
41694
41703
 
@@ -41885,8 +41894,12 @@ __decorate([
41885
41894
  PropWatch({ type: [Number, String], default: '' }),
41886
41895
  __metadata("design:type", Object)
41887
41896
  ], ZdDashboard.prototype, "heightAdjust", void 0);
41897
+ __decorate([
41898
+ PropWatch({ type: Array, default: () => undefined }),
41899
+ __metadata("design:type", Object)
41900
+ ], ZdDashboard.prototype, "cardFooterSlot", void 0);
41888
41901
  ZdDashboard = __decorate([
41889
- Component
41902
+ Component$1
41890
41903
  ], ZdDashboard);
41891
41904
  var script$10 = ZdDashboard;
41892
41905
 
@@ -41968,6 +41981,11 @@ var __vue_render__$15 = function () {
41968
41981
  {
41969
41982
  staticClass: "zd-dashboard-card-div dashboard-div-card",
41970
41983
  attrs: { id: "dashboardDivCard-" + card.cardId },
41984
+ on: {
41985
+ mousedown: function ($event) {
41986
+ return _vm.instance.selectCard(card.cardId)
41987
+ },
41988
+ },
41971
41989
  },
41972
41990
  [
41973
41991
  _c(
@@ -42092,7 +42110,7 @@ __vue_render__$15._withStripped = true;
42092
42110
  /* style */
42093
42111
  const __vue_inject_styles__$15 = function (inject) {
42094
42112
  if (!inject) return
42095
- inject("data-v-5ff6ec98_0", { source: ".zd-dashboard {\n display: flex;\n flex-direction: column;\n cursor: auto;\n}\n.zd-dashboard .zd-header {\n margin-bottom: 10px;\n}\n.zd-dashboard .zd-footer {\n bottom: 0;\n right: 20px;\n position: absolute;\n padding: 3px;\n}\n.zd-dashboard .zd-footer.theme--dark {\n background: #1e1e1e;\n}\n.zd-dashboard .zd-footer.theme--light {\n background: #fff;\n}\n.zd-dashboard .zd-icon {\n bottom: 0;\n right: 0;\n position: absolute;\n cursor: nw-resize;\n}\n.zd-dashboard .zd-dashboard-body {\n justify-content: flex-start;\n align-content: flex-start;\n display: flex;\n flex-wrap: wrap;\n height: 100%;\n min-height: 0;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col {\n min-height: 70px;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col .zd-dashboard-card-div {\n height: 100%;\n position: relative;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col .zd-dashboard-card-div > .zd-card {\n height: 100%;\n}\n.ghost-drag {\n border: 2px dashed #772583;\n opacity: 0.5;\n margin: 0;\n}", map: undefined, media: undefined });
42113
+ inject("data-v-29d9be7e_0", { source: ".zd-dashboard {\n display: flex;\n flex-direction: column;\n cursor: auto;\n}\n.zd-dashboard .zd-header {\n margin-bottom: 10px;\n}\n.zd-dashboard .zd-footer {\n bottom: 0;\n right: 10px;\n position: absolute;\n padding: 3px;\n}\n.zd-dashboard .zd-footer.theme--dark {\n background: #1e1e1e;\n}\n.zd-dashboard .zd-footer.theme--light {\n background: #fff;\n}\n.zd-dashboard .zd-icon {\n bottom: 0;\n right: 0;\n position: absolute;\n cursor: nw-resize;\n}\n.zd-dashboard .zd-dashboard-body {\n justify-content: flex-start;\n align-content: flex-start;\n display: flex;\n flex-wrap: wrap;\n height: 100%;\n min-height: 0;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col {\n min-height: 70px;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col .zd-dashboard-card-div {\n height: 100%;\n position: relative;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col .zd-dashboard-card-div > .zd-card {\n height: 100%;\n}\n.ghost-drag {\n border: 2px dashed #772583;\n opacity: 0.5;\n margin: 0;\n}", map: undefined, media: undefined });
42096
42114
 
42097
42115
  };
42098
42116
  /* scoped */
@@ -42361,7 +42379,7 @@ __decorate([
42361
42379
  __metadata("design:type", String)
42362
42380
  ], ZdDate.prototype, "helperValue", void 0);
42363
42381
  ZdDate = __decorate([
42364
- Component
42382
+ Component$1
42365
42383
  ], ZdDate);
42366
42384
  var script$$ = ZdDate;
42367
42385
 
@@ -42784,7 +42802,7 @@ __decorate([
42784
42802
  __metadata("design:type", String)
42785
42803
  ], ZdDateRange.prototype, "helperValue", void 0);
42786
42804
  ZdDateRange = __decorate([
42787
- Component
42805
+ Component$1
42788
42806
  ], ZdDateRange);
42789
42807
  var script$_ = ZdDateRange;
42790
42808
 
@@ -42998,7 +43016,7 @@ let ZdDialog = class ZdDialog extends ZdComponent$1 {
42998
43016
  }
42999
43017
  };
43000
43018
  ZdDialog = __decorate([
43001
- Component,
43019
+ Component$1,
43002
43020
  __metadata("design:paramtypes", [])
43003
43021
  ], ZdDialog);
43004
43022
  var script$Z = ZdDialog;
@@ -43014,6 +43032,7 @@ var __vue_render__$12 = function () {
43014
43032
  return _c(
43015
43033
  "v-dialog",
43016
43034
  {
43035
+ key: "" + _vm.dialog.name + _vm.dialog.isVisible,
43017
43036
  attrs: {
43018
43037
  id: _vm.dialog.name,
43019
43038
  "max-width": _vm.dialog.maxWidth,
@@ -43108,7 +43127,7 @@ __vue_render__$12._withStripped = true;
43108
43127
  /* style */
43109
43128
  const __vue_inject_styles__$12 = function (inject) {
43110
43129
  if (!inject) return
43111
- inject("data-v-8dc5d162_0", { source: ".v-dialog > .zd-dialog > .zd-dialog-title {\n padding: var(--spacing-4);\n padding-bottom: 0;\n color: var(--zd-font-color);\n font-size: var(--zd-font-title-size);\n font-weight: var(--zd-font-title-weight);\n}\n.v-dialog > .zd-dialog > .zd-dialog-title .zd-dialog-icon {\n width: var(--icon-size);\n height: var(--icon-size);\n margin-right: var(--spacing-2);\n}\n.v-dialog > .zd-dialog .zd-dialog-text {\n padding: 14px var(--spacing-4) var(--spacing-4) var(--spacing-4);\n color: var(--zd-font-color);\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n}\n.v-dialog > .zd-dialog .zd-dialog-buttons {\n padding: var(--spacing-4);\n padding-top: 0;\n}\n.v-dialog > .zd-dialog .zd-dialog-buttons .zd-button {\n margin-left: var(--spacing-2);\n}", map: undefined, media: undefined });
43130
+ inject("data-v-308734a8_0", { source: ".v-dialog > .zd-dialog > .zd-dialog-title {\n padding: var(--spacing-4);\n padding-bottom: 0;\n color: var(--zd-font-color);\n font-size: var(--zd-font-title-size);\n font-weight: var(--zd-font-title-weight);\n}\n.v-dialog > .zd-dialog > .zd-dialog-title .zd-dialog-icon {\n width: var(--icon-size);\n height: var(--icon-size);\n margin-right: var(--spacing-2);\n}\n.v-dialog > .zd-dialog .zd-dialog-text {\n padding: 14px var(--spacing-4) var(--spacing-4) var(--spacing-4);\n color: var(--zd-font-color);\n font-size: var(--zd-font-body3-size);\n font-weight: var(--zd-font-body3-weight);\n}\n.v-dialog > .zd-dialog .zd-dialog-buttons {\n padding: var(--spacing-4);\n padding-top: 0;\n}\n.v-dialog > .zd-dialog .zd-dialog-buttons .zd-button {\n margin-left: var(--spacing-2);\n}", map: undefined, media: undefined });
43112
43131
 
43113
43132
  };
43114
43133
  /* scoped */
@@ -43154,7 +43173,7 @@ __decorate([
43154
43173
  __metadata("design:type", Boolean)
43155
43174
  ], ZdDivider.prototype, "vertical", void 0);
43156
43175
  ZdDivider = __decorate([
43157
- Component
43176
+ Component$1
43158
43177
  ], ZdDivider);
43159
43178
  var script$Y = ZdDivider;
43160
43179
 
@@ -43309,7 +43328,7 @@ __decorate([
43309
43328
  __metadata("design:type", Object)
43310
43329
  ], ZdDropdown.prototype, "value", void 0);
43311
43330
  ZdDropdown = __decorate([
43312
- Component
43331
+ Component$1
43313
43332
  ], ZdDropdown);
43314
43333
  var script$X = ZdDropdown;
43315
43334
 
@@ -43599,7 +43618,7 @@ __decorate([
43599
43618
  __metadata("design:type", Object)
43600
43619
  ], ZdFileInput.prototype, "value", void 0);
43601
43620
  ZdFileInput = __decorate([
43602
- Component
43621
+ Component$1
43603
43622
  ], ZdFileInput);
43604
43623
  var script$W = ZdFileInput;
43605
43624
 
@@ -43983,7 +44002,7 @@ __decorate([
43983
44002
  __metadata("design:type", Object)
43984
44003
  ], ZdFooter.prototype, "width", void 0);
43985
44004
  ZdFooter = __decorate([
43986
- Component
44005
+ Component$1
43987
44006
  ], ZdFooter);
43988
44007
  var script$V = ZdFooter;
43989
44008
 
@@ -44275,7 +44294,7 @@ __decorate([
44275
44294
  __metadata("design:type", Object)
44276
44295
  ], ZdForm.prototype, "value", void 0);
44277
44296
  ZdForm = __decorate([
44278
- Component
44297
+ Component$1
44279
44298
  ], ZdForm);
44280
44299
  var script$U = ZdForm;
44281
44300
 
@@ -44458,7 +44477,7 @@ __decorate([
44458
44477
  __metadata("design:type", Object)
44459
44478
  ], ZdFrame.prototype, "minHeight", void 0);
44460
44479
  ZdFrame = __decorate([
44461
- Component
44480
+ Component$1
44462
44481
  ], ZdFrame);
44463
44482
  var script$T = ZdFrame;
44464
44483
 
@@ -44559,7 +44578,7 @@ __decorate([
44559
44578
  __metadata("design:type", String)
44560
44579
  ], ZdFramePage.prototype, "name", void 0);
44561
44580
  ZdFramePage = __decorate([
44562
- Component
44581
+ Component$1
44563
44582
  ], ZdFramePage);
44564
44583
  var script$S = ZdFramePage;
44565
44584
 
@@ -44667,7 +44686,7 @@ __decorate([
44667
44686
  __metadata("design:type", Object)
44668
44687
  ], ZdIterable.prototype, "virtualScroll", void 0);
44669
44688
  ZdIterable = __decorate([
44670
- Component
44689
+ Component$1
44671
44690
  ], ZdIterable);
44672
44691
  var ZdIterable$1 = ZdIterable;
44673
44692
 
@@ -45067,6 +45086,10 @@ __decorate([
45067
45086
  PropWatch({ type: [Number, String], default: undefined }),
45068
45087
  __metadata("design:type", Object)
45069
45088
  ], ZdGrid.prototype, "gridMaxHeight", void 0);
45089
+ __decorate([
45090
+ Prop({ type: [String, Function], default: undefined }),
45091
+ __metadata("design:type", Object)
45092
+ ], ZdGrid.prototype, "disableSelection", void 0);
45070
45093
  __decorate([
45071
45094
  Prop({
45072
45095
  type: Array,
@@ -45115,6 +45138,10 @@ __decorate([
45115
45138
  PropWatch({ type: [Boolean, String], default: false }),
45116
45139
  __metadata("design:type", Object)
45117
45140
  ], ZdGrid.prototype, "resizeColumns", void 0);
45141
+ __decorate([
45142
+ PropWatch({ type: [Boolean, String], default: true }),
45143
+ __metadata("design:type", Object)
45144
+ ], ZdGrid.prototype, "showSelectAll", void 0);
45118
45145
  __decorate([
45119
45146
  Prop({
45120
45147
  type: Array,
@@ -45171,7 +45198,6 @@ var __vue_render__$W = function () {
45171
45198
  height: _vm.instance.height,
45172
45199
  items: _vm.getData(),
45173
45200
  search: _vm.instance.datasource.search,
45174
- "show-select": _vm.instance.selectable,
45175
45201
  dense: _vm.instance.dense,
45176
45202
  loading: _vm.instance.datasource.loading,
45177
45203
  "item-key": _vm.instance.datasource.uniqueKey,
@@ -45234,31 +45260,35 @@ var __vue_render__$W = function () {
45234
45260
  _vm.instance.headerBackground,
45235
45261
  },
45236
45262
  [
45237
- _c("v-checkbox", {
45238
- staticClass: "zd-grid-header-checkbox",
45239
- attrs: {
45240
- "hide-details": "",
45241
- color: "primary",
45242
- "on-icon": _vm.$getIcon("checkboxOn"),
45243
- "off-icon": _vm.$getIcon("checkboxOff"),
45244
- "indeterminate-icon": _vm.$getIcon(
45245
- "checkboxIndeterminate"
45246
- ),
45247
- "input-value": props.everyItem,
45248
- indeterminate:
45249
- !props.everyItem && props.someItems,
45250
- },
45251
- on: {
45252
- click: function ($event) {
45253
- $event.stopPropagation();
45254
- on["toggle-select-all"](!props.everyItem);
45255
- _vm.selectAllClick(
45256
- !props.everyItem,
45257
- $event
45258
- );
45259
- },
45260
- },
45261
- }),
45263
+ _vm.instance.showSelectAll
45264
+ ? _c("v-checkbox", {
45265
+ staticClass: "zd-grid-header-checkbox",
45266
+ attrs: {
45267
+ "hide-details": "",
45268
+ color: "primary",
45269
+ "on-icon": _vm.$getIcon("checkboxOn"),
45270
+ "off-icon": _vm.$getIcon("checkboxOff"),
45271
+ "indeterminate-icon": _vm.$getIcon(
45272
+ "checkboxIndeterminate"
45273
+ ),
45274
+ "input-value": props.everyItem,
45275
+ indeterminate:
45276
+ !props.everyItem && props.someItems,
45277
+ },
45278
+ on: {
45279
+ click: function ($event) {
45280
+ $event.stopPropagation();
45281
+ on["toggle-select-all"](
45282
+ !props.everyItem
45283
+ );
45284
+ _vm.selectAllClick(
45285
+ !props.everyItem,
45286
+ $event
45287
+ );
45288
+ },
45289
+ },
45290
+ })
45291
+ : _vm._e(),
45262
45292
  ],
45263
45293
  1
45264
45294
  )
@@ -45619,6 +45649,8 @@ var __vue_render__$W = function () {
45619
45649
  attrs: {
45620
45650
  "hide-details": "",
45621
45651
  color: "primary",
45652
+ disabled:
45653
+ _vm.instance.callDisableSelection(item),
45622
45654
  "on-icon": _vm.$getIcon("checkboxOn"),
45623
45655
  "off-icon": _vm.$getIcon("checkboxOff"),
45624
45656
  "true-value": true,
@@ -45917,7 +45949,7 @@ __vue_render__$W._withStripped = true;
45917
45949
  /* style */
45918
45950
  const __vue_inject_styles__$W = function (inject) {
45919
45951
  if (!inject) return
45920
- inject("data-v-1dfd9c3b_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n}\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--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined });
45952
+ inject("data-v-7918e706_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid .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 });
45921
45953
 
45922
45954
  };
45923
45955
  /* scoped */
@@ -45977,17 +46009,17 @@ let ZdGridEditable = class ZdGridEditable extends ZdGrid$1 {
45977
46009
  }
45978
46010
  return this.instance.getEditableComponent(column, row, cellProps, events);
45979
46011
  }
45980
- cellClick(row, column, event) {
46012
+ cellClick(row, column, event, canEdit = true) {
45981
46013
  if (!this.instance.doubleClickEdit || !column.editable) {
45982
- this.callCellClick(row, column, event);
46014
+ this.callCellClick(row, column, event, canEdit);
45983
46015
  return;
45984
46016
  }
45985
- this.$doubleClick(() => this.instance.cellClickEvent(row, column, event, this.$el), () => this.callCellClick(row, column, event), event);
46017
+ this.$doubleClick(() => this.instance.cellClickEvent(row, column, event, this.$el), () => this.callCellClick(row, column, event, canEdit), event);
45986
46018
  }
45987
- callCellClick(row, column, event) {
46019
+ callCellClick(row, column, event, canEdit = true) {
45988
46020
  const key = row[this.instance.datasource.uniqueKey];
45989
46021
  this.inputToFocus = `column-${column.name}-${key}`;
45990
- this.instance.cellClick(row, column, event, this.$el);
46022
+ this.instance.cellClick(row, column, event, this.$el, canEdit);
45991
46023
  }
45992
46024
  onMountedEvent({ element, component }) {
45993
46025
  const input = element.getElementsByTagName('input')[0];
@@ -46089,6 +46121,10 @@ __decorate([
46089
46121
  PropWatch({ type: [String, Boolean], default: false }),
46090
46122
  __metadata("design:type", Object)
46091
46123
  ], ZdGridEditable.prototype, "doubleClickEdit", void 0);
46124
+ __decorate([
46125
+ PropWatch({ type: [String, Function], default: undefined }),
46126
+ __metadata("design:type", Object)
46127
+ ], ZdGridEditable.prototype, "canEditRow", void 0);
46092
46128
  ZdGridEditable = __decorate([
46093
46129
  Component$2
46094
46130
  ], ZdGridEditable);
@@ -46131,13 +46167,13 @@ var __vue_render__$V = function () {
46131
46167
  headers: _vm.instance.columns,
46132
46168
  items: _vm.getData(),
46133
46169
  search: _vm.instance.datasource.search,
46134
- "show-select": _vm.instance.selectable,
46135
46170
  dense: _vm.instance.dense,
46136
46171
  loading: _vm.instance.datasource.loading,
46137
46172
  "item-key": _vm.instance.datasource.uniqueKey,
46138
46173
  "disable-sort": "",
46139
46174
  "disable-filtering": "",
46140
46175
  tabindex: "0",
46176
+ set: (_vm.canEditRowValues = {}),
46141
46177
  },
46142
46178
  on: {
46143
46179
  "current-items": function ($event) {
@@ -46194,32 +46230,36 @@ var __vue_render__$V = function () {
46194
46230
  _vm.instance.headerBackground,
46195
46231
  },
46196
46232
  [
46197
- _c("v-checkbox", {
46198
- staticClass: "zd-grid-header-checkbox",
46199
- attrs: {
46200
- "hide-details": "",
46201
- color: "primary",
46202
- disabled: _vm.instance.editing,
46203
- "on-icon": _vm.$getIcon("checkboxOn"),
46204
- "off-icon": _vm.$getIcon("checkboxOff"),
46205
- "indeterminate-icon": _vm.$getIcon(
46206
- "checkboxIndeterminate"
46207
- ),
46208
- "input-value": props.everyItem,
46209
- indeterminate:
46210
- !props.everyItem && props.someItems,
46211
- },
46212
- on: {
46213
- click: function ($event) {
46214
- $event.stopPropagation();
46215
- on["toggle-select-all"](!props.everyItem);
46216
- _vm.selectAllClick(
46217
- !props.everyItem,
46218
- $event
46219
- );
46220
- },
46221
- },
46222
- }),
46233
+ _vm.instance.showSelectAll
46234
+ ? _c("v-checkbox", {
46235
+ staticClass: "zd-grid-header-checkbox",
46236
+ attrs: {
46237
+ "hide-details": "",
46238
+ color: "primary",
46239
+ disabled: _vm.instance.editing,
46240
+ "on-icon": _vm.$getIcon("checkboxOn"),
46241
+ "off-icon": _vm.$getIcon("checkboxOff"),
46242
+ "indeterminate-icon": _vm.$getIcon(
46243
+ "checkboxIndeterminate"
46244
+ ),
46245
+ "input-value": props.everyItem,
46246
+ indeterminate:
46247
+ !props.everyItem && props.someItems,
46248
+ },
46249
+ on: {
46250
+ click: function ($event) {
46251
+ $event.stopPropagation();
46252
+ on["toggle-select-all"](
46253
+ !props.everyItem
46254
+ );
46255
+ _vm.selectAllClick(
46256
+ !props.everyItem,
46257
+ $event
46258
+ );
46259
+ },
46260
+ },
46261
+ })
46262
+ : _vm._e(),
46223
46263
  ],
46224
46264
  1
46225
46265
  )
@@ -46285,7 +46325,7 @@ var __vue_render__$V = function () {
46285
46325
  "span",
46286
46326
  {
46287
46327
  staticClass:
46288
- "zd-table-cell-sort zd-mr-1",
46328
+ "zd-table-cell-sort zd-mr-1",
46289
46329
  on: {
46290
46330
  click: function (
46291
46331
  $event
@@ -46569,6 +46609,10 @@ var __vue_render__$V = function () {
46569
46609
  active: isSelected,
46570
46610
  current: _vm.isCurrentRow(item),
46571
46611
  },
46612
+ attrs: {
46613
+ set: (_vm.canEditRowValues[_vm.rowKey(item)] =
46614
+ _vm.instance.callCanEditRow(item)),
46615
+ },
46572
46616
  on: {
46573
46617
  click: function ($event) {
46574
46618
  return _vm.rowClick(item, $event)
@@ -46586,7 +46630,9 @@ var __vue_render__$V = function () {
46586
46630
  attrs: {
46587
46631
  "hide-details": "",
46588
46632
  color: "primary",
46589
- disabled: _vm.instance.editing,
46633
+ disabled:
46634
+ _vm.instance.editing ||
46635
+ _vm.instance.callDisableSelection(item),
46590
46636
  "on-icon": _vm.$getIcon("checkboxOn"),
46591
46637
  "off-icon": _vm.$getIcon("checkboxOff"),
46592
46638
  "true-value": true,
@@ -46644,7 +46690,10 @@ var __vue_render__$V = function () {
46644
46690
  {},
46645
46691
  column,
46646
46692
  cellProps
46647
- ).editable,
46693
+ ).editable &&
46694
+ _vm.canEditRowValues[
46695
+ _vm.rowKey(item)
46696
+ ],
46648
46697
  },
46649
46698
  ],
46650
46699
  style: [
@@ -46655,11 +46704,14 @@ var __vue_render__$V = function () {
46655
46704
  ],
46656
46705
  on: {
46657
46706
  click: function ($event) {
46658
- return _vm.cellClick(
46707
+ _vm.cellClick(
46659
46708
  item,
46660
46709
  column,
46661
- $event
46662
- )
46710
+ $event,
46711
+ _vm.canEditRowValues[
46712
+ _vm.rowKey(item)
46713
+ ]
46714
+ );
46663
46715
  },
46664
46716
  },
46665
46717
  },
@@ -46676,7 +46728,11 @@ var __vue_render__$V = function () {
46676
46728
  : _vm._e(),
46677
46729
  _vm._v(" "),
46678
46730
  Object.assign({}, column, cellProps)
46679
- .editable && _vm.instance.editing
46731
+ .editable &&
46732
+ _vm.canEditRowValues[
46733
+ _vm.rowKey(item)
46734
+ ] &&
46735
+ _vm.instance.editing
46680
46736
  ? _c(
46681
46737
  "span",
46682
46738
  {
@@ -47045,8 +47101,8 @@ __vue_render__$V._withStripped = true;
47045
47101
  /* style */
47046
47102
  const __vue_inject_styles__$V = function (inject) {
47047
47103
  if (!inject) return
47048
- inject("data-v-4dde3c74_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n}\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--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
47049
- ,inject("data-v-4dde3c74_1", { source: ".zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-inline-edit {\n justify-content: flex-end;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-inline-edit {\n justify-content: center;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon {\n display: flex;\n font-size: 18px;\n margin-right: var(--spacing-1);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
47104
+ inject("data-v-5a0418c4_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid .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 })
47105
+ ,inject("data-v-5a0418c4_1", { source: ".zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-inline-edit {\n justify-content: flex-end;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-inline-edit {\n justify-content: center;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon {\n display: flex;\n font-size: 18px;\n margin-right: var(--spacing-1);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
47050
47106
 
47051
47107
  };
47052
47108
  /* scoped */
@@ -47176,7 +47232,7 @@ __decorate([
47176
47232
  __metadata("design:type", Object)
47177
47233
  ], ZdHeader.prototype, "width", void 0);
47178
47234
  ZdHeader = __decorate([
47179
- Component
47235
+ Component$1
47180
47236
  ], ZdHeader);
47181
47237
  var script$Q = ZdHeader;
47182
47238
 
@@ -47847,7 +47903,7 @@ __decorate([
47847
47903
  __metadata("design:type", String)
47848
47904
  ], ZdIcon.prototype, "iconName", void 0);
47849
47905
  ZdIcon = __decorate([
47850
- Component
47906
+ Component$1
47851
47907
  ], ZdIcon);
47852
47908
  var script$M = ZdIcon;
47853
47909
 
@@ -47967,7 +48023,7 @@ __decorate([
47967
48023
  __metadata("design:type", String)
47968
48024
  ], ZdImage.prototype, "width", void 0);
47969
48025
  ZdImage = __decorate([
47970
- Component
48026
+ Component$1
47971
48027
  ], ZdImage);
47972
48028
  var script$L = ZdImage;
47973
48029
 
@@ -48130,7 +48186,7 @@ __decorate([
48130
48186
  __metadata("design:type", Number)
48131
48187
  ], ZdIncrement.prototype, "step", void 0);
48132
48188
  ZdIncrement = __decorate([
48133
- Component
48189
+ Component$1
48134
48190
  ], ZdIncrement);
48135
48191
  var script$K = ZdIncrement;
48136
48192
 
@@ -48297,7 +48353,7 @@ __decorate([
48297
48353
  __metadata("design:type", Object)
48298
48354
  ], ZdIterableColumnsButton.prototype, "ignoreColumns", void 0);
48299
48355
  ZdIterableColumnsButton = __decorate([
48300
- Component
48356
+ Component$1
48301
48357
  ], ZdIterableColumnsButton);
48302
48358
  var script$J = ZdIterableColumnsButton;
48303
48359
 
@@ -48445,7 +48501,7 @@ __decorate([
48445
48501
  __metadata("design:type", String)
48446
48502
  ], ZdIterablePageComponent.prototype, "iterableComponentName", void 0);
48447
48503
  ZdIterablePageComponent = __decorate([
48448
- Component
48504
+ Component$1
48449
48505
  ], ZdIterablePageComponent);
48450
48506
  var ZdIterablePageComponent$1 = ZdIterablePageComponent;
48451
48507
 
@@ -48545,7 +48601,7 @@ __decorate([
48545
48601
  __metadata("design:type", String)
48546
48602
  ], ZdIterablePagination.prototype, "prevIcon", void 0);
48547
48603
  ZdIterablePagination = __decorate([
48548
- Component
48604
+ Component$1
48549
48605
  ], ZdIterablePagination);
48550
48606
  var script$I = ZdIterablePagination;
48551
48607
 
@@ -48606,7 +48662,7 @@ __vue_render__$L._withStripped = true;
48606
48662
  /* style */
48607
48663
  const __vue_inject_styles__$L = function (inject) {
48608
48664
  if (!inject) return
48609
- inject("data-v-7aa6664e_0", { source: ".zd-iterable-pagination {\n padding: 0;\n max-width: calc(100% - 200px);\n margin-left: 0;\n}\n.zd-iterable-pagination .v-pagination {\n width: auto;\n}\n.zd-iterable-pagination .v-pagination.theme--dark .v-pagination__item--active {\n color: #fff;\n background: #282828 !important;\n border-color: #282828 !important;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__item, .zd-iterable-pagination .v-pagination .v-pagination__navigation {\n box-shadow: none;\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n background-color: transparent;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__item, .zd-iterable-pagination .v-pagination .v-pagination__navigation, .zd-iterable-pagination .v-pagination .v-pagination__more {\n margin: 0 var(--spacing-1);\n height: 36px;\n width: 36px;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__navigation {\n border: solid var(--regular) var(--v-grey-lighten3);\n}\n.zd-iterable-pagination .v-pagination .v-pagination__navigation .v-icon {\n font-size: var(--icon-size);\n}\n.zd-iterable-pagination .v-pagination li:first-child .v-pagination__navigation {\n margin: 0 var(--spacing-1) 0 0;\n}\n.zd-iterable-pagination .v-pagination li:last-child .v-pagination__navigation {\n margin: 0 0 0 var(--spacing-1);\n}", map: undefined, media: undefined });
48665
+ inject("data-v-a197b5f2_0", { source: ".zd-iterable-pagination {\n padding: 0;\n max-width: calc(100% - 200px);\n margin-left: 0;\n display: flex;\n gap: 0;\n align-items: center;\n}\n.zd-iterable-pagination .v-pagination {\n width: auto;\n}\n.zd-iterable-pagination .v-pagination.theme--dark .v-pagination__item--active {\n color: #fff;\n background: #282828 !important;\n border-color: #282828 !important;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__item, .zd-iterable-pagination .v-pagination .v-pagination__navigation {\n box-shadow: none;\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n background-color: transparent;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__item, .zd-iterable-pagination .v-pagination .v-pagination__navigation, .zd-iterable-pagination .v-pagination .v-pagination__more {\n margin: 0 var(--spacing-1);\n height: 2rem;\n width: 2rem;\n white-space: nowrap;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.zd-iterable-pagination .v-pagination .v-pagination__navigation {\n border: solid var(--regular) var(--v-grey-lighten3);\n}\n.zd-iterable-pagination .v-pagination .v-pagination__navigation .v-icon {\n font-size: var(--icon-size);\n}\n.zd-iterable-pagination .v-pagination li:first-child .v-pagination__navigation {\n margin: 0 var(--spacing-1) 0 0;\n}\n.zd-iterable-pagination .v-pagination li:last-child .v-pagination__navigation {\n margin: 0 0 0 var(--spacing-1);\n}", map: undefined, media: undefined });
48610
48666
 
48611
48667
  };
48612
48668
  /* scoped */
@@ -48699,6 +48755,8 @@ let ZdSelect = class ZdSelect extends __vue_component__$18 {
48699
48755
  this.instance.selectInput(value, undefined, this.$el);
48700
48756
  }
48701
48757
  selectBlur(event) {
48758
+ if (this.$el.contains(document.activeElement))
48759
+ return;
48702
48760
  this.blur(event);
48703
48761
  }
48704
48762
  selectFocus(event) {
@@ -49190,7 +49248,7 @@ __decorate([
49190
49248
  __metadata("design:type", Object)
49191
49249
  ], ZdIterablePageSize.prototype, "validations", void 0);
49192
49250
  ZdIterablePageSize = __decorate([
49193
- Component
49251
+ Component$1
49194
49252
  ], ZdIterablePageSize);
49195
49253
  var script$G = ZdIterablePageSize;
49196
49254
 
@@ -49257,7 +49315,7 @@ let ZdIterablePageInfo = class ZdIterablePageInfo extends ZdIterablePageComponen
49257
49315
  }
49258
49316
  };
49259
49317
  ZdIterablePageInfo = __decorate([
49260
- Component
49318
+ Component$1
49261
49319
  ], ZdIterablePageInfo);
49262
49320
  var script$F = ZdIterablePageInfo;
49263
49321
 
@@ -49382,7 +49440,7 @@ __decorate([
49382
49440
  __metadata("design:type", Array)
49383
49441
  ], ZdList.prototype, "items", void 0);
49384
49442
  ZdList = __decorate([
49385
- Component
49443
+ Component$1
49386
49444
  ], ZdList);
49387
49445
  var ZdList$1 = ZdList;
49388
49446
 
@@ -49504,7 +49562,7 @@ __decorate([
49504
49562
  __metadata("design:type", String)
49505
49563
  ], ZdListItem$1.prototype, "title", void 0);
49506
49564
  ZdListItem$1 = __decorate([
49507
- Component
49565
+ Component$1
49508
49566
  ], ZdListItem$1);
49509
49567
  var script$E = ZdListItem$1;
49510
49568
 
@@ -49620,7 +49678,7 @@ __decorate([
49620
49678
  __metadata("design:type", Boolean)
49621
49679
  ], ZdListItem.prototype, "twoLine", void 0);
49622
49680
  ZdListItem = __decorate([
49623
- Component({ components: { ZdListItemContent: __vue_component__$G } })
49681
+ Component$1({ components: { ZdListItemContent: __vue_component__$G } })
49624
49682
  ], ZdListItem);
49625
49683
  var script$D = ZdListItem;
49626
49684
 
@@ -49792,7 +49850,7 @@ __decorate([
49792
49850
  __metadata("design:type", Array)
49793
49851
  ], ZdListGroup.prototype, "items", void 0);
49794
49852
  ZdListGroup = __decorate([
49795
- Component
49853
+ Component$1
49796
49854
  ], ZdListGroup);
49797
49855
  var script$C = ZdListGroup;
49798
49856
 
@@ -50034,7 +50092,7 @@ __decorate([
50034
50092
  __metadata("design:type", String)
50035
50093
  ], ZdLoading.prototype, "textColor", void 0);
50036
50094
  ZdLoading = __decorate([
50037
- Component,
50095
+ Component$1,
50038
50096
  __metadata("design:paramtypes", [])
50039
50097
  ], ZdLoading);
50040
50098
  var script$B = ZdLoading;
@@ -50186,7 +50244,7 @@ __decorate([
50186
50244
  __metadata("design:type", Array)
50187
50245
  ], ZdLogin.prototype, "socialLogin", void 0);
50188
50246
  ZdLogin = __decorate([
50189
- Component
50247
+ Component$1
50190
50248
  ], ZdLogin);
50191
50249
  var script$A = ZdLogin;
50192
50250
 
@@ -50392,7 +50450,7 @@ __decorate([
50392
50450
  __metadata("design:type", String)
50393
50451
  ], ZdLoginButton.prototype, "grantType", void 0);
50394
50452
  ZdLoginButton = __decorate([
50395
- Component
50453
+ Component$1
50396
50454
  ], ZdLoginButton);
50397
50455
  var script$z = ZdLoginButton;
50398
50456
 
@@ -50459,7 +50517,7 @@ __decorate([
50459
50517
  __metadata("design:type", Object)
50460
50518
  ], ZdMasterDetail.prototype, "config", void 0);
50461
50519
  ZdMasterDetail = __decorate([
50462
- Component
50520
+ Component$1
50463
50521
  ], ZdMasterDetail);
50464
50522
  var script$y = ZdMasterDetail;
50465
50523
 
@@ -50773,7 +50831,7 @@ __decorate([
50773
50831
  __metadata("design:returntype", void 0)
50774
50832
  ], ZdMenu.prototype, "onRouterChange", null);
50775
50833
  ZdMenu = __decorate([
50776
- Component
50834
+ Component$1
50777
50835
  ], ZdMenu);
50778
50836
  var script$x = ZdMenu;
50779
50837
 
@@ -51037,7 +51095,7 @@ __decorate([
51037
51095
  __metadata("design:type", MenuGroup)
51038
51096
  ], ZdMenuLink.prototype, "parentGroup", void 0);
51039
51097
  ZdMenuLink = __decorate([
51040
- Component
51098
+ Component$1
51041
51099
  ], ZdMenuLink);
51042
51100
  var script$w = ZdMenuLink;
51043
51101
 
@@ -51185,7 +51243,7 @@ __decorate([
51185
51243
  __metadata("design:type", MenuGroup)
51186
51244
  ], ZdMenuGroup.prototype, "parentGroup", void 0);
51187
51245
  ZdMenuGroup = __decorate([
51188
- Component
51246
+ Component$1
51189
51247
  ], ZdMenuGroup);
51190
51248
  var script$v = ZdMenuGroup;
51191
51249
 
@@ -51351,7 +51409,7 @@ __decorate([
51351
51409
  __metadata("design:type", Object)
51352
51410
  ], ZdMenuButton.prototype, "icon", void 0);
51353
51411
  ZdMenuButton = __decorate([
51354
- Component
51412
+ Component$1
51355
51413
  ], ZdMenuButton);
51356
51414
  var script$u = ZdMenuButton;
51357
51415
 
@@ -51414,7 +51472,7 @@ let ZdMenuSeparator = class ZdMenuSeparator extends ZdComponentRender$1 {
51414
51472
  }
51415
51473
  };
51416
51474
  ZdMenuSeparator = __decorate([
51417
- Component
51475
+ Component$1
51418
51476
  ], ZdMenuSeparator);
51419
51477
  var script$t = ZdMenuSeparator;
51420
51478
 
@@ -51570,7 +51628,7 @@ let ZdModal = class ZdModal extends ZdComponent$1 {
51570
51628
  }
51571
51629
  };
51572
51630
  ZdModal = __decorate([
51573
- Component
51631
+ Component$1
51574
51632
  ], ZdModal);
51575
51633
  var script$s = ZdModal;
51576
51634
 
@@ -51734,7 +51792,7 @@ __decorate([
51734
51792
  __metadata("design:type", Object)
51735
51793
  ], ZdModalCloseButton.prototype, "icon", void 0);
51736
51794
  ZdModalCloseButton = __decorate([
51737
- Component
51795
+ Component$1
51738
51796
  ], ZdModalCloseButton);
51739
51797
  var script$r = ZdModalCloseButton;
51740
51798
 
@@ -51809,7 +51867,7 @@ __decorate([
51809
51867
  __metadata("design:type", String)
51810
51868
  ], ZdMonth.prototype, "pickerType", void 0);
51811
51869
  ZdMonth = __decorate([
51812
- Component
51870
+ Component$1
51813
51871
  ], ZdMonth);
51814
51872
  var script$q = ZdMonth;
51815
51873
 
@@ -51872,7 +51930,7 @@ let ZdPassword = class ZdPassword extends __vue_component__$18 {
51872
51930
  }
51873
51931
  };
51874
51932
  ZdPassword = __decorate([
51875
- Component
51933
+ Component$1
51876
51934
  ], ZdPassword);
51877
51935
  var script$p = ZdPassword;
51878
51936
 
@@ -51963,7 +52021,7 @@ __decorate([
51963
52021
  __metadata("design:type", Object)
51964
52022
  ], ZdProgress.prototype, "value", void 0);
51965
52023
  ZdProgress = __decorate([
51966
- Component
52024
+ Component$1
51967
52025
  ], ZdProgress);
51968
52026
  var script$o = ZdProgress;
51969
52027
 
@@ -52099,7 +52157,7 @@ __decorate([
52099
52157
  __metadata("design:type", Object)
52100
52158
  ], ZdRadio.prototype, "datasource", void 0);
52101
52159
  ZdRadio = __decorate([
52102
- Component
52160
+ Component$1
52103
52161
  ], ZdRadio);
52104
52162
  var script$n = ZdRadio;
52105
52163
 
@@ -52337,7 +52395,7 @@ __decorate([
52337
52395
  __metadata("design:type", Boolean)
52338
52396
  ], ZdRangeSlider.prototype, "vertical", void 0);
52339
52397
  ZdRangeSlider = __decorate([
52340
- Component
52398
+ Component$1
52341
52399
  ], ZdRangeSlider);
52342
52400
  var script$m = ZdRangeSlider;
52343
52401
 
@@ -52550,7 +52608,7 @@ __decorate([
52550
52608
  __metadata("design:type", Boolean)
52551
52609
  ], ZdRow.prototype, "noGutters", void 0);
52552
52610
  ZdRow = __decorate([
52553
- Component
52611
+ Component$1
52554
52612
  ], ZdRow);
52555
52613
  var script$l = ZdRow;
52556
52614
 
@@ -52678,7 +52736,7 @@ __decorate([
52678
52736
  __metadata("design:type", String)
52679
52737
  ], ZdSearch.prototype, "cssClass", void 0);
52680
52738
  ZdSearch = __decorate([
52681
- Component
52739
+ Component$1
52682
52740
  ], ZdSearch);
52683
52741
  var script$k = ZdSearch;
52684
52742
 
@@ -52771,7 +52829,7 @@ __decorate([
52771
52829
  __metadata("design:type", Object)
52772
52830
  ], ZdSelectableList.prototype, "value", void 0);
52773
52831
  ZdSelectableList = __decorate([
52774
- Component
52832
+ Component$1
52775
52833
  ], ZdSelectableList);
52776
52834
  var script$j = ZdSelectableList;
52777
52835
 
@@ -53059,6 +53117,8 @@ let ZdSelectMultiple = class ZdSelectMultiple extends __vue_component__$K {
53059
53117
  }
53060
53118
  }
53061
53119
  selectBlur(event) {
53120
+ if (this.$el.contains(document.activeElement))
53121
+ return;
53062
53122
  if (this.rows !== 1) {
53063
53123
  this.rows = 1;
53064
53124
  this.calcDisplay();
@@ -53740,7 +53800,7 @@ __decorate([
53740
53800
  __metadata("design:returntype", void 0)
53741
53801
  ], ZdSelectTree.prototype, "changeDisabled", null);
53742
53802
  ZdSelectTree = __decorate([
53743
- Component
53803
+ Component$1
53744
53804
  ], ZdSelectTree);
53745
53805
  var ZdSelectTree$1 = ZdSelectTree;
53746
53806
 
@@ -54015,7 +54075,7 @@ __decorate([
54015
54075
  __metadata("design:type", String)
54016
54076
  ], ZdSelectTreeMultiple.prototype, "valueConsistsOf", void 0);
54017
54077
  ZdSelectTreeMultiple = __decorate([
54018
- Component
54078
+ Component$1
54019
54079
  ], ZdSelectTreeMultiple);
54020
54080
  var script$h = ZdSelectTreeMultiple;
54021
54081
 
@@ -54304,7 +54364,7 @@ __decorate([
54304
54364
  __metadata("design:type", String)
54305
54365
  ], ZdSpeedDial.prototype, "transition", void 0);
54306
54366
  ZdSpeedDial = __decorate([
54307
- Component
54367
+ Component$1
54308
54368
  ], ZdSpeedDial);
54309
54369
  var script$g = ZdSpeedDial;
54310
54370
 
@@ -54476,7 +54536,7 @@ __decorate([
54476
54536
  __metadata("design:type", Boolean)
54477
54537
  ], ZdSteppers.prototype, "content", void 0);
54478
54538
  ZdSteppers = __decorate([
54479
- Component
54539
+ Component$1
54480
54540
  ], ZdSteppers);
54481
54541
  var script$f = ZdSteppers;
54482
54542
 
@@ -54728,7 +54788,7 @@ __decorate([
54728
54788
  __metadata("design:type", String)
54729
54789
  ], ZdSvgMap.prototype, "src", void 0);
54730
54790
  ZdSvgMap = __decorate([
54731
- Component
54791
+ Component$1
54732
54792
  ], ZdSvgMap);
54733
54793
  var script$e = ZdSvgMap;
54734
54794
 
@@ -54830,7 +54890,7 @@ __decorate([
54830
54890
  __metadata("design:type", Boolean)
54831
54891
  ], ZdSwitch.prototype, "inset", void 0);
54832
54892
  ZdSwitch = __decorate([
54833
- Component
54893
+ Component$1
54834
54894
  ], ZdSwitch);
54835
54895
  var script$d = ZdSwitch;
54836
54896
 
@@ -54974,7 +55034,7 @@ __decorate([
54974
55034
  __metadata("design:type", Boolean)
54975
55035
  ], ZdTable.prototype, "showTableHead", void 0);
54976
55036
  ZdTable = __decorate([
54977
- Component
55037
+ Component$1
54978
55038
  ], ZdTable);
54979
55039
  var script$c = ZdTable;
54980
55040
 
@@ -55156,7 +55216,7 @@ __decorate([
55156
55216
  __metadata("design:type", Array)
55157
55217
  ], ZdTabs.prototype, "tabs", void 0);
55158
55218
  ZdTabs = __decorate([
55159
- Component
55219
+ Component$1
55160
55220
  ], ZdTabs);
55161
55221
  var script$b = ZdTabs;
55162
55222
 
@@ -55370,7 +55430,7 @@ __decorate([
55370
55430
  __metadata("design:type", String)
55371
55431
  ], ZdTab.prototype, "tabName", void 0);
55372
55432
  ZdTab = __decorate([
55373
- Component
55433
+ Component$1
55374
55434
  ], ZdTab);
55375
55435
  var script$a = ZdTab;
55376
55436
 
@@ -55471,7 +55531,7 @@ __decorate([
55471
55531
  __metadata("design:type", Boolean)
55472
55532
  ], ZdTabItem.prototype, "lazyLoad", void 0);
55473
55533
  ZdTabItem = __decorate([
55474
- Component
55534
+ Component$1
55475
55535
  ], ZdTabItem);
55476
55536
  var script$9 = ZdTabItem;
55477
55537
 
@@ -55586,7 +55646,7 @@ __decorate([
55586
55646
  __metadata("design:type", String)
55587
55647
  ], ZdTag.prototype, "tag", void 0);
55588
55648
  ZdTag = __decorate([
55589
- Component
55649
+ Component$1
55590
55650
  ], ZdTag);
55591
55651
  var script$8 = ZdTag;
55592
55652
 
@@ -55707,7 +55767,7 @@ __decorate([
55707
55767
  __metadata("design:type", String)
55708
55768
  ], ZdText.prototype, "tag", void 0);
55709
55769
  ZdText = __decorate([
55710
- Component({
55770
+ Component$1({
55711
55771
  components: { ZdRender },
55712
55772
  })
55713
55773
  ], ZdText);
@@ -55870,7 +55930,7 @@ __decorate([
55870
55930
  __metadata("design:type", Object)
55871
55931
  ], ZdTextarea.prototype, "rows", void 0);
55872
55932
  ZdTextarea = __decorate([
55873
- Component
55933
+ Component$1
55874
55934
  ], ZdTextarea);
55875
55935
  var script$6 = ZdTextarea;
55876
55936
 
@@ -56044,7 +56104,7 @@ let ZdTime = class ZdTime extends __vue_component__$18 {
56044
56104
  }
56045
56105
  onChangeTimePicker() {
56046
56106
  const textInput = this.$refs.instance.$children[0];
56047
- textInput.validate(false, this.instance.value);
56107
+ textInput.validate(false);
56048
56108
  }
56049
56109
  mounted() {
56050
56110
  const textInput = this.$refs.instance.$children[0].$el.getElementsByTagName('input')[0];
@@ -56107,15 +56167,6 @@ let ZdTime = class ZdTime extends __vue_component__$18 {
56107
56167
  }
56108
56168
  return formatted;
56109
56169
  }
56110
- set pickerValue(value) {
56111
- this.instance.value = this.convert(value, false);
56112
- }
56113
- get pickerValue() {
56114
- if (!this.instance.isFullyValid())
56115
- return null;
56116
- const { value } = this.instance;
56117
- return this.convert(value);
56118
- }
56119
56170
  get pickerMinTime() {
56120
56171
  return this.convert(this.instance.minTime);
56121
56172
  }
@@ -56125,6 +56176,9 @@ let ZdTime = class ZdTime extends __vue_component__$18 {
56125
56176
  onPickerMousedown(event) {
56126
56177
  event.preventDefault();
56127
56178
  }
56179
+ onSelectTime(time, event) {
56180
+ this.instance.selectTime(time, event, this.$el);
56181
+ }
56128
56182
  pickerMounted() {
56129
56183
  const picker = this.$refs.picker.$el;
56130
56184
  picker.addEventListener('mousedown', this.onPickerMousedown);
@@ -56133,6 +56187,27 @@ let ZdTime = class ZdTime extends __vue_component__$18 {
56133
56187
  const picker = this.$refs.picker.$el;
56134
56188
  picker.removeEventListener('mousedown', this.onPickerMousedown);
56135
56189
  }
56190
+ toMask(format) {
56191
+ const newMask = format.replace(/[B-Zb-z]/gi, '#').split('').map((char) => {
56192
+ if (char === 'A' || char === 'a') {
56193
+ return /[AapP]/;
56194
+ }
56195
+ if (char === '#') {
56196
+ return /\d/;
56197
+ }
56198
+ return char;
56199
+ });
56200
+ if (format.includes('a') || format.includes('A')) {
56201
+ newMask.push(/[mM]/);
56202
+ }
56203
+ return newMask;
56204
+ }
56205
+ get getTimeMask() {
56206
+ if (this.instance.isFocused) {
56207
+ return this.toMask(this.instance.inputFormat || this.instance.displayFormat || '');
56208
+ }
56209
+ return '';
56210
+ }
56136
56211
  };
56137
56212
  __decorate([
56138
56213
  PropWatch({ type: [Array, String], default: undefined }),
@@ -56183,7 +56258,7 @@ __decorate([
56183
56258
  __metadata("design:type", Boolean)
56184
56259
  ], ZdTime.prototype, "useSeconds", void 0);
56185
56260
  __decorate([
56186
- PropWatch({ type: [String, Function], default: undefined }),
56261
+ PropWatch({ type: String, default: undefined }),
56187
56262
  __metadata("design:type", Object)
56188
56263
  ], ZdTime.prototype, "mask", void 0);
56189
56264
  __decorate([
@@ -56191,11 +56266,15 @@ __decorate([
56191
56266
  __metadata("design:type", String)
56192
56267
  ], ZdTime.prototype, "valueFormat", void 0);
56193
56268
  __decorate([
56194
- PropWatch({ type: [String] }),
56269
+ PropWatch({ type: String }),
56270
+ __metadata("design:type", Object)
56271
+ ], ZdTime.prototype, "inputFormat", void 0);
56272
+ __decorate([
56273
+ PropWatch({ type: String }),
56195
56274
  __metadata("design:type", String)
56196
56275
  ], ZdTime.prototype, "displayFormat", void 0);
56197
56276
  ZdTime = __decorate([
56198
- Component
56277
+ Component$1
56199
56278
  ], ZdTime);
56200
56279
  var script$5 = ZdTime;
56201
56280
 
@@ -56247,6 +56326,7 @@ var __vue_render__$6 = function () {
56247
56326
  ref: "instance",
56248
56327
  attrs: {
56249
56328
  name: _vm.instance.name + "_text-input",
56329
+ mask: _vm.getTimeMask,
56250
56330
  "instance-object": _vm.instance,
56251
56331
  events: _vm.getEvents(on),
56252
56332
  autofill: false,
@@ -56259,7 +56339,7 @@ var __vue_render__$6 = function () {
56259
56339
  ],
56260
56340
  null,
56261
56341
  false,
56262
- 3310486734
56342
+ 229268027
56263
56343
  ),
56264
56344
  model: {
56265
56345
  value: _vm.instance.showTimePicker,
@@ -56293,21 +56373,21 @@ var __vue_render__$6 = function () {
56293
56373
  name: _vm.instance.name,
56294
56374
  dark: _vm.instance.dark,
56295
56375
  light: _vm.instance.light,
56296
- value: _vm.pickerValue,
56297
56376
  },
56298
56377
  on: {
56299
56378
  "hook:mounted": _vm.pickerMounted,
56300
56379
  "hook:destroyed": _vm.pickerDestroyed,
56380
+ "click:time": _vm.onSelectTime,
56301
56381
  change: function ($event) {
56302
56382
  return _vm.onChangeTimePicker()
56303
56383
  },
56304
56384
  },
56305
56385
  model: {
56306
- value: _vm.pickerValue,
56386
+ value: _vm.instance.isoValue,
56307
56387
  callback: function ($$v) {
56308
- _vm.pickerValue = $$v;
56388
+ _vm.$set(_vm.instance, "isoValue", $$v);
56309
56389
  },
56310
- expression: "pickerValue",
56390
+ expression: "instance.isoValue",
56311
56391
  },
56312
56392
  },
56313
56393
  "v-time-picker",
@@ -56333,7 +56413,7 @@ var __vue_render__$6 = function () {
56333
56413
  name: _vm.instance.name + "_text-input",
56334
56414
  "instance-object": _vm.instance,
56335
56415
  autofill: false,
56336
- type: "time",
56416
+ type: "text",
56337
56417
  mask: "",
56338
56418
  },
56339
56419
  }),
@@ -56348,7 +56428,7 @@ __vue_render__$6._withStripped = true;
56348
56428
  /* style */
56349
56429
  const __vue_inject_styles__$6 = function (inject) {
56350
56430
  if (!inject) return
56351
- inject("data-v-6f332373_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 });
56431
+ inject("data-v-5b84b696_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 });
56352
56432
 
56353
56433
  };
56354
56434
  /* scoped */
@@ -56434,7 +56514,7 @@ __decorate([
56434
56514
  __metadata("design:type", Object)
56435
56515
  ], ZdTooltip.prototype, "top", void 0);
56436
56516
  ZdTooltip = __decorate([
56437
- Component
56517
+ Component$1
56438
56518
  ], ZdTooltip);
56439
56519
  var script$4 = ZdTooltip;
56440
56520
 
@@ -56594,6 +56674,10 @@ __decorate([
56594
56674
  Prop({ type: [String], default: 'checked' }),
56595
56675
  __metadata("design:type", String)
56596
56676
  ], ZdTreeCheckbox.prototype, "checkedField", void 0);
56677
+ __decorate([
56678
+ Prop({ type: [Boolean], default: false }),
56679
+ __metadata("design:type", Boolean)
56680
+ ], ZdTreeCheckbox.prototype, "disabled", void 0);
56597
56681
  __decorate([
56598
56682
  Watch('childrenCheck'),
56599
56683
  __metadata("design:type", Function),
@@ -56601,7 +56685,7 @@ __decorate([
56601
56685
  __metadata("design:returntype", void 0)
56602
56686
  ], ZdTreeCheckbox.prototype, "check", null);
56603
56687
  ZdTreeCheckbox = __decorate([
56604
- Component
56688
+ Component$1
56605
56689
  ], ZdTreeCheckbox);
56606
56690
  var script$3 = ZdTreeCheckbox;
56607
56691
 
@@ -56617,6 +56701,7 @@ var __vue_render__$4 = function () {
56617
56701
  staticClass: "zd-tree-checkbox",
56618
56702
  attrs: {
56619
56703
  "hide-details": "",
56704
+ disabled: _vm.disabled,
56620
56705
  ripple: false,
56621
56706
  "on-icon": _vm.$getIcon("checkboxOn"),
56622
56707
  "off-icon": _vm.$getIcon("checkboxOff"),
@@ -56626,7 +56711,7 @@ var __vue_render__$4 = function () {
56626
56711
  },
56627
56712
  on: {
56628
56713
  click: function ($event) {
56629
- return _vm.click($event)
56714
+ _vm.disabled || _vm.click($event);
56630
56715
  },
56631
56716
  },
56632
56717
  model: {
@@ -56644,7 +56729,7 @@ __vue_render__$4._withStripped = true;
56644
56729
  /* style */
56645
56730
  const __vue_inject_styles__$4 = function (inject) {
56646
56731
  if (!inject) return
56647
- inject("data-v-130a7c09_0", { source: ".zd-tree-checkbox {\n display: inline-block;\n top: 50%;\n transform: translate(0, -50%);\n}\n.zd-tree-checkbox > .v-input--selection-controls__input {\n margin-right: 0;\n}", map: undefined, media: undefined });
56732
+ inject("data-v-311cf5ac_0", { source: ".zd-tree-checkbox {\n display: inline-block;\n top: 50%;\n transform: translate(0, -50%);\n}\n.zd-tree-checkbox > .v-input--selection-controls__input {\n margin-right: 0;\n}", map: undefined, media: undefined });
56648
56733
 
56649
56734
  };
56650
56735
  /* scoped */
@@ -56686,7 +56771,7 @@ __decorate([
56686
56771
  __metadata("design:type", Object)
56687
56772
  ], ZdTreeAfterTitle.prototype, "node", void 0);
56688
56773
  ZdTreeAfterTitle = __decorate([
56689
- Component
56774
+ Component$1
56690
56775
  ], ZdTreeAfterTitle);
56691
56776
  var script$2 = ZdTreeAfterTitle;
56692
56777
 
@@ -56909,6 +56994,10 @@ __decorate([
56909
56994
  Prop({ type: [String, Number, Boolean], default: false }),
56910
56995
  __metadata("design:type", Object)
56911
56996
  ], ZdTree.prototype, "openLevelOnLoad", void 0);
56997
+ __decorate([
56998
+ Prop({ type: [String, Function], default: undefined }),
56999
+ __metadata("design:type", Function)
57000
+ ], ZdTree.prototype, "disableCheckbox", void 0);
56912
57001
  __decorate([
56913
57002
  Watch('instance.datasource.data.length'),
56914
57003
  __metadata("design:type", Function),
@@ -56916,7 +57005,7 @@ __decorate([
56916
57005
  __metadata("design:returntype", void 0)
56917
57006
  ], ZdTree.prototype, "dataChange", null);
56918
57007
  ZdTree = __decorate([
56919
- Component({
57008
+ Component$1({
56920
57009
  components: { ZdTreeCheckbox: __vue_component__$4, ZdTreeAfterTitle: __vue_component__$3 },
56921
57010
  })
56922
57011
  ], ZdTree);
@@ -57003,6 +57092,7 @@ var __vue_render__$2 = function () {
57003
57092
  _vm.instance.checkbox
57004
57093
  ? _c("zd-tree-checkbox", {
57005
57094
  attrs: {
57095
+ disabled: _vm.instance.callDisableCheckbox(node),
57006
57096
  node: _vm.instanceNode(node),
57007
57097
  checkedField: _vm.instance.checkedField,
57008
57098
  },
@@ -57217,7 +57307,7 @@ __vue_render__$2._withStripped = true;
57217
57307
  /* style */
57218
57308
  const __vue_inject_styles__$2 = function (inject) {
57219
57309
  if (!inject) return
57220
- inject("data-v-38571f58_0", { source: ".zd-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-weight: normal;\n}\n.zd-tree.theme--light .sl-vue-tree-title {\n color: var(--zd-font-color);\n}\n.zd-tree.theme--light .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #eee;\n}\n.zd-tree.theme--dark .sl-vue-tree-title {\n color: #fff;\n}\n.zd-tree.theme--dark .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #616161;\n}\n.zd-tree .sl-vue-tree-title {\n display: flex;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node {\n padding-top: 3px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item {\n height: 30px;\n line-height: 30px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item {\n background-color: var(--current-row-color);\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item .sl-vue-tree-toggle .v-icon {\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-toggle span .v-icon {\n margin: 0px 1px 0px 1px;\n padding-bottom: 1.4px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-gap {\n width: 32px;\n}\n.zd-tree .sl-vue-tree-nodes-list .item-title.has-children {\n font-weight: 700;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align {\n padding-left: 26px;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align.is-clickable {\n cursor: pointer;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align.v-icon {\n padding-left: 4px;\n}\n.zd-tree .sl-vue-tree-node-item .zd-tree-checkbox {\n padding: 0px 3px 3px 0px;\n}", map: undefined, media: undefined });
57310
+ inject("data-v-6a21eeb4_0", { source: ".zd-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-weight: normal;\n}\n.zd-tree.theme--light .sl-vue-tree-title {\n color: var(--zd-font-color);\n}\n.zd-tree.theme--light .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #eee;\n}\n.zd-tree.theme--dark .sl-vue-tree-title {\n color: #fff;\n}\n.zd-tree.theme--dark .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #616161;\n}\n.zd-tree .sl-vue-tree-title {\n display: flex;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node {\n padding-top: 3px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item {\n height: 30px;\n line-height: 30px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item {\n background-color: var(--current-row-color);\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item .sl-vue-tree-toggle .v-icon {\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-toggle span .v-icon {\n margin: 0px 1px 0px 1px;\n padding-bottom: 1.4px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-gap {\n width: 32px;\n}\n.zd-tree .sl-vue-tree-nodes-list .item-title.has-children {\n font-weight: 700;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align {\n padding-left: 26px;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align.is-clickable {\n cursor: pointer;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align.v-icon {\n padding-left: 4px;\n}\n.zd-tree .sl-vue-tree-node-item .zd-tree-checkbox {\n padding: 0px 3px 3px 0px;\n}", map: undefined, media: undefined });
57221
57311
 
57222
57312
  };
57223
57313
  /* scoped */
@@ -57265,6 +57355,28 @@ let ZdTreeGrid = class ZdTreeGrid extends ZdGrid$1 {
57265
57355
  }
57266
57356
  return text;
57267
57357
  }
57358
+ checkSome(row) {
57359
+ let some = false;
57360
+ if (row.tree__children) {
57361
+ some = row.tree__children.some((item) => {
57362
+ if (this.checkSome(item))
57363
+ return true;
57364
+ const index = this.instance.treeDataStructure.findDataIndex(this.instance.selectedRows, item[this.instance.datasource.uniqueKey]);
57365
+ if (index > -1)
57366
+ return true;
57367
+ return false;
57368
+ });
57369
+ }
57370
+ return some;
57371
+ }
57372
+ checkEvery(row) {
57373
+ return row.tree__children.every((item) => {
57374
+ const index = this.instance.treeDataStructure.findDataIndex(this.instance.selectedRows, item[this.instance.datasource.uniqueKey]);
57375
+ if (index > -1)
57376
+ return true;
57377
+ return false;
57378
+ });
57379
+ }
57268
57380
  selectClick(index, isSelected, event) {
57269
57381
  const row = this.instance.datasource.data[index];
57270
57382
  this.instance.selectRow(row, isSelected);
@@ -57344,7 +57456,6 @@ var __vue_render__$1 = function () {
57344
57456
  headers: _vm.instance.columns,
57345
57457
  items: _vm.getData(),
57346
57458
  search: _vm.instance.datasource.search,
57347
- "show-select": _vm.instance.selectable,
57348
57459
  dense: _vm.instance.dense,
57349
57460
  dark: _vm.instance.dark,
57350
57461
  light: _vm.instance.light,
@@ -57409,31 +57520,35 @@ var __vue_render__$1 = function () {
57409
57520
  _vm.instance.headerBackground,
57410
57521
  },
57411
57522
  [
57412
- _c("v-checkbox", {
57413
- staticClass: "zd-grid-header-checkbox",
57414
- attrs: {
57415
- "hide-details": "",
57416
- color: "primary",
57417
- "on-icon": _vm.$getIcon("checkboxOn"),
57418
- "off-icon": _vm.$getIcon("checkboxOff"),
57419
- "indeterminate-icon": _vm.$getIcon(
57420
- "checkboxIndeterminate"
57421
- ),
57422
- "input-value": props.everyItem,
57423
- indeterminate:
57424
- !props.everyItem && props.someItems,
57425
- },
57426
- on: {
57427
- click: function ($event) {
57428
- $event.stopPropagation();
57429
- on["toggle-select-all"](!props.everyItem);
57430
- _vm.selectAllClick(
57431
- !props.everyItem,
57432
- $event
57433
- );
57434
- },
57435
- },
57436
- }),
57523
+ _vm.instance.showSelectAll
57524
+ ? _c("v-checkbox", {
57525
+ staticClass: "zd-grid-header-checkbox",
57526
+ attrs: {
57527
+ "hide-details": "",
57528
+ color: "primary",
57529
+ "on-icon": _vm.$getIcon("checkboxOn"),
57530
+ "off-icon": _vm.$getIcon("checkboxOff"),
57531
+ "indeterminate-icon": _vm.$getIcon(
57532
+ "checkboxIndeterminate"
57533
+ ),
57534
+ "input-value": props.everyItem,
57535
+ indeterminate:
57536
+ !props.everyItem && props.someItems,
57537
+ },
57538
+ on: {
57539
+ click: function ($event) {
57540
+ $event.stopPropagation();
57541
+ on["toggle-select-all"](
57542
+ !props.everyItem
57543
+ );
57544
+ _vm.selectAllClick(
57545
+ !props.everyItem,
57546
+ $event
57547
+ );
57548
+ },
57549
+ },
57550
+ })
57551
+ : _vm._e(),
57437
57552
  ],
57438
57553
  1
57439
57554
  )
@@ -57748,11 +57863,16 @@ var __vue_render__$1 = function () {
57748
57863
  attrs: {
57749
57864
  "hide-details": "",
57750
57865
  color: "primary",
57866
+ disabled:
57867
+ _vm.instance.callDisableSelection(item),
57751
57868
  "on-icon": _vm.$getIcon("checkboxOn"),
57752
57869
  "off-icon": _vm.$getIcon("checkboxOff"),
57753
57870
  "true-value": true,
57754
57871
  "false-value": false,
57755
57872
  "input-value": isSelected,
57873
+ indeterminate:
57874
+ !_vm.checkEvery(item) &&
57875
+ _vm.checkSome(item),
57756
57876
  },
57757
57877
  on: {
57758
57878
  click: function ($event) {
@@ -58122,8 +58242,8 @@ __vue_render__$1._withStripped = true;
58122
58242
  /* style */
58123
58243
  const __vue_inject_styles__$1 = function (inject) {
58124
58244
  if (!inject) return
58125
- inject("data-v-51de25ce_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n}\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--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
58126
- ,inject("data-v-51de25ce_1", { source: ".zd-tree-grid.theme--light tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-tree-grid.theme--dark tbody td.zd-table-cell {\n color: #fff;\n}\n.zd-tree-grid tbody td.zd-table-cell.first {\n padding-left: 5px !important;\n}\n.zd-tree-grid tbody td.zd-table-cell .zd-table-cell-text .search-result {\n background: var(--v-grey-lighten4);\n}\n.zd-tree-grid .zd-tree-grid-expand {\n display: inline-block;\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid .zd-tree-grid-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level10 {\n width: 200px;\n}", map: undefined, media: undefined });
58245
+ inject("data-v-c7e812dc_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid .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 })
58246
+ ,inject("data-v-c7e812dc_1", { source: ".zd-tree-grid.theme--light tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-tree-grid.theme--dark tbody td.zd-table-cell {\n color: #fff;\n}\n.zd-tree-grid tbody td.zd-table-cell.first {\n padding-left: 5px !important;\n}\n.zd-tree-grid tbody td.zd-table-cell .zd-table-cell-text .search-result {\n background: var(--v-grey-lighten4);\n}\n.zd-tree-grid .zd-tree-grid-expand {\n display: inline-block;\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid .zd-tree-grid-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level10 {\n width: 200px;\n}", map: undefined, media: undefined });
58127
58247
 
58128
58248
  };
58129
58249
  /* scoped */
@@ -58183,17 +58303,17 @@ let ZdTreeGridEditable = class ZdTreeGridEditable extends ZdTreeGrid$1 {
58183
58303
  }
58184
58304
  return this.instance.getEditableComponent(column, row, cellProps, events);
58185
58305
  }
58186
- cellClick(row, column, event) {
58306
+ cellClick(row, column, event, canEdit = true) {
58187
58307
  if (!this.instance.doubleClickEdit || !column.editable) {
58188
- this.callCellClick(row, column, event);
58308
+ this.callCellClick(row, column, event, canEdit);
58189
58309
  return;
58190
58310
  }
58191
- this.$doubleClick(() => this.instance.cellClickEvent(row, column, event, this.$el), () => this.callCellClick(row, column, event), event);
58311
+ this.$doubleClick(() => this.instance.cellClickEvent(row, column, event, this.$el), () => this.callCellClick(row, column, event, canEdit), event);
58192
58312
  }
58193
- callCellClick(row, column, event) {
58313
+ callCellClick(row, column, event, canEdit = true) {
58194
58314
  const key = row[this.instance.datasource.uniqueKey];
58195
58315
  this.inputToFocus = `column-${column.name}-${key}`;
58196
- this.instance.cellClick(row, column, event, this.$el);
58316
+ this.instance.cellClick(row, column, event, this.$el, canEdit);
58197
58317
  }
58198
58318
  onMountedEvent({ element, component }) {
58199
58319
  const input = element.getElementsByTagName('input')[0];
@@ -58294,6 +58414,10 @@ __decorate([
58294
58414
  PropWatch({ type: [String, Boolean], default: false }),
58295
58415
  __metadata("design:type", Object)
58296
58416
  ], ZdTreeGridEditable.prototype, "doubleClickEdit", void 0);
58417
+ __decorate([
58418
+ PropWatch({ type: [String, Function] }),
58419
+ __metadata("design:type", Object)
58420
+ ], ZdTreeGridEditable.prototype, "canEditRow", void 0);
58297
58421
  ZdTreeGridEditable = __decorate([
58298
58422
  Component$2
58299
58423
  ], ZdTreeGridEditable);
@@ -58335,7 +58459,6 @@ var __vue_render__ = function () {
58335
58459
  headers: _vm.instance.columns,
58336
58460
  items: _vm.getData(),
58337
58461
  search: _vm.instance.datasource.search,
58338
- "show-select": _vm.instance.selectable,
58339
58462
  dense: _vm.instance.dense,
58340
58463
  loading: _vm.instance.datasource.loading,
58341
58464
  "item-key": _vm.instance.datasource.uniqueKey,
@@ -58344,6 +58467,7 @@ var __vue_render__ = function () {
58344
58467
  "disable-sort": "",
58345
58468
  "disable-filtering": "",
58346
58469
  tabindex: "0",
58470
+ set: (_vm.canEditRowValues = {}),
58347
58471
  },
58348
58472
  on: {
58349
58473
  "current-items": function ($event) {
@@ -58727,6 +58851,10 @@ var __vue_render__ = function () {
58727
58851
  active: isSelected,
58728
58852
  current: _vm.isCurrentRow(item),
58729
58853
  },
58854
+ attrs: {
58855
+ set: (_vm.canEditRowValues[_vm.rowKey(item)] =
58856
+ _vm.instance.callCanEditRow(item)),
58857
+ },
58730
58858
  on: {
58731
58859
  click: function ($event) {
58732
58860
  return _vm.rowClick(item, $event)
@@ -58744,12 +58872,17 @@ var __vue_render__ = function () {
58744
58872
  attrs: {
58745
58873
  "hide-details": "",
58746
58874
  color: "primary",
58747
- disabled: _vm.instance.editing,
58875
+ disabled:
58876
+ _vm.instance.editing ||
58877
+ _vm.instance.callDisableSelection(item),
58748
58878
  "on-icon": _vm.$getIcon("checkboxOn"),
58749
58879
  "off-icon": _vm.$getIcon("checkboxOff"),
58750
58880
  "true-value": true,
58751
58881
  "false-value": false,
58752
58882
  value: isSelected,
58883
+ indeterminate:
58884
+ !_vm.checkEvery(item) &&
58885
+ _vm.checkSome(item),
58753
58886
  },
58754
58887
  on: {
58755
58888
  click: function ($event) {
@@ -58808,7 +58941,10 @@ var __vue_render__ = function () {
58808
58941
  {},
58809
58942
  column,
58810
58943
  cellProps
58811
- ).editable,
58944
+ ).editable &&
58945
+ _vm.canEditRowValues[
58946
+ _vm.rowKey(item)
58947
+ ],
58812
58948
  },
58813
58949
  ],
58814
58950
  style: [
@@ -58819,11 +58955,14 @@ var __vue_render__ = function () {
58819
58955
  ],
58820
58956
  on: {
58821
58957
  click: function ($event) {
58822
- return _vm.cellClick(
58958
+ _vm.cellClick(
58823
58959
  item,
58824
58960
  column,
58825
- $event
58826
- )
58961
+ $event,
58962
+ _vm.canEditRowValues[
58963
+ _vm.rowKey(item)
58964
+ ]
58965
+ );
58827
58966
  },
58828
58967
  },
58829
58968
  },
@@ -58840,7 +58979,11 @@ var __vue_render__ = function () {
58840
58979
  : _vm._e(),
58841
58980
  _vm._v(" "),
58842
58981
  Object.assign({}, column, cellProps)
58843
- .editable && _vm.instance.editing
58982
+ .editable &&
58983
+ _vm.canEditRowValues[
58984
+ _vm.rowKey(item)
58985
+ ] &&
58986
+ _vm.instance.editing
58844
58987
  ? _c(
58845
58988
  "span",
58846
58989
  {
@@ -59285,8 +59428,8 @@ __vue_render__._withStripped = true;
59285
59428
  /* style */
59286
59429
  const __vue_inject_styles__ = function (inject) {
59287
59430
  if (!inject) return
59288
- inject("data-v-6ec9aad8_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n}\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--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
59289
- ,inject("data-v-6ec9aad8_1", { source: ".zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-inline-edit {\n justify-content: flex-end;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-inline-edit {\n justify-content: center;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon {\n display: flex;\n font-size: 18px;\n margin-right: var(--spacing-1);\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand {\n display: inline-block;\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level10 {\n width: 200px;\n}\n.zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
59431
+ inject("data-v-6258f90c_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n}\n.zd-grid .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 })
59432
+ ,inject("data-v-6258f90c_1", { source: ".zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-inline-edit {\n justify-content: flex-end;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-inline-edit {\n justify-content: center;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon {\n display: flex;\n font-size: 18px;\n margin-right: var(--spacing-1);\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand {\n display: inline-block;\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level10 {\n width: 200px;\n}\n.zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
59290
59433
 
59291
59434
  };
59292
59435
  /* scoped */