@zeedhi/vuetify 1.95.0 → 1.96.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 +407 -343
- package/dist/zd-vuetify.umd.js +407 -343
- package/package.json +2 -2
- package/types/components/zd-file-input/ZdFileInput.d.ts +1 -0
- package/types/components/zd-grid/subcomponents/cell/ZdGridEditableCell.d.ts +1 -1
- package/types/components/zd-grid/subcomponents/cell/ZdGridEditableCellContent.d.ts +1 -1
- package/types/components/zd-select/ZdSelect.d.ts +1 -1
- package/types/components/zd-select-multiple/ZdSelectMultiple.d.ts +3 -1
- package/types/mixins/editable-mixin/EditableMixin.d.ts +1 -1
package/dist/zd-vuetify.esm.js
CHANGED
@@ -44167,6 +44167,20 @@ let ZdFileInput = class ZdFileInput extends ZdTextInput$1 {
|
|
44167
44167
|
this.$el.addEventListener('dragover', this.inputFileDragOver);
|
44168
44168
|
this.$el.addEventListener('dragleave', this.inputFileDragLeave);
|
44169
44169
|
this.$el.addEventListener('drop', this.inputFileDrop);
|
44170
|
+
this.instance.setViewGetFileSizes(this.getFileSizes);
|
44171
|
+
}
|
44172
|
+
getFileSizes() {
|
44173
|
+
const input = this.$el.querySelector('input');
|
44174
|
+
if (input instanceof HTMLInputElement) {
|
44175
|
+
const fileInfo = input.files || [];
|
44176
|
+
const fileArray = Array.from(fileInfo);
|
44177
|
+
const files = {};
|
44178
|
+
fileArray.forEach((file) => {
|
44179
|
+
files[file.name] = file.size;
|
44180
|
+
});
|
44181
|
+
return files;
|
44182
|
+
}
|
44183
|
+
return {};
|
44170
44184
|
}
|
44171
44185
|
blur(event) {
|
44172
44186
|
this.instance.blur(event, this.$el);
|
@@ -46509,7 +46523,9 @@ var __vue_render__$15 = function () {
|
|
46509
46523
|
maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
|
46510
46524
|
minWidth: _vm.$formatSize(_vm.instance.minWidth),
|
46511
46525
|
"--overflow-y-style":
|
46512
|
-
_vm.instance.height !== "auto" ||
|
46526
|
+
_vm.instance.height !== "auto" ||
|
46527
|
+
_vm.instance.maxHeight !== "auto" ||
|
46528
|
+
_vm.instance.fillHeight
|
46513
46529
|
? "auto"
|
46514
46530
|
: "hidden",
|
46515
46531
|
},
|
@@ -47183,6 +47199,8 @@ var __vue_render__$15 = function () {
|
|
47183
47199
|
row: item,
|
47184
47200
|
rowStyle: rowStyle,
|
47185
47201
|
cellsApplied: cellsApplied,
|
47202
|
+
visibleValue:
|
47203
|
+
item[column.name],
|
47186
47204
|
hasUsingCellText: true,
|
47187
47205
|
},
|
47188
47206
|
on: {
|
@@ -47374,7 +47392,7 @@ __vue_render__$15._withStripped = true;
|
|
47374
47392
|
/* style */
|
47375
47393
|
const __vue_inject_styles__$15 = function (inject) {
|
47376
47394
|
if (!inject) return
|
47377
|
-
inject("data-v-6352aa7c_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-toolbar .zd-search {\n max-width: 200px;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\n overflow-y: var(--overflow-y-style);\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n}\n.zd-grid table .zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table .zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-center .zd-table-header-cell {\n justify-content: center;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action {\n z-index: 5;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action {\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 3;\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 td.zd-table-cell.zd-table-fixed-column {\n color: var(--v-primary-base) !important;\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid .zd-table-fixed-column.theme--light {\n background: #f7f7f7;\n}\n.zd-grid .zd-table-fixed-column.theme--dark {\n background: #3c3c3c;\n}\n.zd-grid:not(.zd-grid--cell-selection) tr.current {\n background: var(--current-row-color);\n}\n.zd-grid .zd-table-cell:focus-visible {\n outline: none;\n}\n.zd-grid .zd-table-cell.zd-table-cell--is-current {\n background: var(--current-row-color);\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.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined });
|
47395
|
+
inject("data-v-7fe96ef2_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-toolbar .zd-search {\n max-width: 200px;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\n overflow-y: var(--overflow-y-style);\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n}\n.zd-grid table .zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table .zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-center .zd-table-header-cell {\n justify-content: center;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action {\n z-index: 5;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action {\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 3;\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 td.zd-table-cell.zd-table-fixed-column {\n color: var(--v-primary-base) !important;\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid .zd-table-fixed-column.theme--light {\n background: #f7f7f7;\n}\n.zd-grid .zd-table-fixed-column.theme--dark {\n background: #3c3c3c;\n}\n.zd-grid:not(.zd-grid--cell-selection) tr.current {\n background: var(--current-row-color);\n}\n.zd-grid .zd-table-cell:focus-visible {\n outline: none;\n}\n.zd-grid .zd-table-cell.zd-table-cell--is-current {\n background: var(--current-row-color);\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.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined });
|
47378
47396
|
|
47379
47397
|
};
|
47380
47398
|
/* scoped */
|
@@ -47531,7 +47549,9 @@ var __vue_render__$14 = function () {
|
|
47531
47549
|
maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
|
47532
47550
|
minWidth: _vm.$formatSize(_vm.instance.minWidth),
|
47533
47551
|
"--overflow-y-style":
|
47534
|
-
_vm.instance.height !== "auto" ||
|
47552
|
+
_vm.instance.height !== "auto" ||
|
47553
|
+
_vm.instance.maxHeight !== "auto" ||
|
47554
|
+
_vm.instance.fillHeight
|
47535
47555
|
? "auto"
|
47536
47556
|
: "hidden",
|
47537
47557
|
},
|
@@ -48490,8 +48510,8 @@ __vue_render__$14._withStripped = true;
|
|
48490
48510
|
/* style */
|
48491
48511
|
const __vue_inject_styles__$14 = function (inject) {
|
48492
48512
|
if (!inject) return
|
48493
|
-
inject("data-v-40a8be52_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-toolbar .zd-search {\n max-width: 200px;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\n overflow-y: var(--overflow-y-style);\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n}\n.zd-grid table .zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table .zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-center .zd-table-header-cell {\n justify-content: center;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action {\n z-index: 5;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action {\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 3;\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 td.zd-table-cell.zd-table-fixed-column {\n color: var(--v-primary-base) !important;\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid .zd-table-fixed-column.theme--light {\n background: #f7f7f7;\n}\n.zd-grid .zd-table-fixed-column.theme--dark {\n background: #3c3c3c;\n}\n.zd-grid:not(.zd-grid--cell-selection) tr.current {\n background: var(--current-row-color);\n}\n.zd-grid .zd-table-cell:focus-visible {\n outline: none;\n}\n.zd-grid .zd-table-cell.zd-table-cell--is-current {\n background: var(--current-row-color);\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.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
48494
|
-
,inject("data-v-
|
48513
|
+
inject("data-v-0c48b9ab_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-toolbar .zd-search {\n max-width: 200px;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\n overflow-y: var(--overflow-y-style);\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n}\n.zd-grid table .zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table .zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-center .zd-table-header-cell {\n justify-content: center;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action {\n z-index: 5;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action {\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 3;\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 td.zd-table-cell.zd-table-fixed-column {\n color: var(--v-primary-base) !important;\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid .zd-table-fixed-column.theme--light {\n background: #f7f7f7;\n}\n.zd-grid .zd-table-fixed-column.theme--dark {\n background: #3c3c3c;\n}\n.zd-grid:not(.zd-grid--cell-selection) tr.current {\n background: var(--current-row-color);\n}\n.zd-grid .zd-table-cell:focus-visible {\n outline: none;\n}\n.zd-grid .zd-table-cell.zd-table-cell--is-current {\n background: var(--current-row-color);\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.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
48514
|
+
,inject("data-v-0c48b9ab_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-right .zd-table-cell-text, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-right .zd-table-cell-text {\n flex-direction: row-reverse !important;\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.text-center .zd-table-cell-text, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable.text-center .zd-table-cell-text {\n flex-direction: column !important;\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 flex: 1;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-inline-edit .zd-switch .v-input__slot, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-inline-edit .zd-switch .v-input__slot {\n margin-bottom: 0;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-grid-cell-content, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-grid-cell-content {\n flex: 1;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-edit-icon, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-edit-icon {\n align-self: center;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-edit-icon .v-icon, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .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: flex;\n flex: 1;\n height: 20px;\n flex-direction: row !important;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n content: \"\";\n position: absolute;\n width: 1px;\n height: var(--spacing-1);\n bottom: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before {\n left: 0;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-column-editable .zd-table-cell-text:after, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n right: 0px;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable {\n cursor: pointer;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text {\n border-bottom: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:before, .zd-grid table tbody tr td.zd-table-cell.zd-table-cell-editable .zd-table-cell-text:after {\n border-left: solid var(--regular) var(--v-grey-lighten4);\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot {\n height: 22px;\n}\n.zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot input, .zd-grid.v-data-table--dense table tbody .zd-input.zd-text-input .v-input__slot .v-select__selections {\n max-height: 22px;\n}", map: undefined, media: undefined });
|
48495
48515
|
|
48496
48516
|
};
|
48497
48517
|
/* scoped */
|
@@ -49516,8 +49536,7 @@ let ZdGridCellContent = class ZdGridCellContent extends Vue {
|
|
49516
49536
|
}
|
49517
49537
|
get formattedValue() {
|
49518
49538
|
const colName = this.column.name;
|
49519
|
-
const
|
49520
|
-
const newRow = Object.assign(Object.assign({}, this.row), { [colName]: visibleValue });
|
49539
|
+
const newRow = Object.assign(Object.assign({}, this.row), { [colName]: this.visibleValue });
|
49521
49540
|
return this.column.formatterByRow(newRow, this.cellProps);
|
49522
49541
|
}
|
49523
49542
|
changeValue() {
|
@@ -49798,16 +49817,16 @@ let ZdGridEditableCell = class ZdGridEditableCell extends ZdGridCell$1 {
|
|
49798
49817
|
* this is needed to avoid reactivity to crosstab editedRows,
|
49799
49818
|
* which can cause unnecessary rerenders
|
49800
49819
|
*/
|
49801
|
-
forceUpdate() {
|
49820
|
+
forceUpdate(checkValue = true) {
|
49802
49821
|
this.updateEdited();
|
49803
|
-
if (this.visibleValue === this.getNewVisibleValue())
|
49822
|
+
if (checkValue && this.visibleValue === this.getNewVisibleValue())
|
49804
49823
|
return;
|
49805
49824
|
this.updateComponent();
|
49806
49825
|
this.updateVisibleValue();
|
49807
49826
|
this.updateValid();
|
49808
49827
|
}
|
49809
49828
|
rowChange() {
|
49810
|
-
this.forceUpdate();
|
49829
|
+
this.forceUpdate(false);
|
49811
49830
|
this.registerComponent();
|
49812
49831
|
}
|
49813
49832
|
enterEdit(event) {
|
@@ -50141,16 +50160,16 @@ let ZdGridEditableCellContent = class ZdGridEditableCellContent extends Vue {
|
|
50141
50160
|
* this is needed to avoid reactivity to crosstab editedRows,
|
50142
50161
|
* which can cause unnecessary rerenders
|
50143
50162
|
*/
|
50144
|
-
forceUpdate() {
|
50163
|
+
forceUpdate(checkValue = true) {
|
50145
50164
|
this.updateEdited();
|
50146
|
-
if (this.visibleValue === this.getNewVisibleValue())
|
50165
|
+
if (checkValue && this.visibleValue === this.getNewVisibleValue())
|
50147
50166
|
return;
|
50148
50167
|
this.updateComponent();
|
50149
50168
|
this.updateVisibleValue();
|
50150
50169
|
this.updateValid();
|
50151
50170
|
}
|
50152
50171
|
rowChange() {
|
50153
|
-
this.forceUpdate();
|
50172
|
+
this.forceUpdate(false);
|
50154
50173
|
this.registerComponent();
|
50155
50174
|
}
|
50156
50175
|
enterEdit() {
|
@@ -57106,6 +57125,14 @@ __decorate([
|
|
57106
57125
|
PropWatch({ type: [String, Number], default: null }),
|
57107
57126
|
__metadata("design:type", Object)
|
57108
57127
|
], ZdSelectMultiple.prototype, "limit", void 0);
|
57128
|
+
__decorate([
|
57129
|
+
PropWatch({ type: [String, Boolean], default: false }),
|
57130
|
+
__metadata("design:type", Boolean)
|
57131
|
+
], ZdSelectMultiple.prototype, "showCheckboxAll", void 0);
|
57132
|
+
__decorate([
|
57133
|
+
PropWatch({ type: [String, Boolean], default: false }),
|
57134
|
+
__metadata("design:type", Boolean)
|
57135
|
+
], ZdSelectMultiple.prototype, "checkboxAll", void 0);
|
57109
57136
|
__decorate([
|
57110
57137
|
Watch('instance.value'),
|
57111
57138
|
__metadata("design:type", Function),
|
@@ -57125,209 +57152,325 @@ var __vue_render__$k = function () {
|
|
57125
57152
|
var _vm = this;
|
57126
57153
|
var _h = _vm.$createElement;
|
57127
57154
|
var _c = _vm._self._c || _h;
|
57128
|
-
return _c(
|
57129
|
-
|
57130
|
-
|
57131
|
-
|
57132
|
-
|
57133
|
-
|
57134
|
-
|
57135
|
-
|
57136
|
-
|
57137
|
-
|
57138
|
-
|
57139
|
-
|
57140
|
-
|
57141
|
-
|
57142
|
-
|
57143
|
-
|
57144
|
-
|
57145
|
-
|
57146
|
-
|
57147
|
-
|
57148
|
-
|
57149
|
-
|
57150
|
-
_vm.instance.
|
57151
|
-
|
57152
|
-
|
57153
|
-
|
57154
|
-
|
57155
|
-
|
57156
|
-
|
57157
|
-
|
57158
|
-
|
57159
|
-
|
57160
|
-
|
57161
|
-
|
57162
|
-
|
57163
|
-
|
57164
|
-
|
57165
|
-
|
57166
|
-
|
57167
|
-
|
57168
|
-
|
57169
|
-
|
57170
|
-
|
57171
|
-
|
57172
|
-
|
57173
|
-
|
57174
|
-
|
57175
|
-
|
57176
|
-
|
57177
|
-
|
57178
|
-
|
57179
|
-
|
57180
|
-
|
57181
|
-
|
57182
|
-
|
57183
|
-
|
57184
|
-
|
57185
|
-
|
57186
|
-
|
57187
|
-
|
57188
|
-
|
57189
|
-
|
57190
|
-
|
57191
|
-
|
57192
|
-
|
57193
|
-
|
57194
|
-
|
57195
|
-
|
57196
|
-
|
57197
|
-
|
57198
|
-
|
57199
|
-
|
57200
|
-
|
57201
|
-
|
57202
|
-
|
57203
|
-
|
57204
|
-
|
57205
|
-
|
57206
|
-
|
57207
|
-
|
57208
|
-
|
57209
|
-
|
57210
|
-
|
57211
|
-
|
57212
|
-
|
57213
|
-
|
57214
|
-
|
57215
|
-
|
57216
|
-
|
57217
|
-
return _vm.selectClick($event)
|
57218
|
-
},
|
57219
|
-
mouseenter: function ($event) {
|
57220
|
-
return _vm.mouseenter($event)
|
57221
|
-
},
|
57222
|
-
mouseleave: function ($event) {
|
57223
|
-
return _vm.mouseleave($event)
|
57224
|
-
},
|
57225
|
-
change: function ($event) {
|
57226
|
-
return _vm.selectChange($event)
|
57227
|
-
},
|
57228
|
-
blur: function ($event) {
|
57229
|
-
return _vm.selectBlur($event)
|
57230
|
-
},
|
57231
|
-
focus: function ($event) {
|
57232
|
-
return _vm.selectFocus($event)
|
57233
|
-
},
|
57234
|
-
"update:search-input": [
|
57235
|
-
function ($event) {
|
57236
|
-
return _vm.selectInput($event)
|
57155
|
+
return _c(
|
57156
|
+
"div",
|
57157
|
+
{ staticClass: "zd-select-multiple-container" },
|
57158
|
+
[
|
57159
|
+
_c(_vm.instance.autocomplete ? "v-autocomplete" : "v-select", {
|
57160
|
+
directives: [
|
57161
|
+
{
|
57162
|
+
name: "show",
|
57163
|
+
rawName: "v-show",
|
57164
|
+
value: _vm.instance.isVisible,
|
57165
|
+
expression: "instance.isVisible",
|
57166
|
+
},
|
57167
|
+
],
|
57168
|
+
ref: "instance",
|
57169
|
+
tag: "component",
|
57170
|
+
class: [
|
57171
|
+
_vm.instance.cssClass,
|
57172
|
+
"zd-input",
|
57173
|
+
"zd-text-input",
|
57174
|
+
"zd-select",
|
57175
|
+
"zd-select-multiple",
|
57176
|
+
{
|
57177
|
+
"zd-no-label": !_vm.instance.showLabel,
|
57178
|
+
"zd-no-helper":
|
57179
|
+
!_vm.instance.showHelper &&
|
57180
|
+
!(
|
57181
|
+
_vm.instance.alwaysShowError &&
|
57182
|
+
_vm.$refs.instance &&
|
57183
|
+
_vm.$refs.instance.errorBucket.length
|
57184
|
+
),
|
57185
|
+
"zd-no-border": !_vm.instance.showBorder,
|
57186
|
+
"zd-dense": _vm.instance.dense,
|
57187
|
+
"zd-select-multiple-autocomplete": _vm.instance.autocomplete,
|
57188
|
+
"zd-input-required": _vm.instance.validations.required,
|
57189
|
+
},
|
57190
|
+
"zd-select-align-" +
|
57191
|
+
(_vm.instance.reverse ? "right" : _vm.instance.align),
|
57192
|
+
],
|
57193
|
+
style: _vm.instance.cssStyle,
|
57194
|
+
attrs: {
|
57195
|
+
id: _vm.instance.name,
|
57196
|
+
"return-object": "",
|
57197
|
+
"validate-on-blur": "",
|
57198
|
+
"no-data-text": _vm.$t("NO_DATA"),
|
57199
|
+
multiple: "",
|
57200
|
+
name: _vm.instance.name,
|
57201
|
+
loading: _vm.instance.datasource.loading,
|
57202
|
+
clearable:
|
57203
|
+
_vm.instance.clearable &&
|
57204
|
+
!_vm.instance.readonly &&
|
57205
|
+
!_vm.instance.disabled,
|
57206
|
+
color: _vm.instance.color,
|
57207
|
+
"item-color": _vm.instance.color,
|
57208
|
+
dark: _vm.instance.dark,
|
57209
|
+
disabled: _vm.instance.disabled,
|
57210
|
+
readonly: _vm.instance.readonly,
|
57211
|
+
items: _vm.formattedData,
|
57212
|
+
"item-text": "text",
|
57213
|
+
"item-value": "value",
|
57214
|
+
"item-disabled": "disabled",
|
57215
|
+
label: _vm.instance.showLabel
|
57216
|
+
? _vm.$t(_vm.instance.label)
|
57217
|
+
: undefined,
|
57218
|
+
placeholder: _vm.$t(_vm.instance.placeholder),
|
57219
|
+
hint: _vm.$t(_vm.instance.hint),
|
57220
|
+
persistentHint: _vm.instance.persistentHint,
|
57221
|
+
prependInnerIcon: _vm.$getIcon(_vm.instance.prependIcon),
|
57222
|
+
reverse: _vm.instance.reverse,
|
57223
|
+
rules: _vm.instance.rules,
|
57224
|
+
light: _vm.instance.light,
|
57225
|
+
maxLength: _vm.instance.maxLength,
|
57226
|
+
tabindex: _vm.instance.tabStop ? "" : "-1",
|
57227
|
+
"menu-props": {
|
57228
|
+
contentClass:
|
57229
|
+
"zd-select-menu zd-select-align-" +
|
57230
|
+
(_vm.instance.reverse ? "right" : _vm.instance.align),
|
57231
|
+
dark: _vm.instance.dark,
|
57232
|
+
offsetY: true,
|
57233
|
+
offsetOverflow: true,
|
57234
|
+
fixed: true,
|
57235
|
+
"max-width": _vm.parentWidth,
|
57236
|
+
closeOnContentClick: false,
|
57237
|
+
maxHeight: _vm.instance.menuMaxHeight,
|
57238
|
+
},
|
57239
|
+
"search-input": _vm.instance.search,
|
57240
|
+
"append-icon": _vm.$getIcon(_vm.instance.appendIcon),
|
57241
|
+
"append-outer-icon": _vm.$getIcon(_vm.instance.appendOuterIcon),
|
57242
|
+
"prepend-icon": _vm.$getIcon(_vm.instance.prependOuterIcon),
|
57243
|
+
"prepend-inner-icon": _vm.$getIcon(_vm.instance.prependIcon),
|
57237
57244
|
},
|
57238
|
-
|
57239
|
-
|
57245
|
+
on: {
|
57246
|
+
"click:append": function ($event) {
|
57247
|
+
return _vm.toggle()
|
57248
|
+
},
|
57249
|
+
click: function ($event) {
|
57250
|
+
return _vm.selectClick($event)
|
57251
|
+
},
|
57252
|
+
mouseenter: function ($event) {
|
57253
|
+
return _vm.mouseenter($event)
|
57254
|
+
},
|
57255
|
+
mouseleave: function ($event) {
|
57256
|
+
return _vm.mouseleave($event)
|
57257
|
+
},
|
57258
|
+
change: function ($event) {
|
57259
|
+
return _vm.selectChange($event)
|
57260
|
+
},
|
57261
|
+
blur: function ($event) {
|
57262
|
+
return _vm.selectBlur($event)
|
57263
|
+
},
|
57264
|
+
focus: function ($event) {
|
57265
|
+
return _vm.selectFocus($event)
|
57266
|
+
},
|
57267
|
+
"update:search-input": [
|
57268
|
+
function ($event) {
|
57269
|
+
return _vm.selectInput($event)
|
57270
|
+
},
|
57271
|
+
function ($event) {
|
57272
|
+
return _vm.$set(_vm.instance, "search", $event)
|
57273
|
+
},
|
57274
|
+
],
|
57275
|
+
keyup: function ($event) {
|
57276
|
+
return _vm.instance.keyup($event)
|
57277
|
+
},
|
57278
|
+
keydown: function ($event) {
|
57279
|
+
return _vm.instance.keydown($event)
|
57280
|
+
},
|
57281
|
+
"update:searchInput": function ($event) {
|
57282
|
+
return _vm.$set(_vm.instance, "search", $event)
|
57283
|
+
},
|
57240
57284
|
},
|
57241
|
-
|
57242
|
-
|
57243
|
-
|
57244
|
-
|
57245
|
-
|
57246
|
-
|
57247
|
-
|
57248
|
-
|
57249
|
-
|
57250
|
-
},
|
57251
|
-
},
|
57252
|
-
scopedSlots: _vm._u(
|
57253
|
-
[
|
57254
|
-
_vm.instance.itemBeforeSlot.length || _vm.instance.showSelectAll
|
57255
|
-
? {
|
57256
|
-
key: "prepend-item",
|
57257
|
-
fn: function () {
|
57258
|
-
return [
|
57259
|
-
_vm.instance.showSelectAll
|
57260
|
-
? [
|
57261
|
-
_c(
|
57262
|
-
"div",
|
57263
|
-
{ staticClass: "zd-select-append-item" },
|
57264
|
-
[
|
57285
|
+
scopedSlots: _vm._u(
|
57286
|
+
[
|
57287
|
+
_vm.instance.itemBeforeSlot.length || _vm.instance.showSelectAll
|
57288
|
+
? {
|
57289
|
+
key: "prepend-item",
|
57290
|
+
fn: function () {
|
57291
|
+
return [
|
57292
|
+
_vm.instance.showSelectAll
|
57293
|
+
? [
|
57265
57294
|
_c(
|
57266
|
-
"
|
57267
|
-
{
|
57268
|
-
attrs: { ripple: "" },
|
57269
|
-
on: {
|
57270
|
-
click: function ($event) {
|
57271
|
-
$event.stopPropagation();
|
57272
|
-
return _vm.onSelectAll($event)
|
57273
|
-
},
|
57274
|
-
},
|
57275
|
-
},
|
57295
|
+
"div",
|
57296
|
+
{ staticClass: "zd-select-append-item" },
|
57276
57297
|
[
|
57277
57298
|
_c(
|
57278
|
-
"v-list-item
|
57279
|
-
|
57280
|
-
|
57281
|
-
|
57282
|
-
|
57283
|
-
|
57284
|
-
|
57285
|
-
color: "primary",
|
57286
|
-
readonly: "",
|
57287
|
-
"on-icon": _vm.$getIcon("checkboxOn"),
|
57288
|
-
"off-icon": _vm.$getIcon("checkboxOff"),
|
57289
|
-
"indeterminate-icon": _vm.$getIcon(
|
57290
|
-
"checkboxIndeterminate"
|
57291
|
-
),
|
57292
|
-
},
|
57293
|
-
model: {
|
57294
|
-
value: _vm.allSelected,
|
57295
|
-
callback: function ($$v) {
|
57296
|
-
_vm.allSelected = $$v;
|
57297
|
-
},
|
57298
|
-
expression: "allSelected",
|
57299
|
+
"v-list-item",
|
57300
|
+
{
|
57301
|
+
attrs: { ripple: "" },
|
57302
|
+
on: {
|
57303
|
+
click: function ($event) {
|
57304
|
+
$event.stopPropagation();
|
57305
|
+
return _vm.onSelectAll($event)
|
57299
57306
|
},
|
57300
|
-
}
|
57307
|
+
},
|
57308
|
+
},
|
57309
|
+
[
|
57310
|
+
_c(
|
57311
|
+
"v-list-item-action",
|
57312
|
+
[
|
57313
|
+
_c("v-checkbox", {
|
57314
|
+
ref: "checkboxAll",
|
57315
|
+
staticClass: "zd-checkbox-all",
|
57316
|
+
attrs: {
|
57317
|
+
"hide-details": "",
|
57318
|
+
color: "primary",
|
57319
|
+
readonly: "",
|
57320
|
+
"on-icon":
|
57321
|
+
_vm.$getIcon("checkboxOn"),
|
57322
|
+
"off-icon":
|
57323
|
+
_vm.$getIcon("checkboxOff"),
|
57324
|
+
"indeterminate-icon": _vm.$getIcon(
|
57325
|
+
"checkboxIndeterminate"
|
57326
|
+
),
|
57327
|
+
},
|
57328
|
+
model: {
|
57329
|
+
value: _vm.allSelected,
|
57330
|
+
callback: function ($$v) {
|
57331
|
+
_vm.allSelected = $$v;
|
57332
|
+
},
|
57333
|
+
expression: "allSelected",
|
57334
|
+
},
|
57335
|
+
}),
|
57336
|
+
],
|
57337
|
+
1
|
57338
|
+
),
|
57339
|
+
_vm._v(" "),
|
57340
|
+
_c(
|
57341
|
+
"v-list-item-content",
|
57342
|
+
[
|
57343
|
+
_c("v-list-item-title", [
|
57344
|
+
_vm._v(
|
57345
|
+
"\n " +
|
57346
|
+
_vm._s(_vm.$t("SELECT_ALL")) +
|
57347
|
+
"\n "
|
57348
|
+
),
|
57349
|
+
]),
|
57350
|
+
],
|
57351
|
+
1
|
57352
|
+
),
|
57301
57353
|
],
|
57302
57354
|
1
|
57303
57355
|
),
|
57304
|
-
|
57356
|
+
],
|
57357
|
+
1
|
57358
|
+
),
|
57359
|
+
_vm._v(" "),
|
57360
|
+
_c("v-divider"),
|
57361
|
+
]
|
57362
|
+
: _vm._e(),
|
57363
|
+
_vm._v(" "),
|
57364
|
+
_vm.instance.itemBeforeSlot.length
|
57365
|
+
? [
|
57366
|
+
_c(
|
57367
|
+
"div",
|
57368
|
+
{ staticClass: "zd-select-append-item" },
|
57369
|
+
[
|
57305
57370
|
_c(
|
57306
|
-
"v-list-item
|
57371
|
+
"v-list-item",
|
57307
57372
|
[
|
57308
|
-
_c(
|
57309
|
-
|
57310
|
-
|
57311
|
-
|
57312
|
-
|
57313
|
-
|
57314
|
-
|
57373
|
+
_c(
|
57374
|
+
"v-list-item-content",
|
57375
|
+
{ staticClass: "v-list-item__title" },
|
57376
|
+
[
|
57377
|
+
!_vm.$slots.itemBeforeSlot
|
57378
|
+
? _vm._l(
|
57379
|
+
_vm.instance.itemBeforeSlot,
|
57380
|
+
function (child, index) {
|
57381
|
+
return _c(
|
57382
|
+
child.component,
|
57383
|
+
_vm._b(
|
57384
|
+
{
|
57385
|
+
key: index,
|
57386
|
+
ref: "itemBefore",
|
57387
|
+
refInFor: true,
|
57388
|
+
tag: "component",
|
57389
|
+
attrs: {
|
57390
|
+
parent: _vm.instance,
|
57391
|
+
},
|
57392
|
+
},
|
57393
|
+
"component",
|
57394
|
+
child,
|
57395
|
+
false
|
57396
|
+
)
|
57397
|
+
)
|
57398
|
+
}
|
57399
|
+
)
|
57400
|
+
: _vm._e(),
|
57401
|
+
_vm._v(" "),
|
57402
|
+
_vm._t("itemBeforeSlot"),
|
57403
|
+
],
|
57404
|
+
2
|
57405
|
+
),
|
57315
57406
|
],
|
57316
57407
|
1
|
57317
57408
|
),
|
57318
57409
|
],
|
57319
57410
|
1
|
57320
57411
|
),
|
57321
|
-
|
57322
|
-
|
57323
|
-
|
57324
|
-
_vm.
|
57325
|
-
|
57326
|
-
|
57412
|
+
_vm._v(" "),
|
57413
|
+
_c("v-divider"),
|
57414
|
+
]
|
57415
|
+
: _vm._e(),
|
57416
|
+
]
|
57417
|
+
},
|
57418
|
+
proxy: true,
|
57419
|
+
}
|
57420
|
+
: null,
|
57421
|
+
{
|
57422
|
+
key: "selection",
|
57423
|
+
fn: function (props) {
|
57424
|
+
return [
|
57425
|
+
_vm.isChipVisible(props.index)
|
57426
|
+
? _c(
|
57427
|
+
"v-chip",
|
57428
|
+
{
|
57429
|
+
attrs: {
|
57430
|
+
small: !_vm.instance.dense,
|
57431
|
+
"x-small": _vm.instance.dense,
|
57432
|
+
disabled: _vm.instance.disabled,
|
57433
|
+
close: !_vm.instance.readonly,
|
57434
|
+
},
|
57435
|
+
on: {
|
57436
|
+
"click:close": function ($event) {
|
57437
|
+
return _vm.removeItem(props.item)
|
57438
|
+
},
|
57439
|
+
},
|
57440
|
+
},
|
57441
|
+
[
|
57442
|
+
_c("div", { staticClass: "chip-text" }, [
|
57443
|
+
_vm._v(
|
57444
|
+
_vm._s(
|
57445
|
+
_vm.formattedDataDiscreteText(
|
57446
|
+
props.item.originalRow
|
57447
|
+
)
|
57448
|
+
)
|
57449
|
+
),
|
57450
|
+
]),
|
57451
|
+
]
|
57452
|
+
)
|
57327
57453
|
: _vm._e(),
|
57328
57454
|
_vm._v(" "),
|
57329
|
-
_vm.
|
57455
|
+
_vm.isMoreVisible(props.index)
|
57456
|
+
? _c(
|
57457
|
+
"span",
|
57458
|
+
{ staticClass: "more-items grey--text caption" },
|
57459
|
+
[_vm._v(_vm._s(_vm.moreItemsText))]
|
57460
|
+
)
|
57461
|
+
: _vm._e(),
|
57462
|
+
]
|
57463
|
+
},
|
57464
|
+
},
|
57465
|
+
{
|
57466
|
+
key: "append-item",
|
57467
|
+
fn: function () {
|
57468
|
+
return [
|
57469
|
+
_vm.instance.itemAfterSlot.length ||
|
57470
|
+
!!_vm.$slots.itemAfterSlot
|
57330
57471
|
? [
|
57472
|
+
_c("v-divider"),
|
57473
|
+
_vm._v(" "),
|
57331
57474
|
_c(
|
57332
57475
|
"div",
|
57333
57476
|
{ staticClass: "zd-select-append-item" },
|
@@ -57339,17 +57482,15 @@ var __vue_render__$k = function () {
|
|
57339
57482
|
"v-list-item-content",
|
57340
57483
|
{ staticClass: "v-list-item__title" },
|
57341
57484
|
[
|
57342
|
-
!_vm.$slots.
|
57485
|
+
!_vm.$slots.itemAfterSlot
|
57343
57486
|
? _vm._l(
|
57344
|
-
_vm.instance.
|
57487
|
+
_vm.instance.itemAfterSlot,
|
57345
57488
|
function (child, index) {
|
57346
57489
|
return _c(
|
57347
57490
|
child.component,
|
57348
57491
|
_vm._b(
|
57349
57492
|
{
|
57350
57493
|
key: index,
|
57351
|
-
ref: "itemBefore",
|
57352
|
-
refInFor: true,
|
57353
57494
|
tag: "component",
|
57354
57495
|
attrs: {
|
57355
57496
|
parent: _vm.instance,
|
@@ -57364,7 +57505,7 @@ var __vue_render__$k = function () {
|
|
57364
57505
|
)
|
57365
57506
|
: _vm._e(),
|
57366
57507
|
_vm._v(" "),
|
57367
|
-
_vm._t("
|
57508
|
+
_vm._t("itemAfterSlot"),
|
57368
57509
|
],
|
57369
57510
|
2
|
57370
57511
|
),
|
@@ -57374,157 +57515,76 @@ var __vue_render__$k = function () {
|
|
57374
57515
|
],
|
57375
57516
|
1
|
57376
57517
|
),
|
57377
|
-
_vm._v(" "),
|
57378
|
-
_c("v-divider"),
|
57379
57518
|
]
|
57380
57519
|
: _vm._e(),
|
57381
|
-
|
57382
|
-
|
57383
|
-
|
57384
|
-
|
57385
|
-
|
57386
|
-
{
|
57387
|
-
key: "selection",
|
57388
|
-
fn: function (props) {
|
57389
|
-
return [
|
57390
|
-
_vm.isChipVisible(props.index)
|
57391
|
-
? _c(
|
57392
|
-
"v-chip",
|
57393
|
-
{
|
57394
|
-
attrs: {
|
57395
|
-
small: !_vm.instance.dense,
|
57396
|
-
"x-small": _vm.instance.dense,
|
57397
|
-
disabled: _vm.instance.disabled,
|
57398
|
-
close: !_vm.instance.readonly,
|
57399
|
-
},
|
57400
|
-
on: {
|
57401
|
-
"click:close": function ($event) {
|
57402
|
-
return _vm.removeItem(props.item)
|
57403
|
-
},
|
57404
|
-
},
|
57405
|
-
},
|
57406
|
-
[
|
57407
|
-
_c("div", { staticClass: "chip-text" }, [
|
57408
|
-
_vm._v(
|
57409
|
-
_vm._s(
|
57410
|
-
_vm.formattedDataDiscreteText(
|
57411
|
-
props.item.originalRow
|
57412
|
-
)
|
57413
|
-
)
|
57414
|
-
),
|
57415
|
-
]),
|
57416
|
-
]
|
57417
|
-
)
|
57418
|
-
: _vm._e(),
|
57419
|
-
_vm._v(" "),
|
57420
|
-
_vm.isMoreVisible(props.index)
|
57421
|
-
? _c("span", { staticClass: "more-items grey--text caption" }, [
|
57422
|
-
_vm._v(_vm._s(_vm.moreItemsText)),
|
57423
|
-
])
|
57424
|
-
: _vm._e(),
|
57425
|
-
]
|
57426
|
-
},
|
57427
|
-
},
|
57428
|
-
{
|
57429
|
-
key: "append-item",
|
57430
|
-
fn: function () {
|
57431
|
-
return [
|
57432
|
-
_vm.instance.itemAfterSlot.length || !!_vm.$slots.itemAfterSlot
|
57433
|
-
? [
|
57434
|
-
_c("v-divider"),
|
57435
|
-
_vm._v(" "),
|
57436
|
-
_c(
|
57437
|
-
"div",
|
57438
|
-
{ staticClass: "zd-select-append-item" },
|
57439
|
-
[
|
57520
|
+
_vm._v(" "),
|
57521
|
+
_vm.instance.showLoadMore()
|
57522
|
+
? [
|
57523
|
+
_c("v-divider"),
|
57524
|
+
_vm._v(" "),
|
57440
57525
|
_c(
|
57441
|
-
"
|
57526
|
+
"div",
|
57527
|
+
{
|
57528
|
+
staticClass: "zd-select-append-item",
|
57529
|
+
on: {
|
57530
|
+
mousedown: function ($event) {
|
57531
|
+
$event.preventDefault();
|
57532
|
+
return _vm.loadMore()
|
57533
|
+
},
|
57534
|
+
},
|
57535
|
+
},
|
57442
57536
|
[
|
57443
57537
|
_c(
|
57444
|
-
"v-list-item
|
57445
|
-
{
|
57538
|
+
"v-list-item",
|
57539
|
+
{ attrs: { link: "" } },
|
57446
57540
|
[
|
57447
|
-
|
57448
|
-
|
57449
|
-
|
57450
|
-
|
57451
|
-
|
57452
|
-
child.component,
|
57453
|
-
_vm._b(
|
57454
|
-
{
|
57455
|
-
key: index,
|
57456
|
-
tag: "component",
|
57457
|
-
attrs: { parent: _vm.instance },
|
57458
|
-
},
|
57459
|
-
"component",
|
57460
|
-
child,
|
57461
|
-
false
|
57462
|
-
)
|
57463
|
-
)
|
57464
|
-
}
|
57465
|
-
)
|
57466
|
-
: _vm._e(),
|
57467
|
-
_vm._v(" "),
|
57468
|
-
_vm._t("itemAfterSlot"),
|
57541
|
+
_c("v-list-item-content", [
|
57542
|
+
_c("span", [
|
57543
|
+
_vm._v(_vm._s(_vm.$t("LOAD_MORE"))),
|
57544
|
+
]),
|
57545
|
+
]),
|
57469
57546
|
],
|
57470
|
-
|
57547
|
+
1
|
57471
57548
|
),
|
57472
57549
|
],
|
57473
57550
|
1
|
57474
57551
|
),
|
57475
|
-
]
|
57476
|
-
|
57477
|
-
|
57478
|
-
|
57479
|
-
|
57480
|
-
|
57481
|
-
|
57482
|
-
|
57483
|
-
|
57484
|
-
|
57485
|
-
|
57486
|
-
|
57487
|
-
|
57488
|
-
|
57489
|
-
on: {
|
57490
|
-
mousedown: function ($event) {
|
57491
|
-
$event.preventDefault();
|
57492
|
-
return _vm.loadMore()
|
57493
|
-
},
|
57494
|
-
},
|
57495
|
-
},
|
57496
|
-
[
|
57497
|
-
_c(
|
57498
|
-
"v-list-item",
|
57499
|
-
{ attrs: { link: "" } },
|
57500
|
-
[
|
57501
|
-
_c("v-list-item-content", [
|
57502
|
-
_c("span", [_vm._v(_vm._s(_vm.$t("LOAD_MORE")))]),
|
57503
|
-
]),
|
57504
|
-
],
|
57505
|
-
1
|
57506
|
-
),
|
57507
|
-
],
|
57508
|
-
1
|
57509
|
-
),
|
57510
|
-
]
|
57511
|
-
: _vm._e(),
|
57512
|
-
]
|
57552
|
+
]
|
57553
|
+
: _vm._e(),
|
57554
|
+
]
|
57555
|
+
},
|
57556
|
+
proxy: true,
|
57557
|
+
},
|
57558
|
+
],
|
57559
|
+
null,
|
57560
|
+
true
|
57561
|
+
),
|
57562
|
+
model: {
|
57563
|
+
value: _vm.formattedValue,
|
57564
|
+
callback: function ($$v) {
|
57565
|
+
_vm.formattedValue = $$v;
|
57513
57566
|
},
|
57514
|
-
|
57567
|
+
expression: "formattedValue",
|
57515
57568
|
},
|
57516
|
-
|
57517
|
-
|
57518
|
-
|
57519
|
-
|
57520
|
-
|
57521
|
-
|
57522
|
-
|
57523
|
-
|
57524
|
-
|
57525
|
-
|
57526
|
-
|
57527
|
-
|
57569
|
+
}),
|
57570
|
+
_vm._v(" "),
|
57571
|
+
_vm.instance.showCheckboxAll
|
57572
|
+
? _c("v-checkbox", {
|
57573
|
+
staticClass:
|
57574
|
+
"zd-select-multiple--checkbox-all zd-form-input-align zd-pl-1 zd-pr-3",
|
57575
|
+
attrs: { label: _vm.$t("ALL"), ripple: false },
|
57576
|
+
model: {
|
57577
|
+
value: _vm.instance.checkboxAll,
|
57578
|
+
callback: function ($$v) {
|
57579
|
+
_vm.$set(_vm.instance, "checkboxAll", $$v);
|
57580
|
+
},
|
57581
|
+
expression: "instance.checkboxAll",
|
57582
|
+
},
|
57583
|
+
})
|
57584
|
+
: _vm._e(),
|
57585
|
+
],
|
57586
|
+
1
|
57587
|
+
)
|
57528
57588
|
};
|
57529
57589
|
var __vue_staticRenderFns__$k = [];
|
57530
57590
|
__vue_render__$k._withStripped = true;
|
@@ -57532,7 +57592,7 @@ __vue_render__$k._withStripped = true;
|
|
57532
57592
|
/* style */
|
57533
57593
|
const __vue_inject_styles__$k = function (inject) {
|
57534
57594
|
if (!inject) return
|
57535
|
-
inject("data-v-
|
57595
|
+
inject("data-v-a37677c6_0", { source: ".zd-select-multiple-container {\n height: auto;\n min-height: auto;\n max-height: none;\n display: flex;\n flex: 0 0 100%;\n flex-direction: row;\n}\n.zd-select-multiple .v-select__slot .v-select__selections {\n flex-wrap: wrap;\n padding-bottom: 0 !important;\n}\n.zd-select-multiple .v-select__slot .v-select__selections .v-chip {\n margin-bottom: 0.2rem;\n margin-top: 0.2rem;\n}\n.zd-select-multiple .v-select__slot .v-select__selections input {\n position: relative;\n min-width: 0 !important;\n}\n.zd-select-multiple .v-select__slot .v-select__selections {\n padding: 0px 7px 0px 7px;\n}\n.zd-select-multiple .v-select__slot .v-select__selections .v-chip {\n margin: 5px var(--spacing-1) 5px 0;\n}\n.zd-select-multiple .v-select__slot .v-select__selections .v-chip.v-size--x-small {\n height: 15px;\n}\n.zd-select-multiple .v-select__slot .v-select__selections .v-chip.v-size--x-small .chip-text {\n font-size: 12px;\n}\n.zd-select-multiple .v-select__slot .v-select__selections .v-chip--removable.v-size--x-small .v-chip__content .v-chip__close {\n font-size: 14px !important;\n margin-left: var(--spacing-2);\n margin-right: -6px;\n}\n.zd-select-multiple .v-select__slot .v-select__selections .more-items {\n line-height: 15px;\n}\n.zd-select-multiple .v-input__slot {\n min-height: 24px;\n}\n.zd-select-multiple.zd-dense .v-input__slot {\n min-height: 24px;\n}\n.zd-select-multiple.zd-dense .v-select__slot .v-select__selections {\n padding: 0 var(--spacing-1);\n}\n.zd-select-multiple.zd-dense .v-select__slot .v-select__selections input, .zd-select-multiple.zd-dense .v-select__slot .v-select__selections .v-chip {\n margin-bottom: 0.2rem;\n margin-top: 0.2rem;\n}\n.zd-select-multiple.zd-dense.zd-input.v-input > .v-input__control > .v-input__slot input {\n padding: 0 4px;\n}\n.zd-select-multiple.zd-dense.zd-select-multiple-autocomplete.v-input:not(.v-input--is-focused) > .v-input__control > .v-input__slot > .v-select__slot input {\n padding: 0;\n}\n.zd-select-multiple.zd-dense.zd-select-multiple-autocomplete.v-input > .v-input__control > .v-input__slot > .v-select__slot input {\n padding: 0 var(--spacing-1);\n}\n.zd-select-multiple.v-input--is-focused .v-select__slot .v-select__selections .v-chip .v-chip__content .chip-text {\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.v-menu__content.zd-select-menu .v-select-list div.v-list-item__action {\n margin: 0 var(--zd-default-padding) 0 0;\n}\n.v-menu__content.zd-select-menu .v-select-list > .v-list-item .v-input--selection-controls__ripple {\n margin: 0;\n}\n.v-menu__content.zd-select-menu .v-select-list .v-list-item--disabled .v-simple-checkbox .v-icon {\n opacity: 0.5;\n}\n.zd-select-multiple--checkbox-all {\n margin: 0;\n padding: 0;\n}\n.zd-select-multiple--checkbox-all .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}", map: undefined, media: undefined });
|
57536
57596
|
|
57537
57597
|
};
|
57538
57598
|
/* scoped */
|
@@ -61868,7 +61928,9 @@ var __vue_render__$1 = function () {
|
|
61868
61928
|
maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
|
61869
61929
|
minWidth: _vm.$formatSize(_vm.instance.minWidth),
|
61870
61930
|
"--overflow-y-style":
|
61871
|
-
_vm.instance.height !== "auto" ||
|
61931
|
+
_vm.instance.height !== "auto" ||
|
61932
|
+
_vm.instance.maxHeight !== "auto" ||
|
61933
|
+
_vm.instance.fillHeight
|
61872
61934
|
? "auto"
|
61873
61935
|
: "hidden",
|
61874
61936
|
},
|
@@ -62587,6 +62649,8 @@ var __vue_render__$1 = function () {
|
|
62587
62649
|
search:
|
62588
62650
|
_vm.instance.datasource
|
62589
62651
|
.search,
|
62652
|
+
visibleValue:
|
62653
|
+
item[column.name],
|
62590
62654
|
expandClass:
|
62591
62655
|
"zd-tree-grid-expand",
|
62592
62656
|
},
|
@@ -62780,8 +62844,8 @@ __vue_render__$1._withStripped = true;
|
|
62780
62844
|
/* style */
|
62781
62845
|
const __vue_inject_styles__$1 = function (inject) {
|
62782
62846
|
if (!inject) return
|
62783
|
-
inject("data-v-71ece2c4_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-toolbar .zd-search {\n max-width: 200px;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\n overflow-y: var(--overflow-y-style);\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n}\n.zd-grid table .zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table .zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-center .zd-table-header-cell {\n justify-content: center;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action {\n z-index: 5;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action {\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 3;\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 td.zd-table-cell.zd-table-fixed-column {\n color: var(--v-primary-base) !important;\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid .zd-table-fixed-column.theme--light {\n background: #f7f7f7;\n}\n.zd-grid .zd-table-fixed-column.theme--dark {\n background: #3c3c3c;\n}\n.zd-grid:not(.zd-grid--cell-selection) tr.current {\n background: var(--current-row-color);\n}\n.zd-grid .zd-table-cell:focus-visible {\n outline: none;\n}\n.zd-grid .zd-table-cell.zd-table-cell--is-current {\n background: var(--current-row-color);\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.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
62784
|
-
,inject("data-v-
|
62847
|
+
inject("data-v-09961e9a_0", { source: ".zd-grid {\n outline: none;\n display: flex;\n flex-direction: column;\n}\n.zd-grid.theme--light:active table th.zd-table-cell, .zd-grid.theme--light:focus table th.zd-table-cell, .zd-grid.theme--light:focus-within table th.zd-table-cell {\n color: var(--v-primary-base) !important;\n}\n.zd-grid-toolbar {\n display: flex;\n justify-content: space-between;\n margin-bottom: var(--spacing-4);\n align-items: center;\n flex: 0 0 auto;\n}\n.zd-grid-toolbar-slot {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.zd-grid-toolbar .zd-search {\n max-width: 200px;\n}\n.zd-grid .v-data-table__wrapper {\n flex: 1 1 auto;\n overflow-y: var(--overflow-y-style);\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-table-cell.zd-table-fixed-column-action {\n position: sticky !important;\n right: 0;\n}\n.zd-grid table .zd-table-cell.zd-table-fixed-column-action.theme--light {\n background: #f7f7f7 !important;\n}\n.zd-grid table .zd-table-cell.zd-table-fixed-column-action.theme--dark {\n background: #3c3c3c !important;\n}\n.zd-grid table .zd-grid-header-checkbox, .zd-grid table .zd-grid-row-checkbox {\n margin-top: 0;\n padding-top: 0;\n}\n.zd-grid table .zd-grid-header-checkbox .v-icon, .zd-grid table .zd-grid-row-checkbox .v-icon {\n font-size: var(--icon-size-small);\n}\n.zd-grid table .zd-grid-header-checkbox .v-input--selection-controls__ripple::before, .zd-grid table .zd-grid-row-checkbox .v-input--selection-controls__ripple::before {\n display: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell {\n font-size: var(--zd-font-body2-size);\n font-weight: var(--zd-font-body2-weight);\n white-space: nowrap;\n height: 40px;\n padding: 0 var(--spacing-4) var(--spacing-2) var(--spacing-4);\n z-index: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-header-cell {\n width: 100%;\n display: flex;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-left .zd-table-header-cell {\n justify-content: flex-start;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-right .zd-table-header-cell {\n justify-content: flex-end;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.text-center .zd-table-header-cell {\n justify-content: center;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort {\n opacity: 0;\n position: relative;\n display: inline-block;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-icon {\n position: relative;\n transition: none;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order {\n position: absolute;\n font-size: 9px;\n right: 2px;\n color: var(--zd-font-color);\n width: 12px;\n text-align: center;\n border-radius: 50%;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-sort .zd-table-cell-sort-order.left {\n right: auto;\n left: 2px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name {\n opacity: 0.7;\n white-space: pre;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell .zd-table-cell-name.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.sortable {\n cursor: pointer;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: -8px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.asc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: 6px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-icon {\n top: 3px;\n transform: rotate(180deg);\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell.active.desc .zd-table-cell-sort .zd-table-cell-sort-order {\n top: -1px;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-name, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-name {\n opacity: 1;\n}\n.zd-grid table .zd-grid-table-header th.zd-table-cell:hover .zd-table-cell-sort, .zd-grid table .zd-grid-table-header th.zd-table-cell.active .zd-table-cell-sort {\n opacity: 1;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 5;\n}\n.zd-grid table thead tr th.zd-table-cell.zd-table-fixed-column-action {\n z-index: 5;\n}\n.zd-grid table thead tr th .zd-grid-resize-handle {\n height: 100%;\n width: 10px;\n display: block;\n position: absolute;\n top: 0;\n right: 0;\n cursor: ew-resize;\n font-size: 15px;\n color: #ccc;\n display: none;\n}\n.zd-grid table thead tr th:hover .zd-grid-resize-handle {\n display: block;\n}\n.zd-grid table tbody tr td.zd-table-cell {\n font-size: var(--zd-font-body1-size);\n font-weight: var(--zd-font-body1-weight);\n padding: 0 var(--spacing-4);\n height: 48px;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable {\n overflow: hidden;\n}\n.zd-grid table tbody tr td.zd-table-cell.selectable .zd-grid-row-checkbox {\n opacity: 0.7;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text {\n display: block;\n overflow: hidden;\n white-space: pre;\n text-overflow: ellipsis;\n overflow-wrap: break-word;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-hidden {\n text-overflow: unset;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-wrap {\n white-space: pre-wrap;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp {\n white-space: normal;\n -webkit-box-orient: vertical;\n display: -webkit-box;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-2 {\n -webkit-line-clamp: 2;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-3 {\n -webkit-line-clamp: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-4 {\n -webkit-line-clamp: 4;\n}\n.zd-grid table tbody tr td.zd-table-cell .zd-table-cell-text.overflow-clamp.overflow-clamp-5 {\n -webkit-line-clamp: 5;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column-action {\n z-index: 3;\n}\n.zd-grid table tbody tr td.zd-table-cell.zd-table-fixed-column {\n position: sticky !important;\n left: 0;\n z-index: 3;\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 td.zd-table-cell.zd-table-fixed-column {\n color: var(--v-primary-base) !important;\n}\n.zd-grid table tbody tr.current:hover {\n background: var(--current-row-hover-color) !important;\n}\n.zd-grid .zd-table-fixed-column.theme--light {\n background: #f7f7f7;\n}\n.zd-grid .zd-table-fixed-column.theme--dark {\n background: #3c3c3c;\n}\n.zd-grid:not(.zd-grid--cell-selection) tr.current {\n background: var(--current-row-color);\n}\n.zd-grid .zd-table-cell:focus-visible {\n outline: none;\n}\n.zd-grid .zd-table-cell.zd-table-cell--is-current {\n background: var(--current-row-color);\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.v-data-table--fixed-header table thead th.zd-table-cell {\n box-shadow: inset 0 -1px 0 var(--v-grey-lighten3);\n}\n.zd-grid-footer {\n margin: var(--spacing-4) 0 0 0;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 1rem;\n flex: 0 0 auto;\n}\n.zd-grid-div-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n@media screen and (max-width: 425px) {\n.zd-grid-footer {\n flex-direction: column;\n justify-content: center;\n}\n.zd-grid-div-footer {\n width: 100%;\n}\n.zd-grid .zd-iterable-pagination {\n justify-content: space-evenly;\n}\n}\n.zd-grid .zd-skeleton-table-cell .v-skeleton-loader__table-cell {\n height: auto;\n}\n.zd-grid .zd-grid-cell-tooltip {\n z-index: 10000;\n position: fixed;\n color: white;\n background-color: var(--v-grey-lighten1);\n border-radius: var(--border);\n padding: var(--spacing-1) var(--spacing-2);\n opacity: 0.9;\n display: none;\n font-size: 14px;\n line-height: 22px;\n text-transform: none;\n width: auto;\n pointer-events: none;\n white-space: pre;\n}\n.zd-grid .zd-grid-cell-tooltip.zd-grid-cell-tooltip-show {\n display: block;\n white-space: normal;\n}\n.zd-grid-loading {\n pointer-events: none;\n}\n.v-data-table__progress {\n position: sticky;\n top: 24px;\n}\n.v-data-table--mobile > .v-data-table__wrapper tbody {\n display: contents;\n flex-direction: column;\n}", map: undefined, media: undefined })
|
62848
|
+
,inject("data-v-09961e9a_1", { source: ".zd-tree-grid .zd-table-cell-text-first {\n display: inline-flex;\n width: 100%;\n}\n.zd-tree-grid.theme--light tbody td.zd-table-cell {\n color: var(--zd-font-color);\n}\n.zd-tree-grid.theme--dark tbody td.zd-table-cell {\n color: #fff;\n}\n.zd-tree-grid tbody td.zd-table-cell.first {\n padding-left: 5px !important;\n}\n.zd-tree-grid tbody td.zd-table-cell .zd-table-cell-text .search-result {\n background: var(--v-grey-lighten4);\n}\n.zd-tree-grid .zd-tree-grid-expand {\n text-align: end;\n vertical-align: baseline;\n height: 10px;\n display: inline-block;\n}\n.zd-tree-grid .zd-tree-grid-expand.level1 {\n width: 24px !important;\n}\n.zd-tree-grid .zd-tree-grid-expand-action {\n height: 100%;\n display: inline-grid;\n justify-content: end;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon {\n transition: transform 0.3s ease;\n -webkit-transition: transform 0.3s ease;\n font-size: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon::after {\n content: none;\n}\n.zd-tree-grid .zd-tree-grid-expand .v-icon.opened {\n transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n}\n.zd-tree-grid .zd-tree-grid-expand.level1 {\n width: 20px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level2 {\n width: 40px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level3 {\n width: 60px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level4 {\n width: 80px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level5 {\n width: 100px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level6 {\n width: 120px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level7 {\n width: 140px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level8 {\n width: 160px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level9 {\n width: 180px;\n}\n.zd-tree-grid .zd-tree-grid-expand.level10 {\n width: 200px;\n}", map: undefined, media: undefined });
|
62785
62849
|
|
62786
62850
|
};
|
62787
62851
|
/* scoped */
|