Feature/bdc create (#4012)

* initial checkin

* rename

* wizard pages

* target cluster radio button group

* resource strings

* existing cluster picker

* revert changes to unwanted file

* revert unwanted changes-2

* update cluster icon

* settings page

* fix group container

* hyperlink component

* address review comments

* comments part 2
This commit is contained in:
Alan Ren
2019-02-12 22:13:30 -08:00
committed by GitHub
parent dd6735ec04
commit b3a16fd0ce
36 changed files with 1061 additions and 63 deletions

View File

@@ -164,7 +164,8 @@ export enum ModelComponentTypes {
TreeComponent,
FileBrowserTree,
Editor,
Dom
Dom,
Hyperlink
}
export interface IComponentShape {
@@ -262,6 +263,7 @@ export interface CardProperties {
label: string;
value?: string;
actions?: ActionDescriptor[];
descriptions?: string[];
status?: StatusIndicator;
selected?: boolean;
cardType: CardType;
@@ -300,7 +302,8 @@ export enum DeclarativeDataType {
export enum CardType {
VerticalButton = 'VerticalButton',
Details = 'Details'
Details = 'Details',
ListItem = 'ListItem'
}
export enum Orientation {
@@ -492,7 +495,7 @@ export class CellRange {
}
constructor(start: number, end: number) {
if (typeof(start) !== 'number' || typeof(start) !== 'number' || start < 0 || end < 0) {
if (typeof (start) !== 'number' || typeof (start) !== 'number' || start < 0 || end < 0) {
throw new Error('Invalid arguments');
}