@csnext/cs-core
Advanced tools
Comparing version 0.0.20 to 0.0.22
@@ -22,2 +22,4 @@ import { IMessageBusService } from './../utils/message-bus/message-bus-service'; | ||
menus?: IMenu[]; | ||
columns?: number; | ||
rows?: number; | ||
} | ||
@@ -24,0 +26,0 @@ export interface IWidget { |
{ | ||
"name": "@csnext/cs-core", | ||
"version": "0.0.20", | ||
"version": "0.0.22", | ||
"description": "cscore", | ||
@@ -19,7 +19,7 @@ "main": "./dist/index.js", | ||
"dependencies": { | ||
"typescript-collections": "^1.2.5" | ||
"typescript-collections": "^1.3.2" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^2.7.2" | ||
"typescript": "^2.8.3" | ||
} | ||
} |
@@ -6,1 +6,6 @@ export interface IDashboardOptions { | ||
} | ||
export interface IGridDashboardOptions extends IDashboardOptions { | ||
gap?: number; | ||
} |
@@ -1,5 +0,6 @@ | ||
import { IMessageBusService } from './../utils/message-bus/message-bus-service'; | ||
import { IMenu } from './menu'; | ||
import { EditorSchema } from './editor-schema'; | ||
import { IDashboard } from '../index'; | ||
import { IWidgetOptions } from "./../../dist/classes/widget.d"; | ||
import { IMessageBusService } from "./../utils/message-bus/message-bus-service"; | ||
import { IMenu } from "./menu"; | ||
import { EditorSchema } from "./editor-schema"; | ||
import { IDashboard } from "../index"; | ||
@@ -26,2 +27,10 @@ export enum WidgetType { | ||
export interface IGridWidgetOptions extends IWidgetOptions { | ||
columnStart?: number; | ||
columnEnd?: number; | ||
rowStart?: number; | ||
rowEnd?: number; | ||
} | ||
export interface IWidget { | ||
@@ -28,0 +37,0 @@ id?: string; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
40049
1015