@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.umd.js
CHANGED
@@ -44166,6 +44166,20 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
44166
44166
|
this.$el.addEventListener('dragover', this.inputFileDragOver);
|
44167
44167
|
this.$el.addEventListener('dragleave', this.inputFileDragLeave);
|
44168
44168
|
this.$el.addEventListener('drop', this.inputFileDrop);
|
44169
|
+
this.instance.setViewGetFileSizes(this.getFileSizes);
|
44170
|
+
}
|
44171
|
+
getFileSizes() {
|
44172
|
+
const input = this.$el.querySelector('input');
|
44173
|
+
if (input instanceof HTMLInputElement) {
|
44174
|
+
const fileInfo = input.files || [];
|
44175
|
+
const fileArray = Array.from(fileInfo);
|
44176
|
+
const files = {};
|
44177
|
+
fileArray.forEach((file) => {
|
44178
|
+
files[file.name] = file.size;
|
44179
|
+
});
|
44180
|
+
return files;
|
44181
|
+
}
|
44182
|
+
return {};
|
44169
44183
|
}
|
44170
44184
|
blur(event) {
|
44171
44185
|
this.instance.blur(event, this.$el);
|
@@ -46508,7 +46522,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
46508
46522
|
maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
|
46509
46523
|
minWidth: _vm.$formatSize(_vm.instance.minWidth),
|
46510
46524
|
"--overflow-y-style":
|
46511
|
-
_vm.instance.height !== "auto" ||
|
46525
|
+
_vm.instance.height !== "auto" ||
|
46526
|
+
_vm.instance.maxHeight !== "auto" ||
|
46527
|
+
_vm.instance.fillHeight
|
46512
46528
|
? "auto"
|
46513
46529
|
: "hidden",
|
46514
46530
|
},
|
@@ -47182,6 +47198,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
47182
47198
|
row: item,
|
47183
47199
|
rowStyle: rowStyle,
|
47184
47200
|
cellsApplied: cellsApplied,
|
47201
|
+
visibleValue:
|
47202
|
+
item[column.name],
|
47185
47203
|
hasUsingCellText: true,
|
47186
47204
|
},
|
47187
47205
|
on: {
|
@@ -47373,7 +47391,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
47373
47391
|
/* style */
|
47374
47392
|
const __vue_inject_styles__$15 = function (inject) {
|
47375
47393
|
if (!inject) return
|
47376
|
-
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 });
|
47394
|
+
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 });
|
47377
47395
|
|
47378
47396
|
};
|
47379
47397
|
/* scoped */
|
@@ -47530,7 +47548,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
47530
47548
|
maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
|
47531
47549
|
minWidth: _vm.$formatSize(_vm.instance.minWidth),
|
47532
47550
|
"--overflow-y-style":
|
47533
|
-
_vm.instance.height !== "auto" ||
|
47551
|
+
_vm.instance.height !== "auto" ||
|
47552
|
+
_vm.instance.maxHeight !== "auto" ||
|
47553
|
+
_vm.instance.fillHeight
|
47534
47554
|
? "auto"
|
47535
47555
|
: "hidden",
|
47536
47556
|
},
|
@@ -48489,8 +48509,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
48489
48509
|
/* style */
|
48490
48510
|
const __vue_inject_styles__$14 = function (inject) {
|
48491
48511
|
if (!inject) return
|
48492
|
-
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 })
|
48493
|
-
,inject("data-v-
|
48512
|
+
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 })
|
48513
|
+
,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 });
|
48494
48514
|
|
48495
48515
|
};
|
48496
48516
|
/* scoped */
|
@@ -49515,8 +49535,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
49515
49535
|
}
|
49516
49536
|
get formattedValue() {
|
49517
49537
|
const colName = this.column.name;
|
49518
|
-
const
|
49519
|
-
const newRow = Object.assign(Object.assign({}, this.row), { [colName]: visibleValue });
|
49538
|
+
const newRow = Object.assign(Object.assign({}, this.row), { [colName]: this.visibleValue });
|
49520
49539
|
return this.column.formatterByRow(newRow, this.cellProps);
|
49521
49540
|
}
|
49522
49541
|
changeValue() {
|
@@ -49797,16 +49816,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
49797
49816
|
* this is needed to avoid reactivity to crosstab editedRows,
|
49798
49817
|
* which can cause unnecessary rerenders
|
49799
49818
|
*/
|
49800
|
-
forceUpdate() {
|
49819
|
+
forceUpdate(checkValue = true) {
|
49801
49820
|
this.updateEdited();
|
49802
|
-
if (this.visibleValue === this.getNewVisibleValue())
|
49821
|
+
if (checkValue && this.visibleValue === this.getNewVisibleValue())
|
49803
49822
|
return;
|
49804
49823
|
this.updateComponent();
|
49805
49824
|
this.updateVisibleValue();
|
49806
49825
|
this.updateValid();
|
49807
49826
|
}
|
49808
49827
|
rowChange() {
|
49809
|
-
this.forceUpdate();
|
49828
|
+
this.forceUpdate(false);
|
49810
49829
|
this.registerComponent();
|
49811
49830
|
}
|
49812
49831
|
enterEdit(event) {
|
@@ -50140,16 +50159,16 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
50140
50159
|
* this is needed to avoid reactivity to crosstab editedRows,
|
50141
50160
|
* which can cause unnecessary rerenders
|
50142
50161
|
*/
|
50143
|
-
forceUpdate() {
|
50162
|
+
forceUpdate(checkValue = true) {
|
50144
50163
|
this.updateEdited();
|
50145
|
-
if (this.visibleValue === this.getNewVisibleValue())
|
50164
|
+
if (checkValue && this.visibleValue === this.getNewVisibleValue())
|
50146
50165
|
return;
|
50147
50166
|
this.updateComponent();
|
50148
50167
|
this.updateVisibleValue();
|
50149
50168
|
this.updateValid();
|
50150
50169
|
}
|
50151
50170
|
rowChange() {
|
50152
|
-
this.forceUpdate();
|
50171
|
+
this.forceUpdate(false);
|
50153
50172
|
this.registerComponent();
|
50154
50173
|
}
|
50155
50174
|
enterEdit() {
|
@@ -57105,6 +57124,14 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
57105
57124
|
PropWatch({ type: [String, Number], default: null }),
|
57106
57125
|
__metadata("design:type", Object)
|
57107
57126
|
], ZdSelectMultiple.prototype, "limit", void 0);
|
57127
|
+
__decorate([
|
57128
|
+
PropWatch({ type: [String, Boolean], default: false }),
|
57129
|
+
__metadata("design:type", Boolean)
|
57130
|
+
], ZdSelectMultiple.prototype, "showCheckboxAll", void 0);
|
57131
|
+
__decorate([
|
57132
|
+
PropWatch({ type: [String, Boolean], default: false }),
|
57133
|
+
__metadata("design:type", Boolean)
|
57134
|
+
], ZdSelectMultiple.prototype, "checkboxAll", void 0);
|
57108
57135
|
__decorate([
|
57109
57136
|
vuePropertyDecorator.Watch('instance.value'),
|
57110
57137
|
__metadata("design:type", Function),
|
@@ -57124,209 +57151,325 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
57124
57151
|
var _vm = this;
|
57125
57152
|
var _h = _vm.$createElement;
|
57126
57153
|
var _c = _vm._self._c || _h;
|
57127
|
-
return _c(
|
57128
|
-
|
57129
|
-
|
57130
|
-
|
57131
|
-
|
57132
|
-
|
57133
|
-
|
57134
|
-
|
57135
|
-
|
57136
|
-
|
57137
|
-
|
57138
|
-
|
57139
|
-
|
57140
|
-
|
57141
|
-
|
57142
|
-
|
57143
|
-
|
57144
|
-
|
57145
|
-
|
57146
|
-
|
57147
|
-
|
57148
|
-
|
57149
|
-
_vm.instance.
|
57150
|
-
|
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
|
-
return _vm.selectClick($event)
|
57217
|
-
},
|
57218
|
-
mouseenter: function ($event) {
|
57219
|
-
return _vm.mouseenter($event)
|
57220
|
-
},
|
57221
|
-
mouseleave: function ($event) {
|
57222
|
-
return _vm.mouseleave($event)
|
57223
|
-
},
|
57224
|
-
change: function ($event) {
|
57225
|
-
return _vm.selectChange($event)
|
57226
|
-
},
|
57227
|
-
blur: function ($event) {
|
57228
|
-
return _vm.selectBlur($event)
|
57229
|
-
},
|
57230
|
-
focus: function ($event) {
|
57231
|
-
return _vm.selectFocus($event)
|
57232
|
-
},
|
57233
|
-
"update:search-input": [
|
57234
|
-
function ($event) {
|
57235
|
-
return _vm.selectInput($event)
|
57154
|
+
return _c(
|
57155
|
+
"div",
|
57156
|
+
{ staticClass: "zd-select-multiple-container" },
|
57157
|
+
[
|
57158
|
+
_c(_vm.instance.autocomplete ? "v-autocomplete" : "v-select", {
|
57159
|
+
directives: [
|
57160
|
+
{
|
57161
|
+
name: "show",
|
57162
|
+
rawName: "v-show",
|
57163
|
+
value: _vm.instance.isVisible,
|
57164
|
+
expression: "instance.isVisible",
|
57165
|
+
},
|
57166
|
+
],
|
57167
|
+
ref: "instance",
|
57168
|
+
tag: "component",
|
57169
|
+
class: [
|
57170
|
+
_vm.instance.cssClass,
|
57171
|
+
"zd-input",
|
57172
|
+
"zd-text-input",
|
57173
|
+
"zd-select",
|
57174
|
+
"zd-select-multiple",
|
57175
|
+
{
|
57176
|
+
"zd-no-label": !_vm.instance.showLabel,
|
57177
|
+
"zd-no-helper":
|
57178
|
+
!_vm.instance.showHelper &&
|
57179
|
+
!(
|
57180
|
+
_vm.instance.alwaysShowError &&
|
57181
|
+
_vm.$refs.instance &&
|
57182
|
+
_vm.$refs.instance.errorBucket.length
|
57183
|
+
),
|
57184
|
+
"zd-no-border": !_vm.instance.showBorder,
|
57185
|
+
"zd-dense": _vm.instance.dense,
|
57186
|
+
"zd-select-multiple-autocomplete": _vm.instance.autocomplete,
|
57187
|
+
"zd-input-required": _vm.instance.validations.required,
|
57188
|
+
},
|
57189
|
+
"zd-select-align-" +
|
57190
|
+
(_vm.instance.reverse ? "right" : _vm.instance.align),
|
57191
|
+
],
|
57192
|
+
style: _vm.instance.cssStyle,
|
57193
|
+
attrs: {
|
57194
|
+
id: _vm.instance.name,
|
57195
|
+
"return-object": "",
|
57196
|
+
"validate-on-blur": "",
|
57197
|
+
"no-data-text": _vm.$t("NO_DATA"),
|
57198
|
+
multiple: "",
|
57199
|
+
name: _vm.instance.name,
|
57200
|
+
loading: _vm.instance.datasource.loading,
|
57201
|
+
clearable:
|
57202
|
+
_vm.instance.clearable &&
|
57203
|
+
!_vm.instance.readonly &&
|
57204
|
+
!_vm.instance.disabled,
|
57205
|
+
color: _vm.instance.color,
|
57206
|
+
"item-color": _vm.instance.color,
|
57207
|
+
dark: _vm.instance.dark,
|
57208
|
+
disabled: _vm.instance.disabled,
|
57209
|
+
readonly: _vm.instance.readonly,
|
57210
|
+
items: _vm.formattedData,
|
57211
|
+
"item-text": "text",
|
57212
|
+
"item-value": "value",
|
57213
|
+
"item-disabled": "disabled",
|
57214
|
+
label: _vm.instance.showLabel
|
57215
|
+
? _vm.$t(_vm.instance.label)
|
57216
|
+
: undefined,
|
57217
|
+
placeholder: _vm.$t(_vm.instance.placeholder),
|
57218
|
+
hint: _vm.$t(_vm.instance.hint),
|
57219
|
+
persistentHint: _vm.instance.persistentHint,
|
57220
|
+
prependInnerIcon: _vm.$getIcon(_vm.instance.prependIcon),
|
57221
|
+
reverse: _vm.instance.reverse,
|
57222
|
+
rules: _vm.instance.rules,
|
57223
|
+
light: _vm.instance.light,
|
57224
|
+
maxLength: _vm.instance.maxLength,
|
57225
|
+
tabindex: _vm.instance.tabStop ? "" : "-1",
|
57226
|
+
"menu-props": {
|
57227
|
+
contentClass:
|
57228
|
+
"zd-select-menu zd-select-align-" +
|
57229
|
+
(_vm.instance.reverse ? "right" : _vm.instance.align),
|
57230
|
+
dark: _vm.instance.dark,
|
57231
|
+
offsetY: true,
|
57232
|
+
offsetOverflow: true,
|
57233
|
+
fixed: true,
|
57234
|
+
"max-width": _vm.parentWidth,
|
57235
|
+
closeOnContentClick: false,
|
57236
|
+
maxHeight: _vm.instance.menuMaxHeight,
|
57237
|
+
},
|
57238
|
+
"search-input": _vm.instance.search,
|
57239
|
+
"append-icon": _vm.$getIcon(_vm.instance.appendIcon),
|
57240
|
+
"append-outer-icon": _vm.$getIcon(_vm.instance.appendOuterIcon),
|
57241
|
+
"prepend-icon": _vm.$getIcon(_vm.instance.prependOuterIcon),
|
57242
|
+
"prepend-inner-icon": _vm.$getIcon(_vm.instance.prependIcon),
|
57236
57243
|
},
|
57237
|
-
|
57238
|
-
|
57244
|
+
on: {
|
57245
|
+
"click:append": function ($event) {
|
57246
|
+
return _vm.toggle()
|
57247
|
+
},
|
57248
|
+
click: function ($event) {
|
57249
|
+
return _vm.selectClick($event)
|
57250
|
+
},
|
57251
|
+
mouseenter: function ($event) {
|
57252
|
+
return _vm.mouseenter($event)
|
57253
|
+
},
|
57254
|
+
mouseleave: function ($event) {
|
57255
|
+
return _vm.mouseleave($event)
|
57256
|
+
},
|
57257
|
+
change: function ($event) {
|
57258
|
+
return _vm.selectChange($event)
|
57259
|
+
},
|
57260
|
+
blur: function ($event) {
|
57261
|
+
return _vm.selectBlur($event)
|
57262
|
+
},
|
57263
|
+
focus: function ($event) {
|
57264
|
+
return _vm.selectFocus($event)
|
57265
|
+
},
|
57266
|
+
"update:search-input": [
|
57267
|
+
function ($event) {
|
57268
|
+
return _vm.selectInput($event)
|
57269
|
+
},
|
57270
|
+
function ($event) {
|
57271
|
+
return _vm.$set(_vm.instance, "search", $event)
|
57272
|
+
},
|
57273
|
+
],
|
57274
|
+
keyup: function ($event) {
|
57275
|
+
return _vm.instance.keyup($event)
|
57276
|
+
},
|
57277
|
+
keydown: function ($event) {
|
57278
|
+
return _vm.instance.keydown($event)
|
57279
|
+
},
|
57280
|
+
"update:searchInput": function ($event) {
|
57281
|
+
return _vm.$set(_vm.instance, "search", $event)
|
57282
|
+
},
|
57239
57283
|
},
|
57240
|
-
|
57241
|
-
|
57242
|
-
|
57243
|
-
|
57244
|
-
|
57245
|
-
|
57246
|
-
|
57247
|
-
|
57248
|
-
|
57249
|
-
},
|
57250
|
-
},
|
57251
|
-
scopedSlots: _vm._u(
|
57252
|
-
[
|
57253
|
-
_vm.instance.itemBeforeSlot.length || _vm.instance.showSelectAll
|
57254
|
-
? {
|
57255
|
-
key: "prepend-item",
|
57256
|
-
fn: function () {
|
57257
|
-
return [
|
57258
|
-
_vm.instance.showSelectAll
|
57259
|
-
? [
|
57260
|
-
_c(
|
57261
|
-
"div",
|
57262
|
-
{ staticClass: "zd-select-append-item" },
|
57263
|
-
[
|
57284
|
+
scopedSlots: _vm._u(
|
57285
|
+
[
|
57286
|
+
_vm.instance.itemBeforeSlot.length || _vm.instance.showSelectAll
|
57287
|
+
? {
|
57288
|
+
key: "prepend-item",
|
57289
|
+
fn: function () {
|
57290
|
+
return [
|
57291
|
+
_vm.instance.showSelectAll
|
57292
|
+
? [
|
57264
57293
|
_c(
|
57265
|
-
"
|
57266
|
-
{
|
57267
|
-
attrs: { ripple: "" },
|
57268
|
-
on: {
|
57269
|
-
click: function ($event) {
|
57270
|
-
$event.stopPropagation();
|
57271
|
-
return _vm.onSelectAll($event)
|
57272
|
-
},
|
57273
|
-
},
|
57274
|
-
},
|
57294
|
+
"div",
|
57295
|
+
{ staticClass: "zd-select-append-item" },
|
57275
57296
|
[
|
57276
57297
|
_c(
|
57277
|
-
"v-list-item
|
57278
|
-
|
57279
|
-
|
57280
|
-
|
57281
|
-
|
57282
|
-
|
57283
|
-
|
57284
|
-
color: "primary",
|
57285
|
-
readonly: "",
|
57286
|
-
"on-icon": _vm.$getIcon("checkboxOn"),
|
57287
|
-
"off-icon": _vm.$getIcon("checkboxOff"),
|
57288
|
-
"indeterminate-icon": _vm.$getIcon(
|
57289
|
-
"checkboxIndeterminate"
|
57290
|
-
),
|
57291
|
-
},
|
57292
|
-
model: {
|
57293
|
-
value: _vm.allSelected,
|
57294
|
-
callback: function ($$v) {
|
57295
|
-
_vm.allSelected = $$v;
|
57296
|
-
},
|
57297
|
-
expression: "allSelected",
|
57298
|
+
"v-list-item",
|
57299
|
+
{
|
57300
|
+
attrs: { ripple: "" },
|
57301
|
+
on: {
|
57302
|
+
click: function ($event) {
|
57303
|
+
$event.stopPropagation();
|
57304
|
+
return _vm.onSelectAll($event)
|
57298
57305
|
},
|
57299
|
-
}
|
57306
|
+
},
|
57307
|
+
},
|
57308
|
+
[
|
57309
|
+
_c(
|
57310
|
+
"v-list-item-action",
|
57311
|
+
[
|
57312
|
+
_c("v-checkbox", {
|
57313
|
+
ref: "checkboxAll",
|
57314
|
+
staticClass: "zd-checkbox-all",
|
57315
|
+
attrs: {
|
57316
|
+
"hide-details": "",
|
57317
|
+
color: "primary",
|
57318
|
+
readonly: "",
|
57319
|
+
"on-icon":
|
57320
|
+
_vm.$getIcon("checkboxOn"),
|
57321
|
+
"off-icon":
|
57322
|
+
_vm.$getIcon("checkboxOff"),
|
57323
|
+
"indeterminate-icon": _vm.$getIcon(
|
57324
|
+
"checkboxIndeterminate"
|
57325
|
+
),
|
57326
|
+
},
|
57327
|
+
model: {
|
57328
|
+
value: _vm.allSelected,
|
57329
|
+
callback: function ($$v) {
|
57330
|
+
_vm.allSelected = $$v;
|
57331
|
+
},
|
57332
|
+
expression: "allSelected",
|
57333
|
+
},
|
57334
|
+
}),
|
57335
|
+
],
|
57336
|
+
1
|
57337
|
+
),
|
57338
|
+
_vm._v(" "),
|
57339
|
+
_c(
|
57340
|
+
"v-list-item-content",
|
57341
|
+
[
|
57342
|
+
_c("v-list-item-title", [
|
57343
|
+
_vm._v(
|
57344
|
+
"\n " +
|
57345
|
+
_vm._s(_vm.$t("SELECT_ALL")) +
|
57346
|
+
"\n "
|
57347
|
+
),
|
57348
|
+
]),
|
57349
|
+
],
|
57350
|
+
1
|
57351
|
+
),
|
57300
57352
|
],
|
57301
57353
|
1
|
57302
57354
|
),
|
57303
|
-
|
57355
|
+
],
|
57356
|
+
1
|
57357
|
+
),
|
57358
|
+
_vm._v(" "),
|
57359
|
+
_c("v-divider"),
|
57360
|
+
]
|
57361
|
+
: _vm._e(),
|
57362
|
+
_vm._v(" "),
|
57363
|
+
_vm.instance.itemBeforeSlot.length
|
57364
|
+
? [
|
57365
|
+
_c(
|
57366
|
+
"div",
|
57367
|
+
{ staticClass: "zd-select-append-item" },
|
57368
|
+
[
|
57304
57369
|
_c(
|
57305
|
-
"v-list-item
|
57370
|
+
"v-list-item",
|
57306
57371
|
[
|
57307
|
-
_c(
|
57308
|
-
|
57309
|
-
|
57310
|
-
|
57311
|
-
|
57312
|
-
|
57313
|
-
|
57372
|
+
_c(
|
57373
|
+
"v-list-item-content",
|
57374
|
+
{ staticClass: "v-list-item__title" },
|
57375
|
+
[
|
57376
|
+
!_vm.$slots.itemBeforeSlot
|
57377
|
+
? _vm._l(
|
57378
|
+
_vm.instance.itemBeforeSlot,
|
57379
|
+
function (child, index) {
|
57380
|
+
return _c(
|
57381
|
+
child.component,
|
57382
|
+
_vm._b(
|
57383
|
+
{
|
57384
|
+
key: index,
|
57385
|
+
ref: "itemBefore",
|
57386
|
+
refInFor: true,
|
57387
|
+
tag: "component",
|
57388
|
+
attrs: {
|
57389
|
+
parent: _vm.instance,
|
57390
|
+
},
|
57391
|
+
},
|
57392
|
+
"component",
|
57393
|
+
child,
|
57394
|
+
false
|
57395
|
+
)
|
57396
|
+
)
|
57397
|
+
}
|
57398
|
+
)
|
57399
|
+
: _vm._e(),
|
57400
|
+
_vm._v(" "),
|
57401
|
+
_vm._t("itemBeforeSlot"),
|
57402
|
+
],
|
57403
|
+
2
|
57404
|
+
),
|
57314
57405
|
],
|
57315
57406
|
1
|
57316
57407
|
),
|
57317
57408
|
],
|
57318
57409
|
1
|
57319
57410
|
),
|
57320
|
-
|
57321
|
-
|
57322
|
-
|
57323
|
-
_vm.
|
57324
|
-
|
57325
|
-
|
57411
|
+
_vm._v(" "),
|
57412
|
+
_c("v-divider"),
|
57413
|
+
]
|
57414
|
+
: _vm._e(),
|
57415
|
+
]
|
57416
|
+
},
|
57417
|
+
proxy: true,
|
57418
|
+
}
|
57419
|
+
: null,
|
57420
|
+
{
|
57421
|
+
key: "selection",
|
57422
|
+
fn: function (props) {
|
57423
|
+
return [
|
57424
|
+
_vm.isChipVisible(props.index)
|
57425
|
+
? _c(
|
57426
|
+
"v-chip",
|
57427
|
+
{
|
57428
|
+
attrs: {
|
57429
|
+
small: !_vm.instance.dense,
|
57430
|
+
"x-small": _vm.instance.dense,
|
57431
|
+
disabled: _vm.instance.disabled,
|
57432
|
+
close: !_vm.instance.readonly,
|
57433
|
+
},
|
57434
|
+
on: {
|
57435
|
+
"click:close": function ($event) {
|
57436
|
+
return _vm.removeItem(props.item)
|
57437
|
+
},
|
57438
|
+
},
|
57439
|
+
},
|
57440
|
+
[
|
57441
|
+
_c("div", { staticClass: "chip-text" }, [
|
57442
|
+
_vm._v(
|
57443
|
+
_vm._s(
|
57444
|
+
_vm.formattedDataDiscreteText(
|
57445
|
+
props.item.originalRow
|
57446
|
+
)
|
57447
|
+
)
|
57448
|
+
),
|
57449
|
+
]),
|
57450
|
+
]
|
57451
|
+
)
|
57326
57452
|
: _vm._e(),
|
57327
57453
|
_vm._v(" "),
|
57328
|
-
_vm.
|
57454
|
+
_vm.isMoreVisible(props.index)
|
57455
|
+
? _c(
|
57456
|
+
"span",
|
57457
|
+
{ staticClass: "more-items grey--text caption" },
|
57458
|
+
[_vm._v(_vm._s(_vm.moreItemsText))]
|
57459
|
+
)
|
57460
|
+
: _vm._e(),
|
57461
|
+
]
|
57462
|
+
},
|
57463
|
+
},
|
57464
|
+
{
|
57465
|
+
key: "append-item",
|
57466
|
+
fn: function () {
|
57467
|
+
return [
|
57468
|
+
_vm.instance.itemAfterSlot.length ||
|
57469
|
+
!!_vm.$slots.itemAfterSlot
|
57329
57470
|
? [
|
57471
|
+
_c("v-divider"),
|
57472
|
+
_vm._v(" "),
|
57330
57473
|
_c(
|
57331
57474
|
"div",
|
57332
57475
|
{ staticClass: "zd-select-append-item" },
|
@@ -57338,17 +57481,15 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
57338
57481
|
"v-list-item-content",
|
57339
57482
|
{ staticClass: "v-list-item__title" },
|
57340
57483
|
[
|
57341
|
-
!_vm.$slots.
|
57484
|
+
!_vm.$slots.itemAfterSlot
|
57342
57485
|
? _vm._l(
|
57343
|
-
_vm.instance.
|
57486
|
+
_vm.instance.itemAfterSlot,
|
57344
57487
|
function (child, index) {
|
57345
57488
|
return _c(
|
57346
57489
|
child.component,
|
57347
57490
|
_vm._b(
|
57348
57491
|
{
|
57349
57492
|
key: index,
|
57350
|
-
ref: "itemBefore",
|
57351
|
-
refInFor: true,
|
57352
57493
|
tag: "component",
|
57353
57494
|
attrs: {
|
57354
57495
|
parent: _vm.instance,
|
@@ -57363,7 +57504,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
57363
57504
|
)
|
57364
57505
|
: _vm._e(),
|
57365
57506
|
_vm._v(" "),
|
57366
|
-
_vm._t("
|
57507
|
+
_vm._t("itemAfterSlot"),
|
57367
57508
|
],
|
57368
57509
|
2
|
57369
57510
|
),
|
@@ -57373,157 +57514,76 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
57373
57514
|
],
|
57374
57515
|
1
|
57375
57516
|
),
|
57376
|
-
_vm._v(" "),
|
57377
|
-
_c("v-divider"),
|
57378
57517
|
]
|
57379
57518
|
: _vm._e(),
|
57380
|
-
|
57381
|
-
|
57382
|
-
|
57383
|
-
|
57384
|
-
|
57385
|
-
{
|
57386
|
-
key: "selection",
|
57387
|
-
fn: function (props) {
|
57388
|
-
return [
|
57389
|
-
_vm.isChipVisible(props.index)
|
57390
|
-
? _c(
|
57391
|
-
"v-chip",
|
57392
|
-
{
|
57393
|
-
attrs: {
|
57394
|
-
small: !_vm.instance.dense,
|
57395
|
-
"x-small": _vm.instance.dense,
|
57396
|
-
disabled: _vm.instance.disabled,
|
57397
|
-
close: !_vm.instance.readonly,
|
57398
|
-
},
|
57399
|
-
on: {
|
57400
|
-
"click:close": function ($event) {
|
57401
|
-
return _vm.removeItem(props.item)
|
57402
|
-
},
|
57403
|
-
},
|
57404
|
-
},
|
57405
|
-
[
|
57406
|
-
_c("div", { staticClass: "chip-text" }, [
|
57407
|
-
_vm._v(
|
57408
|
-
_vm._s(
|
57409
|
-
_vm.formattedDataDiscreteText(
|
57410
|
-
props.item.originalRow
|
57411
|
-
)
|
57412
|
-
)
|
57413
|
-
),
|
57414
|
-
]),
|
57415
|
-
]
|
57416
|
-
)
|
57417
|
-
: _vm._e(),
|
57418
|
-
_vm._v(" "),
|
57419
|
-
_vm.isMoreVisible(props.index)
|
57420
|
-
? _c("span", { staticClass: "more-items grey--text caption" }, [
|
57421
|
-
_vm._v(_vm._s(_vm.moreItemsText)),
|
57422
|
-
])
|
57423
|
-
: _vm._e(),
|
57424
|
-
]
|
57425
|
-
},
|
57426
|
-
},
|
57427
|
-
{
|
57428
|
-
key: "append-item",
|
57429
|
-
fn: function () {
|
57430
|
-
return [
|
57431
|
-
_vm.instance.itemAfterSlot.length || !!_vm.$slots.itemAfterSlot
|
57432
|
-
? [
|
57433
|
-
_c("v-divider"),
|
57434
|
-
_vm._v(" "),
|
57435
|
-
_c(
|
57436
|
-
"div",
|
57437
|
-
{ staticClass: "zd-select-append-item" },
|
57438
|
-
[
|
57519
|
+
_vm._v(" "),
|
57520
|
+
_vm.instance.showLoadMore()
|
57521
|
+
? [
|
57522
|
+
_c("v-divider"),
|
57523
|
+
_vm._v(" "),
|
57439
57524
|
_c(
|
57440
|
-
"
|
57525
|
+
"div",
|
57526
|
+
{
|
57527
|
+
staticClass: "zd-select-append-item",
|
57528
|
+
on: {
|
57529
|
+
mousedown: function ($event) {
|
57530
|
+
$event.preventDefault();
|
57531
|
+
return _vm.loadMore()
|
57532
|
+
},
|
57533
|
+
},
|
57534
|
+
},
|
57441
57535
|
[
|
57442
57536
|
_c(
|
57443
|
-
"v-list-item
|
57444
|
-
{
|
57537
|
+
"v-list-item",
|
57538
|
+
{ attrs: { link: "" } },
|
57445
57539
|
[
|
57446
|
-
|
57447
|
-
|
57448
|
-
|
57449
|
-
|
57450
|
-
|
57451
|
-
child.component,
|
57452
|
-
_vm._b(
|
57453
|
-
{
|
57454
|
-
key: index,
|
57455
|
-
tag: "component",
|
57456
|
-
attrs: { parent: _vm.instance },
|
57457
|
-
},
|
57458
|
-
"component",
|
57459
|
-
child,
|
57460
|
-
false
|
57461
|
-
)
|
57462
|
-
)
|
57463
|
-
}
|
57464
|
-
)
|
57465
|
-
: _vm._e(),
|
57466
|
-
_vm._v(" "),
|
57467
|
-
_vm._t("itemAfterSlot"),
|
57540
|
+
_c("v-list-item-content", [
|
57541
|
+
_c("span", [
|
57542
|
+
_vm._v(_vm._s(_vm.$t("LOAD_MORE"))),
|
57543
|
+
]),
|
57544
|
+
]),
|
57468
57545
|
],
|
57469
|
-
|
57546
|
+
1
|
57470
57547
|
),
|
57471
57548
|
],
|
57472
57549
|
1
|
57473
57550
|
),
|
57474
|
-
]
|
57475
|
-
|
57476
|
-
|
57477
|
-
|
57478
|
-
|
57479
|
-
|
57480
|
-
|
57481
|
-
|
57482
|
-
|
57483
|
-
|
57484
|
-
|
57485
|
-
|
57486
|
-
|
57487
|
-
|
57488
|
-
on: {
|
57489
|
-
mousedown: function ($event) {
|
57490
|
-
$event.preventDefault();
|
57491
|
-
return _vm.loadMore()
|
57492
|
-
},
|
57493
|
-
},
|
57494
|
-
},
|
57495
|
-
[
|
57496
|
-
_c(
|
57497
|
-
"v-list-item",
|
57498
|
-
{ attrs: { link: "" } },
|
57499
|
-
[
|
57500
|
-
_c("v-list-item-content", [
|
57501
|
-
_c("span", [_vm._v(_vm._s(_vm.$t("LOAD_MORE")))]),
|
57502
|
-
]),
|
57503
|
-
],
|
57504
|
-
1
|
57505
|
-
),
|
57506
|
-
],
|
57507
|
-
1
|
57508
|
-
),
|
57509
|
-
]
|
57510
|
-
: _vm._e(),
|
57511
|
-
]
|
57551
|
+
]
|
57552
|
+
: _vm._e(),
|
57553
|
+
]
|
57554
|
+
},
|
57555
|
+
proxy: true,
|
57556
|
+
},
|
57557
|
+
],
|
57558
|
+
null,
|
57559
|
+
true
|
57560
|
+
),
|
57561
|
+
model: {
|
57562
|
+
value: _vm.formattedValue,
|
57563
|
+
callback: function ($$v) {
|
57564
|
+
_vm.formattedValue = $$v;
|
57512
57565
|
},
|
57513
|
-
|
57566
|
+
expression: "formattedValue",
|
57514
57567
|
},
|
57515
|
-
|
57516
|
-
|
57517
|
-
|
57518
|
-
|
57519
|
-
|
57520
|
-
|
57521
|
-
|
57522
|
-
|
57523
|
-
|
57524
|
-
|
57525
|
-
|
57526
|
-
|
57568
|
+
}),
|
57569
|
+
_vm._v(" "),
|
57570
|
+
_vm.instance.showCheckboxAll
|
57571
|
+
? _c("v-checkbox", {
|
57572
|
+
staticClass:
|
57573
|
+
"zd-select-multiple--checkbox-all zd-form-input-align zd-pl-1 zd-pr-3",
|
57574
|
+
attrs: { label: _vm.$t("ALL"), ripple: false },
|
57575
|
+
model: {
|
57576
|
+
value: _vm.instance.checkboxAll,
|
57577
|
+
callback: function ($$v) {
|
57578
|
+
_vm.$set(_vm.instance, "checkboxAll", $$v);
|
57579
|
+
},
|
57580
|
+
expression: "instance.checkboxAll",
|
57581
|
+
},
|
57582
|
+
})
|
57583
|
+
: _vm._e(),
|
57584
|
+
],
|
57585
|
+
1
|
57586
|
+
)
|
57527
57587
|
};
|
57528
57588
|
var __vue_staticRenderFns__$k = [];
|
57529
57589
|
__vue_render__$k._withStripped = true;
|
@@ -57531,7 +57591,7 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
57531
57591
|
/* style */
|
57532
57592
|
const __vue_inject_styles__$k = function (inject) {
|
57533
57593
|
if (!inject) return
|
57534
|
-
inject("data-v-
|
57594
|
+
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 });
|
57535
57595
|
|
57536
57596
|
};
|
57537
57597
|
/* scoped */
|
@@ -61867,7 +61927,9 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
61867
61927
|
maxWidth: _vm.$formatSize(_vm.instance.maxWidth),
|
61868
61928
|
minWidth: _vm.$formatSize(_vm.instance.minWidth),
|
61869
61929
|
"--overflow-y-style":
|
61870
|
-
_vm.instance.height !== "auto" ||
|
61930
|
+
_vm.instance.height !== "auto" ||
|
61931
|
+
_vm.instance.maxHeight !== "auto" ||
|
61932
|
+
_vm.instance.fillHeight
|
61871
61933
|
? "auto"
|
61872
61934
|
: "hidden",
|
61873
61935
|
},
|
@@ -62586,6 +62648,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
62586
62648
|
search:
|
62587
62649
|
_vm.instance.datasource
|
62588
62650
|
.search,
|
62651
|
+
visibleValue:
|
62652
|
+
item[column.name],
|
62589
62653
|
expandClass:
|
62590
62654
|
"zd-tree-grid-expand",
|
62591
62655
|
},
|
@@ -62779,8 +62843,8 @@ If you're seeing "$attrs is readonly", it's caused by this`);
|
|
62779
62843
|
/* style */
|
62780
62844
|
const __vue_inject_styles__$1 = function (inject) {
|
62781
62845
|
if (!inject) return
|
62782
|
-
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 })
|
62783
|
-
,inject("data-v-
|
62846
|
+
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 })
|
62847
|
+
,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 });
|
62784
62848
|
|
62785
62849
|
};
|
62786
62850
|
/* scoped */
|