dtable-ui-component 6.0.110-ast.3 → 6.0.110-ast.6
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/DTableCustomizeSelect/index.css +2 -1
- package/lib/DTableCustomizeSelect/select-option-group/index.css +2 -3
- package/lib/DTableSelect/index.js +3 -1
- package/lib/DTableSelect/select-dropdown-indicator/index.css +4 -0
- package/lib/DTableSelect/select-dropdown-indicator/index.js +6 -2
- package/package.json +1 -1
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
white-space: nowrap;
|
|
90
90
|
color: #868E96;
|
|
91
91
|
margin-right: 8px;
|
|
92
|
+
opacity: 0.65;
|
|
92
93
|
}
|
|
93
94
|
|
|
94
95
|
.seatable-customize-select .selected-option-show {
|
|
@@ -109,6 +110,6 @@
|
|
|
109
110
|
|
|
110
111
|
.seatable-customize-select .header-icon {
|
|
111
112
|
display: inline-block;
|
|
112
|
-
padding: 0
|
|
113
|
+
padding: 0 .5rem 0 0!important;
|
|
113
114
|
margin-left: 0 !important;
|
|
114
115
|
}
|
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
.seatable-option-group .none-search-result {
|
|
49
49
|
height: 100px;
|
|
50
50
|
width: 100%;
|
|
51
|
-
padding: 10px;
|
|
52
51
|
color: var(--bs-body-secondary-color);
|
|
53
52
|
}
|
|
54
53
|
|
|
@@ -121,8 +120,8 @@
|
|
|
121
120
|
background-color: #f5f5f5;
|
|
122
121
|
}
|
|
123
122
|
|
|
124
|
-
.
|
|
123
|
+
.select-label .header-icon {
|
|
125
124
|
display: inline-block;
|
|
126
|
-
padding: 0
|
|
125
|
+
padding: 0 .5rem 0 0!important;
|
|
127
126
|
margin-left: 0 !important;
|
|
128
127
|
}
|
|
@@ -17,7 +17,9 @@ const _excluded = ["innerProps"],
|
|
|
17
17
|
_excluded2 = ["children"];
|
|
18
18
|
const DropdownIndicator = props => {
|
|
19
19
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactSelect.components.DropdownIndicator, (0, _objectSpread2.default)((0, _objectSpread2.default)({}, props), {}, {
|
|
20
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_selectDropdownIndicator.default, {
|
|
20
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_selectDropdownIndicator.default, {
|
|
21
|
+
isDisabled: props.isDisabled
|
|
22
|
+
})
|
|
21
23
|
}));
|
|
22
24
|
};
|
|
23
25
|
const ClearIndicator = _ref => {
|
|
@@ -9,13 +9,17 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
9
9
|
var _DTableIcon = _interopRequireDefault(require("../../DTableIcon"));
|
|
10
10
|
require("./index.css");
|
|
11
11
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
12
|
-
const SelectDropdownIndicator =
|
|
12
|
+
const SelectDropdownIndicator = _ref => {
|
|
13
|
+
let {
|
|
14
|
+
isDisabled
|
|
15
|
+
} = _ref;
|
|
13
16
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
14
17
|
className: "select-dropdown-indicator d-flex align-items-center",
|
|
15
18
|
"aria-hidden": "true",
|
|
16
19
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_DTableIcon.default, {
|
|
17
20
|
symbol: "down",
|
|
18
|
-
color: "var(--bs-icon-color)"
|
|
21
|
+
color: "var(--bs-icon-color)",
|
|
22
|
+
className: isDisabled ? 'dis-multicolor-icon-down' : ''
|
|
19
23
|
})
|
|
20
24
|
});
|
|
21
25
|
};
|