Adding Diff view and Split view container as Model View Editor Components (#4831)

* intial code for diff view inside model view

* Adding basic Split View Container depending on Flex Layout

* Enabled resizing between top and bottom view

* cleaning up some of the sqlops references

* Adding height as per CR comment
This commit is contained in:
udeeshagautam
2019-04-08 11:11:14 -07:00
committed by GitHub
parent 02cf91c158
commit 01784dd186
11 changed files with 588 additions and 1 deletions

View File

@@ -67,6 +67,7 @@ declare module 'sqlops' {
withProperties<U>(properties: U): ComponentBuilder<T>;
withValidation(validation: (component: T) => boolean): ComponentBuilder<T>;
}
export interface ContainerBuilder<T extends Component, TLayout, TItemLayout> extends ComponentBuilder<T> {
withLayout(layout: TLayout): ContainerBuilder<T, TLayout, TItemLayout>;
withItems(components: Array<Component>, itemLayout?: TItemLayout): ContainerBuilder<T, TLayout, TItemLayout>;