Skip to content

v10.0.0

Compare
Choose a tag to compare
@nowyDEV nowyDEV released this 26 Oct 12:00
· 40 commits to master since this release
704ab7b

What's Changed

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