@zeedhi/vuetify 1.49.0 → 1.50.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/zd-vuetify.esm.js +191 -99
- package/dist/zd-vuetify.umd.js +191 -99
- package/package.json +2 -2
- package/types/components/zd-dashboard/ZdDashboard.d.ts +0 -1
- package/types/components/zd-grid/ZdGrid.d.ts +1 -1
- package/types/components/zd-select-tree/ZdSelectTree.d.ts +2 -0
- package/types/utils/plugins/index.d.ts +2 -1
- package/types/utils/plugins/styleObjectPlugin.d.ts +2 -0
package/dist/zd-vuetify.umd.js
CHANGED
@@ -2220,7 +2220,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
2220
2220
|
}
|
2221
2221
|
Vuetify.install = install$1;
|
2222
2222
|
Vuetify.installed = false;
|
2223
|
-
Vuetify.version = "2.6.
|
2223
|
+
Vuetify.version = "2.6.5";
|
2224
2224
|
Vuetify.config = {
|
2225
2225
|
silent: false
|
2226
2226
|
};
|
@@ -2601,7 +2601,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
2601
2601
|
return this.$createElement('div', {
|
2602
2602
|
staticClass: 'v-responsive__content',
|
2603
2603
|
class: this.contentClass
|
2604
|
-
}, this
|
2604
|
+
}, getSlot(this));
|
2605
2605
|
}
|
2606
2606
|
|
2607
2607
|
},
|
@@ -2986,10 +2986,12 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
2986
2986
|
},
|
2987
2987
|
|
2988
2988
|
__genPlaceholder() {
|
2989
|
-
|
2989
|
+
const slot = getSlot(this, 'placeholder');
|
2990
|
+
|
2991
|
+
if (slot) {
|
2990
2992
|
const placeholder = this.isLoading ? [this.$createElement('div', {
|
2991
2993
|
staticClass: 'v-image__placeholder'
|
2992
|
-
},
|
2994
|
+
}, slot)] : [];
|
2993
2995
|
if (!this.transition) return placeholder[0];
|
2994
2996
|
return this.$createElement('transition', {
|
2995
2997
|
props: {
|
@@ -16224,10 +16226,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
16224
16226
|
});
|
16225
16227
|
},
|
16226
16228
|
|
16227
|
-
onBlur() {
|
16228
|
-
this.isFocused = false;
|
16229
|
-
},
|
16230
|
-
|
16231
16229
|
onClick(e) {
|
16232
16230
|
this.onChange();
|
16233
16231
|
this.$emit('click', e);
|
@@ -16262,8 +16260,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
16262
16260
|
this.hasColor = input;
|
16263
16261
|
},
|
16264
16262
|
|
16265
|
-
onFocus() {
|
16263
|
+
onFocus(e) {
|
16266
16264
|
this.isFocused = true;
|
16265
|
+
this.$emit('focus', e);
|
16266
|
+
},
|
16267
|
+
|
16268
|
+
onBlur(e) {
|
16269
|
+
this.isFocused = false;
|
16270
|
+
this.$emit('blur', e);
|
16267
16271
|
},
|
16268
16272
|
|
16269
16273
|
/** @abstract */
|
@@ -29462,7 +29466,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
29462
29466
|
};
|
29463
29467
|
this.buildTree(children, key); // This fixed bug with dynamic children resetting selected parent state
|
29464
29468
|
|
29465
|
-
if (
|
29469
|
+
if (this.selectionType !== 'independent' && parent !== null && !this.nodes.hasOwnProperty(key) && this.nodes.hasOwnProperty(parent)) {
|
29466
29470
|
node.isSelected = this.nodes[parent].isSelected;
|
29467
29471
|
} else {
|
29468
29472
|
node.isSelected = oldNode.isSelected;
|
@@ -32713,8 +32717,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
32713
32717
|
sortAscending: 'Orden ascendente.',
|
32714
32718
|
sortNone: 'Sin ordenar.',
|
32715
32719
|
activateNone: 'Pulse para quitar orden.',
|
32716
|
-
activateDescending: 'Pulse para ordenar descendente.',
|
32717
|
-
activateAscending: 'Pulse para ordenar ascendente.'
|
32720
|
+
activateDescending: 'Pulse para ordenar de forma descendente.',
|
32721
|
+
activateAscending: 'Pulse para ordenar de forma ascendente.'
|
32718
32722
|
},
|
32719
32723
|
sortBy: 'Ordenado por'
|
32720
32724
|
},
|
@@ -32723,7 +32727,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
32723
32727
|
itemsPerPageAll: 'Todos',
|
32724
32728
|
nextPage: 'Página siguiente',
|
32725
32729
|
prevPage: 'Página anterior',
|
32726
|
-
firstPage: '
|
32730
|
+
firstPage: 'Primera página',
|
32727
32731
|
lastPage: 'Última página',
|
32728
32732
|
pageText: '{0}-{1} de {2}'
|
32729
32733
|
},
|
@@ -32993,15 +32997,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
32993
32997
|
pagination: {
|
32994
32998
|
ariaLabel: {
|
32995
32999
|
wrapper: 'Pagination Navigation',
|
32996
|
-
next: '
|
32997
|
-
previous: '
|
32998
|
-
page: '
|
32999
|
-
currentPage: '
|
33000
|
+
next: 'Seuraava sivu',
|
33001
|
+
previous: 'Edellinen sivu',
|
33002
|
+
page: 'Mene sivulle {0}',
|
33003
|
+
currentPage: 'Nykyinen sivu, Sivu {0}'
|
33000
33004
|
}
|
33001
33005
|
},
|
33002
33006
|
rating: {
|
33003
33007
|
ariaLabel: {
|
33004
|
-
icon: '
|
33008
|
+
icon: 'Luokitus {0}/{1}'
|
33005
33009
|
}
|
33006
33010
|
}
|
33007
33011
|
};
|
@@ -36826,7 +36830,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
36826
36830
|
exports.default = Vuetify;
|
36827
36831
|
Vuetify.install = install_1.install;
|
36828
36832
|
Vuetify.installed = false;
|
36829
|
-
Vuetify.version = "2.6.
|
36833
|
+
Vuetify.version = "2.6.5";
|
36830
36834
|
Vuetify.config = {
|
36831
36835
|
silent: false
|
36832
36836
|
};
|
@@ -40112,7 +40116,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40112
40116
|
{
|
40113
40117
|
"--checkbox-horizontal-columns": _vm.checkboxHorizontalColumns,
|
40114
40118
|
},
|
40115
|
-
_vm.instance.cssStyle,
|
40119
|
+
_vm.$styleObject(_vm.instance.cssStyle),
|
40116
40120
|
],
|
40117
40121
|
},
|
40118
40122
|
_vm._l(_vm.instance.datasource.data, function (row) {
|
@@ -40174,7 +40178,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40174
40178
|
/* style */
|
40175
40179
|
const __vue_inject_styles__$1e = function (inject) {
|
40176
40180
|
if (!inject) return
|
40177
|
-
inject("data-v-
|
40181
|
+
inject("data-v-03bb5313_0", { source: ".zd-checkbox-multiple .zd-checkbox-label {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 0 var(--spacing-2);\n color: var(--zd-font-color);\n align-items: flex-start;\n display: flex;\n}\n.zd-checkbox-multiple .zd-checkbox-horizontal {\n display: inline-grid;\n grid-template-columns: var(--checkbox-horizontal-columns);\n width: 100%;\n}\n.zd-checkbox-multiple .v-label {\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n}\n.zd-checkbox-multiple .v-input--selection-controls {\n padding: 0;\n margin: 0;\n}\n.zd-checkbox-multiple .v-input--selection-controls .v-input__control .v-messages {\n display: none;\n}\n.zd-checkbox-multiple .v-input--selection-controls .v-input__control .v-input__slot {\n margin: 0 10px 0 0;\n}\n.zd-checkbox-multiple .v-input--selection-controls .v-input__control .v-input__slot:hover .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-checkbox-multiple.zd-no-label .v-label {\n display: none;\n}\n.zd-checkbox-multiple.zd-no-helper > .v-input__control > .v-messages {\n display: none;\n}", map: undefined, media: undefined });
|
40178
40182
|
|
40179
40183
|
};
|
40180
40184
|
/* scoped */
|
@@ -40884,7 +40888,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
40884
40888
|
tile: _vm.instance.tile,
|
40885
40889
|
},
|
40886
40890
|
],
|
40887
|
-
style: [_vm.widthStyles, _vm.instance.cssStyle],
|
40891
|
+
style: [_vm.widthStyles, _vm.$styleObject(_vm.instance.cssStyle)],
|
40888
40892
|
attrs: {
|
40889
40893
|
id: _vm.instance.name,
|
40890
40894
|
dark: _vm.instance.dark,
|
@@ -41046,7 +41050,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41046
41050
|
/* style */
|
41047
41051
|
const __vue_inject_styles__$1a = function (inject) {
|
41048
41052
|
if (!inject) return
|
41049
|
-
inject("data-v-
|
41053
|
+
inject("data-v-83d4103c_0", { source: ".v-expansion-panels.tile, .v-expansion-panels.tile:not(.v-expansion-panels--accordion) > .v-expansion-panel--active, .v-expansion-panels.tile:not(.v-expansion-panels--accordion) > .v-expansion-panel--next-active {\n border-radius: var(--border-tile);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active {\n box-shadow: var(--shadow-3);\n border-radius: var(--border);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel::before, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active::before, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active::before {\n box-shadow: none;\n}\n.v-expansion-panels > div:first-child.v-expansion-panel.outlined, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active.outlined, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active.outlined {\n box-shadow: none;\n border: var(--regular) solid var(--v-secondary-base);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel.raised, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active.raised, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active.raised {\n box-shadow: var(--shadow-9);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel .v-expansion-panel-content__wrap, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-content__wrap, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active .v-expansion-panel-content__wrap {\n padding: 0 var(--spacing-4) var(--spacing-4) var(--spacing-4);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel .v-expansion-panel-header, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-header, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active .v-expansion-panel-header {\n border-bottom-left-radius: inherit;\n border-bottom-right-radius: inherit;\n min-height: 0;\n padding: var(--spacing-4);\n}\n.v-expansion-panels > div:first-child.v-expansion-panel .v-expansion-panel-header .v-expansion-panel-header__icon .v-btn .v-icon, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-header .v-expansion-panel-header__icon .v-btn .v-icon, .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active .v-expansion-panel-header .v-expansion-panel-header__icon .v-btn .v-icon {\n color: currentColor;\n}\n.v-expansion-panels > div:first-child.v-expansion-panel .v-expansion-panel-header > :not(.v-expansion-panel-header__icon), .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-header > :not(.v-expansion-panel-header__icon), .v-expansion-panels > div:first-child.v-expansion-panel.v-expansion-panel--next-active .v-expansion-panel-header > :not(.v-expansion-panel-header__icon) {\n padding-right: var(--spacing-4);\n}\n.v-expansion-panels--flat > div:first-child.v-expansion-panel, .v-expansion-panels--flat > div:first-child.v-expansion-panel.v-expansion-panel--active, .v-expansion-panels--flat > div:first-child.v-expansion-panel.v-expansion-panel--next-active {\n box-shadow: none;\n}\n.v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel:hover, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel:focus, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel.v-expansion-panel--active:hover, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel.v-expansion-panel--active:focus, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel.v-expansion-panel--next-active:hover, .v-expansion-panels.v-expansion-panels--hover > div:first-child.v-expansion-panel.v-expansion-panel--next-active:focus {\n box-shadow: var(--shadow-5);\n}", map: undefined, media: undefined });
|
41050
41054
|
|
41051
41055
|
};
|
41052
41056
|
/* scoped */
|
@@ -41132,11 +41136,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41132
41136
|
_vm.instance.cssClass,
|
41133
41137
|
{ "fill-height": _vm.instance.fillHeight },
|
41134
41138
|
],
|
41135
|
-
style: Object.assign(
|
41136
|
-
|
41137
|
-
|
41138
|
-
|
41139
|
-
|
41139
|
+
style: Object.assign(
|
41140
|
+
{},
|
41141
|
+
{
|
41142
|
+
height: _vm.$formatSize(_vm.instance.height),
|
41143
|
+
minHeight: _vm.$formatSize(_vm.instance.minHeight),
|
41144
|
+
maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
|
41145
|
+
},
|
41146
|
+
_vm.$styleObject(_vm.instance.cssStyle)
|
41147
|
+
),
|
41140
41148
|
attrs: {
|
41141
41149
|
id: _vm.instance.name,
|
41142
41150
|
name: _vm.instance.name,
|
@@ -41175,11 +41183,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41175
41183
|
/* style */
|
41176
41184
|
const __vue_inject_styles__$19 = function (inject) {
|
41177
41185
|
if (!inject) return
|
41178
|
-
inject("data-v-
|
41186
|
+
inject("data-v-2fe09010_0", { source: ".zd-container[data-v-2fe09010] {\n padding: var(--zd-default-padding);\n}", map: undefined, media: undefined });
|
41179
41187
|
|
41180
41188
|
};
|
41181
41189
|
/* scoped */
|
41182
|
-
const __vue_scope_id__$19 = "data-v-
|
41190
|
+
const __vue_scope_id__$19 = "data-v-2fe09010";
|
41183
41191
|
/* module identifier */
|
41184
41192
|
const __vue_module_identifier__$19 = undefined;
|
41185
41193
|
/* functional template */
|
@@ -41796,11 +41804,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41796
41804
|
card.height = (this.resizeHeight + dy);
|
41797
41805
|
}
|
41798
41806
|
if (dx > this.widthDashboardContainer / 12 && card.width < 12) {
|
41799
|
-
card.width
|
41807
|
+
card.width = Number(card.width) + 1;
|
41800
41808
|
this.resizeX = event.clientX;
|
41801
41809
|
}
|
41802
41810
|
else if (dx < 0 && Math.abs(dx) > this.widthDashboardContainer / 12 && card.width > 1) {
|
41803
|
-
card.width
|
41811
|
+
card.width = Number(card.width) - 1;
|
41804
41812
|
this.resizeX = event.clientX;
|
41805
41813
|
}
|
41806
41814
|
}
|
@@ -41836,13 +41844,6 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41836
41844
|
}
|
41837
41845
|
this.onUnchoose();
|
41838
41846
|
}
|
41839
|
-
/* Return resize options */
|
41840
|
-
getDragCursor() {
|
41841
|
-
if (this.instance.editingMode || this.instance.moveMode) {
|
41842
|
-
return 'cursor: grabbing; overflow: auto';
|
41843
|
-
}
|
41844
|
-
return 'cursor: auto';
|
41845
|
-
}
|
41846
41847
|
};
|
41847
41848
|
__decorate([
|
41848
41849
|
PropWatch({ type: Array, default: () => ([]) }),
|
@@ -41906,9 +41907,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41906
41907
|
dark: _vm.instance.dark,
|
41907
41908
|
light: _vm.instance.light,
|
41908
41909
|
name: "container-dashboard" + _vm.instance.name,
|
41909
|
-
cssStyle: Object.assign(
|
41910
|
-
|
41911
|
-
|
41910
|
+
cssStyle: Object.assign(
|
41911
|
+
{},
|
41912
|
+
{ height: _vm.$formatSize(_vm.instance.height) },
|
41913
|
+
_vm.$styleObject(_vm.instance.cssStyle)
|
41914
|
+
),
|
41912
41915
|
},
|
41913
41916
|
},
|
41914
41917
|
[
|
@@ -41962,13 +41965,46 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
41962
41965
|
"zd-card",
|
41963
41966
|
{
|
41964
41967
|
parent: _vm.instance,
|
41965
|
-
|
41968
|
+
activeClass: card.activeClass,
|
41969
|
+
append: card.append,
|
41966
41970
|
cardId: card.cardId,
|
41967
|
-
flat: card.flat,
|
41968
41971
|
children: [_vm.instance.getFrameProps(card.cardId)],
|
41969
|
-
|
41970
|
-
|
41972
|
+
color: card.color,
|
41973
|
+
cssClass: card.cssClass,
|
41974
|
+
cssStyle: Object.assign(
|
41975
|
+
{},
|
41976
|
+
{
|
41977
|
+
cursor:
|
41978
|
+
_vm.instance.editingMode || _vm.instance.moveMode
|
41979
|
+
? "grabbing"
|
41980
|
+
: "auto",
|
41981
|
+
overflow:
|
41982
|
+
_vm.instance.editingMode || _vm.instance.moveMode
|
41983
|
+
? "overflow"
|
41984
|
+
: "",
|
41985
|
+
},
|
41986
|
+
_vm.$styleObject(card.cssStyle)
|
41987
|
+
),
|
41988
|
+
dark: card.dark,
|
41989
|
+
directives: card.directives,
|
41990
|
+
disabled: card.disabled,
|
41991
|
+
elevation: card.elevation,
|
41971
41992
|
events: card.events,
|
41993
|
+
key: card.path,
|
41994
|
+
flat: card.flat,
|
41995
|
+
hover: card.hover,
|
41996
|
+
href: card.href,
|
41997
|
+
img: card.img,
|
41998
|
+
isVisible: card.isVisible,
|
41999
|
+
keyMap: card.keyMap,
|
42000
|
+
light: card.light,
|
42001
|
+
link: card.link,
|
42002
|
+
name: "dashboardCard" + card.cardId,
|
42003
|
+
outlined: card.outlined,
|
42004
|
+
raised: card.raised,
|
42005
|
+
ripple: card.ripple,
|
42006
|
+
tile: card.tile,
|
42007
|
+
to: card.to,
|
41972
42008
|
},
|
41973
42009
|
false
|
41974
42010
|
)
|
@@ -42044,7 +42080,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
42044
42080
|
/* style */
|
42045
42081
|
const __vue_inject_styles__$15 = function (inject) {
|
42046
42082
|
if (!inject) return
|
42047
|
-
inject("data-v-
|
42083
|
+
inject("data-v-5ff6ec98_0", { source: ".zd-dashboard {\n display: flex;\n flex-direction: column;\n cursor: auto;\n}\n.zd-dashboard .zd-header {\n margin-bottom: 10px;\n}\n.zd-dashboard .zd-footer {\n bottom: 0;\n right: 20px;\n position: absolute;\n padding: 3px;\n}\n.zd-dashboard .zd-footer.theme--dark {\n background: #1e1e1e;\n}\n.zd-dashboard .zd-footer.theme--light {\n background: #fff;\n}\n.zd-dashboard .zd-icon {\n bottom: 0;\n right: 0;\n position: absolute;\n cursor: nw-resize;\n}\n.zd-dashboard .zd-dashboard-body {\n justify-content: flex-start;\n align-content: flex-start;\n display: flex;\n flex-wrap: wrap;\n height: 100%;\n min-height: 0;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col {\n min-height: 70px;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col .zd-dashboard-card-div {\n height: 100%;\n position: relative;\n}\n.zd-dashboard .zd-dashboard-body .zd-dashboard-card-col .zd-dashboard-card-div > .zd-card {\n height: 100%;\n}\n.ghost-drag {\n border: 2px dashed #772583;\n opacity: 0.5;\n margin: 0;\n}", map: undefined, media: undefined });
|
42048
42084
|
|
42049
42085
|
};
|
42050
42086
|
/* scoped */
|
@@ -43598,10 +43634,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
43598
43634
|
"zd-input-required": _vm.instance.validations.required,
|
43599
43635
|
},
|
43600
43636
|
],
|
43601
|
-
style: [
|
43602
|
-
|
43603
|
-
|
43604
|
-
],
|
43637
|
+
style: [{ "--drag-area-height": _vm.getDragAreaHeight() }].concat(
|
43638
|
+
_vm.$styleObject(_vm.instance.cssStyle)
|
43639
|
+
),
|
43605
43640
|
attrs: {
|
43606
43641
|
id: _vm.instance.name,
|
43607
43642
|
dark: _vm.instance.dark,
|
@@ -43818,7 +43853,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
43818
43853
|
/* style */
|
43819
43854
|
const __vue_inject_styles__$$ = function (inject) {
|
43820
43855
|
if (!inject) return
|
43821
|
-
inject("data-v-
|
43856
|
+
inject("data-v-47bb0268_0", { source: ".zd-file-input > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-1);\n}\n.zd-file-input > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text:not(.v-file-input__text--placeholder) {\n color: var(--zd-font-color);\n}\n.zd-file-input > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text .v-chip {\n border-radius: 8px;\n padding: 0 var(--spacing-2);\n}\n.zd-file-input > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text .v-chip.v-size--x-small {\n height: 15px;\n}\n.zd-file-input > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text .v-chip.v-size--x-small .chip-text {\n font-size: 12px;\n}\n.zd-file-input > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text .v-chip .chip-remove-icon {\n font-size: var(--icon-size-small);\n margin-left: var(--spacing-2);\n}\n.zd-file-input > .v-input__control > .v-input__slot > .v-text-field__slot input {\n padding: 0;\n}\n.zd-file-input.zd-dense > .v-input__control > .v-input__slot > .v-text-field__slot {\n min-height: 24px;\n}\n.zd-file-input.zd-dense > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text {\n padding: 0 var(--spacing-1);\n}\n.zd-file-input.zd-dense > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text .v-chip {\n height: 16px;\n line-height: 15px;\n font-size: 11px;\n margin-bottom: 0.2rem;\n margin-top: 0.2rem;\n}\n.zd-file-input.zd-dense > .v-input__control > .v-input__slot > .v-text-field__slot input {\n padding: 0;\n}\n.zd-file-input.with-drag-area {\n padding-top: calc(var(--drag-area-height) + 17px);\n}\n.zd-file-input.with-drag-area.zd-no-label {\n padding-top: calc(var(--drag-area-height) + 5px);\n}\n.zd-file-input.with-drag-area.zd-no-label > .v-input__control > .v-input__slot > .v-text-field__slot .v-label {\n height: calc(var(--drag-area-height) + 5px);\n top: calc(-5px - var(--drag-area-height));\n}\n.zd-file-input.with-drag-area.v-text-field--reverse > .v-input__control > .v-input__slot > .v-text-field__slot .v-label {\n text-align: right;\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label {\n height: calc(var(--drag-area-height) + 25px);\n top: calc(-25px - var(--drag-area-height));\n right: 0 !important;\n left: 0 !important;\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-label {\n height: 20px;\n display: block;\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-drag-area {\n width: 100%;\n height: var(--drag-area-height);\n border: dashed var(--regular) #c4c4c4;\n position: relative;\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-drag-area.dragging {\n background: #7c7c7c;\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-drag-area .zd-file-input-drag-content {\n text-align: center;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n.zd-file-input.with-drag-area > .v-input__control > .v-input__slot > .v-text-field__slot .v-label .zd-file-input-drag-area .zd-file-input-drag-content > span {\n display: block;\n}\n.zd-file-input.v-input--is-disabled > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text {\n opacity: 0.5;\n}\n.zd-file-input.v-text-field--reverse > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text {\n flex-direction: row-reverse;\n}\n.zd-file-input.theme--light > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text .v-chip {\n background-color: #e0e0e0;\n color: rgba(0, 0, 0, 0.87);\n}\n.zd-file-input.theme--dark > .v-input__control > .v-input__slot > .v-text-field__slot .v-file-input__text .v-chip {\n background: #555;\n color: #fff;\n}", map: undefined, media: undefined });
|
43822
43857
|
|
43823
43858
|
};
|
43824
43859
|
/* scoped */
|
@@ -44253,10 +44288,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44253
44288
|
],
|
44254
44289
|
ref: "form",
|
44255
44290
|
class: ["zd-form", _vm.instance.cssClass],
|
44256
|
-
style:
|
44257
|
-
|
44291
|
+
style: Object.assign(
|
44292
|
+
{},
|
44258
44293
|
{ height: _vm.$formatSize(_vm.instance.height) },
|
44259
|
-
|
44294
|
+
_vm.$styleObject(_vm.instance.cssStyle)
|
44295
|
+
),
|
44260
44296
|
attrs: { id: _vm.instance.name, name: _vm.instance.name },
|
44261
44297
|
on: {
|
44262
44298
|
submit: function ($event) {
|
@@ -44366,7 +44402,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44366
44402
|
}
|
44367
44403
|
};
|
44368
44404
|
__decorate([
|
44369
|
-
PropWatch({ type: String,
|
44405
|
+
PropWatch({ type: String, default: '' }),
|
44370
44406
|
__metadata("design:type", String)
|
44371
44407
|
], ZdFrame.prototype, "path", void 0);
|
44372
44408
|
__decorate([
|
@@ -44434,11 +44470,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44434
44470
|
},
|
44435
44471
|
],
|
44436
44472
|
class: ["zd-frame", _vm.instance.cssClass],
|
44437
|
-
style: Object.assign(
|
44438
|
-
|
44439
|
-
|
44440
|
-
|
44441
|
-
|
44473
|
+
style: Object.assign(
|
44474
|
+
{},
|
44475
|
+
{
|
44476
|
+
height: _vm.$formatSize(_vm.instance.height),
|
44477
|
+
minHeight: _vm.$formatSize(_vm.instance.minHeight),
|
44478
|
+
maxHeight: _vm.$formatSize(_vm.instance.maxHeight),
|
44479
|
+
},
|
44480
|
+
_vm.$styleObject(_vm.instance.cssStyle)
|
44481
|
+
),
|
44442
44482
|
attrs: { id: _vm.instance.name },
|
44443
44483
|
},
|
44444
44484
|
[
|
@@ -44465,7 +44505,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44465
44505
|
/* style */
|
44466
44506
|
const __vue_inject_styles__$Y = function (inject) {
|
44467
44507
|
if (!inject) return
|
44468
|
-
inject("data-v-
|
44508
|
+
inject("data-v-2c5980a4_0", { source: ".zd-frame {\n height: inherit;\n width: inherit;\n}\n.zd-frame .v-progress-circular {\n left: 50%;\n transform: translateX(-50%);\n}", map: undefined, media: undefined });
|
44469
44509
|
|
44470
44510
|
};
|
44471
44511
|
/* scoped */
|
@@ -44950,15 +44990,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44950
44990
|
'--current-row-hover-color': `${ThemeColor(this, 'primary')}30`,
|
44951
44991
|
};
|
44952
44992
|
}
|
44953
|
-
checkOverflow(event) {
|
44993
|
+
checkOverflow(event, columnOverflow) {
|
44954
44994
|
const target = event.target;
|
44955
|
-
const
|
44995
|
+
const overflow = target.clientWidth < target.scrollWidth;
|
44956
44996
|
const tooltip = this.$refs.gridTooltip;
|
44957
|
-
if (
|
44997
|
+
if ((overflow && tooltip)
|
44998
|
+
|| (Number.isInteger(columnOverflow) && tooltip)) {
|
44999
|
+
tooltip.classList.add('zd-grid-cell-tooltip-show');
|
44958
45000
|
const value = target.innerText;
|
44959
45001
|
const targetBoundingRect = target.getBoundingClientRect();
|
44960
45002
|
tooltip.innerText = value;
|
44961
|
-
tooltip.classList.add('zd-grid-cell-tooltip-show');
|
44962
45003
|
tooltip.style.top = `${targetBoundingRect.bottom}px`;
|
44963
45004
|
tooltip.style.left = `${targetBoundingRect.left}px`;
|
44964
45005
|
}
|
@@ -45103,10 +45144,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45103
45144
|
],
|
45104
45145
|
style: [
|
45105
45146
|
_vm.cssColorVars,
|
45106
|
-
_vm.instance.cssStyle,
|
45107
45147
|
_vm.instance.gridHeight
|
45108
45148
|
? { height: _vm.$formatSize(_vm.instance.gridHeight) }
|
45109
45149
|
: {},
|
45150
|
+
_vm.$styleObject(_vm.instance.cssStyle),
|
45110
45151
|
],
|
45111
45152
|
attrs: {
|
45112
45153
|
id: _vm.instance.name,
|
@@ -45687,7 +45728,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45687
45728
|
on: {
|
45688
45729
|
mouseenter: function ($event) {
|
45689
45730
|
return _vm.checkOverflow(
|
45690
|
-
$event
|
45731
|
+
$event,
|
45732
|
+
column.overflow
|
45691
45733
|
)
|
45692
45734
|
},
|
45693
45735
|
mouseleave: function ($event) {
|
@@ -45866,7 +45908,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
45866
45908
|
/* style */
|
45867
45909
|
const __vue_inject_styles__$W = function (inject) {
|
45868
45910
|
if (!inject) return
|
45869
|
-
inject("data-v-
|
45911
|
+
inject("data-v-1dfd9c3b_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined });
|
45870
45912
|
|
45871
45913
|
};
|
45872
45914
|
/* scoped */
|
@@ -46067,7 +46109,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
46067
46109
|
{ "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
|
46068
46110
|
{ "zd-grid-loading": _vm.instance.datasource.loading },
|
46069
46111
|
],
|
46070
|
-
style: [_vm.cssColorVars, _vm.instance.cssStyle],
|
46112
|
+
style: [_vm.cssColorVars, _vm.$styleObject(_vm.instance.cssStyle)],
|
46071
46113
|
attrs: {
|
46072
46114
|
id: _vm.instance.name,
|
46073
46115
|
dark: _vm.instance.dark,
|
@@ -46994,8 +47036,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
46994
47036
|
/* style */
|
46995
47037
|
const __vue_inject_styles__$V = function (inject) {
|
46996
47038
|
if (!inject) return
|
46997
|
-
inject("data-v-
|
46998
|
-
,inject("data-v-
|
47039
|
+
inject("data-v-4dde3c74_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
47040
|
+
,inject("data-v-4dde3c74_1", { source: ".zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-inline-edit {\n justify-content: flex-end;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-inline-edit {\n justify-content: center;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon {\n display: flex;\n font-size: 18px;\n margin-right: var(--spacing-1);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
|
46999
47041
|
|
47000
47042
|
};
|
47001
47043
|
/* scoped */
|
@@ -51494,9 +51536,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
51494
51536
|
const threshold = 1;
|
51495
51537
|
if ((Math.abs(dy) + Math.abs(dx)) >= threshold) {
|
51496
51538
|
const top = toNum(this.dragModal.style.top);
|
51497
|
-
this.dragModal.style.top = toPx(top + dy);
|
51498
51539
|
const left = toNum(this.dragModal.style.left);
|
51499
|
-
|
51540
|
+
if ((window.innerHeight / 2) - (top + dy) >= (this.dragModal.offsetHeight / 2)
|
51541
|
+
&& (window.innerHeight / 2) + (top + dy) >= (this.dragModal.offsetHeight / 2)) {
|
51542
|
+
this.dragModal.style.top = toPx(top + dy);
|
51543
|
+
}
|
51544
|
+
if ((window.innerWidth / 2) + 2 * (left + dx) >= 4
|
51545
|
+
&& (window.innerWidth / 2) - 2 * (left + dx) >= 0) {
|
51546
|
+
this.dragModal.style.left = toPx(left + dx);
|
51547
|
+
}
|
51500
51548
|
this.x = event.clientX;
|
51501
51549
|
this.y = event.clientY;
|
51502
51550
|
}
|
@@ -52328,7 +52376,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
52328
52376
|
maxWidth: _vm.parseSizeToString(_vm.instance.maxWidth),
|
52329
52377
|
minWidth: _vm.parseSizeToString(_vm.instance.minWidth),
|
52330
52378
|
},
|
52331
|
-
_vm.instance.cssStyle,
|
52379
|
+
_vm.$styleObject(_vm.instance.cssStyle),
|
52332
52380
|
],
|
52333
52381
|
on: {
|
52334
52382
|
input: function ($event) {
|
@@ -52439,7 +52487,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
52439
52487
|
/* style */
|
52440
52488
|
const __vue_inject_styles__$o = function (inject) {
|
52441
52489
|
if (!inject) return
|
52442
|
-
inject("data-v-
|
52490
|
+
inject("data-v-136b22b0_0", { source: ".v-input.v-input__slider.zd-range-slider {\n margin-top: var(--spacing-1);\n padding-top: var(--spacing-3);\n}\n.v-input.v-input__slider.zd-range-slider .v-input__control .v-messages {\n display: none;\n}\n.v-input.v-input__slider.zd-range-slider .v-input__control .v-input__slot {\n margin: 0;\n}\n.v-input.v-input__slider.zd-range-slider .v-input__control .v-input__slot label.v-label {\n position: absolute !important;\n}\n.v-input.v-input__slider.zd-range-slider .v-input__control .v-input__slot .v-slider .v-slider__thumb:before {\n left: -13px;\n top: -13px;\n}\n.v-input.v-input__slider.zd-range-slider .v-input__control .v-input__slot .v-slider.v-slider--horizontal {\n min-height: 10px;\n}\n.v-input.v-input__slider.zd-range-slider .v-input__control .v-input__slot .v-slider__tick-label {\n font-size: var(--zd-font-body1-size);\n color: var(--zd-font-color);\n}\n.v-input.v-input__slider.zd-range-slider.v-input__slider--inverse-label .v-input__control .v-input__slot label.v-label {\n left: auto !important;\n right: 0 !important;\n}\n.v-input.v-input__slider.zd-range-slider .v-slider__thumb {\n width: 10px;\n height: 10px;\n left: -5px;\n}\n.zd-range-limits {\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n font-size: 9px;\n display: flex;\n justify-content: space-between;\n padding-top: var(--spacing-1);\n}\n.zd-thumb-no-customize .v-slider__thumb-container .v-slider__thumb-label-container .v-slider__thumb-label {\n background-color: transparent !important;\n color: var(--zd-font-color);\n padding: 30px 0 0 30px;\n width: max-content !important;\n font-size: 9px;\n}", map: undefined, media: undefined });
|
52443
52491
|
|
52444
52492
|
};
|
52445
52493
|
/* scoped */
|
@@ -53531,7 +53579,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53531
53579
|
this.focused = false;
|
53532
53580
|
}
|
53533
53581
|
dataChange() {
|
53534
|
-
this.instance.
|
53582
|
+
if (!this.instance.fetchOnDemand)
|
53583
|
+
this.instance.createNodesFromDatasource();
|
53535
53584
|
}
|
53536
53585
|
onOpen() {
|
53537
53586
|
this.instance.open(this.$el);
|
@@ -53577,6 +53626,13 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53577
53626
|
this.instance.validate();
|
53578
53627
|
this.instance.blur(event, this.$el);
|
53579
53628
|
}
|
53629
|
+
loadOptions({ action, parentNode, callback }) {
|
53630
|
+
if (action === 'LOAD_CHILDREN_OPTIONS') {
|
53631
|
+
this.instance.loadChildren(parentNode)
|
53632
|
+
.then(callback)
|
53633
|
+
.catch(() => { var _a; return callback(new Error(core.I18n.translate(((_a = this.instance.datasource) === null || _a === void 0 ? void 0 : _a.error) || ''))); });
|
53634
|
+
}
|
53635
|
+
}
|
53580
53636
|
};
|
53581
53637
|
__decorate([
|
53582
53638
|
vuePropertyDecorator.Prop({ type: [Array, String], default: () => [] }),
|
@@ -53658,6 +53714,10 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53658
53714
|
vuePropertyDecorator.Prop({ type: [String, Array], default: () => ([]) }),
|
53659
53715
|
__metadata("design:type", Array)
|
53660
53716
|
], ZdSelectTree.prototype, "disabledItems", void 0);
|
53717
|
+
__decorate([
|
53718
|
+
vuePropertyDecorator.Prop({ type: [Boolean, String], default: false }),
|
53719
|
+
__metadata("design:type", Object)
|
53720
|
+
], ZdSelectTree.prototype, "fetchOnDemand", void 0);
|
53661
53721
|
__decorate([
|
53662
53722
|
vuePropertyDecorator.Watch('instance.datasource.data.length'),
|
53663
53723
|
__metadata("design:type", Function),
|
@@ -53794,6 +53854,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53794
53854
|
showCountOf: _vm.instance.showCountOf,
|
53795
53855
|
valueFormat: _vm.instance.returnObject ? "object" : "id",
|
53796
53856
|
disableBranchNodes: _vm.instance.disableParentNode,
|
53857
|
+
loadOptions: _vm.loadOptions,
|
53797
53858
|
},
|
53798
53859
|
on: {
|
53799
53860
|
open: _vm.onOpen,
|
@@ -53890,7 +53951,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
53890
53951
|
/* style */
|
53891
53952
|
const __vue_inject_styles__$j = function (inject) {
|
53892
53953
|
if (!inject) return
|
53893
|
-
inject("data-v-
|
53954
|
+
inject("data-v-9389ad0a_0", { source: ".zd-select-tree-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.zd-select-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n margin-top: var(--spacing-1);\n}\n.zd-select-tree.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item {\n background: #555;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item, .zd-select-tree.theme--dark .vue-treeselect__multi-value-item .vue-treeselect__value-remove {\n color: #fff;\n}\n.zd-select-tree .vue-treeselect__control {\n border-radius: var(--border);\n height: 34px;\n}\n.zd-select-tree .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 32px;\n}\n.zd-select-tree .vue-treeselect__control-arrow-container svg {\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\n}\n.zd-select-tree .zd-select-tree-label {\n font-weight: var(--zd-font-body1-weight);\n pointer-events: none;\n line-height: 1rem;\n position: relative;\n top: -1px;\n}\n.zd-select-tree .zd-select-tree-label p {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-select-tree.zd-select-tree-disabled {\n opacity: 0.5;\n}\n.zd-select-tree .vue-treeselect__single-value, .zd-select-tree input {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n cursor: text;\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-label {\n color: var(--v-error-base) !important;\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-details {\n color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control {\n border-color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control-arrow-container svg, .zd-select-tree.zd-select-tree-error .vue-treeselect__x-container svg {\n color: var(--v-error-base);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-select-tree-error .zd-select-tree-append-outer-icon {\n color: var(--v-error-base);\n}\n.zd-select-tree .vue-treeselect--focused .vue-treeselect__control-arrow-container svg, .zd-select-tree .vue-treeselect--focused .vue-treeselect__x-container svg {\n color: var(--v-primary-base);\n}\n.zd-select-tree .zd-select-tree-details {\n min-height: 13px;\n font-size: 11px;\n display: flex;\n flex: 1 0 auto;\n max-width: 100%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.6);\n line-height: 1;\n position: relative;\n top: 1px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-details {\n min-height: 11px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control {\n height: 24px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 22px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense .zd-select-tree-append-outer-icon {\n margin-top: 20px;\n}\n.zd-select-tree.zd-dense.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 4px;\n}\n.zd-select-tree.zd-no-helper .zd-select-tree-details {\n display: none;\n}\n.zd-select-tree.zd-no-border .vue-treeselect__control {\n border: none !important;\n}\n.zd-select-tree .zd-select-tree-container {\n display: flex;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon, .zd-select-tree .zd-select-tree-append-outer-icon {\n font-size: var(--icon-size-small);\n margin-top: 25px;\n height: 16px;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon {\n margin-right: 8px;\n}\n.zd-select-tree.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 10px;\n}\n.zd-select-tree .zd-select-tree-append-outer-icon {\n margin-left: 8px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__label {\n padding-left: 10px;\n}\n.vue-treeselect__menu-container .vue-treeselect__icon-warning {\n display: none;\n}\n.vue-treeselect__menu-container .vue-treeselect__option--disabled {\n opacity: 0.5;\n}\n.vue-treeselect__menu > * {\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 .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 {\n position: relative;\n display: flex;\n}\n.vue-treeselect__menu-container .vue-treeselect__option-arrow-container {\n align-items: center;\n display: flex;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option::before {\n background-color: #000;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option:hover::before {\n opacity: 0.04;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.1;\n}\n.vue-treeselect__menu-container.theme--dark > div {\n background-color: #1e1e1e;\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__label {\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--highlight {\n background-color: transparent;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option::before {\n background-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option:hover::before {\n opacity: 0.08;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.2;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__checkbox:not(.vue-treeselect__checkbox--checked):not(.vue-treeselect__checkbox--indeterminate) {\n background-color: transparent;\n border-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--selected .vue-treeselect__count {\n opacity: 0.8;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__menu {\n border-color: #1e1e1e;\n}", map: undefined, media: undefined });
|
53894
53955
|
|
53895
53956
|
};
|
53896
53957
|
/* scoped */
|
@@ -54061,6 +54122,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
54061
54122
|
showCountOf: _vm.instance.showCountOf,
|
54062
54123
|
valueFormat: _vm.instance.returnObject ? "object" : "id",
|
54063
54124
|
valueConsistsOf: _vm.instance.valueConsistsOf,
|
54125
|
+
loadOptions: _vm.loadOptions,
|
54064
54126
|
},
|
54065
54127
|
on: {
|
54066
54128
|
open: _vm.onOpen,
|
@@ -54156,8 +54218,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
54156
54218
|
/* style */
|
54157
54219
|
const __vue_inject_styles__$i = function (inject) {
|
54158
54220
|
if (!inject) return
|
54159
|
-
inject("data-v-
|
54160
|
-
,inject("data-v-
|
54221
|
+
inject("data-v-054c20a4_0", { source: ".zd-select-tree-loading {\n margin-top: -1px;\n width: calc(100% - 2px);\n margin-left: 1px;\n}\n.zd-select-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-family: var(--font-family);\n margin-top: var(--spacing-1);\n}\n.zd-select-tree.theme--dark .vue-treeselect__control {\n background-color: #1e1e1e;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item {\n background: #555;\n}\n.zd-select-tree.theme--dark .vue-treeselect__multi-value-item, .zd-select-tree.theme--dark .vue-treeselect__multi-value-item .vue-treeselect__value-remove {\n color: #fff;\n}\n.zd-select-tree .vue-treeselect__control {\n border-radius: var(--border);\n height: 34px;\n}\n.zd-select-tree .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 32px;\n}\n.zd-select-tree .vue-treeselect__control-arrow-container svg {\n transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;\n}\n.zd-select-tree .zd-select-tree-label {\n font-weight: var(--zd-font-body1-weight);\n pointer-events: none;\n line-height: 1rem;\n position: relative;\n top: -1px;\n}\n.zd-select-tree .zd-select-tree-label p {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-select-tree.zd-select-tree-disabled {\n opacity: 0.5;\n}\n.zd-select-tree .vue-treeselect__single-value, .zd-select-tree input {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n color: var(--zd-font-color);\n cursor: text;\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-label {\n color: var(--v-error-base) !important;\n animation: v-shake 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-details {\n color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control {\n border-color: var(--v-error-base) !important;\n}\n.zd-select-tree.zd-select-tree-error .vue-treeselect__control-arrow-container svg, .zd-select-tree.zd-select-tree-error .vue-treeselect__x-container svg {\n color: var(--v-error-base);\n}\n.zd-select-tree.zd-select-tree-error .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-select-tree-error .zd-select-tree-append-outer-icon {\n color: var(--v-error-base);\n}\n.zd-select-tree .vue-treeselect--focused .vue-treeselect__control-arrow-container svg, .zd-select-tree .vue-treeselect--focused .vue-treeselect__x-container svg {\n color: var(--v-primary-base);\n}\n.zd-select-tree .zd-select-tree-details {\n min-height: 13px;\n font-size: 11px;\n display: flex;\n flex: 1 0 auto;\n max-width: 100%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.6);\n line-height: 1;\n position: relative;\n top: 1px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-details {\n min-height: 11px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control {\n height: 24px;\n}\n.zd-select-tree.zd-dense .vue-treeselect__control .vue-treeselect__single-value {\n line-height: 22px;\n}\n.zd-select-tree.zd-dense .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense .zd-select-tree-append-outer-icon {\n margin-top: 20px;\n}\n.zd-select-tree.zd-dense.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-dense.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 4px;\n}\n.zd-select-tree.zd-no-helper .zd-select-tree-details {\n display: none;\n}\n.zd-select-tree.zd-no-border .vue-treeselect__control {\n border: none !important;\n}\n.zd-select-tree .zd-select-tree-container {\n display: flex;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon, .zd-select-tree .zd-select-tree-append-outer-icon {\n font-size: var(--icon-size-small);\n margin-top: 25px;\n height: 16px;\n}\n.zd-select-tree .zd-select-tree-prepend-outer-icon {\n margin-right: 8px;\n}\n.zd-select-tree.zd-no-label .zd-select-tree-prepend-outer-icon, .zd-select-tree.zd-no-label .zd-select-tree-append-outer-icon {\n margin-top: 10px;\n}\n.zd-select-tree .zd-select-tree-append-outer-icon {\n margin-left: 8px;\n}\n.vue-treeselect--searchable .vue-treeselect__multi-value-item-container {\n margin-top: 3px;\n}\n.vue-treeselect--multi :not(.vue-treeselect--searchable) .vue-treeselect__multi-value-item-container {\n margin: 3px 0;\n}\n.vue-treeselect__label {\n padding-left: 10px;\n}\n.vue-treeselect__menu-container .vue-treeselect__icon-warning {\n display: none;\n}\n.vue-treeselect__menu-container .vue-treeselect__option--disabled {\n opacity: 0.5;\n}\n.vue-treeselect__menu > * {\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 .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 {\n position: relative;\n display: flex;\n}\n.vue-treeselect__menu-container .vue-treeselect__option-arrow-container {\n align-items: center;\n display: flex;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option::before {\n background-color: #000;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__option:hover::before {\n opacity: 0.04;\n}\n.vue-treeselect__menu-container.theme--light .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.1;\n}\n.vue-treeselect__menu-container.theme--dark > div {\n background-color: #1e1e1e;\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__label {\n color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--highlight {\n background-color: transparent;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option::before {\n background-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option:hover::before {\n opacity: 0.08;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__list-item > div.vue-treeselect__option--selected::before {\n opacity: 0.2;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__checkbox:not(.vue-treeselect__checkbox--checked):not(.vue-treeselect__checkbox--indeterminate) {\n background-color: transparent;\n border-color: #fff;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__option--selected .vue-treeselect__count {\n opacity: 0.8;\n}\n.vue-treeselect__menu-container.theme--dark .vue-treeselect__menu {\n border-color: #1e1e1e;\n}", map: undefined, media: undefined })
|
54222
|
+
,inject("data-v-054c20a4_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: 2px;\n padding-bottom: 2px;\n line-height: 15px;\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}", map: undefined, media: undefined });
|
54161
54223
|
|
54162
54224
|
};
|
54163
54225
|
/* scoped */
|
@@ -54695,7 +54757,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
54695
54757
|
},
|
54696
54758
|
_vm.cssVars
|
54697
54759
|
),
|
54698
|
-
_vm.instance.cssStyle,
|
54760
|
+
_vm.$styleObject(_vm.instance.cssStyle),
|
54699
54761
|
],
|
54700
54762
|
attrs: { id: _vm.instance.name, name: _vm.instance.name },
|
54701
54763
|
on: {
|
@@ -54711,7 +54773,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
54711
54773
|
/* style */
|
54712
54774
|
const __vue_inject_styles__$f = function (inject) {
|
54713
54775
|
if (!inject) return
|
54714
|
-
inject("data-v-
|
54776
|
+
inject("data-v-6e440529_0", { source: ".zd-svg-map svg {\n width: 100%;\n height: 100%;\n}\n.zd-svg-map:not(.no-area-color) path {\n fill: var(--area-color) !important;\n}\n.zd-svg-map:not(.no-hover-color) path:hover {\n fill: var(--area-hover-color) !important;\n}\n.zd-svg-map:not(.no-select-color) g.active path, .zd-svg-map:not(.no-select-color) path.active {\n fill: var(--area-select-color) !important;\n}", map: undefined, media: undefined });
|
54715
54777
|
|
54716
54778
|
};
|
54717
54779
|
/* scoped */
|
@@ -55107,10 +55169,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
55107
55169
|
},
|
55108
55170
|
],
|
55109
55171
|
class: ["zd-tabs", _vm.instance.cssClass],
|
55110
|
-
style:
|
55111
|
-
|
55172
|
+
style: Object.assign(
|
55173
|
+
{},
|
55112
55174
|
{ height: _vm.$formatSize(_vm.instance.height) },
|
55113
|
-
|
55175
|
+
_vm.$styleObject(_vm.instance.cssStyle)
|
55176
|
+
),
|
55114
55177
|
attrs: { id: _vm.instance.name, name: _vm.instance.name },
|
55115
55178
|
},
|
55116
55179
|
[
|
@@ -55235,11 +55298,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
55235
55298
|
/* style */
|
55236
55299
|
const __vue_inject_styles__$c = function (inject) {
|
55237
55300
|
if (!inject) return
|
55238
|
-
inject("data-v-
|
55301
|
+
inject("data-v-bc0e39ea_0", { source: ".zd-tabs[data-v-bc0e39ea] {\n display: flex;\n flex-direction: column;\n}\n.zd-tabs[data-v-bc0e39ea] .v-tabs-bar,\n.zd-tabs[data-v-bc0e39ea] .v-tabs-items {\n background-color: transparent;\n}\n.zd-tabs[data-v-bc0e39ea] .v-tabs-bar {\n height: auto;\n}\n.zd-tabs[data-v-bc0e39ea] .v-tabs-bar .v-tabs-slider-wrapper {\n bottom: -1px;\n}\n.zd-tabs[data-v-bc0e39ea] .v-tabs-bar__content {\n border-bottom: solid 1px var(--v-grey-lighten4);\n}\n.zd-tabs[data-v-bc0e39ea] .v-tabs {\n margin-bottom: var(--spacing-4);\n}\n.zd-tabs[data-v-bc0e39ea] .v-tabs .v-slide-group__next,\n.zd-tabs[data-v-bc0e39ea] .v-tabs .v-slide-group__prev {\n flex-basis: 30px;\n min-width: 30px;\n}\n.zd-tabs[data-v-bc0e39ea] .v-tabs .v-slide-group__next .v-icon,\n.zd-tabs[data-v-bc0e39ea] .v-tabs .v-slide-group__prev .v-icon {\n font-size: 18px;\n}\n.zd-tabs[data-v-bc0e39ea] .v-tabs {\n flex-grow: 0;\n}\n.zd-tabs[data-v-bc0e39ea] .v-tabs-items {\n flex-grow: 1;\n}\n.zd-tabs[data-v-bc0e39ea] .v-tabs-items .v-window__container {\n height: 100% !important;\n}", map: undefined, media: undefined });
|
55239
55302
|
|
55240
55303
|
};
|
55241
55304
|
/* scoped */
|
55242
|
-
const __vue_scope_id__$c = "data-v-
|
55305
|
+
const __vue_scope_id__$c = "data-v-bc0e39ea";
|
55243
55306
|
/* module identifier */
|
55244
55307
|
const __vue_module_identifier__$c = undefined;
|
55245
55308
|
/* functional template */
|
@@ -55417,7 +55480,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
55417
55480
|
],
|
55418
55481
|
key: _vm.index,
|
55419
55482
|
staticClass: "zd-tabs-tab-item",
|
55420
|
-
style:
|
55483
|
+
style: _vm.instance.cssStyle,
|
55421
55484
|
attrs: { value: _vm.index, dark: _vm.dark, light: _vm.light },
|
55422
55485
|
},
|
55423
55486
|
[
|
@@ -55456,11 +55519,11 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
55456
55519
|
/* style */
|
55457
55520
|
const __vue_inject_styles__$a = function (inject) {
|
55458
55521
|
if (!inject) return
|
55459
|
-
inject("data-v-
|
55522
|
+
inject("data-v-3c331c0a_0", { source: ".zd-tabs-tab-item[data-v-3c331c0a] {\n transition: none;\n}\n.zd-tabs-tab-item > .container[data-v-3c331c0a] {\n padding: 0;\n}\n.zd-tabs .zd-tabs-tab-item[data-v-3c331c0a] {\n height: 100%;\n}\n.zd-tabs .zd-tabs-tab-item .zd-tabs-tab-item-container-flex[data-v-3c331c0a] {\n display: flex;\n flex-direction: column;\n}\n.zd-tabs .zd-tabs-tab-item .container[data-v-3c331c0a] {\n height: 100%;\n}", map: undefined, media: undefined });
|
55460
55523
|
|
55461
55524
|
};
|
55462
55525
|
/* scoped */
|
55463
|
-
const __vue_scope_id__$a = "data-v-
|
55526
|
+
const __vue_scope_id__$a = "data-v-3c331c0a";
|
55464
55527
|
/* module identifier */
|
55465
55528
|
const __vue_module_identifier__$a = undefined;
|
55466
55529
|
/* functional template */
|
@@ -56863,7 +56926,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56863
56926
|
{ "theme--dark": _vm.$isDark(this) },
|
56864
56927
|
{ "theme--light": _vm.$isLight(this) },
|
56865
56928
|
],
|
56866
|
-
style: [_vm.cssColorVars
|
56929
|
+
style: [_vm.cssColorVars].concat(_vm.$styleObject(_vm.instance.cssStyle)),
|
56867
56930
|
attrs: { id: _vm.instance.name },
|
56868
56931
|
},
|
56869
56932
|
[
|
@@ -56914,6 +56977,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56914
56977
|
fn: function (ref) {
|
56915
56978
|
var node = ref.node;
|
56916
56979
|
return [
|
56980
|
+
_c("span", { staticClass: "align" }),
|
56981
|
+
_vm._v(" "),
|
56917
56982
|
_vm.instance.checkbox
|
56918
56983
|
? _c("zd-tree-checkbox", {
|
56919
56984
|
attrs: {
|
@@ -56996,7 +57061,17 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
56996
57061
|
return _c(
|
56997
57062
|
comp.component,
|
56998
57063
|
_vm._b(
|
56999
|
-
{
|
57064
|
+
{
|
57065
|
+
key: index,
|
57066
|
+
tag: "component",
|
57067
|
+
class: [
|
57068
|
+
"item-title",
|
57069
|
+
{
|
57070
|
+
"has-children":
|
57071
|
+
node.children.length,
|
57072
|
+
},
|
57073
|
+
],
|
57074
|
+
},
|
57000
57075
|
"component",
|
57001
57076
|
comp,
|
57002
57077
|
false
|
@@ -57121,7 +57196,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
57121
57196
|
/* style */
|
57122
57197
|
const __vue_inject_styles__$2 = function (inject) {
|
57123
57198
|
if (!inject) return
|
57124
|
-
inject("data-v-
|
57199
|
+
inject("data-v-38571f58_0", { source: ".zd-tree {\n color: var(--zd-font-color);\n font-size: var(--zd-font-body1-size);\n font-weight: normal;\n}\n.zd-tree.theme--light .sl-vue-tree-title {\n color: var(--zd-font-color);\n}\n.zd-tree.theme--light .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #eee;\n}\n.zd-tree.theme--dark .sl-vue-tree-title {\n color: #fff;\n}\n.zd-tree.theme--dark .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item:hover {\n background: #616161;\n}\n.zd-tree .sl-vue-tree-title {\n display: flex;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node {\n padding-top: 3px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-node-item {\n height: 30px;\n line-height: 30px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item {\n background-color: var(--current-row-color);\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node.sl-vue-tree-selected > .sl-vue-tree-node-item .sl-vue-tree-toggle .v-icon {\n color: var(--zd-font-color);\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-node .sl-vue-tree-toggle span .v-icon {\n margin: 0px 1px 0px 1px;\n padding-bottom: 1.4px;\n}\n.zd-tree .sl-vue-tree-nodes-list .sl-vue-tree-gap {\n width: 32px;\n}\n.zd-tree .sl-vue-tree-nodes-list .item-title.has-children {\n font-weight: 700;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align {\n padding-left: 26px;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align.is-clickable {\n cursor: pointer;\n}\n.zd-tree .sl-vue-tree-node-item.sl-vue-tree-node-is-leaf .sl-vue-tree-title .align.v-icon {\n padding-left: 4px;\n}\n.zd-tree .sl-vue-tree-node-item .zd-tree-checkbox {\n padding: 0px 3px 3px 0px;\n}", map: undefined, media: undefined });
|
57125
57200
|
|
57126
57201
|
};
|
57127
57202
|
/* scoped */
|
@@ -57237,7 +57312,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
57237
57312
|
{ "theme--light": _vm.$isLight(this) },
|
57238
57313
|
{ "zd-grid-loading": _vm.instance.datasource.loading },
|
57239
57314
|
],
|
57240
|
-
style: [_vm.cssColorVars, _vm.instance.cssStyle],
|
57315
|
+
style: [_vm.cssColorVars, _vm.$styleObject(_vm.instance.cssStyle)],
|
57241
57316
|
attrs: {
|
57242
57317
|
id: _vm.instance.name,
|
57243
57318
|
"fixed-header": "",
|
@@ -58026,8 +58101,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58026
58101
|
/* style */
|
58027
58102
|
const __vue_inject_styles__$1 = function (inject) {
|
58028
58103
|
if (!inject) return
|
58029
|
-
inject("data-v-
|
58030
|
-
,inject("data-v-
|
58104
|
+
inject("data-v-51de25ce_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
58105
|
+
,inject("data-v-51de25ce_1", { source: ".zd-tree-grid.theme--light tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-tree-grid.theme--dark tbody td.zd-table-cell {\n color: #fff;\n}\n.zd-tree-grid tbody td.zd-table-cell.first {\n padding-left: 5px !important;\n}\n.zd-tree-grid tbody td.zd-table-cell .zd-table-cell-text .search-result {\n background: var(--v-grey-lighten4);\n}\n.zd-tree-grid .zd-tree-grid-expand {\n display: inline-block;\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid .zd-tree-grid-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level10 {\n width: 200px;\n}", map: undefined, media: undefined });
|
58031
58106
|
|
58032
58107
|
};
|
58033
58108
|
/* scoped */
|
@@ -58228,7 +58303,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
58228
58303
|
{ "zd-grid-flex": _vm.instance.gridHeight || _vm.instance.gridMaxHeight },
|
58229
58304
|
{ "zd-grid-loading": _vm.instance.datasource.loading },
|
58230
58305
|
],
|
58231
|
-
style: [_vm.cssColorVars, _vm.instance.cssStyle],
|
58306
|
+
style: [_vm.cssColorVars, _vm.$styleObject(_vm.instance.cssStyle)],
|
58232
58307
|
attrs: {
|
58233
58308
|
id: _vm.instance.name,
|
58234
58309
|
"fixed-header": "",
|
@@ -59189,8 +59264,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
59189
59264
|
/* style */
|
59190
59265
|
const __vue_inject_styles__ = function (inject) {
|
59191
59266
|
if (!inject) return
|
59192
|
-
inject("data-v-
|
59193
|
-
,inject("data-v-
|
59267
|
+
inject("data-v-6ec9aad8_0", { source: ".zd-grid {\n outline: none;\n}\n.zd-grid-flex {\n display: flex;\n flex-direction: column;\n}\n.zd-grid-flex .v-data-table__wrapper {\n flex: 1;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-search {\n max-width: 200px;\n}\n.zd-grid table .zd-table-cell {\n transition: height 0.1s ease;\n}\n.zd-grid table .zd-table-cell.selectable {\n width: 40px !important;\n padding-right: var(--spacing-2) !important;\n max-width: 40px !important;\n padding-bottom: 0 !important;\n}\n.zd-grid table .zd-table-cell.selectable > div.zd-grid-header-checkbox {\n margin-top: -2px;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr:hover td.zd-table-cell.selectable .zd-grid-row-checkbox, .zd-grid table tbody tr.active td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 1;\n}\n.zd-grid table tbody tr.current {\n background: var(--current-row-color);\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid.v-data-table--dense table thead tr th.zd-table-cell {\n padding: 0 var(--spacing-2) var(--spacing-1) var(--spacing-2);\n height: 24px;\n}\n.zd-grid.v-data-table--dense table tbody tr td.zd-table-cell {\n padding: 0 var(--spacing-2);\n height: 29px;\n}\n.zd-grid.theme--light.v-data-table {\n background-color: transparent;\n}\n.zd-grid.theme--light table thead th.zd-table-cell {\n color: var(--zd-font-color) !important;\n}\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--indeterminate .v-icon,\n.zd-grid.theme--light table thead th.zd-table-cell.selectable .zd-grid-header-checkbox.v-input--is-label-active .v-icon {\n color: var(--v-primary-base);\n}\n.zd-grid.theme--light table tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-grid.theme--light table tbody tr:not(:last-child) td:not(.v-data-table__mobile-row) {\n border-bottom: solid var(--regular) var(--v-grey-lighten5);\n}\n.zd-grid.theme--light.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: 24px 0 0 0;\n display: flex;\n align-items: center;\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
59268
|
+
,inject("data-v-6ec9aad8_1", { source: ".zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable.text-right .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-inline-edit {\n justify-content: flex-end;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable.text-center .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-inline-edit {\n justify-content: center;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit {\n display: flex;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-table-cell-edit-icon .v-icon {\n display: flex;\n font-size: 18px;\n margin-right: var(--spacing-1);\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n padding: 0 8px;\n position: relative;\n display: block;\n height: 20px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:before, .zd-tree-grid-editable table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text.zd-table-cell-text-editable:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand {\n display: inline-block;\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid-editable .zd-tree-grid-editable-expand.level10 {\n width: 200px;\n}\n.zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-tree-grid-editable.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n height: 22px;\n max-height: 22px;\n}", map: undefined, media: undefined });
|
59194
59269
|
|
59195
59270
|
};
|
59196
59271
|
/* scoped */
|
@@ -59358,6 +59433,21 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
59358
59433
|
|
59359
59434
|
var isLightPlugin = (component) => (!component.$vuetify.theme.dark || component.instance.light);
|
59360
59435
|
|
59436
|
+
var styleObjectPlugin = (style) => {
|
59437
|
+
if (!style || typeof style !== 'string') {
|
59438
|
+
return style;
|
59439
|
+
}
|
59440
|
+
const objectStyle = {};
|
59441
|
+
const attributes = style.split(';');
|
59442
|
+
for (let i = 0; i < attributes.length; i += 1) {
|
59443
|
+
if (attributes[i]) {
|
59444
|
+
const entry = attributes[i].split(':');
|
59445
|
+
objectStyle[entry.splice(0, 1)[0].trim()] = entry.join(':').trim();
|
59446
|
+
}
|
59447
|
+
}
|
59448
|
+
return objectStyle;
|
59449
|
+
};
|
59450
|
+
|
59361
59451
|
// tslint:disable: variable-name
|
59362
59452
|
const VueTreeSelect = require('@zeedhi/zd-vue-treeselect');
|
59363
59453
|
const Hooper = require('hooper');
|
@@ -59498,6 +59588,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
59498
59588
|
Vue.prototype.$isDark = isDarkPlugin;
|
59499
59589
|
// isLight
|
59500
59590
|
Vue.prototype.$isLight = isLightPlugin;
|
59591
|
+
// styleObject
|
59592
|
+
Vue.prototype.$styleObject = styleObjectPlugin;
|
59501
59593
|
},
|
59502
59594
|
};
|
59503
59595
|
|