Getting started

If you upgraded your project using the Webapp Rocket Generator you can skip to step 2.

  1. Install @totalsoft/rocket-ui package and the following packages must be uninstalled:

  • @totalsoft_oss/rocket-ui.core

  • @totalsoft_oss/rocket-ui.themes

or

  • @bit/totalsoft_oss.react-mui.kit.core

  1. For each component that was imported from one of the following libraries: @totalsoft_oss/rocket-ui.core or @bit/totalsoft_oss.react-mui.kit.core the import must be changed to:

//old way
import { IconButton } from '@totalsoft_oss/rocket-ui.core'
//new way
import { IconButton } from '@totalsoft/rocket-ui'

The themes can also be imported from @totalsoft/rocket-ui, there are no more different packages:

import { defaultTheme } from '@totalsoft/rocket-ui'

Check out our new components library for more information:

Last updated