@zeedhi/vuetify 1.78.1 → 1.79.1
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-style.css +1 -2
- package/dist/zd-vuetify.esm.js +690 -387
- package/dist/zd-vuetify.umd.js +689 -386
- package/package.json +2 -2
- package/types/components/zd-apex-chart/ZdApexChart.d.ts +3 -1
- package/types/components/zd-col/ZdCol.d.ts +5 -0
- package/types/components/zd-master-detail/ZdMasterDetail.d.ts +5 -0
- package/types/components/zd-select/ZdSelect.d.ts +1 -0
- package/types/components/zd-select-tree/ZdSelectTree.d.ts +4 -0
- package/types/components/zd-text-input/ZdTextInput.d.ts +1 -0
- package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +2 -1
- 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
@@ -1196,7 +1196,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
1196
1196
|
clear: 'fas fa-times-circle',
|
1197
1197
|
success: 'fas fa-check-circle',
|
1198
1198
|
info: 'fas fa-info-circle',
|
1199
|
-
warning: 'fas fa-exclamation',
|
1199
|
+
warning: 'fas fa-exclamation-circle',
|
1200
1200
|
error: 'fas fa-exclamation-triangle',
|
1201
1201
|
prev: 'fas fa-chevron-left',
|
1202
1202
|
next: 'fas fa-chevron-right',
|
@@ -2212,7 +2212,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
2212
2212
|
}
|
2213
2213
|
Vuetify.install = install$1;
|
2214
2214
|
Vuetify.installed = false;
|
2215
|
-
Vuetify.version = "2.6.
|
2215
|
+
Vuetify.version = "2.6.16";
|
2216
2216
|
Vuetify.config = {
|
2217
2217
|
silent: false
|
2218
2218
|
};
|
@@ -10094,6 +10094,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
10094
10094
|
(_a = this.$refs.menu) === null || _a === void 0 ? void 0 : _a.updateDimensions();
|
10095
10095
|
});
|
10096
10096
|
}
|
10097
|
+
|
10098
|
+
if (this.hideSelected) {
|
10099
|
+
this.$nextTick(() => {
|
10100
|
+
this.onScroll();
|
10101
|
+
});
|
10102
|
+
}
|
10097
10103
|
},
|
10098
10104
|
|
10099
10105
|
isMenuActive(val) {
|
@@ -10322,19 +10328,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
10322
10328
|
|
10323
10329
|
genMenu() {
|
10324
10330
|
const props = this.$_menuProps;
|
10325
|
-
props.activator = this.$refs['input-slot'];
|
10326
|
-
//
|
10327
|
-
|
10328
|
-
if ( // TODO: make this a computed property or helper or something
|
10331
|
+
props.activator = this.$refs['input-slot'];
|
10332
|
+
if ('attach' in props) ;else if ( // TODO: make this a computed property or helper or something
|
10329
10333
|
this.attach === '' || // If used as a boolean prop (<v-menu attach>)
|
10330
10334
|
this.attach === true || // If bound to a boolean (<v-menu :attach="true">)
|
10331
10335
|
this.attach === 'attach' // If bound as boolean prop in pug (v-menu(attach))
|
10332
10336
|
) {
|
10337
|
+
// Attach to root el so that
|
10338
|
+
// menu covers prepend/append icons
|
10333
10339
|
props.attach = this.$el;
|
10334
10340
|
} else {
|
10335
10341
|
props.attach = this.attach;
|
10336
10342
|
}
|
10337
|
-
|
10338
10343
|
return this.$createElement(VMenu, {
|
10339
10344
|
attrs: {
|
10340
10345
|
role: undefined
|
@@ -11765,7 +11770,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
11765
11770
|
if (!alreadyAtStart && scrollingUp) return true;
|
11766
11771
|
if (!alreadyAtEnd && scrollingDown) return true;
|
11767
11772
|
|
11768
|
-
if (alreadyAtStart || alreadyAtEnd) {
|
11773
|
+
if ((alreadyAtStart || alreadyAtEnd) && el.parentNode) {
|
11769
11774
|
return this.shouldScroll(el.parentNode, e);
|
11770
11775
|
}
|
11771
11776
|
|
@@ -16813,7 +16818,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
16813
16818
|
}
|
16814
16819
|
|
16815
16820
|
});
|
16816
|
-
BaseSlideGroup.extend({
|
16821
|
+
var VSlideGroup = BaseSlideGroup.extend({
|
16817
16822
|
name: 'v-slide-group',
|
16818
16823
|
|
16819
16824
|
provide() {
|
@@ -20850,7 +20855,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
20850
20855
|
return this.$createElement(VSimpleTable, {
|
20851
20856
|
props: simpleProps,
|
20852
20857
|
class: {
|
20853
|
-
'v-data-table--mobile': this.isMobile
|
20858
|
+
'v-data-table--mobile': this.isMobile,
|
20859
|
+
'v-data-table--selectable': this.showSelect
|
20854
20860
|
}
|
20855
20861
|
}, [this.proxySlot('top', getSlot(this, 'top', { ...props,
|
20856
20862
|
isMobile: this.isMobile
|
@@ -26035,7 +26041,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
26035
26041
|
});
|
26036
26042
|
|
26037
26043
|
// Extensions
|
26038
|
-
mixins(BaseItem, factory$1('slideGroup')
|
26044
|
+
var VSlideItem = mixins(BaseItem, factory$1('slideGroup')
|
26039
26045
|
/* @vue/component */
|
26040
26046
|
).extend({
|
26041
26047
|
name: 'v-slide-item'
|
@@ -31586,7 +31592,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
31586
31592
|
clear: 'fas fa-times-circle',
|
31587
31593
|
success: 'fas fa-check-circle',
|
31588
31594
|
info: 'fas fa-info-circle',
|
31589
|
-
warning: 'fas fa-exclamation',
|
31595
|
+
warning: 'fas fa-exclamation-circle',
|
31590
31596
|
error: 'fas fa-exclamation-triangle',
|
31591
31597
|
prev: 'fas fa-chevron-left',
|
31592
31598
|
next: 'fas fa-chevron-right',
|
@@ -36839,7 +36845,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
36839
36845
|
exports.default = Vuetify;
|
36840
36846
|
Vuetify.install = install_1.install;
|
36841
36847
|
Vuetify.installed = false;
|
36842
|
-
Vuetify.version = "2.6.
|
36848
|
+
Vuetify.version = "2.6.16";
|
36843
36849
|
Vuetify.config = {
|
36844
36850
|
silent: false
|
36845
36851
|
};
|
@@ -38190,13 +38196,20 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38190
38196
|
}
|
38191
38197
|
mounted() {
|
38192
38198
|
this.setApexChartTheme();
|
38193
|
-
const updateFn =
|
38199
|
+
const updateFn = this.updateChart;
|
38194
38200
|
this.instance.setViewUpdate(updateFn);
|
38195
38201
|
this.instance.setViewGetIconHTML((icon) => IconRenderer.getIcon(icon, this.$root.$options.vuetify));
|
38196
38202
|
if (this.instance.fillHeight) {
|
38197
38203
|
setFillHeight(this.$el);
|
38198
38204
|
}
|
38199
38205
|
}
|
38206
|
+
updateChart(options) {
|
38207
|
+
return new Promise((resolve) => {
|
38208
|
+
const { chart } = this.$refs.instance;
|
38209
|
+
chart.w.globals.selectedDataPoints = [];
|
38210
|
+
resolve(chart.updateOptions(options, false, true, true, true));
|
38211
|
+
});
|
38212
|
+
}
|
38200
38213
|
setApexChartTheme() {
|
38201
38214
|
let theme = '';
|
38202
38215
|
const dark = this.instance.dark || this.$vuetify.theme.dark;
|
@@ -38212,6 +38225,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38212
38225
|
} });
|
38213
38226
|
this.instance.options = newOptions;
|
38214
38227
|
}
|
38228
|
+
drillUp() {
|
38229
|
+
this.instance.drillUp();
|
38230
|
+
}
|
38215
38231
|
};
|
38216
38232
|
__decorate([
|
38217
38233
|
PropWatch({ type: String, default: 'line' }),
|
@@ -38306,8 +38322,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38306
38322
|
class: [
|
38307
38323
|
"zd-apex-chart",
|
38308
38324
|
_vm.instance.cssClass,
|
38309
|
-
{
|
38310
|
-
|
38325
|
+
{
|
38326
|
+
"theme--dark": _vm.$isDark(this),
|
38327
|
+
"theme--light": _vm.$isLight(this),
|
38328
|
+
"zd-apex-chart-drilled": _vm.instance.drillHistory.length > 0,
|
38329
|
+
},
|
38311
38330
|
],
|
38312
38331
|
style: _vm.instance.cssStyle,
|
38313
38332
|
attrs: {
|
@@ -38327,6 +38346,26 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38327
38346
|
},
|
38328
38347
|
}),
|
38329
38348
|
_vm._v(" "),
|
38349
|
+
_vm.instance.drillHistory.length > 0
|
38350
|
+
? _c(
|
38351
|
+
"zd-button",
|
38352
|
+
_vm._b(
|
38353
|
+
{
|
38354
|
+
attrs: { name: "apexcharts-drill-button" },
|
38355
|
+
on: { click: _vm.drillUp },
|
38356
|
+
},
|
38357
|
+
"zd-button",
|
38358
|
+
{
|
38359
|
+
cssClass: "zd-apex-charts-drill-button",
|
38360
|
+
icon: true,
|
38361
|
+
iconName: "arrowLeft",
|
38362
|
+
small: true,
|
38363
|
+
},
|
38364
|
+
false
|
38365
|
+
)
|
38366
|
+
)
|
38367
|
+
: _vm._e(),
|
38368
|
+
_vm._v(" "),
|
38330
38369
|
_c(
|
38331
38370
|
"v-overlay",
|
38332
38371
|
{
|
@@ -38354,7 +38393,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
38354
38393
|
/* style */
|
38355
38394
|
const __vue_inject_styles__$1t = function (inject) {
|
38356
38395
|
if (!inject) return
|
38357
|
-
inject("data-v-
|
38396
|
+
inject("data-v-d97335de_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 });
|
38358
38397
|
|
38359
38398
|
};
|
38360
38399
|
/* scoped */
|
@@ -40841,6 +40880,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40841
40880
|
super(...arguments);
|
40842
40881
|
this.instanceType = common.Col;
|
40843
40882
|
}
|
40883
|
+
mounted() {
|
40884
|
+
if (this.instance.fillHeight) {
|
40885
|
+
setFillHeight(this.$el);
|
40886
|
+
}
|
40887
|
+
}
|
40844
40888
|
};
|
40845
40889
|
__decorate([
|
40846
40890
|
PropWatch({ type: [String, Number], default: '12' }),
|
@@ -40866,6 +40910,22 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40866
40910
|
PropWatch({ type: [String, Number] }),
|
40867
40911
|
__metadata("design:type", Object)
|
40868
40912
|
], ZdCol.prototype, "offset", void 0);
|
40913
|
+
__decorate([
|
40914
|
+
PropWatch({ type: [Number, String], default: 'auto' }),
|
40915
|
+
__metadata("design:type", Object)
|
40916
|
+
], ZdCol.prototype, "height", void 0);
|
40917
|
+
__decorate([
|
40918
|
+
PropWatch({ type: [Number, String], default: 'auto' }),
|
40919
|
+
__metadata("design:type", Object)
|
40920
|
+
], ZdCol.prototype, "minHeight", void 0);
|
40921
|
+
__decorate([
|
40922
|
+
PropWatch({ type: [Number, String], default: 'none' }),
|
40923
|
+
__metadata("design:type", Object)
|
40924
|
+
], ZdCol.prototype, "maxHeight", void 0);
|
40925
|
+
__decorate([
|
40926
|
+
PropWatch({ type: [Boolean, String], default: false }),
|
40927
|
+
__metadata("design:type", Object)
|
40928
|
+
], ZdCol.prototype, "fillHeight", void 0);
|
40869
40929
|
ZdCol = __decorate([
|
40870
40930
|
vuePropertyDecorator.Component
|
40871
40931
|
], ZdCol);
|
@@ -40891,7 +40951,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40891
40951
|
},
|
40892
40952
|
],
|
40893
40953
|
class: _vm.instance.cssClass,
|
40894
|
-
style:
|
40954
|
+
style: Object.assign(
|
40955
|
+
{},
|
40956
|
+
{
|
40957
|
+
height: _vm.$formatSize(_vm.instance.height),
|
40958
|
+
maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
|
40959
|
+
minHeight: _vm.$formatSize(_vm.instance.minHeight),
|
40960
|
+
},
|
40961
|
+
_vm.$styleObject(_vm.instance.cssStyle)
|
40962
|
+
),
|
40895
40963
|
attrs: {
|
40896
40964
|
id: _vm.instance.name,
|
40897
40965
|
name: _vm.instance.name,
|
@@ -41495,6 +41563,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41495
41563
|
this.instance.blur(event, this.$el);
|
41496
41564
|
this.setPlaceholder();
|
41497
41565
|
}
|
41566
|
+
setBlur() {
|
41567
|
+
vuePropertyDecorator.Vue.nextTick(() => {
|
41568
|
+
this.$el.getElementsByTagName('input')[0].blur();
|
41569
|
+
});
|
41570
|
+
}
|
41498
41571
|
getIconClickEvents() {
|
41499
41572
|
const events = {};
|
41500
41573
|
if (this.instance.events.appendIconClick) {
|
@@ -42499,7 +42572,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42499
42572
|
}
|
42500
42573
|
onChangeDatePicker() {
|
42501
42574
|
const textInput = this.$refs.textInputInstance.$children[0];
|
42502
|
-
this
|
42575
|
+
if (!this.$isMobile()) {
|
42576
|
+
this.instance.showDatePicker = false;
|
42577
|
+
}
|
42503
42578
|
textInput.validate(false);
|
42504
42579
|
}
|
42505
42580
|
setFocus(selectAll = false) {
|
@@ -42713,54 +42788,129 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42713
42788
|
},
|
42714
42789
|
[
|
42715
42790
|
_vm._v(" "),
|
42716
|
-
|
42717
|
-
|
42718
|
-
|
42719
|
-
|
42720
|
-
|
42721
|
-
{
|
42722
|
-
|
42723
|
-
|
42724
|
-
|
42725
|
-
expression: "instance.isVisible",
|
42726
|
-
},
|
42727
|
-
],
|
42728
|
-
ref: "picker",
|
42729
|
-
attrs: { "no-title": "" },
|
42730
|
-
on: {
|
42731
|
-
"hook:mounted": _vm.pickerMounted,
|
42732
|
-
"hook:destroyed": _vm.pickerDestroyed,
|
42733
|
-
"click:date": _vm.onSelectDate,
|
42734
|
-
change: function ($event) {
|
42735
|
-
return _vm.onChangeDatePicker()
|
42791
|
+
!_vm.instance.readonly
|
42792
|
+
? _c(
|
42793
|
+
_vm.$isMobile() ? "v-dialog" : "span",
|
42794
|
+
{
|
42795
|
+
tag: "component",
|
42796
|
+
attrs: {
|
42797
|
+
width: "290px",
|
42798
|
+
persistent: "",
|
42799
|
+
"content-class": "zd-mx-0",
|
42736
42800
|
},
|
42737
|
-
|
42738
|
-
|
42739
|
-
|
42740
|
-
|
42741
|
-
|
42801
|
+
model: {
|
42802
|
+
value: _vm.instance.showDatePicker,
|
42803
|
+
callback: function ($$v) {
|
42804
|
+
_vm.$set(_vm.instance, "showDatePicker", $$v);
|
42805
|
+
},
|
42806
|
+
expression: "instance.showDatePicker",
|
42742
42807
|
},
|
42743
|
-
expression: "instance.isoValue",
|
42744
42808
|
},
|
42745
|
-
|
42746
|
-
|
42747
|
-
|
42748
|
-
|
42749
|
-
|
42750
|
-
|
42751
|
-
|
42752
|
-
|
42753
|
-
|
42754
|
-
|
42755
|
-
|
42756
|
-
|
42757
|
-
|
42758
|
-
|
42759
|
-
|
42760
|
-
|
42761
|
-
|
42762
|
-
|
42763
|
-
|
42809
|
+
[
|
42810
|
+
_c(
|
42811
|
+
"v-date-picker",
|
42812
|
+
_vm._b(
|
42813
|
+
{
|
42814
|
+
ref: "picker",
|
42815
|
+
attrs: { "no-title": !_vm.$isMobile() },
|
42816
|
+
on: {
|
42817
|
+
"hook:mounted": _vm.pickerMounted,
|
42818
|
+
"hook:destroyed": _vm.pickerDestroyed,
|
42819
|
+
"click:date": _vm.onSelectDate,
|
42820
|
+
change: function ($event) {
|
42821
|
+
return _vm.onChangeDatePicker()
|
42822
|
+
},
|
42823
|
+
},
|
42824
|
+
model: {
|
42825
|
+
value: _vm.instance.isoValue,
|
42826
|
+
callback: function ($$v) {
|
42827
|
+
_vm.$set(_vm.instance, "isoValue", $$v);
|
42828
|
+
},
|
42829
|
+
expression: "instance.isoValue",
|
42830
|
+
},
|
42831
|
+
},
|
42832
|
+
"v-date-picker",
|
42833
|
+
{
|
42834
|
+
allowedDates: _vm.getAllowedDates,
|
42835
|
+
color: _vm.instance.color,
|
42836
|
+
dark: _vm.instance.dark,
|
42837
|
+
firstDayOfWeek: _vm.instance.firstDayOfWeek,
|
42838
|
+
fullWidth: _vm.instance.fullWidth,
|
42839
|
+
light: _vm.instance.light,
|
42840
|
+
locale: _vm.instance.locale,
|
42841
|
+
scrollable: _vm.instance.scrollable,
|
42842
|
+
showDatePicker: _vm.instance.showDatePicker,
|
42843
|
+
showWeek: _vm.instance.showWeek,
|
42844
|
+
type: _vm.instance.pickerType,
|
42845
|
+
width: _vm.$isMobile() ? "290px" : _vm.instance.width,
|
42846
|
+
},
|
42847
|
+
false
|
42848
|
+
),
|
42849
|
+
[
|
42850
|
+
_vm.$isMobile()
|
42851
|
+
? _c(
|
42852
|
+
"span",
|
42853
|
+
[
|
42854
|
+
_vm.$isMobile()
|
42855
|
+
? _c(
|
42856
|
+
"zd-button",
|
42857
|
+
_vm._b(
|
42858
|
+
{
|
42859
|
+
attrs: {
|
42860
|
+
name:
|
42861
|
+
_vm.instance.name + "-done-button",
|
42862
|
+
},
|
42863
|
+
},
|
42864
|
+
"zd-button",
|
42865
|
+
{
|
42866
|
+
flat: true,
|
42867
|
+
label: "OK",
|
42868
|
+
events: {
|
42869
|
+
click: function () {
|
42870
|
+
_vm.instance.showDatePicker = false;
|
42871
|
+
_vm.setBlur();
|
42872
|
+
},
|
42873
|
+
},
|
42874
|
+
},
|
42875
|
+
false
|
42876
|
+
)
|
42877
|
+
)
|
42878
|
+
: _vm._e(),
|
42879
|
+
_vm._v(" "),
|
42880
|
+
_vm.$isMobile() && _vm.instance.clearable
|
42881
|
+
? _c(
|
42882
|
+
"zd-button",
|
42883
|
+
_vm._b(
|
42884
|
+
{
|
42885
|
+
attrs: {
|
42886
|
+
name:
|
42887
|
+
_vm.instance.name + "-clear-button",
|
42888
|
+
},
|
42889
|
+
},
|
42890
|
+
"zd-button",
|
42891
|
+
{
|
42892
|
+
flat: true,
|
42893
|
+
label: "CLEAR",
|
42894
|
+
events: {
|
42895
|
+
click: function () {
|
42896
|
+
_vm.instance.isoValue = null;
|
42897
|
+
},
|
42898
|
+
},
|
42899
|
+
},
|
42900
|
+
false
|
42901
|
+
)
|
42902
|
+
)
|
42903
|
+
: _vm._e(),
|
42904
|
+
],
|
42905
|
+
1
|
42906
|
+
)
|
42907
|
+
: _vm._e(),
|
42908
|
+
]
|
42909
|
+
),
|
42910
|
+
],
|
42911
|
+
1
|
42912
|
+
)
|
42913
|
+
: _vm._e(),
|
42764
42914
|
],
|
42765
42915
|
1
|
42766
42916
|
),
|
@@ -42811,7 +42961,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42811
42961
|
/* style */
|
42812
42962
|
const __vue_inject_styles__$1b = function (inject) {
|
42813
42963
|
if (!inject) return
|
42814
|
-
inject("data-v-
|
42964
|
+
inject("data-v-319c7690_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 });
|
42815
42965
|
|
42816
42966
|
};
|
42817
42967
|
/* scoped */
|
@@ -42919,7 +43069,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42919
43069
|
onChangeDatePicker() {
|
42920
43070
|
const textInput = this.$refs.textInputInstance.$children[0];
|
42921
43071
|
textInput.validate(false);
|
42922
|
-
this
|
43072
|
+
if (!this.$isMobile()) {
|
43073
|
+
this.instance.showDatePicker = false;
|
43074
|
+
}
|
42923
43075
|
}
|
42924
43076
|
setFocus(selectAll = false) {
|
42925
43077
|
const { textInputInstance } = this.$refs;
|
@@ -43132,52 +43284,135 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
43132
43284
|
},
|
43133
43285
|
[
|
43134
43286
|
_vm._v(" "),
|
43135
|
-
|
43136
|
-
|
43137
|
-
|
43138
|
-
|
43139
|
-
|
43140
|
-
{
|
43141
|
-
|
43142
|
-
|
43143
|
-
|
43144
|
-
expression: "instance.isVisible",
|
43145
|
-
},
|
43146
|
-
],
|
43147
|
-
ref: "picker",
|
43148
|
-
attrs: { "no-title": "", range: "" },
|
43149
|
-
on: {
|
43150
|
-
"hook:mounted": _vm.pickerMounted,
|
43151
|
-
"hook:destroyed": _vm.pickerDestroyed,
|
43152
|
-
change: function ($event) {
|
43153
|
-
return _vm.onChangeDatePicker()
|
43287
|
+
!_vm.instance.readonly
|
43288
|
+
? _c(
|
43289
|
+
_vm.$isMobile() ? "v-dialog" : "span",
|
43290
|
+
{
|
43291
|
+
tag: "component",
|
43292
|
+
attrs: {
|
43293
|
+
width: "290px",
|
43294
|
+
persistent: "",
|
43295
|
+
"content-class": "zd-mx-0",
|
43154
43296
|
},
|
43155
|
-
|
43156
|
-
|
43157
|
-
|
43158
|
-
|
43159
|
-
|
43297
|
+
model: {
|
43298
|
+
value: _vm.instance.showDatePicker,
|
43299
|
+
callback: function ($$v) {
|
43300
|
+
_vm.$set(_vm.instance, "showDatePicker", $$v);
|
43301
|
+
},
|
43302
|
+
expression: "instance.showDatePicker",
|
43160
43303
|
},
|
43161
|
-
expression: "instance.isoRangeValue",
|
43162
43304
|
},
|
43163
|
-
|
43164
|
-
|
43165
|
-
|
43166
|
-
|
43167
|
-
|
43168
|
-
|
43169
|
-
|
43170
|
-
|
43171
|
-
|
43172
|
-
|
43173
|
-
|
43174
|
-
|
43175
|
-
|
43176
|
-
|
43177
|
-
|
43178
|
-
|
43179
|
-
|
43180
|
-
|
43305
|
+
[
|
43306
|
+
_c(
|
43307
|
+
"v-date-picker",
|
43308
|
+
_vm._b(
|
43309
|
+
{
|
43310
|
+
directives: [
|
43311
|
+
{
|
43312
|
+
name: "show",
|
43313
|
+
rawName: "v-show",
|
43314
|
+
value: _vm.instance.isVisible,
|
43315
|
+
expression: "instance.isVisible",
|
43316
|
+
},
|
43317
|
+
],
|
43318
|
+
ref: "picker",
|
43319
|
+
attrs: { "no-title": !_vm.$isMobile(), range: "" },
|
43320
|
+
on: {
|
43321
|
+
"hook:mounted": _vm.pickerMounted,
|
43322
|
+
"hook:destroyed": _vm.pickerDestroyed,
|
43323
|
+
change: function ($event) {
|
43324
|
+
return _vm.onChangeDatePicker()
|
43325
|
+
},
|
43326
|
+
},
|
43327
|
+
model: {
|
43328
|
+
value: _vm.instance.isoRangeValue,
|
43329
|
+
callback: function ($$v) {
|
43330
|
+
_vm.$set(_vm.instance, "isoRangeValue", $$v);
|
43331
|
+
},
|
43332
|
+
expression: "instance.isoRangeValue",
|
43333
|
+
},
|
43334
|
+
},
|
43335
|
+
"v-date-picker",
|
43336
|
+
{
|
43337
|
+
color: _vm.instance.color,
|
43338
|
+
dark: _vm.instance.dark,
|
43339
|
+
firstDayOfWeek: _vm.instance.firstDayOfWeek,
|
43340
|
+
fullWidth: _vm.instance.fullWidth,
|
43341
|
+
light: _vm.instance.light,
|
43342
|
+
locale: _vm.instance.locale,
|
43343
|
+
scrollable: _vm.instance.scrollable,
|
43344
|
+
showDatePicker: _vm.instance.showDatePicker,
|
43345
|
+
showWeek: _vm.instance.showWeek,
|
43346
|
+
type: _vm.instance.pickerType,
|
43347
|
+
width: _vm.$isMobile() ? "290px" : _vm.instance.width,
|
43348
|
+
},
|
43349
|
+
false
|
43350
|
+
),
|
43351
|
+
[
|
43352
|
+
_vm.$isMobile()
|
43353
|
+
? _c(
|
43354
|
+
"span",
|
43355
|
+
[
|
43356
|
+
_vm.$isMobile()
|
43357
|
+
? _c(
|
43358
|
+
"zd-button",
|
43359
|
+
_vm._b(
|
43360
|
+
{
|
43361
|
+
attrs: {
|
43362
|
+
name:
|
43363
|
+
_vm.instance.name + "-done-button",
|
43364
|
+
},
|
43365
|
+
},
|
43366
|
+
"zd-button",
|
43367
|
+
{
|
43368
|
+
flat: true,
|
43369
|
+
label: "OK",
|
43370
|
+
events: {
|
43371
|
+
click: function () {
|
43372
|
+
_vm.instance.showDatePicker = false;
|
43373
|
+
_vm.setBlur();
|
43374
|
+
},
|
43375
|
+
},
|
43376
|
+
},
|
43377
|
+
false
|
43378
|
+
)
|
43379
|
+
)
|
43380
|
+
: _vm._e(),
|
43381
|
+
_vm._v(" "),
|
43382
|
+
_vm.$isMobile() && _vm.instance.clearable
|
43383
|
+
? _c(
|
43384
|
+
"zd-button",
|
43385
|
+
_vm._b(
|
43386
|
+
{
|
43387
|
+
attrs: {
|
43388
|
+
name:
|
43389
|
+
_vm.instance.name + "-clear-button",
|
43390
|
+
},
|
43391
|
+
},
|
43392
|
+
"zd-button",
|
43393
|
+
{
|
43394
|
+
flat: true,
|
43395
|
+
label: "CLEAR",
|
43396
|
+
events: {
|
43397
|
+
click: function () {
|
43398
|
+
_vm.instance.value = [];
|
43399
|
+
},
|
43400
|
+
},
|
43401
|
+
},
|
43402
|
+
false
|
43403
|
+
)
|
43404
|
+
)
|
43405
|
+
: _vm._e(),
|
43406
|
+
],
|
43407
|
+
1
|
43408
|
+
)
|
43409
|
+
: _vm._e(),
|
43410
|
+
]
|
43411
|
+
),
|
43412
|
+
],
|
43413
|
+
1
|
43414
|
+
)
|
43415
|
+
: _vm._e(),
|
43181
43416
|
],
|
43182
43417
|
1
|
43183
43418
|
),
|
@@ -43229,7 +43464,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
43229
43464
|
/* style */
|
43230
43465
|
const __vue_inject_styles__$1a = function (inject) {
|
43231
43466
|
if (!inject) return
|
43232
|
-
inject("data-v-
|
43467
|
+
inject("data-v-5f9ceeca_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 });
|
43233
43468
|
|
43234
43469
|
};
|
43235
43470
|
/* scoped */
|
@@ -44213,7 +44448,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44213
44448
|
__metadata("design:type", Boolean)
|
44214
44449
|
], ZdFooter.prototype, "app", void 0);
|
44215
44450
|
__decorate([
|
44216
|
-
|
44451
|
+
PropWatch({ type: Array, default: () => [] }),
|
44217
44452
|
__metadata("design:type", Array)
|
44218
44453
|
], ZdFooter.prototype, "centerSlot", void 0);
|
44219
44454
|
__decorate([
|
@@ -44233,7 +44468,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44233
44468
|
__metadata("design:type", Boolean)
|
44234
44469
|
], ZdFooter.prototype, "inset", void 0);
|
44235
44470
|
__decorate([
|
44236
|
-
|
44471
|
+
PropWatch({ type: Array, default: () => [] }),
|
44237
44472
|
__metadata("design:type", Array)
|
44238
44473
|
], ZdFooter.prototype, "leftSlot", void 0);
|
44239
44474
|
__decorate([
|
@@ -44257,7 +44492,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44257
44492
|
__metadata("design:type", Boolean)
|
44258
44493
|
], ZdFooter.prototype, "padless", void 0);
|
44259
44494
|
__decorate([
|
44260
|
-
|
44495
|
+
PropWatch({ type: Array, default: () => [] }),
|
44261
44496
|
__metadata("design:type", Array)
|
44262
44497
|
], ZdFooter.prototype, "rightSlot", void 0);
|
44263
44498
|
__decorate([
|
@@ -44333,27 +44568,24 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44333
44568
|
{ staticClass: "zd-footer-slot-left" },
|
44334
44569
|
[
|
44335
44570
|
!_vm.$slots.leftSlot
|
44336
|
-
? _vm._l(
|
44337
|
-
|
44338
|
-
|
44339
|
-
|
44340
|
-
|
44341
|
-
|
44342
|
-
|
44343
|
-
|
44344
|
-
|
44345
|
-
|
44346
|
-
dark: _vm.instance.dark,
|
44347
|
-
light: _vm.instance.light,
|
44348
|
-
},
|
44571
|
+
? _vm._l(_vm.instance.leftSlot, function (child) {
|
44572
|
+
return _c(
|
44573
|
+
child.component,
|
44574
|
+
_vm._b(
|
44575
|
+
{
|
44576
|
+
key: child.name,
|
44577
|
+
tag: "component",
|
44578
|
+
attrs: {
|
44579
|
+
dark: _vm.instance.dark,
|
44580
|
+
light: _vm.instance.light,
|
44349
44581
|
},
|
44350
|
-
|
44351
|
-
|
44352
|
-
|
44353
|
-
|
44582
|
+
},
|
44583
|
+
"component",
|
44584
|
+
child,
|
44585
|
+
false
|
44354
44586
|
)
|
44355
|
-
|
44356
|
-
)
|
44587
|
+
)
|
44588
|
+
})
|
44357
44589
|
: _vm._e(),
|
44358
44590
|
_vm._v(" "),
|
44359
44591
|
_vm._t("leftSlot"),
|
@@ -44368,27 +44600,24 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44368
44600
|
{ ref: "centerSlot", staticClass: "zd-footer-slot-center" },
|
44369
44601
|
[
|
44370
44602
|
!_vm.$slots.centerSlot
|
44371
|
-
? _vm._l(
|
44372
|
-
|
44373
|
-
|
44374
|
-
|
44375
|
-
|
44376
|
-
|
44377
|
-
|
44378
|
-
|
44379
|
-
|
44380
|
-
|
44381
|
-
dark: _vm.instance.dark,
|
44382
|
-
light: _vm.instance.light,
|
44383
|
-
},
|
44603
|
+
? _vm._l(_vm.instance.centerSlot, function (child) {
|
44604
|
+
return _c(
|
44605
|
+
child.component,
|
44606
|
+
_vm._b(
|
44607
|
+
{
|
44608
|
+
key: child.name,
|
44609
|
+
tag: "component",
|
44610
|
+
attrs: {
|
44611
|
+
dark: _vm.instance.dark,
|
44612
|
+
light: _vm.instance.light,
|
44384
44613
|
},
|
44385
|
-
|
44386
|
-
|
44387
|
-
|
44388
|
-
|
44614
|
+
},
|
44615
|
+
"component",
|
44616
|
+
child,
|
44617
|
+
false
|
44389
44618
|
)
|
44390
|
-
|
44391
|
-
)
|
44619
|
+
)
|
44620
|
+
})
|
44392
44621
|
: _vm._e(),
|
44393
44622
|
_vm._v(" "),
|
44394
44623
|
_vm._t("centerSlot"),
|
@@ -44403,27 +44632,24 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44403
44632
|
{ staticClass: "zd-footer-slot-right" },
|
44404
44633
|
[
|
44405
44634
|
!_vm.$slots.rightSlot
|
44406
|
-
? _vm._l(
|
44407
|
-
|
44408
|
-
|
44409
|
-
|
44410
|
-
|
44411
|
-
|
44412
|
-
|
44413
|
-
|
44414
|
-
|
44415
|
-
|
44416
|
-
dark: _vm.instance.dark,
|
44417
|
-
light: _vm.instance.light,
|
44418
|
-
},
|
44635
|
+
? _vm._l(_vm.instance.rightSlot, function (child) {
|
44636
|
+
return _c(
|
44637
|
+
child.component,
|
44638
|
+
_vm._b(
|
44639
|
+
{
|
44640
|
+
key: child.name,
|
44641
|
+
tag: "component",
|
44642
|
+
attrs: {
|
44643
|
+
dark: _vm.instance.dark,
|
44644
|
+
light: _vm.instance.light,
|
44419
44645
|
},
|
44420
|
-
|
44421
|
-
|
44422
|
-
|
44423
|
-
|
44646
|
+
},
|
44647
|
+
"component",
|
44648
|
+
child,
|
44649
|
+
false
|
44424
44650
|
)
|
44425
|
-
|
44426
|
-
)
|
44651
|
+
)
|
44652
|
+
})
|
44427
44653
|
: _vm._e(),
|
44428
44654
|
_vm._v(" "),
|
44429
44655
|
_vm._t("rightSlot"),
|
@@ -44439,12 +44665,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44439
44665
|
"v-col",
|
44440
44666
|
{ staticClass: "pa-0", attrs: { cols: "12" } },
|
44441
44667
|
[
|
44442
|
-
_vm._l(_vm.instance.children, function (child
|
44668
|
+
_vm._l(_vm.instance.children, function (child) {
|
44443
44669
|
return _c(
|
44444
44670
|
child.component,
|
44445
44671
|
_vm._b(
|
44446
44672
|
{
|
44447
|
-
key:
|
44673
|
+
key: child.name,
|
44448
44674
|
tag: "component",
|
44449
44675
|
attrs: {
|
44450
44676
|
dark: _vm.instance.dark,
|
@@ -44473,11 +44699,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44473
44699
|
/* style */
|
44474
44700
|
const __vue_inject_styles__$15 = function (inject) {
|
44475
44701
|
if (!inject) return
|
44476
|
-
inject("data-v-
|
44702
|
+
inject("data-v-aba711be_0", { source: ".zd-footer-slot[data-v-aba711be] {\n display: flex;\n padding: 0;\n}\n.zd-footer-slot-children[data-v-aba711be] {\n padding-bottom: var(--spacing-2);\n}\n.zd-footer-slot-left > *[data-v-aba711be], .zd-footer-slot-center > *[data-v-aba711be], .zd-footer-slot-right > *[data-v-aba711be] {\n margin: 0 var(--spacing-1);\n}\n.zd-footer-slot-left > *[data-v-aba711be]:first-child, .zd-footer-slot-center > *[data-v-aba711be]:first-child, .zd-footer-slot-right > *[data-v-aba711be]:first-child {\n margin-left: 0;\n}\n.zd-footer-slot-left > *[data-v-aba711be]:last-child, .zd-footer-slot-center > *[data-v-aba711be]:last-child, .zd-footer-slot-right > *[data-v-aba711be]:last-child {\n margin-right: 0;\n}\n.zd-footer-slot-center[data-v-aba711be] {\n position: absolute;\n left: 50%;\n transform: translateX(-50%);\n}\n.zd-footer-slot-right[data-v-aba711be] {\n margin-left: auto;\n}", map: undefined, media: undefined });
|
44477
44703
|
|
44478
44704
|
};
|
44479
44705
|
/* scoped */
|
44480
|
-
const __vue_scope_id__$15 = "data-v-
|
44706
|
+
const __vue_scope_id__$15 = "data-v-aba711be";
|
44481
44707
|
/* module identifier */
|
44482
44708
|
const __vue_module_identifier__$15 = undefined;
|
44483
44709
|
/* functional template */
|
@@ -45446,7 +45672,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45446
45672
|
onScroll(event) {
|
45447
45673
|
const { scrollTop } = event.target;
|
45448
45674
|
const rows = Math.floor(scrollTop / this.scrollData.rowHeight);
|
45449
|
-
const
|
45675
|
+
const data = this.getData();
|
45450
45676
|
const start = rows + this.scrollData.perPage > data.length ? Math
|
45451
45677
|
.max(0, data.length - this.scrollData.perPage) : rows;
|
45452
45678
|
if (this.lastStart !== start) {
|
@@ -48878,28 +49104,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48878
49104
|
}
|
48879
49105
|
return text;
|
48880
49106
|
}
|
48881
|
-
hasShowChevron(row) {
|
48882
|
-
if (!this.fieldHasChild)
|
48883
|
-
return true;
|
48884
|
-
const rowHasChild = row[this.fieldHasChild];
|
48885
|
-
let isVisibleChevron = true;
|
48886
|
-
switch (rowHasChild) {
|
48887
|
-
case '0':
|
48888
|
-
case false:
|
48889
|
-
case 0:
|
48890
|
-
isVisibleChevron = false;
|
48891
|
-
break;
|
48892
|
-
case '1':
|
48893
|
-
case true:
|
48894
|
-
case 1:
|
48895
|
-
isVisibleChevron = true;
|
48896
|
-
break;
|
48897
|
-
default:
|
48898
|
-
isVisibleChevron = true;
|
48899
|
-
break;
|
48900
|
-
}
|
48901
|
-
return isVisibleChevron;
|
48902
|
-
}
|
48903
49107
|
hasShowChevronInTreeGrid(headerIndex, selectable) {
|
48904
49108
|
return headerIndex === 0 || (headerIndex === 1 && selectable);
|
48905
49109
|
}
|
@@ -48928,14 +49132,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48928
49132
|
vuePropertyDecorator.Prop({ type: String, required: true }),
|
48929
49133
|
__metadata("design:type", String)
|
48930
49134
|
], ZdTreeGridCellContent.prototype, "expandClass", void 0);
|
48931
|
-
__decorate([
|
48932
|
-
vuePropertyDecorator.Prop({ type: String, required: true }),
|
48933
|
-
__metadata("design:type", String)
|
48934
|
-
], ZdTreeGridCellContent.prototype, "fieldHasChild", void 0);
|
48935
49135
|
__decorate([
|
48936
49136
|
vuePropertyDecorator.Prop({ type: Boolean, default: false }),
|
48937
49137
|
__metadata("design:type", Boolean)
|
48938
49138
|
], ZdTreeGridCellContent.prototype, "hasUsingCellText", void 0);
|
49139
|
+
__decorate([
|
49140
|
+
vuePropertyDecorator.Prop({ type: Function, required: true }),
|
49141
|
+
__metadata("design:type", Function)
|
49142
|
+
], ZdTreeGridCellContent.prototype, "hasChildOnDemand", void 0);
|
48939
49143
|
ZdTreeGridCellContent = __decorate([
|
48940
49144
|
Component__default["default"]
|
48941
49145
|
], ZdTreeGridCellContent);
|
@@ -49003,8 +49207,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
49003
49207
|
{
|
49004
49208
|
name: "show",
|
49005
49209
|
rawName: "v-show",
|
49006
|
-
value: _vm.
|
49007
|
-
expression: "
|
49210
|
+
value: _vm.hasChildOnDemand(_vm.row),
|
49211
|
+
expression: "hasChildOnDemand(row)",
|
49008
49212
|
},
|
49009
49213
|
],
|
49010
49214
|
class: { opened: _vm.row.tree__opened },
|
@@ -49058,7 +49262,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
49058
49262
|
/* style */
|
49059
49263
|
const __vue_inject_styles__$T = function (inject) {
|
49060
49264
|
if (!inject) return
|
49061
|
-
inject("data-v-
|
49265
|
+
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 });
|
49062
49266
|
|
49063
49267
|
};
|
49064
49268
|
/* scoped */
|
@@ -49087,28 +49291,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
49087
49291
|
);
|
49088
49292
|
|
49089
49293
|
let ZdTreeGridCellActionContent = class ZdTreeGridCellActionContent extends __vue_component__$W {
|
49090
|
-
hasShowChevron(row) {
|
49091
|
-
if (!this.fieldHasChild)
|
49092
|
-
return true;
|
49093
|
-
const rowHasChild = row[this.fieldHasChild];
|
49094
|
-
let isVisibleChevron = true;
|
49095
|
-
switch (rowHasChild) {
|
49096
|
-
case '0':
|
49097
|
-
case false:
|
49098
|
-
case 0:
|
49099
|
-
isVisibleChevron = false;
|
49100
|
-
break;
|
49101
|
-
case '1':
|
49102
|
-
case true:
|
49103
|
-
case 1:
|
49104
|
-
isVisibleChevron = true;
|
49105
|
-
break;
|
49106
|
-
default:
|
49107
|
-
isVisibleChevron = true;
|
49108
|
-
break;
|
49109
|
-
}
|
49110
|
-
return isVisibleChevron;
|
49111
|
-
}
|
49112
49294
|
hasShowChevronInTreeGrid(headerIndex, selectable) {
|
49113
49295
|
return headerIndex === 0 || (headerIndex === 1 && selectable);
|
49114
49296
|
}
|
@@ -49117,10 +49299,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
49117
49299
|
vuePropertyDecorator.Prop({ type: Number, required: true }),
|
49118
49300
|
__metadata("design:type", Number)
|
49119
49301
|
], ZdTreeGridCellActionContent.prototype, "headerIndex", void 0);
|
49120
|
-
__decorate([
|
49121
|
-
vuePropertyDecorator.Prop({ type: String, required: true }),
|
49122
|
-
__metadata("design:type", String)
|
49123
|
-
], ZdTreeGridCellActionContent.prototype, "fieldHasChild", void 0);
|
49124
49302
|
__decorate([
|
49125
49303
|
vuePropertyDecorator.Prop({ type: Boolean, required: true }),
|
49126
49304
|
__metadata("design:type", Boolean)
|
@@ -49145,6 +49323,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
49145
49323
|
vuePropertyDecorator.Prop({ type: Object, required: true }),
|
49146
49324
|
__metadata("design:type", Object)
|
49147
49325
|
], ZdTreeGridCellActionContent.prototype, "row", void 0);
|
49326
|
+
__decorate([
|
49327
|
+
vuePropertyDecorator.Prop({ type: Function, required: true }),
|
49328
|
+
__metadata("design:type", Function)
|
49329
|
+
], ZdTreeGridCellActionContent.prototype, "hasChildOnDemand", void 0);
|
49148
49330
|
ZdTreeGridCellActionContent = __decorate([
|
49149
49331
|
Component__default["default"]
|
49150
49332
|
], ZdTreeGridCellActionContent);
|
@@ -49216,8 +49398,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
49216
49398
|
{
|
49217
49399
|
name: "show",
|
49218
49400
|
rawName: "v-show",
|
49219
|
-
value: _vm.
|
49220
|
-
expression: "
|
49401
|
+
value: _vm.hasChildOnDemand(_vm.row),
|
49402
|
+
expression: "hasChildOnDemand(row)",
|
49221
49403
|
},
|
49222
49404
|
],
|
49223
49405
|
class: { opened: _vm.row.tree__opened },
|
@@ -50697,6 +50879,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
50697
50879
|
PropWatch({ type: [Boolean, String], default: false }),
|
50698
50880
|
__metadata("design:type", Boolean)
|
50699
50881
|
], ZdSelect.prototype, "manualMode", void 0);
|
50882
|
+
__decorate([
|
50883
|
+
PropWatch({ type: [Boolean, String], default: false }),
|
50884
|
+
__metadata("design:type", Boolean)
|
50885
|
+
], ZdSelect.prototype, "attach", void 0);
|
50700
50886
|
__decorate([
|
50701
50887
|
PropWatch({ type: String, default: 'SEARCH' }),
|
50702
50888
|
__metadata("design:type", String)
|
@@ -50765,6 +50951,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
50765
50951
|
_vm.instance.clearable &&
|
50766
50952
|
!_vm.instance.readonly &&
|
50767
50953
|
!_vm.instance.disabled,
|
50954
|
+
attach: _vm.instance.attach,
|
50768
50955
|
color: _vm.instance.color,
|
50769
50956
|
dark: _vm.instance.dark,
|
50770
50957
|
disabled: _vm.instance.disabled,
|
@@ -51008,7 +51195,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
51008
51195
|
/* style */
|
51009
51196
|
const __vue_inject_styles__$K = function (inject) {
|
51010
51197
|
if (!inject) return
|
51011
|
-
inject("data-v-
|
51198
|
+
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 });
|
51012
51199
|
|
51013
51200
|
};
|
51014
51201
|
/* scoped */
|
@@ -52407,6 +52594,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
52407
52594
|
super(...arguments);
|
52408
52595
|
this.instanceType = common.MasterDetail;
|
52409
52596
|
}
|
52597
|
+
mounted() {
|
52598
|
+
if (this.instance.fillHeight) {
|
52599
|
+
setFillHeight(this.$el);
|
52600
|
+
}
|
52601
|
+
}
|
52410
52602
|
};
|
52411
52603
|
__decorate([
|
52412
52604
|
vuePropertyDecorator.Prop({ type: [Object, String], default: () => ({}) }),
|
@@ -52416,6 +52608,22 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
52416
52608
|
vuePropertyDecorator.Prop({ type: [Boolean, String], default: false }),
|
52417
52609
|
__metadata("design:type", Boolean)
|
52418
52610
|
], ZdMasterDetail.prototype, "lazyRelate", void 0);
|
52611
|
+
__decorate([
|
52612
|
+
PropWatch({ type: [Number, String], default: 'auto' }),
|
52613
|
+
__metadata("design:type", Object)
|
52614
|
+
], ZdMasterDetail.prototype, "height", void 0);
|
52615
|
+
__decorate([
|
52616
|
+
PropWatch({ type: [Number, String], default: 'auto' }),
|
52617
|
+
__metadata("design:type", Object)
|
52618
|
+
], ZdMasterDetail.prototype, "minHeight", void 0);
|
52619
|
+
__decorate([
|
52620
|
+
PropWatch({ type: [Number, String], default: 'none' }),
|
52621
|
+
__metadata("design:type", Object)
|
52622
|
+
], ZdMasterDetail.prototype, "maxHeight", void 0);
|
52623
|
+
__decorate([
|
52624
|
+
PropWatch({ type: [Boolean, String], default: false }),
|
52625
|
+
__metadata("design:type", Object)
|
52626
|
+
], ZdMasterDetail.prototype, "fillHeight", void 0);
|
52419
52627
|
ZdMasterDetail = __decorate([
|
52420
52628
|
vuePropertyDecorator.Component
|
52421
52629
|
], ZdMasterDetail);
|
@@ -52440,7 +52648,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
52440
52648
|
expression: "instance.isVisible",
|
52441
52649
|
},
|
52442
52650
|
],
|
52443
|
-
style:
|
52651
|
+
style: Object.assign(
|
52652
|
+
{},
|
52653
|
+
{
|
52654
|
+
height: _vm.$formatSize(_vm.instance.height),
|
52655
|
+
maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
|
52656
|
+
minHeight: _vm.$formatSize(_vm.instance.minHeight),
|
52657
|
+
},
|
52658
|
+
_vm.$styleObject(_vm.instance.cssStyle)
|
52659
|
+
),
|
52444
52660
|
attrs: { id: _vm.instance.name },
|
52445
52661
|
},
|
52446
52662
|
[
|
@@ -55757,8 +55973,18 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
55757
55973
|
}
|
55758
55974
|
}
|
55759
55975
|
mounted() {
|
55976
|
+
if (this.instance.parent instanceof common.Form && (this === null || this === void 0 ? void 0 : this.$parent)) {
|
55977
|
+
this.$parent.register(this);
|
55978
|
+
}
|
55979
|
+
this.instance.setViewResetValidation(this.resetValidation);
|
55760
55980
|
this.addListeners();
|
55761
55981
|
}
|
55982
|
+
validate() {
|
55983
|
+
return this.instance.validate();
|
55984
|
+
}
|
55985
|
+
resetValidation() {
|
55986
|
+
this.instance.resetValidation();
|
55987
|
+
}
|
55762
55988
|
focus(event) {
|
55763
55989
|
this.focused = true;
|
55764
55990
|
this.instance.validationError = '';
|
@@ -55861,6 +56087,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
55861
56087
|
vuePropertyDecorator.Prop({ type: [Boolean, String], default: false }),
|
55862
56088
|
__metadata("design:type", Object)
|
55863
56089
|
], ZdSelectTree.prototype, "fetchOnDemand", void 0);
|
56090
|
+
__decorate([
|
56091
|
+
vuePropertyDecorator.Prop({ type: [String], default: '' }),
|
56092
|
+
__metadata("design:type", String)
|
56093
|
+
], ZdSelectTree.prototype, "fieldHasChild", void 0);
|
56094
|
+
__decorate([
|
56095
|
+
vuePropertyDecorator.Prop({ type: [Number, String], default: undefined }),
|
56096
|
+
__metadata("design:type", Object)
|
56097
|
+
], ZdSelectTree.prototype, "menuMaxWidth", void 0);
|
55864
56098
|
__decorate([
|
55865
56099
|
vuePropertyDecorator.Watch('instance.datasource.data.length'),
|
55866
56100
|
__metadata("design:type", Function),
|
@@ -56002,6 +56236,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56002
56236
|
flattenSearchResults: _vm.instance.flattenSearchResults,
|
56003
56237
|
disabled: _vm.instance.disabled,
|
56004
56238
|
maxHeight: _vm.instance.menuMaxHeight,
|
56239
|
+
menuMaxWidth: _vm.instance.menuMaxWidth,
|
56005
56240
|
openDirection: _vm.instance.openDirection,
|
56006
56241
|
searchable: _vm.instance.autocomplete,
|
56007
56242
|
showCount: _vm.instance.showCount,
|
@@ -56106,7 +56341,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56106
56341
|
/* style */
|
56107
56342
|
const __vue_inject_styles__$j = function (inject) {
|
56108
56343
|
if (!inject) return
|
56109
|
-
inject("data-v-
|
56344
|
+
inject("data-v-b0612a90_0", { source: ".zd-select-tree-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.zd-select-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n margin-top: var(--spacing-1);\n padding-bottom: 2px;\n}\n.zd-select-tree.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item {\n background: #555;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item, .zd-select-tree.theme--dark .vue-treeselect__multi-value-item .vue-treeselect__value-remove {\n color: #fff;\n}\n.zd-select-tree .vue-treeselect__control {\n border-radius: var(--border);\n height: 34px;\n}\n.zd-select-tree .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 32px;\n}\n.zd-select-tree .vue-treeselect__control-arrow-container svg {\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\n}\n.zd-select-tree .zd-select-tree-label {\n font-weight: var(--zd-font-body1-weight);\n pointer-events: none;\n line-height: 1rem;\n position: relative;\n top: -1px;\n}\n.zd-select-tree .zd-select-tree-label p {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-select-tree.zd-select-tree-disabled {\n opacity: 0.5;\n}\n.zd-select-tree .vue-treeselect__single-value, .zd-select-tree input {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n cursor: text;\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-label {\n color: var(--v-error-base) !important;\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-details {\n color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control {\n border-color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control-arrow-container svg, .zd-select-tree.zd-select-tree-error .vue-treeselect__x-container svg {\n color: var(--v-error-base);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-select-tree-error .zd-select-tree-append-outer-icon {\n color: var(--v-error-base);\n}\n.zd-select-tree .vue-treeselect--focused .vue-treeselect__control-arrow-container svg, .zd-select-tree .vue-treeselect--focused .vue-treeselect__x-container svg {\n color: var(--v-primary-base);\n}\n.zd-select-tree .zd-select-tree-details {\n min-height: 13px;\n font-size: 11px;\n display: flex;\n flex: 1 0 auto;\n max-width: 100%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.6);\n line-height: 1;\n position: relative;\n top: 1px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-details {\n min-height: 11px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control {\n height: 24px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 22px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense .zd-select-tree-append-outer-icon {\n margin-top: 20px;\n}\n.zd-select-tree.zd-dense.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 4px;\n}\n.zd-select-tree.zd-no-helper .zd-select-tree-details {\n display: none;\n}\n.zd-select-tree.zd-no-border .vue-treeselect__control {\n border: none !important;\n}\n.zd-select-tree .zd-select-tree-container {\n display: flex;\n position: relative;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon, .zd-select-tree .zd-select-tree-append-outer-icon {\n font-size: var(--icon-size-small);\n margin-top: 25px;\n height: 16px;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon {\n margin-right: 8px;\n}\n.zd-select-tree.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 10px;\n}\n.zd-select-tree .zd-select-tree-append-outer-icon {\n margin-left: 8px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__menu-container .vue-treeselect__icon-warning {\n display: none;\n}\n.vue-treeselect__menu-container .vue-treeselect__option--disabled {\n opacity: 0.5;\n}\n.vue-treeselect__menu .vue-treeselect__list > * {\n color: var(--zd-font-color) !important;\n font-size: var(--zd-font-body1-size) !important;\n font-family: var(--font-family) !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option {\n display: flex !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option-arrow-container {\n display: flex !important;\n}\n.vue-treeselect__menu-container .vue-treeselect__option::before {\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 0;\n box-sizing: inherit;\n height: inherit;\n}\n.vue-treeselect__menu-container .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n background: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__label {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n font-family: var(--font-family);\n color: var(--zd-font-color);\n}\n.vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__label-container .vue-treeselect__label, .vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__option-arrow {\n color: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__option:not(.vue-treeselect__option--hide) {\n position: relative;\n display: flex;\n}\n.vue-treeselect__menu-container .vue-treeselect__option-arrow-container:not(.vue-treeselect__option--hide) {\n align-items: center;\n display: flex;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option::before {\n background-color: #000;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option:hover::before {\n opacity: 0.04;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.1;\n}\n.vue-treeselect__menu-container.theme--dark > div {\n background-color: #1e1e1e;\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__label {\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--highlight {\n background-color: transparent;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option::before {\n background-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option:hover::before {\n opacity: 0.08;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.2;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__checkbox:not(.vue-treeselect__checkbox--checked):not(.vue-treeselect__checkbox--indeterminate) {\n background-color: transparent;\n border-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--selected .vue-treeselect__count {\n opacity: 0.8;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__menu {\n border-color: #1e1e1e;\n}\n.vue-treeselect__menu-container .vue-treeselect__check-mark,\n.vue-treeselect__menu-container .vue-treeselect__minus-mark {\n left: -2px;\n top: -2px;\n}", map: undefined, media: undefined });
|
56110
56345
|
|
56111
56346
|
};
|
56112
56347
|
/* scoped */
|
@@ -56302,6 +56537,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56302
56537
|
flat: _vm.instance.flat,
|
56303
56538
|
limit: _vm.focused ? _vm.instance.limit : 1,
|
56304
56539
|
maxHeight: _vm.instance.maxHeight,
|
56540
|
+
menuMaxWidth: _vm.instance.menuMaxWidth,
|
56305
56541
|
openDirection: _vm.instance.openDirection,
|
56306
56542
|
searchable: _vm.instance.autocomplete,
|
56307
56543
|
showCount: _vm.instance.showCount,
|
@@ -56486,8 +56722,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56486
56722
|
/* style */
|
56487
56723
|
const __vue_inject_styles__$i = function (inject) {
|
56488
56724
|
if (!inject) return
|
56489
|
-
inject("data-v-
|
56490
|
-
,inject("data-v-
|
56725
|
+
inject("data-v-3594c77e_0", { source: ".zd-select-tree-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.zd-select-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n margin-top: var(--spacing-1);\n padding-bottom: 2px;\n}\n.zd-select-tree.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item {\n background: #555;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item, .zd-select-tree.theme--dark .vue-treeselect__multi-value-item .vue-treeselect__value-remove {\n color: #fff;\n}\n.zd-select-tree .vue-treeselect__control {\n border-radius: var(--border);\n height: 34px;\n}\n.zd-select-tree .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 32px;\n}\n.zd-select-tree .vue-treeselect__control-arrow-container svg {\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\n}\n.zd-select-tree .zd-select-tree-label {\n font-weight: var(--zd-font-body1-weight);\n pointer-events: none;\n line-height: 1rem;\n position: relative;\n top: -1px;\n}\n.zd-select-tree .zd-select-tree-label p {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-select-tree.zd-select-tree-disabled {\n opacity: 0.5;\n}\n.zd-select-tree .vue-treeselect__single-value, .zd-select-tree input {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n cursor: text;\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-label {\n color: var(--v-error-base) !important;\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-details {\n color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control {\n border-color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control-arrow-container svg, .zd-select-tree.zd-select-tree-error .vue-treeselect__x-container svg {\n color: var(--v-error-base);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-select-tree-error .zd-select-tree-append-outer-icon {\n color: var(--v-error-base);\n}\n.zd-select-tree .vue-treeselect--focused .vue-treeselect__control-arrow-container svg, .zd-select-tree .vue-treeselect--focused .vue-treeselect__x-container svg {\n color: var(--v-primary-base);\n}\n.zd-select-tree .zd-select-tree-details {\n min-height: 13px;\n font-size: 11px;\n display: flex;\n flex: 1 0 auto;\n max-width: 100%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.6);\n line-height: 1;\n position: relative;\n top: 1px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-details {\n min-height: 11px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control {\n height: 24px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 22px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense .zd-select-tree-append-outer-icon {\n margin-top: 20px;\n}\n.zd-select-tree.zd-dense.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 4px;\n}\n.zd-select-tree.zd-no-helper .zd-select-tree-details {\n display: none;\n}\n.zd-select-tree.zd-no-border .vue-treeselect__control {\n border: none !important;\n}\n.zd-select-tree .zd-select-tree-container {\n display: flex;\n position: relative;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon, .zd-select-tree .zd-select-tree-append-outer-icon {\n font-size: var(--icon-size-small);\n margin-top: 25px;\n height: 16px;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon {\n margin-right: 8px;\n}\n.zd-select-tree.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 10px;\n}\n.zd-select-tree .zd-select-tree-append-outer-icon {\n margin-left: 8px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__menu-container .vue-treeselect__icon-warning {\n display: none;\n}\n.vue-treeselect__menu-container .vue-treeselect__option--disabled {\n opacity: 0.5;\n}\n.vue-treeselect__menu .vue-treeselect__list > * {\n color: var(--zd-font-color) !important;\n font-size: var(--zd-font-body1-size) !important;\n font-family: var(--font-family) !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option {\n display: flex !important;\n}\n.vue-treeselect__menu-container.has-search .vue-treeselect__option-arrow-container {\n display: flex !important;\n}\n.vue-treeselect__menu-container .vue-treeselect__option::before {\n bottom: 0;\n content: \"\";\n left: 0;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 0;\n box-sizing: inherit;\n height: inherit;\n}\n.vue-treeselect__menu-container .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n background: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__label {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n font-family: var(--font-family);\n color: var(--zd-font-color);\n}\n.vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__label-container .vue-treeselect__label, .vue-treeselect__menu-container .vue-treeselect__option--selected .vue-treeselect__option-arrow {\n color: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .vue-treeselect__option:not(.vue-treeselect__option--hide) {\n position: relative;\n display: flex;\n}\n.vue-treeselect__menu-container .vue-treeselect__option-arrow-container:not(.vue-treeselect__option--hide) {\n align-items: center;\n display: flex;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option::before {\n background-color: #000;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option:hover::before {\n opacity: 0.04;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.1;\n}\n.vue-treeselect__menu-container.theme--dark > div {\n background-color: #1e1e1e;\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__label {\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--highlight {\n background-color: transparent;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option::before {\n background-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option:hover::before {\n opacity: 0.08;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.2;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__checkbox:not(.vue-treeselect__checkbox--checked):not(.vue-treeselect__checkbox--indeterminate) {\n background-color: transparent;\n border-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--selected .vue-treeselect__count {\n opacity: 0.8;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__menu {\n border-color: #1e1e1e;\n}\n.vue-treeselect__menu-container .vue-treeselect__check-mark,\n.vue-treeselect__menu-container .vue-treeselect__minus-mark {\n left: -2px;\n top: -2px;\n}", map: undefined, media: undefined })
|
56726
|
+
,inject("data-v-3594c77e_1", { source: ".zd-select-tree-multiple .vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 1px 0;\n line-height: 16px;\n}\n.zd-select-tree-multiple .vue-treeselect--multi .vue-treeselect__input {\n padding-top: 0;\n padding-bottom: 0;\n line-height: 15px;\n}\n.vue-treeselect__menu-container .select-all {\n height: 40px;\n min-height: 40px;\n padding-left: 37px;\n}\n.vue-treeselect__menu-container .select-all .v-icon.mdi-checkbox-marked {\n color: var(--v-primary-base);\n}\n.vue-treeselect__menu-container .select-all .v-list-item__content {\n height: 40px;\n}\n.vue-treeselect__menu-container .select-all .v-list-item__action {\n margin: 0 13px 0 0;\n}\n.vue-treeselect__menu-container .select-all .v-list-item__title {\n height: auto;\n padding: 0;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__limit-tip {\n padding-top: 0;\n}\n.vue-treeselect__limit-tip-text {\n padding: 0;\n margin: 0;\n}", map: undefined, media: undefined });
|
56491
56727
|
|
56492
56728
|
};
|
56493
56729
|
/* scoped */
|
@@ -58424,7 +58660,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58424
58660
|
mounted() {
|
58425
58661
|
const textInput = this.$refs.textInputInstance.$children[0].$el.getElementsByTagName('input')[0];
|
58426
58662
|
textInput.addEventListener('blur', () => {
|
58427
|
-
this
|
58663
|
+
if (!this.$isMobile()) {
|
58664
|
+
this.instance.showTimePicker = false;
|
58665
|
+
}
|
58428
58666
|
});
|
58429
58667
|
if (this.$isMobile()) {
|
58430
58668
|
this.setMobileProps(textInput);
|
@@ -58602,136 +58840,200 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58602
58840
|
"div",
|
58603
58841
|
{ staticClass: "zd-time", attrs: { id: _vm.instance.name } },
|
58604
58842
|
[
|
58605
|
-
|
58606
|
-
|
58607
|
-
|
58608
|
-
|
58609
|
-
|
58610
|
-
|
58611
|
-
|
58612
|
-
|
58613
|
-
|
58614
|
-
|
58615
|
-
|
58843
|
+
_c(
|
58844
|
+
"v-menu",
|
58845
|
+
{
|
58846
|
+
directives: [
|
58847
|
+
{
|
58848
|
+
name: "show",
|
58849
|
+
rawName: "v-show",
|
58850
|
+
value: _vm.instance.isVisible,
|
58851
|
+
expression: "instance.isVisible",
|
58852
|
+
},
|
58853
|
+
],
|
58854
|
+
ref: "timeMenu",
|
58855
|
+
attrs: {
|
58856
|
+
"offset-overflow": "",
|
58857
|
+
"offset-y": "",
|
58858
|
+
"input-activator": "",
|
58859
|
+
"min-width": "290px",
|
58860
|
+
transition: "scale-transition",
|
58861
|
+
dark: _vm.instance.dark,
|
58862
|
+
light: _vm.instance.light,
|
58863
|
+
"close-on-content-click": false,
|
58864
|
+
disabled: _vm.instance.disabled || _vm.instance.readonly,
|
58865
|
+
},
|
58866
|
+
scopedSlots: _vm._u([
|
58867
|
+
{
|
58868
|
+
key: "activator",
|
58869
|
+
fn: function (ref) {
|
58870
|
+
var on = ref.on;
|
58871
|
+
return [
|
58872
|
+
_c("zd-text-input", {
|
58873
|
+
ref: "textInputInstance",
|
58874
|
+
attrs: {
|
58875
|
+
name: _vm.instance.name + "_text-input",
|
58876
|
+
mask: _vm.getTimeMask,
|
58877
|
+
"instance-object": _vm.instance,
|
58878
|
+
events: _vm.getEvents(on),
|
58879
|
+
autofill: false,
|
58880
|
+
},
|
58881
|
+
on: { input: _vm.input },
|
58882
|
+
}),
|
58883
|
+
]
|
58884
|
+
},
|
58885
|
+
},
|
58886
|
+
]),
|
58887
|
+
model: {
|
58888
|
+
value: _vm.instance.showTimePicker,
|
58889
|
+
callback: function ($$v) {
|
58890
|
+
_vm.$set(_vm.instance, "showTimePicker", $$v);
|
58891
|
+
},
|
58892
|
+
expression: "instance.showTimePicker",
|
58893
|
+
},
|
58894
|
+
},
|
58895
|
+
[
|
58896
|
+
_vm._v(" "),
|
58897
|
+
!_vm.instance.readonly
|
58898
|
+
? _c(
|
58899
|
+
_vm.$isMobile() ? "v-dialog" : "span",
|
58900
|
+
{
|
58901
|
+
tag: "component",
|
58902
|
+
attrs: {
|
58903
|
+
width: "290px",
|
58904
|
+
persistent: "",
|
58905
|
+
"content-class": "zd-mx-0",
|
58616
58906
|
},
|
58617
|
-
|
58618
|
-
|
58619
|
-
|
58620
|
-
|
58621
|
-
"offset-y": "",
|
58622
|
-
"input-activator": "",
|
58623
|
-
"min-width": "290px",
|
58624
|
-
transition: "scale-transition",
|
58625
|
-
dark: _vm.instance.dark,
|
58626
|
-
light: _vm.instance.light,
|
58627
|
-
"close-on-content-click": false,
|
58628
|
-
disabled: _vm.instance.disabled || _vm.instance.readonly,
|
58629
|
-
},
|
58630
|
-
scopedSlots: _vm._u(
|
58631
|
-
[
|
58632
|
-
{
|
58633
|
-
key: "activator",
|
58634
|
-
fn: function (ref) {
|
58635
|
-
var on = ref.on;
|
58636
|
-
return [
|
58637
|
-
_c("zd-text-input", {
|
58638
|
-
ref: "textInputInstance",
|
58639
|
-
attrs: {
|
58640
|
-
name: _vm.instance.name + "_text-input",
|
58641
|
-
mask: _vm.getTimeMask,
|
58642
|
-
"instance-object": _vm.instance,
|
58643
|
-
events: _vm.getEvents(on),
|
58644
|
-
autofill: false,
|
58645
|
-
},
|
58646
|
-
on: { input: _vm.input },
|
58647
|
-
}),
|
58648
|
-
]
|
58649
|
-
},
|
58907
|
+
model: {
|
58908
|
+
value: _vm.instance.showTimePicker,
|
58909
|
+
callback: function ($$v) {
|
58910
|
+
_vm.$set(_vm.instance, "showTimePicker", $$v);
|
58650
58911
|
},
|
58651
|
-
|
58652
|
-
null,
|
58653
|
-
false,
|
58654
|
-
386348313
|
58655
|
-
),
|
58656
|
-
model: {
|
58657
|
-
value: _vm.instance.showTimePicker,
|
58658
|
-
callback: function ($$v) {
|
58659
|
-
_vm.$set(_vm.instance, "showTimePicker", $$v);
|
58912
|
+
expression: "instance.showTimePicker",
|
58660
58913
|
},
|
58661
|
-
expression: "instance.showTimePicker",
|
58662
58914
|
},
|
58663
|
-
|
58664
|
-
|
58665
|
-
|
58666
|
-
|
58667
|
-
|
58668
|
-
|
58669
|
-
|
58670
|
-
|
58671
|
-
|
58672
|
-
|
58673
|
-
|
58674
|
-
|
58675
|
-
|
58915
|
+
[
|
58916
|
+
_c(
|
58917
|
+
"v-time-picker",
|
58918
|
+
_vm._b(
|
58919
|
+
{
|
58920
|
+
directives: [
|
58921
|
+
{
|
58922
|
+
name: "show",
|
58923
|
+
rawName: "v-show",
|
58924
|
+
value: _vm.instance.isVisible,
|
58925
|
+
expression: "instance.isVisible",
|
58926
|
+
},
|
58927
|
+
],
|
58928
|
+
ref: "picker",
|
58929
|
+
attrs: {
|
58930
|
+
"allowed-hours": _vm.instance.allowedHours,
|
58931
|
+
"allowed-minutes": _vm.instance.allowedMinutes,
|
58932
|
+
"allowed-seconds": _vm.instance.allowedSeconds,
|
58933
|
+
max: _vm.pickerMaxTime,
|
58934
|
+
min: _vm.pickerMinTime,
|
58935
|
+
name: _vm.instance.name,
|
58936
|
+
dark: _vm.instance.dark,
|
58937
|
+
light: _vm.instance.light,
|
58676
58938
|
},
|
58677
|
-
|
58678
|
-
|
58679
|
-
|
58680
|
-
|
58681
|
-
|
58682
|
-
|
58683
|
-
|
58684
|
-
min: _vm.pickerMinTime,
|
58685
|
-
name: _vm.instance.name,
|
58686
|
-
dark: _vm.instance.dark,
|
58687
|
-
light: _vm.instance.light,
|
58688
|
-
},
|
58689
|
-
on: {
|
58690
|
-
"hook:mounted": _vm.pickerMounted,
|
58691
|
-
"hook:destroyed": _vm.pickerDestroyed,
|
58692
|
-
"click:time": _vm.onSelectTime,
|
58693
|
-
change: function ($event) {
|
58694
|
-
return _vm.onChangeTimePicker()
|
58939
|
+
on: {
|
58940
|
+
"hook:mounted": _vm.pickerMounted,
|
58941
|
+
"hook:destroyed": _vm.pickerDestroyed,
|
58942
|
+
"click:time": _vm.onSelectTime,
|
58943
|
+
change: function ($event) {
|
58944
|
+
return _vm.onChangeTimePicker()
|
58945
|
+
},
|
58695
58946
|
},
|
58696
|
-
|
58697
|
-
|
58698
|
-
|
58699
|
-
|
58700
|
-
|
58947
|
+
model: {
|
58948
|
+
value: _vm.instance.isoValue,
|
58949
|
+
callback: function ($$v) {
|
58950
|
+
_vm.$set(_vm.instance, "isoValue", $$v);
|
58951
|
+
},
|
58952
|
+
expression: "instance.isoValue",
|
58701
58953
|
},
|
58702
|
-
expression: "instance.isoValue",
|
58703
58954
|
},
|
58704
|
-
|
58705
|
-
|
58706
|
-
|
58707
|
-
|
58708
|
-
|
58709
|
-
|
58710
|
-
|
58711
|
-
|
58712
|
-
|
58713
|
-
|
58714
|
-
|
58715
|
-
|
58716
|
-
|
58717
|
-
|
58718
|
-
|
58719
|
-
|
58720
|
-
|
58721
|
-
|
58722
|
-
|
58723
|
-
|
58724
|
-
|
58725
|
-
|
58726
|
-
|
58727
|
-
|
58728
|
-
|
58729
|
-
|
58730
|
-
|
58731
|
-
|
58732
|
-
|
58955
|
+
"v-time-picker",
|
58956
|
+
{
|
58957
|
+
ampmInTitle: _vm.instance.ampmInTitle,
|
58958
|
+
color: _vm.instance.color,
|
58959
|
+
format: _vm.instance.timeFormat,
|
58960
|
+
fullWidth: _vm.instance.fullWidth,
|
58961
|
+
useSeconds: _vm.instance.useSeconds,
|
58962
|
+
scrollable: _vm.instance.scrollable,
|
58963
|
+
width: _vm.$isMobile() ? "290px" : _vm.instance.width,
|
58964
|
+
},
|
58965
|
+
false
|
58966
|
+
),
|
58967
|
+
[
|
58968
|
+
_vm.$isMobile()
|
58969
|
+
? _c(
|
58970
|
+
"span",
|
58971
|
+
[
|
58972
|
+
_vm.$isMobile()
|
58973
|
+
? _c(
|
58974
|
+
"zd-button",
|
58975
|
+
_vm._b(
|
58976
|
+
{
|
58977
|
+
attrs: {
|
58978
|
+
name:
|
58979
|
+
_vm.instance.name + "-done-button",
|
58980
|
+
},
|
58981
|
+
},
|
58982
|
+
"zd-button",
|
58983
|
+
{
|
58984
|
+
flat: true,
|
58985
|
+
label: "OK",
|
58986
|
+
events: {
|
58987
|
+
click: function () {
|
58988
|
+
_vm.instance.showTimePicker = false;
|
58989
|
+
_vm.setBlur();
|
58990
|
+
},
|
58991
|
+
},
|
58992
|
+
},
|
58993
|
+
false
|
58994
|
+
)
|
58995
|
+
)
|
58996
|
+
: _vm._e(),
|
58997
|
+
_vm._v(" "),
|
58998
|
+
_vm.$isMobile() && _vm.instance.clearable
|
58999
|
+
? _c(
|
59000
|
+
"zd-button",
|
59001
|
+
_vm._b(
|
59002
|
+
{
|
59003
|
+
attrs: {
|
59004
|
+
name:
|
59005
|
+
_vm.instance.name + "-clear-button",
|
59006
|
+
},
|
59007
|
+
},
|
59008
|
+
"zd-button",
|
59009
|
+
{
|
59010
|
+
flat: true,
|
59011
|
+
label: "CLEAR",
|
59012
|
+
events: {
|
59013
|
+
click: function () {
|
59014
|
+
_vm.instance.isoValue = null;
|
59015
|
+
},
|
59016
|
+
},
|
59017
|
+
},
|
59018
|
+
false
|
59019
|
+
)
|
59020
|
+
)
|
59021
|
+
: _vm._e(),
|
59022
|
+
],
|
59023
|
+
1
|
59024
|
+
)
|
59025
|
+
: _vm._e(),
|
59026
|
+
]
|
59027
|
+
),
|
59028
|
+
],
|
59029
|
+
1
|
59030
|
+
)
|
59031
|
+
: _vm._e(),
|
59032
|
+
],
|
59033
|
+
1
|
59034
|
+
),
|
58733
59035
|
],
|
58734
|
-
|
59036
|
+
1
|
58735
59037
|
)
|
58736
59038
|
};
|
58737
59039
|
var __vue_staticRenderFns__$6 = [];
|
@@ -58740,7 +59042,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58740
59042
|
/* style */
|
58741
59043
|
const __vue_inject_styles__$6 = function (inject) {
|
58742
59044
|
if (!inject) return
|
58743
|
-
inject("data-v-
|
59045
|
+
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 });
|
58744
59046
|
|
58745
59047
|
};
|
58746
59048
|
/* scoped */
|
@@ -59724,17 +60026,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
59724
60026
|
return this.instance.toggleExpand(row, rowIndex);
|
59725
60027
|
}
|
59726
60028
|
orderColumnVisibility() {
|
59727
|
-
const
|
59728
|
-
if (!
|
60029
|
+
const columnsInvisible = this.instance.columns.filter((column) => column.isVisible === false);
|
60030
|
+
if (!columnsInvisible) {
|
59729
60031
|
return;
|
59730
60032
|
}
|
59731
|
-
const
|
60033
|
+
const columnsVisible = this.instance.columns.filter((column) => column.isVisible === true);
|
59732
60034
|
const newOrderColumns = [];
|
59733
|
-
if (
|
59734
|
-
newOrderColumns.push(...
|
60035
|
+
if (columnsVisible) {
|
60036
|
+
newOrderColumns.push(...columnsVisible);
|
59735
60037
|
}
|
59736
|
-
if (
|
59737
|
-
newOrderColumns.push(...
|
60038
|
+
if (columnsInvisible) {
|
60039
|
+
newOrderColumns.push(...columnsInvisible);
|
59738
60040
|
}
|
59739
60041
|
this.instance.columns = newOrderColumns;
|
59740
60042
|
}
|
@@ -59768,12 +60070,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
59768
60070
|
return this.scrollData.visibleData;
|
59769
60071
|
}
|
59770
60072
|
getData() {
|
59771
|
-
|
59772
|
-
|
59773
|
-
|
59774
|
-
: this.instance.treeDataStructure.treeData;
|
59775
|
-
}
|
59776
|
-
return this.renderedData;
|
60073
|
+
return this.instance.treeDataStructure.searchHasNoData
|
60074
|
+
? []
|
60075
|
+
: this.instance.treeDataStructure.treeData || this.renderedData;
|
59777
60076
|
}
|
59778
60077
|
onChangeLayout(event, element) {
|
59779
60078
|
if (this.originalChangeLayout) {
|
@@ -59781,6 +60080,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
59781
60080
|
}
|
59782
60081
|
this.orderColumnVisibility();
|
59783
60082
|
}
|
60083
|
+
hasChildOnDemand(row) {
|
60084
|
+
return this.instance.treeDataStructure.hasChildOnDemand(row);
|
60085
|
+
}
|
59784
60086
|
};
|
59785
60087
|
__decorate([
|
59786
60088
|
PropWatch({ type: String, default: '' }),
|
@@ -60468,8 +60770,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
60468
60770
|
headerIndex: headerIndex,
|
60469
60771
|
selectable:
|
60470
60772
|
_vm.instance.selectable,
|
60471
|
-
|
60472
|
-
_vm.
|
60773
|
+
hasChildOnDemand:
|
60774
|
+
_vm.hasChildOnDemand,
|
60473
60775
|
toggleExpand:
|
60474
60776
|
_vm.toggleExpand,
|
60475
60777
|
rowIndex: index,
|
@@ -60516,8 +60818,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
60516
60818
|
rowIndex: index,
|
60517
60819
|
getActionComponent:
|
60518
60820
|
_vm.getActionComponent,
|
60519
|
-
|
60520
|
-
_vm.
|
60821
|
+
hasChildOnDemand:
|
60822
|
+
_vm.hasChildOnDemand,
|
60521
60823
|
selectable:
|
60522
60824
|
_vm.instance.selectable,
|
60523
60825
|
},
|
@@ -60636,8 +60938,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
60636
60938
|
/* style */
|
60637
60939
|
const __vue_inject_styles__$1 = function (inject) {
|
60638
60940
|
if (!inject) return
|
60639
|
-
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 })
|
60640
|
-
,inject("data-v-
|
60941
|
+
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 })
|
60942
|
+
,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 });
|
60641
60943
|
|
60642
60944
|
};
|
60643
60945
|
/* scoped */
|
@@ -61592,9 +61894,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
61592
61894
|
selectable:
|
61593
61895
|
_vm.instance
|
61594
61896
|
.selectable,
|
61595
|
-
|
61596
|
-
_vm.
|
61597
|
-
.fieldHasChild,
|
61897
|
+
hasChildOnDemand:
|
61898
|
+
_vm.hasChildOnDemand,
|
61598
61899
|
toggleExpand:
|
61599
61900
|
_vm.toggleExpand,
|
61600
61901
|
rowIndex: index,
|
@@ -61649,8 +61950,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
61649
61950
|
rowIndex: index,
|
61650
61951
|
getActionComponent:
|
61651
61952
|
_vm.getActionComponent,
|
61652
|
-
|
61653
|
-
_vm.
|
61953
|
+
hasChildOnDemand:
|
61954
|
+
_vm.hasChildOnDemand,
|
61654
61955
|
selectable:
|
61655
61956
|
_vm.instance.selectable,
|
61656
61957
|
},
|
@@ -61769,8 +62070,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
61769
62070
|
/* style */
|
61770
62071
|
const __vue_inject_styles__ = function (inject) {
|
61771
62072
|
if (!inject) return
|
61772
|
-
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 })
|
61773
|
-
,inject("data-v-
|
62073
|
+
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 })
|
62074
|
+
,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 });
|
61774
62075
|
|
61775
62076
|
};
|
61776
62077
|
/* scoped */
|
@@ -62218,6 +62519,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
62218
62519
|
VToolbar,
|
62219
62520
|
VToolbarItems,
|
62220
62521
|
VSimpleCheckbox,
|
62522
|
+
VSlideGroup,
|
62523
|
+
VSlideItem,
|
62221
62524
|
},
|
62222
62525
|
directives: {
|
62223
62526
|
Touch: directives.Touch,
|