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.js CHANGED
@@ -3189,9 +3189,9 @@ var customStyles2 = {
3189
3189
  ...provided,
3190
3190
  cursor: "pointer",
3191
3191
  border: state.selectProps.hasError ? "1px solid var(--dangerous-700)" : state.menuIsOpen ? "1px solid var(--blue-700)" : "1px solid var(--neutral-300)",
3192
- boxShadow: "none",
3192
+ boxShadow: state.isFocused ? "0 0 0 2px var(--surface), 0 0 0 3.5px var(--blue-500)" : "none",
3193
3193
  outline: "none",
3194
- borderRadius: "0.5rem",
3194
+ borderRadius: state.isFocused ? "2px" : "0.5rem",
3195
3195
  placeholder: " ",
3196
3196
  height: "46px",
3197
3197
  backgroundColor: state.isDisabled ? "var(--light-100)" : "var(--surface)",