@common-stack/core 6.0.6-alpha.84 → 6.0.6-alpha.91

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.
@@ -25,6 +25,7 @@ export interface IMenuDataItem {
25
25
  icon?: string | {
26
26
  name: string;
27
27
  props?: Record<string, any>;
28
+ style?: Record<string, any>;
28
29
  };
29
30
  /**
30
31
  * @name Internationalization key for custom menus
@@ -35,7 +35,7 @@ export interface IRouteModule extends IMenuDataItem, IGeneratedWrapperOptions {
35
35
  * @description Dynamic import of the Component to render for the route.
36
36
  */
37
37
  component?: () => Promise<{
38
- default: LazyExoticComponent<ComponentType<any>>;
38
+ default: ComponentType<any>;
39
39
  }>;
40
40
  /**
41
41
  * @name Modal Route
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/core",
3
- "version": "6.0.6-alpha.84",
3
+ "version": "6.0.6-alpha.91",
4
4
  "description": "Common core for higher packages to depend on",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -26,5 +26,5 @@
26
26
  "typescript": {
27
27
  "definition": "lib/index.d.ts"
28
28
  },
29
- "gitHead": "9be44348b6a4062bc87d71facd35c055002a5b99"
29
+ "gitHead": "e961c194190a018fca6bcc40999e431f57430c4c"
30
30
  }