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.modern.js
CHANGED
|
@@ -1143,9 +1143,7 @@ var CoreSelect = function CoreSelect(props) {
|
|
|
1143
1143
|
};
|
|
1144
1144
|
var placeholderStyles = function placeholderStyles(base) {
|
|
1145
1145
|
var styles = _extends({}, base, {
|
|
1146
|
-
color: COLORS.lightGray
|
|
1147
|
-
position: "relative",
|
|
1148
|
-
top: "-4px"
|
|
1146
|
+
color: COLORS.lightGray
|
|
1149
1147
|
});
|
|
1150
1148
|
return styles;
|
|
1151
1149
|
};
|
|
@@ -1159,15 +1157,14 @@ var CoreSelect = function CoreSelect(props) {
|
|
|
1159
1157
|
};
|
|
1160
1158
|
var valueContainerStyles = function valueContainerStyles(base) {
|
|
1161
1159
|
var styles = _extends({}, base, {
|
|
1162
|
-
height: isMulti ? undefined : "32px"
|
|
1160
|
+
height: isMulti ? undefined : "32px",
|
|
1161
|
+
position: "relative",
|
|
1162
|
+
top: "-3px"
|
|
1163
1163
|
});
|
|
1164
1164
|
return styles;
|
|
1165
1165
|
};
|
|
1166
1166
|
var singleValueStyles = function singleValueStyles(base) {
|
|
1167
|
-
var styles = _extends({}, base
|
|
1168
|
-
position: "relative",
|
|
1169
|
-
top: "-4px"
|
|
1170
|
-
});
|
|
1167
|
+
var styles = _extends({}, base);
|
|
1171
1168
|
return styles;
|
|
1172
1169
|
};
|
|
1173
1170
|
var optionStyles = function optionStyles(base, state) {
|