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