Releases: shoutem/ui
v2.0.0
BREAKING CHANGE
Removes navigation
directory completely. We've decided to decouple navigation features from @shoutem/ui
. If you're using the Shoutem extension architecture you can still access this same API via the shoutem.navigation
extension.
Updates:
- refactored deprecated lifecycle methods into
getDerivedStateFromProps
,componentDidUpdate
andcomponentDidMount
- slight performance optimizations
v1.0.1
Updated the RestaurantsApp example app to React Native 0.59.10 and resolved import issues it had.
v1.0.0
ListView refactor:
- Refactor existing
ListView
component (an adaptation of React Native's now deprecatedListView
) to work withFlatList
andSectionList
under the hood - New
hasFeaturedItem
&renderFeaturedItem()
props used to render a specific item as the featured item, by default, if no specific item is provided, the first item from the overalldata
will be used as the featured item - New
sections
prop used to render specified sections with section headers (either the default one provided by the UI toolkit, or a specific one provided byrenderSectionHeader()
)
Fix require cycles
Update react-native-linear-gradient
Update react-native-vector-icons
Update react-native-photo-view (fork)
Switch to react-native-webview instead of React Native's WebView
v0.24.1
v0.24.0
v0.23.20
v0.23.0 ImageBackground component added
Added ImageBackground
component which allows nested components, analogous to React Native's ImageBackground
.
Image
component no longer supports nested components.
Added multiple styleName
s to InlineGallery component.
v0.22.2 Update to ViewPropTypes
Replaced ViewPropTypes
Updated react-native-navigation-experimental-compat
dependency
v0.22.1 Fix for Android Font Render
Fix for Android font rendering issue #257.
v0.22.0 Upgrade to React Native 0.50
- Switched from React.PropTypes to prop-types package.
- Switched from React.createClass to create-react-class package where appropriate.
- Switch from Image to ImageBackground.
- Examples updated
- Dependency updates