blue-react 8.1.6 → 8.1.7
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/style.css +2 -2
- package/dist/style.min.css +2 -2
- package/dist/style.scss +1 -1
- package/dist/types/components/Layout.d.ts +1 -0
- package/package.json +2 -2
package/dist/style.scss
CHANGED
|
@@ -59,6 +59,7 @@ export interface LayoutProps {
|
|
|
59
59
|
* You can use something like `window.blueLayoutRef.setState({ blockRouting: onHashChange })` globally to set the value from anywhere in your app.
|
|
60
60
|
*/
|
|
61
61
|
blockRouting?: (newMatch: string[], currentMatch: string[]) => void | boolean;
|
|
62
|
+
children?: any;
|
|
62
63
|
}
|
|
63
64
|
export interface LayoutState {
|
|
64
65
|
sidebarIn?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blue-react",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.7",
|
|
4
4
|
"description": "Blue React Components",
|
|
5
5
|
"license": "LGPL-3.0-or-later",
|
|
6
6
|
"main": "index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"clsx": "^1.1.1"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"react": "^16.0.0 || ^17.0.0"
|
|
38
|
+
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@babel/cli": "^7.10.4",
|