dtable-ui-component 7.0.0-ahn.21 → 7.0.0-ahn.23
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.
|
@@ -111,12 +111,14 @@ const MenuSelectStyle = exports.MenuSelectStyle = {
|
|
|
111
111
|
}),
|
|
112
112
|
singleValue: provided => {
|
|
113
113
|
return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), {}, {
|
|
114
|
-
color: 'var(--bs-body-color)'
|
|
114
|
+
color: 'var(--bs-body-color)',
|
|
115
|
+
margin: 0
|
|
115
116
|
});
|
|
116
117
|
},
|
|
117
118
|
multiValue: provided => {
|
|
118
119
|
return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), {}, {
|
|
119
|
-
color: 'var(--bs-body-color)'
|
|
120
|
+
color: 'var(--bs-body-color)',
|
|
121
|
+
margin: 0
|
|
120
122
|
});
|
|
121
123
|
},
|
|
122
124
|
multiValueRemove: styles => (0, _objectSpread2.default)((0, _objectSpread2.default)({}, styles), {}, {
|
|
@@ -135,7 +137,8 @@ const MenuSelectStyle = exports.MenuSelectStyle = {
|
|
|
135
137
|
const isDisabled = state.isDisabled;
|
|
136
138
|
return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), {}, {
|
|
137
139
|
color: 'var(--bs-bg-placeholder-color)',
|
|
138
|
-
opacity: isDisabled ? 0.65 : 1
|
|
140
|
+
opacity: isDisabled ? 0.65 : 1,
|
|
141
|
+
margin: 0
|
|
139
142
|
});
|
|
140
143
|
},
|
|
141
144
|
indicatorSeparator: (styles, state) => {
|
|
@@ -146,7 +149,7 @@ const MenuSelectStyle = exports.MenuSelectStyle = {
|
|
|
146
149
|
dropdownIndicator: (provided, state) => {
|
|
147
150
|
const isDisabled = state.isDisabled;
|
|
148
151
|
return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), {}, {
|
|
149
|
-
paddingRight: '
|
|
152
|
+
paddingRight: '16px',
|
|
150
153
|
'.dtable-font': {
|
|
151
154
|
color: 'var(--bs-icon-color) !important',
|
|
152
155
|
opacity: isDisabled ? 0.65 : 1
|