v10.0.0
What's Changed
- Update Storybook updates to ^7.4.6 by @renovate in #672
- Update dependency @types/styled-system to ^5.1.19 by @renovate in #671
- Update dependency @types/node to ^18.18.5 by @renovate in #630
- [SUP-1642] Enable clear function on search input by @Ninja-Yujin in #670
- Update Testing packages by @renovate in #675
- Update dependency @types/styled-system to ^5.1.20 by @renovate in #674
- Deprecate and remove awesome styled grid from main bundle by @nowyDEV in #677
Migration
react-awesome-styled-grid
has been removed and won't be automatically installed.
If any of below grid components were used in your app:
Container,
Row,
Col,
Hidden,
Visible,
You must setup react-awesome-styled-grid
on your own and import those components from that library instead of GNUI.
Setup guide:
Install grid library
npm install react-awesome-styled-grid
Implement required fix
npm install -D patch-package
Make necessary changes inside two files:
/node_modules/react-awesome-styled-grid/lib/react-awesome-styled-grid.cjs.js
/node_modules/react-awesome-styled-grid/lib/react-awesome-styled-grid.es.js
- void 0 === i && (i = global);
+ void 0 === i && (i = window);
Apply patch:
npx patch-package react-awesome-styled-grid
Update package.json
:
"scripts": {
...
"postinstall": "patch-package"
}
Full Changelog: v9.2.0...v10.0.0