dtable-ui-component 7.0.5-pal.7 → 7.0.5-pal.9
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.
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
.dtable-ui-user-select-popover {
|
|
33
|
+
z-index: 1060;
|
|
33
34
|
width: 385px;
|
|
34
35
|
max-width: 385px;
|
|
35
36
|
margin-top: -4px;
|
|
@@ -59,6 +60,7 @@
|
|
|
59
60
|
font-size: 14px;
|
|
60
61
|
cursor: pointer;
|
|
61
62
|
border-radius: 4px;
|
|
63
|
+
background: none;
|
|
62
64
|
}
|
|
63
65
|
|
|
64
66
|
.dtable-ui-user-select-container .dtable-ui-user-list-container .dtable-ui-user-item-container:hover,
|
|
@@ -213,10 +213,9 @@ const AsyncUserSelect = _ref => {
|
|
|
213
213
|
if (!rect) return null;
|
|
214
214
|
return {
|
|
215
215
|
position: 'fixed',
|
|
216
|
-
top: rect.bottom +
|
|
216
|
+
top: rect.bottom + 8,
|
|
217
217
|
left: rect.left,
|
|
218
|
-
width: rect.width
|
|
219
|
-
maxHeight: Math.max(160, window.innerHeight - rect.bottom - 8)
|
|
218
|
+
width: rect.width
|
|
220
219
|
};
|
|
221
220
|
})();
|
|
222
221
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_ClickOutside.default, {
|