@basic-ui/material 1.0.0-alpha.51 → 1.0.0-alpha.52

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basic-ui/material",
3
- "version": "1.0.0-alpha.51",
3
+ "version": "1.0.0-alpha.52",
4
4
  "description": "Accessible React Components used as building blocks for UI patterns",
5
5
  "author": "Lucas Terra <lucasterra7@gmail.com>",
6
6
  "license": "MIT",
@@ -75,13 +75,12 @@ export const SearchBar = forwardRef<HTMLInputElement, SearchBarProps>(
75
75
  pl: leadingIcon ? rem(48) : rem(24),
76
76
  pr: trailingIcon ? rem(48) : rem(24),
77
77
  py: 0,
78
- transition: `outline-color .2s ${EASING_STANDARD}`,
79
- outlineStyle: 'solid',
80
- outlineWidth: rem(2),
81
- outlineColor: 'transparent',
82
- outlineOffset: rem(-1),
78
+ transition: `border-color .1s ${EASING_STANDARD}`,
79
+ borderStyle: 'solid',
80
+ borderWidth: rem(2),
81
+ borderColor: 'transparent',
83
82
  '&:focus': {
84
- outlineColor: hasError ? ('error' as const) : (color as any),
83
+ borderColor: hasError ? ('error' as const) : (color as any),
85
84
  },
86
85
  ...__css,
87
86
  }}