dtable-ui-component 5.2.5-alpha3 → 5.2.5-alpha4
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/DTableSelect/utils.js +6 -19
- package/package.json +1 -1
|
@@ -102,25 +102,12 @@ const MenuSelectStyle = exports.MenuSelectStyle = {
|
|
|
102
102
|
zIndex: 9999
|
|
103
103
|
}),
|
|
104
104
|
indicatorSeparator: () => {},
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
// });
|
|
112
|
-
// },
|
|
113
|
-
// clearIndicator: (provided, state) => {
|
|
114
|
-
// const { isDisabled, isFocused } = state;
|
|
115
|
-
// return ({
|
|
116
|
-
// ...provided,
|
|
117
|
-
// cursor: isDisabled ? 'default' : 'pointer',
|
|
118
|
-
// backgroundColor: isFocused ? '#f5f5f5' : '#fff',
|
|
119
|
-
// });
|
|
120
|
-
// },
|
|
121
|
-
IndicatorsContainer: () => ({
|
|
122
|
-
padding: '8px 6px'
|
|
123
|
-
})
|
|
105
|
+
IndicatorsContainer: provided => {
|
|
106
|
+
return {
|
|
107
|
+
...provided,
|
|
108
|
+
padding: '8px 6px'
|
|
109
|
+
};
|
|
110
|
+
}
|
|
124
111
|
};
|
|
125
112
|
const DropdownIndicator = props => {
|
|
126
113
|
return _reactSelect.components.DropdownIndicator && /*#__PURE__*/_react.default.createElement(_reactSelect.components.DropdownIndicator, props, /*#__PURE__*/_react.default.createElement("span", {
|