Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 999 Bytes

0.31.md

File metadata and controls

28 lines (21 loc) · 999 Bytes

Upgrade 0.30 to 0.31

Change startupjs and all @startupjs/* dependencies in your package.json to ^0.31.

BREAKING CHANGES

  • Tabs: Use react-native-tab-view instead of our broken implementation new api. It requires to install react-native-gesture-handler and react-native-reanimated. Also run npx startupjs link to link startupjs library.

  • Popover, Dropdown, Drawer, TextInput, Tooltip, Modal, AutoSuggest: See in PR

  • Slicer: remove component

  • wrap your App in Root/index.js in Portal.Provider

    import App from 'startupjs/app'
    import { Portal } from '@startupjs/ui'
    import * as main from '../main'
    
    export default observer(() => {
      return pug`
        Portal.Provider
          App(
            apps={ main }
          )
      `
    })

For full list of new features and bug fixes see CHANGELOG