acsi-core 0.1.7 → 0.1.8
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/dist/index.js +5 -8
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +5 -8
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1146,9 +1146,7 @@ var CoreSelect = function CoreSelect(props) {
|
|
|
1146
1146
|
};
|
|
1147
1147
|
var placeholderStyles = function placeholderStyles(base) {
|
|
1148
1148
|
var styles = _extends({}, base, {
|
|
1149
|
-
color: COLORS.lightGray
|
|
1150
|
-
position: "relative",
|
|
1151
|
-
top: "-4px"
|
|
1149
|
+
color: COLORS.lightGray
|
|
1152
1150
|
});
|
|
1153
1151
|
return styles;
|
|
1154
1152
|
};
|
|
@@ -1162,15 +1160,14 @@ var CoreSelect = function CoreSelect(props) {
|
|
|
1162
1160
|
};
|
|
1163
1161
|
var valueContainerStyles = function valueContainerStyles(base) {
|
|
1164
1162
|
var styles = _extends({}, base, {
|
|
1165
|
-
height: isMulti ? undefined : "32px"
|
|
1163
|
+
height: isMulti ? undefined : "32px",
|
|
1164
|
+
position: "relative",
|
|
1165
|
+
top: "-3px"
|
|
1166
1166
|
});
|
|
1167
1167
|
return styles;
|
|
1168
1168
|
};
|
|
1169
1169
|
var singleValueStyles = function singleValueStyles(base) {
|
|
1170
|
-
var styles = _extends({}, base
|
|
1171
|
-
position: "relative",
|
|
1172
|
-
top: "-4px"
|
|
1173
|
-
});
|
|
1170
|
+
var styles = _extends({}, base);
|
|
1174
1171
|
return styles;
|
|
1175
1172
|
};
|
|
1176
1173
|
var optionStyles = function optionStyles(base, state) {
|