Designer-view component for top-nav

Create a designer-view component for opening a designer view from the top-nav
Updated the API to return the designers as a list and not as an object
Created a designer-frame component that will get a designer url to open in the dedicated position

Change-Id: Ic42f7695277e88aacdeaa74d4d0f95b49ce44999
Issue-ID: SDC-884
Signed-off-by: Idan Amit <ia096e@intl.att.com>
diff --git a/catalog-ui/src/app/models/designers-config.ts b/catalog-ui/src/app/models/designers-config.ts
new file mode 100644
index 0000000..c784be2
--- /dev/null
+++ b/catalog-ui/src/app/models/designers-config.ts
@@ -0,0 +1,17 @@
+
+export class Designer {
+    displayName: string;
+    designerHost: string;
+    designerPort: number;
+    designerPath: string;
+    designerStateUrl: string;
+    designerProtocol: string;
+    designerButtonLocation: Array<string>;
+    designerTabPresentation: Array<string>;
+}
+
+export type Designers = Array<Designer>;
+
+export class DesignersConfiguration {
+    static designers: Designers;
+}