piral-core 0.15.0-beta.4672 → 0.15.0-beta.4696

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.
@@ -56,6 +56,10 @@ export interface PageComponentProps<T = any, S = any> extends RouteBaseProps<T,
56
56
  * The meta data registered with the page.
57
57
  */
58
58
  meta: PiralPageMeta;
59
+ /**
60
+ * The children of the page.
61
+ */
62
+ children: ReactNode;
59
63
  }
60
64
  /**
61
65
  * The meta data registered for a page.
@@ -56,6 +56,10 @@ export interface PageComponentProps<T = any, S = any> extends RouteBaseProps<T,
56
56
  * The meta data registered with the page.
57
57
  */
58
58
  meta: PiralPageMeta;
59
+ /**
60
+ * The children of the page.
61
+ */
62
+ children: ReactNode;
59
63
  }
60
64
  /**
61
65
  * The meta data registered for a page.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-core",
3
- "version": "0.15.0-beta.4672",
3
+ "version": "0.15.0-beta.4696",
4
4
  "description": "The core library for creating a Piral instance.",
5
5
  "keywords": [
6
6
  "portal",
@@ -71,8 +71,8 @@
71
71
  },
72
72
  "dependencies": {
73
73
  "enhanced-resolve": "^5.10.0",
74
- "piral-base": "0.15.0-beta.4672",
75
- "piral-debug-utils": "0.15.0-beta.4672",
74
+ "piral-base": "0.15.0-beta.4696",
75
+ "piral-debug-utils": "0.15.0-beta.4696",
76
76
  "zustand": "^3.0.0"
77
77
  },
78
78
  "peerDependencies": {
@@ -98,5 +98,5 @@
98
98
  "react-router-dom",
99
99
  "tslib"
100
100
  ],
101
- "gitHead": "cd1026b70c90290fa5ba3f9b86c038eb852595be"
101
+ "gitHead": "65701e0e33084e0c5a127f735bd3897019bfa7b7"
102
102
  }
package/src/types/api.ts CHANGED
@@ -73,6 +73,10 @@ export interface PageComponentProps<T = any, S = any> extends RouteBaseProps<T,
73
73
  * The meta data registered with the page.
74
74
  */
75
75
  meta: PiralPageMeta;
76
+ /**
77
+ * The children of the page.
78
+ */
79
+ children: ReactNode;
76
80
  }
77
81
 
78
82
  /**