@csnext/cs-core
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -17,4 +17,9 @@ import { Dashboard } from './dashboard'; | ||
leftSidebar?: SidebarOptions; | ||
theme?: AppTheme; | ||
constructor(); | ||
} | ||
export declare class AppTheme { | ||
dark: boolean; | ||
primary: string; | ||
} | ||
export declare class SidebarOptions { | ||
@@ -24,2 +29,4 @@ open?: boolean; | ||
component?: any; | ||
mini?: boolean; | ||
clipped?: boolean; | ||
} | ||
@@ -32,2 +39,3 @@ export declare class NavigationOptions { | ||
text?: string; | ||
absolute?: boolean; | ||
} |
@@ -14,2 +14,10 @@ "use strict"; | ||
exports.Project = Project; | ||
// Application look and feel | ||
class AppTheme { | ||
constructor() { | ||
this.dark = false; | ||
this.primary = "red"; | ||
} | ||
} | ||
exports.AppTheme = AppTheme; | ||
class SidebarOptions { | ||
@@ -16,0 +24,0 @@ } |
{ | ||
"name": "@csnext/cs-core", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "cscore", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
@@ -15,6 +15,12 @@ import { Dashboard } from './dashboard'; | ||
public leftSidebar? : SidebarOptions = { }; | ||
public theme? : AppTheme; | ||
public constructor() { | ||
} | ||
} | ||
// Application look and feel | ||
export class AppTheme { | ||
dark = false; | ||
primary = "red"; | ||
} | ||
@@ -26,2 +32,4 @@ | ||
public component?: any; | ||
public mini?: boolean; | ||
public clipped?: boolean; | ||
} | ||
@@ -36,2 +44,3 @@ | ||
public text?: string; | ||
public absolute?: boolean; | ||
} | ||
@@ -38,0 +47,0 @@ |
7288
250