@purple/phoenix-components 5.29.0 → 5.30.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/bundle.cjs.js +407 -295
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +437 -325
- package/dist/bundle.esm.js.map +1 -1
- package/dist/bundle.umd.js +442 -330
- package/dist/bundle.umd.js.map +1 -1
- package/dist/index.d.ts +92 -88
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ Before merging to master run `npm run release:feature`, this will create a new v
|
|
|
54
54
|
2. Import `Theme` from Phoenix Components and wrap the app in `<ThemeProvider>` from `styled-components` providing the `Theme` object. If your repository already contains custom `styled-components` theme, merge both themes together. Also, import `<GlobalStyles>` component which provides styles such as default font and sizes, and include it once in your project.
|
|
55
55
|
|
|
56
56
|
```typescript
|
|
57
|
-
import merge from '
|
|
57
|
+
import { merge } from 'es-toolkit'
|
|
58
58
|
import { ThemeProvider } from 'styled-components'
|
|
59
59
|
import { GlobalStyles, Theme as PhoenixTheme } from '@purple/phoenix-components'
|
|
60
60
|
import { Theme } from './CustomAppTheme'
|