Releases: gsoft-inc/sg-orbit
Releases · gsoft-inc/sg-orbit
2021-05-17-v2
- @orbit-ui/react-components => 14.0.1
- @orbit-ui/react => 16.0.1
Quick release for Apricot.
Changes
- Added missing nullable controlled props #619
2021-05-17
- @orbit-ui/css-normalize => 4.0.0
- @orbit-ui/react-components => 14.0.0
- @orbit-ui/react => 16.0.0
Changes
- Focus ring improvement #512
- Padding issue with Disclosure #600
- TextLink should have an underline by default #599
Breaking
- Replace cancellablePromise by an AbortController #546
useAsyncSearch
doesn't fully handle by itself request cancellation anymore. You must now pass the provided signal
to your fetch
request.
const fetcher = useAsyncSearch(async (query, signal) => {
...
await fetch(url, { signal });
...
}
2021-05-12
- @orbit-ui/react-components => 13.2.0
- @orbit-ui/react => 15.2.0
Changes
- New Transition component #607
- Input components should always provide the current value as the second arguments #580
- Alert's icon size is too small when Alert's width is restricted #610
- The NumberInput component clamp behavior have been normalize to match the DateInput clamp behavior.
Breaking
- DateInput & DateRangeInput
minDate
andmaxDate
props have been renamed tomin
andmax
2021-05-11
- @orbit-ui/react-components => 13.1.1
- @orbit-ui/react => 15.1.1
Changes
- Checkbox's onChange property is ignored when inside a CheckboxGroup #601
2021-05-05
- @orbit-ui/react-components => 13.1.0
- @orbit-ui/react => 15.1.0
Changes
2021-04-28
2021-04-23
2021-04-16
- @orbit-ui/css-normalize => 3.0.0
- @orbit-ui/fonts => 3.0.0
- @orbit-ui/foundation => 6.0.0
- @orbit-ui/icons => 9.0.0
- @orbit-ui/react-components => 13.0.0
- @orbit-ui/tachyons => 6.0.0
- @orbit-ui/react => 15.0.0
Full rewrite of Orbit.
- Remove dependency to Semantic UI
- Added TypeScript support
- Added React 17 support
- Added theme and color scheme support to enable dark mode
- All components now follow WAI-ARIA AA specifications
- New documentation
2020-11-20
- @orbit-ui/react-components => 11.1.0
- @orbit-ui/react => 13.1.0
@orbit-ui/react-components [minor]
Select
- A select item now support a tooltip by providing a
tooltip
key toselectItem
.