Support vertical orientation for toolbar (#2308)

* Support vertical orientation for toolbar modelview component

* Add tab support for each button

* Fix padding and simplify styles
This commit is contained in:
Kevin Cunnane
2018-08-23 10:54:20 -07:00
committed by GitHub
parent 7a30d535e8
commit 84da9d289b
6 changed files with 69 additions and 17 deletions

View File

@@ -285,6 +285,15 @@ export enum CardType {
Details = 'Details'
}
export enum Orientation {
Horizontal = 'horizontal',
Vertical = 'vertial'
}
export interface ToolbarLayout {
orientation: Orientation;
}
export class TreeComponentItem extends TreeItem {
checked?: boolean;
}