@common-stack/client-core
Advanced tools
Comparing version 0.0.14-32 to 0.0.14-33
@@ -12,2 +12,3 @@ import { IFeature, FeatureParams } from '../interfaces'; | ||
routeConfig: any; | ||
menuConfig: any; | ||
navItem: any; | ||
@@ -27,2 +28,4 @@ navItemRight: any; | ||
abstract getConfiguredRoutes(routeSearch?: string): any; | ||
abstract getMenus(withRoot?: boolean, rootComponent?: any): any; | ||
abstract getConfiguredMenus(routeSearch?: string): any; | ||
readonly abstract navItems: any; | ||
@@ -29,0 +32,0 @@ readonly abstract navItemsRight: any; |
@@ -116,5 +116,6 @@ module.exports = | ||
this.route = combine(arguments, arg => arg.route); | ||
this.routeConfig = combine(arguments, arg => arg.routeConfig); | ||
this.menuConfig = combine(arguments, arg => arg.menuConfig); | ||
this.navItem = combine(arguments, arg => arg.navItem); | ||
this.navItemRight = combine(arguments, arg => arg.navItemRight); | ||
this.routeConfig = combine(arguments, arg => arg.routeConfig); | ||
this.rootComponentFactory = combine(arguments, arg => arg.rootComponentFactory); | ||
@@ -121,0 +122,0 @@ this.dataRootComponent = combine(arguments, arg => arg.dataRootComponent); |
@@ -15,2 +15,3 @@ export interface ClientStateParams { | ||
readonly routeConfig?: any; | ||
readonly menuConfig?: any; | ||
readonly navItem?: any; | ||
@@ -35,2 +36,3 @@ readonly navItemRight?: any; | ||
readonly routeConfig: any; | ||
readonly menuConfig?: any; | ||
readonly navItem: any; | ||
@@ -49,2 +51,4 @@ readonly navItemRight: any; | ||
readonly getConfiguredRoutes: any; | ||
readonly getMenus: any; | ||
readonly getConfiguredMenus: any; | ||
readonly navItems: any; | ||
@@ -51,0 +55,0 @@ readonly navItemsRight: any; |
{ | ||
"name": "@common-stack/client-core", | ||
"version": "0.0.14-32", | ||
"version": "0.0.14-33", | ||
"description": "Sample core for higher packages to depend on", | ||
@@ -56,3 +56,3 @@ "main": "lib/index.js", | ||
"dependencies": { | ||
"@common-stack/core": "^0.0.14-32" | ||
"@common-stack/core": "^0.0.14-33" | ||
}, | ||
@@ -59,0 +59,0 @@ "peerDependencies": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
27175
325