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