r-win-ui v2.0.7 🌈
react-windows-ui -v2.0.7
ChangeLog
1. feat: added prop tooltip:
<Component tooltip="hover tooltip title" />
tooltipadded for following components:
- AvatarView
- ImageView
- ProgressBar
- Button
- ButtonIcon
- InputText
- InputDate
- InputSearch*
- Checkbox
- SliderBar
- Switch
2. feat: added component <TransitionToLeft /> :
Add TransitionToLeft to the app Router:
App.js
<Router>
<TransitionToLeft />
</Router>Control Transition fallback to child NavPageContainer using prop
animateTransition={true}
Page.js
<NavPageContainer
animateTransition={true}>
...
</NavPageContainer>3. fix: component Alert :
Fixes setTheme="light" on mozilla browsers.4. feat: component Gauge :
Added prop
type="fill":
Default: type="border"
<Gauge
type="fill"
/>