nexaas-ui-components 1.0.70 → 1.0.71
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3221,9 +3221,9 @@ var customStyles2 = {
|
|
|
3221
3221
|
...provided,
|
|
3222
3222
|
cursor: "pointer",
|
|
3223
3223
|
border: state.selectProps.hasError ? "1px solid var(--dangerous-700)" : state.menuIsOpen ? "1px solid var(--blue-700)" : "1px solid var(--neutral-300)",
|
|
3224
|
-
boxShadow: "none",
|
|
3224
|
+
boxShadow: state.isFocused ? "0 0 0 2px var(--surface), 0 0 0 3.5px var(--blue-500)" : "none",
|
|
3225
3225
|
outline: "none",
|
|
3226
|
-
borderRadius: "0.5rem",
|
|
3226
|
+
borderRadius: state.isFocused ? "2px" : "0.5rem",
|
|
3227
3227
|
placeholder: " ",
|
|
3228
3228
|
height: "46px",
|
|
3229
3229
|
backgroundColor: state.isDisabled ? "var(--light-100)" : "var(--surface)",
|