dtable-ui-component 6.0.123-uaj.1 → 6.0.123-uaj.3
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/lib/AsyncUserSelect/index.js +2 -2
- package/lib/DTableColorPicker/ColorPickerPortal/index.js +1 -1
- package/lib/DTableColorPicker/index.css +0 -3
- package/lib/NotificationPopover/index.css +1 -4
- package/lib/NotificationPopover/index.js +1 -1
- package/lib/SelectOptionGroup/index.css +3 -3
- package/package.json +1 -1
|
@@ -211,9 +211,9 @@ const AsyncUserSelect = _ref => {
|
|
|
211
211
|
target: selectorRef.current,
|
|
212
212
|
hideArrow: true,
|
|
213
213
|
fade: false,
|
|
214
|
-
className: "dtable-ui-user-select-popover
|
|
214
|
+
className: "dtable-ui-user-select-popover",
|
|
215
215
|
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
216
|
-
className: "dtable-ui-user-select-container
|
|
216
|
+
className: "dtable-ui-user-select-container",
|
|
217
217
|
ref: userSelectContainerRef,
|
|
218
218
|
onMouseDown: e => e.stopPropagation(),
|
|
219
219
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
@@ -72,7 +72,7 @@ function ColorPickerPortal(_ref) {
|
|
|
72
72
|
}, [target, scrollContainerId, throttleDelay, updatePosition]);
|
|
73
73
|
if (!target) return null;
|
|
74
74
|
return /*#__PURE__*/_reactDom.default.createPortal(/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
75
|
-
className: "dtable-color-picker-portal",
|
|
75
|
+
className: "dtable-color-picker-portal dtable-popover-container",
|
|
76
76
|
style: {
|
|
77
77
|
position: 'fixed',
|
|
78
78
|
zIndex: '1049',
|
|
@@ -5,11 +5,9 @@
|
|
|
5
5
|
.notification-container {
|
|
6
6
|
position: absolute;
|
|
7
7
|
background: #fff;
|
|
8
|
-
width:
|
|
8
|
+
width: 320px;
|
|
9
9
|
right: -10px;
|
|
10
10
|
top: -1px;
|
|
11
|
-
border-radius: 8px;
|
|
12
|
-
box-shadow: 0 6px 14px rgba(0, 0, 0, .1);
|
|
13
11
|
}
|
|
14
12
|
|
|
15
13
|
.notification-container .notification-header {
|
|
@@ -17,7 +15,6 @@
|
|
|
17
15
|
align-items: center;
|
|
18
16
|
justify-content: center;
|
|
19
17
|
height: 50px;
|
|
20
|
-
border-bottom: 1px solid #eee;
|
|
21
18
|
font-size: 16px;
|
|
22
19
|
font-weight: 600;
|
|
23
20
|
position: relative;
|
|
@@ -88,7 +88,7 @@ class NotificationPopover extends _react.default.Component {
|
|
|
88
88
|
children: this.props.children
|
|
89
89
|
})
|
|
90
90
|
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
91
|
-
className: "notification-footer",
|
|
91
|
+
className: "notification-footer dtable-popover-footer",
|
|
92
92
|
onClick: this.onNotificationDialogToggle,
|
|
93
93
|
children: footerText
|
|
94
94
|
})]
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
min-width: 100%;
|
|
8
8
|
max-width: 15rem;
|
|
9
9
|
padding: 0.5rem 0;
|
|
10
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
10
11
|
background: #fff;
|
|
12
|
+
border: 1px solid rgba(0, 40, 100, 0.12);
|
|
13
|
+
border-radius: 3px;
|
|
11
14
|
z-index: 10001;
|
|
12
|
-
border: 1px solid #eee !important;
|
|
13
|
-
border-radius: 8px !important;
|
|
14
|
-
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1) !important;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.option-group .option-group-search {
|