Repository: asterixdb
Updated Branches:
  refs/heads/master 6de3315d3 -> adaff3ce2


http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/app/shared/services/async-metadata.service.ts
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-dashboard/src/node/src/app/shared/services/async-metadata.service.ts
 
b/asterixdb/asterix-dashboard/src/node/src/app/shared/services/async-metadata.service.ts
deleted file mode 100755
index 8492a54..0000000
--- 
a/asterixdb/asterix-dashboard/src/node/src/app/shared/services/async-metadata.service.ts
+++ /dev/null
@@ -1,120 +0,0 @@
-/*
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-import { Injectable, ApplicationRef  } from '@angular/core';
-import { Store } from '@ngrx/store';
-import { Observable } from "rxjs/Observable";
-import 'rxjs/add/operator/map';
-import 'rxjs/add/observable/from';
-import * as dataverseActions from '../../shared/actions/dataverse.actions'
-import * as datasetActions from '../../shared/actions/dataset.actions'
-import * as datatypesActions from '../../shared/actions/datatype.actions'
-import * as indexesActions from '../../shared/actions/index.actions'
-import * as metadataActions from '../../shared/actions/metadata.actions'
-
-/*
-       Metadata service watch any changes in Dataverses, Datasets, Datatypes, 
indexes
-       state in store and builds a tree state structure with 
datasets->dataverse->datatype->index relationship
-*/
-@Injectable()
-export class MetadataService {
-
-       /* Arrays to expose updated dataverses, datasets, datatypes,
-       indexes collections*/
-       dv = [];
-       ds = [];
-       dt = [];
-       idx = [];
-
-       /*
-       * contructor will initialize the store state watchers
-       */
-       constructor(private store: Store<any>, private ref: ApplicationRef ) {
-
-               /* Watching changes in dataverse collection */
-               this.store.select(s => s.dataverse.dataverses).subscribe((data: 
any) => {
-                       if (data.results) {
-                               this.dv = []
-                               for (let i = 0; i < data.results.length; i++) {
-                                               let node = { id: 0, 
DataverseName: "", Datasets:[] }
-                                               node.id = i
-                                               node.DataverseName = 
data.results[i]['DataverseName']
-                                               this.dv.push(node)
-                               }
-                               this.updateMetadataTree();
-                       }
-               })
-
-               /* Watching changes in datasets collections */
-               this.store.select(s => s.dataset.datasets).subscribe((data: 
any) => {
-                       if (data.results) {
-                               this.ds = data.results;
-                               this.updateMetadataTree();
-                       }
-               })
-
-               /* Watching changes in datatypes collections */
-               this.store.select(s => s.datatype.datatypes).subscribe((data: 
any) => {
-                       if (data.results) {
-                               this.dt = data.results;
-                               this.updateMetadataTree();
-                       }
-               })
-
-               /* Watching changes in index collections */
-               this.store.select(s => s.index.indexes).subscribe((data: any) 
=> {
-                       if (data.results) {
-                               this.idx = data.results;
-                               this.updateMetadataTree();
-                       }
-               })
-       }
-
-       /*
-       *       convenience function to update and return the metadata tree.
-       */
-       getMetadataTree(): Observable<any[]> {
-               return Observable.from(this.dv);
-       }
-         
-       updateMetadataTree() {
-       for (let i = 0; i < this.dv.length; i++) {
-               // Filling datasets
-               this.dv[i]['Datasets'] = [];
-               for (let j = 0; j < this.ds.length; j++) {
-                       if (this.ds[j]['DataverseName'] === 
this.dv[i]['DataverseName']){
-
-                               // Filling datatypes, there is one datatype per 
dataset
-                               this.ds[j]['Datatype'] = [];
-                               for (let k = 0; k < this.dt.length; k++) {
-                                       if (this.dt[k]['DatatypeName'] === 
this.ds[j]['DatatypeName']){
-                                               this.ds[j]['Datatype'] = 
this.dt[k]; // push(this.dt[k])
-                                       }
-                               }
-
-                               // Filling indexes
-                               this.ds[j]['Indexes'] = [];
-                               for (let l = 0; l < this.idx.length; l++) {
-                                       if (this.idx[l]['DatasetName'] === 
this.ds[j]['DatasetName']){
-                                               
this.ds[j]['Indexes'].push(this.idx[l])
-                                       }
-                               }
-
-                               this.dv[i]['Datasets'].push(this.ds[j])
-                       }
-               }
-       }
-
-       this.store.dispatch(new metadataActions.UpdateMetadataTree());
-       }       
-}

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/app/shared/services/async-query.service.ts
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-dashboard/src/node/src/app/shared/services/async-query.service.ts
 
b/asterixdb/asterix-dashboard/src/node/src/app/shared/services/async-query.service.ts
index e37872e..30463b5 100755
--- 
a/asterixdb/asterix-dashboard/src/node/src/app/shared/services/async-query.service.ts
+++ 
b/asterixdb/asterix-dashboard/src/node/src/app/shared/services/async-query.service.ts
@@ -12,179 +12,194 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 */
 import { Injectable } from '@angular/core';
-import { HttpClient } from '@angular/common/http';
-import { Store } from '@ngrx/store';
-import { Observable } from "rxjs/Observable";
-import 'rxjs/add/operator/map';
+import { HttpClient, HttpHeaders } from '@angular/common/http';
+import { Observable } from 'rxjs';
+import 'rxjs/add/operator/map'
+import 'rxjs/add/operator/catch'
+import { environment } from '../../../environments/environment';
 
-var AsterixRestApiUrl = 'http://localhost:19002/query/service'; 
-//var AsterixRestApiUrl = '/query-service'; 
+/*
+* location.host gives the origin hostname
+* since we have to connect to the query-service api in the origin host
+*/
+/* Using local proxy if webpack and development */
+var AsterixRestApiUrl = '/query-service';
+
+if (environment.production) {
+    var locationHost =  self.location.host.split(':')
+    var AsterixRestApiUrl = 'http://' + locationHost[0] + 
':19002/query/service';
+}
 
 /*
 * SQL query service using AsterixDB REST API /query/service
 */
 @Injectable()
 export class SQLService {
-
-       /*
-       * SQLQueryService constructor using
-       * HttpClient from Angular 4
-       */
-       constructor(private http: HttpClient) {}
-
-       /*
-       * sends a select sql++ query to return all the dataverses
-       * from AsterixDB Metadata
-       */
-       selectDataverses() : Observable<any[]> {
-                let query = "SELECT VALUE dv FROM Metadata.`Dataverse` dv"
-                return this.executeSQLQuery(query);
-       }
-
-       /*
-       * sends a select sql++ query to return all the datasets
-       * from AsterixDB Metadata
-       */
-       selectDatasets() : Observable<any[]> {
-               let query = "SELECT VALUE ds FROM Metadata.`Dataset` ds"
-               return this.executeSQLQuery(query);
-       }
-
-       /*
-       * sends a select sql++ query to return all the datatypes
-       * from AsterixDB Metadata
-       */
-       selectDatatypes() : Observable<any[]> {
-       let query = "SELECT VALUE dt FROM Metadata.`Datatype` dt"
-               return this.executeSQLQuery(query);
-       }
-
-       /*
-       * sends a select sql++ query to return all the indexes
-       * from AsterixDB Metadata
-       */
-       selectIndexes() : Observable<any[]> {
-       let query = "SELECT VALUE ix FROM Metadata.`Index` ix"
-               return this.executeSQLQuery(query);
-       }
-
-       /*
-       * creates a sql++ ddl query to create a Dataverse
-       * from AsterixDB Metadata
-       */
-       createDataverse(dataverse: string) : Observable<any[]> {
-       let ddlQuery = "CREATE DATAVERSE " + dataverse + ";";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * creates a sql++ ddl query to drop a Dataverse
-       * from AsterixDB Metadata
-       */
-       dropDataverse(dataverse: string) : Observable<any[]> {
-               let ddlQuery = "DROP DATAVERSE " + dataverse; // " IF EXISTS;";
-               return this.executeDDLSQLQuery(ddlQuery);
-         }
-
-       /*
-       * creates a sql++ ddl query to create a Dataset
-       * from AsterixDB Metadata
-       */
-       createDataset(dataset: string) : Observable<any[]> {
-               let ddlQuery = "CREATE DATASET " + dataset + ";";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * creates a sql++ ddl query to drop a Dataset
-       * from AsterixDB Metadata
-       */
-       dropDataset(dataset: string) : Observable<any[]> {
-               let ddlQuery = "DROP DATASET " + dataset; //" IF EXISTS;";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * creates a sql++ ddl query to create a Datatype
-       * from AsterixDB Metadata
-       */
-       createDatatype(datatype: string) : Observable<any[]> {
-       let ddlQuery = "CREATE DATATYPE " + datatype + ";";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * creates a sql++ ddl query to drop a Datatype
-       * from AsterixDB Metadata
-       */
-       dropDatatype(datatype: string) : Observable<any[]> {
-               let ddlQuery = "DROP TYPE " + datatype; //" IF EXISTS;";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * creates a sql++ ddl query to create a Index
-       * from AsterixDB Metadata
-       */
-       createIndex(index: string) : Observable<any[]> {
-               let ddlQuery = "CREATE INDEX " + index + ";";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * creates a sql++ ddl query to drop a Index
-       * from AsterixDB Metadata
-       */
-       dropIndex(index: string) : Observable<any[]> {
-               let ddlQuery = "DROP INDEX " + index; // + " IF EXISTS;";
-               return this.executeDDLSQLQuery(ddlQuery);
-       }
-
-       /*
-       * Executes a sql++ ddl query against AsterixDB
-       * response is a JSON object with following structure:
-                 metrics: Metrics;
-                 requestId: string;
-                 results: any[];
-                 signature: string;
-                 status: string;
-       */
-       executeDDLSQLQuery(ddlQuery: string): Observable<any[]> {
-    const apiUrl = AsterixRestApiUrl;
-               return this.http.post(apiUrl, {statement: ddlQuery})
-                       .map((response: Response) => { return response })
-                       .catch((error: any) => 
this.handleExecuteQueryError(error));
-       }
-
-       /*
-       * Executes a sql++ query against AsterixDB
-       * response is a JSON object with following structure:
-                 metrics: Metrics;
-                 requestId: string;
-                 results: any[];
-                 signature: string;
-                 status: string;
-       */
-       executeSQLQuery(query: string): Observable<any[]> {
+    /*
+    * SQLQueryService constructor using
+    * HttpClient from Angular 5
+    */
+    constructor(private http: HttpClient) {}
+
+     /*
+     * sends a select sql++ q100px return all the dataverses
+    * from AsterixDB Metadata100px
+     */
+    selectDataverses() : Observable<any> {
+         let query = "SELECT VALUE dv FROM Metadata.`Dataverse` dv"
+         return this.executeSQLQuery(query);
+    }
+
+    /*
+    * sends a select sql++ query to return all the datasets
+    * from AsterixDB Metadata
+    */
+    selectDatasets() : Observable<any> {
+        let query = "SELECT VALUE ds FROM Metadata.`Dataset` ds"
+        return this.executeSQLQuery(query);
+    }
+
+    /*
+    * sends a select sql++ query to return all the datatypes
+    * from AsterixDB Metadata
+    */
+    selectDatatypes() : Observable<any> {
+        let query = "SELECT VALUE dt FROM Metadata.`Datatype` dt"
+        return this.executeSQLQuery(query);
+    }
+
+    /*
+    * sends a select sql++ query to return all the indexes
+    * from AsterixDB Metadata
+    */
+    selectIndexes() : Observable<any> {
+        let query = "SELECT VALUE ix FROM Metadata.`Index` ix"
+        return this.executeSQLQuery(query);
+    }
+
+    /*
+    * creates a sql++ ddl query to create a Dataverse
+    * from AsterixDB Metadata
+    */
+    createDataverse(dataverse: string) : Observable<any[]> {
+        let ddlQuery = "CREATE DATAVERSE " + dataverse + ";";
+        return this.executeDDLSQLQuery(ddlQuery);
+    }
+
+    /*
+    * creates a sql++ ddl query to drop a Dataverse
+    * from AsterixDB Metadata
+    */
+    dropDataverse(dataverse: string) : Observable<any[]> {
+        let ddlQuery = "DROP DATAVERSE " + dataverse; // " IF EXISTS;";
+        return this.executeDDLSQLQuery(ddlQuery);
+    }
+
+    /*
+    * creates a sql++ ddl query to create a Dataset
+    * from AsterixDB Metadata
+    */
+    createDataset(dataset: string) : Observable<any[]> {
+        let ddlQuery = "CREATE DATASET " + dataset + ";";
+        return this.executeDDLSQLQuery(ddlQuery);
+    }
+
+    /*
+    * creates a sql++ ddl query to drop a Dataset
+    * from AsterixDB Metadata
+    */
+    dropDataset(dataset: string) : Observable<any[]> {
+        let ddlQuery = "DROP DATASET " + dataset; //" IF EXISTS;";
+        return this.executeDDLSQLQuery(ddlQuery);
+    }
+
+    /*
+    * creates a sql++ ddl query to create a Datatype
+    * from AsterixDB Metadata
+    */
+    createDatatype(datatype: string) : Observable<any[]> {
+        let ddlQuery = "CREATE DATATYPE " + datatype + ";";
+        return this.executeDDLSQLQuery(ddlQuery);
+    }
+
+    /*
+    * creates a sql++ ddl query to drop a Datatype
+    * from AsterixDB Metadata
+    */
+    dropDatatype(datatype: string) : Observable<any[]> {
+        let ddlQuery = "DROP TYPE " + datatype; //" IF EXISTS;";
+        return this.executeDDLSQLQuery(ddlQuery);
+    }
+
+    /*
+    * creates a sql++ ddl query to create a Index
+    * from AsterixDB Metadata
+    */
+    createIndex(index: string) : Observable<any[]> {
+        let ddlQuery = "CREATE INDEX " + index + ";";
+        return this.executeDDLSQLQuery(ddlQuery);
+    }
+
+    /*
+    * creates a sql++ ddl query to drop a Index
+    * from AsterixDB Metadata
+    */
+    dropIndex(index: string) : Observable<any[]> {
+        let ddlQuery = "DROP INDEX " + index; // + " IF EXISTS;";
+        return this.executeDDLSQLQuery(ddlQuery);
+    }
+
+    /*
+    * Executes a sql++ ddl query against AsterixDB
+    * response is a JSON object with following structure:
+          metrics: Metrics;
+          requestId: string;
+          results: any[];
+          signature: string;
+          status: string;
+    */
+    executeDDLSQLQuery(ddlQuery: string): Observable<any> {
     const apiUrl = AsterixRestApiUrl;
-               return this.http.post(apiUrl, {statement: query})
-                       .map((response: Response) => { return response })
-                       .catch((error: any) => 
this.handleExecuteQueryError(error));
-       }
-
-       /*
-       * AsterixDB query-service API raises HTTP errors if the sql++ query has 
some
-       * syntax error, or some elements in the query are not found
-       * this function extract the error JSON object with the relevant 
information
-               response is a JSON object with following structure:
-                 metrics: Metrics;
-                 requestId: string;
-                 errors: any[];
-                 signature: string;
-                 status: string;
-       */
-       private handleExecuteQueryError(error: any): Promise<any> {
-               console.log(error)
-               return Promise.reject(error.error || error);
-       }
-}
+        return this.http.post(apiUrl, {statement: ddlQuery})
+          .catch((error: any) => this.handleExecuteQueryError(error));
+    }
+
+    /*
+    * Executes a sql++ query against AsterixDB
+    * response is a JSON object with following structure:
+          metrics: Metrics;
+          requestId: string;
+          results: any[];
+          signature: string;
+          status: string;
+          login(username: string, password: string): Observable<boolean>
+    */
+    executeSQLQuery(query: string): Observable<any> {
+        const apiUrl = AsterixRestApiUrl;
+        const headers = new HttpHeaders();
+        headers.append('Content-Type', 'application/json');
+        let options = ({ headers: headers });
+
+        return this.http.post(apiUrl, {statement: query,
+            'logical-plan': true,
+            'optimized-logical-plan': true }, options)
+                .map((response: Response) => { return response; })
+                .catch((error: any) => this.handleExecuteQueryError(error))
+    }
+    /*
+    * AsterixDB query-service API raises HTTP errors if the sql++ query has 
some
+    * syntax error, or some elements in the query are not found
+    * this function extract the error JSON object with the relevant information
+        response is a JSON object with following structure:
+          metrics: Metrics;
+          requestId: string;
+          errors: any[];
+          signature: string;
+          status: string;
+    */
+    private handleExecuteQueryError(error: any): Promise<any> {
+        console.log('executeQueryError:')
+        console.log(error);
+        return Promise.reject(error.error || error);
+    }
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/assets/feather.png
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/src/assets/feather.png 
b/asterixdb/asterix-dashboard/src/node/src/assets/feather.png
new file mode 100644
index 0000000..744b8d7
Binary files /dev/null and 
b/asterixdb/asterix-dashboard/src/node/src/assets/feather.png differ

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/assets/tree.svg
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/src/assets/tree.svg 
b/asterixdb/asterix-dashboard/src/node/src/assets/tree.svg
new file mode 100644
index 0000000..85b15f3
--- /dev/null
+++ b/asterixdb/asterix-dashboard/src/node/src/assets/tree.svg
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--/*
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/-->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd";>
+<svg version="1.1" xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink"; preserveAspectRatio="xMidYMid meet" 
viewBox="-1.0028682170542123 -1.0037209302325536 24.000000000000007 24" 
width="20" height="20"><defs><path d="M0 0L20 0L20 20L0 20L0 0Z" 
id="gyXi6gBBT"></path><path d="M20 18L0 18" id="a3dxwHGaC"></path><path d="M0 
0L0 18" id="b1vHLhKOaI"></path></defs><g><g></g><g><use xlink:href="#a3dxwHGaC" 
opacity="0.5" fill="#000000" fill-opacity="1"></use><g><use 
xlink:href="#a3dxwHGaC" opacity="0.5" fill-opacity="0" stroke="#000000" 
stroke-width="1" stroke-opacity="1"></use></g></g><g><use 
xlink:href="#b1vHLhKOaI" opacity="0.5" fill="#000000" 
fill-opacity="1"></use><g><use xlink:href="#b1vHLhKOaI" opacity="0.5" 
fill-opacity="0" stroke="#000000" stroke-width="1" 
stroke-opacity="1"></use></g></g></g></svg>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/environments/environment.prod.ts
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-dashboard/src/node/src/environments/environment.prod.ts 
b/asterixdb/asterix-dashboard/src/node/src/environments/environment.prod.ts
index ca15503..4c2d359 100755
--- a/asterixdb/asterix-dashboard/src/node/src/environments/environment.prod.ts
+++ b/asterixdb/asterix-dashboard/src/node/src/environments/environment.prod.ts
@@ -13,4 +13,4 @@ limitations under the License.
 */
 export const environment = {
   production: true
-};
+};
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/environments/environment.ts
----------------------------------------------------------------------
diff --git 
a/asterixdb/asterix-dashboard/src/node/src/environments/environment.ts 
b/asterixdb/asterix-dashboard/src/node/src/environments/environment.ts
index 2750f0a..31d77e1 100755
--- a/asterixdb/asterix-dashboard/src/node/src/environments/environment.ts
+++ b/asterixdb/asterix-dashboard/src/node/src/environments/environment.ts
@@ -18,4 +18,4 @@ limitations under the License.
 
 export const environment = {
   production: false
-};
+};
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/index.html
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/src/index.html 
b/asterixdb/asterix-dashboard/src/node/src/index.html
index 8dab418..881db4a 100755
--- a/asterixdb/asterix-dashboard/src/node/src/index.html
+++ b/asterixdb/asterix-dashboard/src/node/src/index.html
@@ -13,9 +13,11 @@ limitations under the License.
 */-->
 <!DOCTYPE html>
 <html>
-  <head>
+
+<head>
     <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1, 
shrink-to-fit=no">
+    <meta name="viewport">
+    <!-- content="width=device-width, initial-scale=1, shrink-to-fit=no"> -->
     <title>AsterixDb Administration Console</title>
     <base href="/">
     <link rel="icon" type="image/x-icon" href="favicon.ico">
@@ -23,8 +25,10 @@ limitations under the License.
     <link rel="stylesheet" 
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500";>
     <link rel="stylesheet" 
href="https://fonts.googleapis.com/icon?family=Material+Icons";>
     <link rel="stylesheet" 
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css";>
-  </head>
-  <body>
+</head>
+
+<body>
     <awc-root></awc-root>
-  </body>
+</body>
+
 </html>

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/main.scss
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/src/main.scss 
b/asterixdb/asterix-dashboard/src/node/src/main.scss
index cc02584..1149d3a 100755
--- a/asterixdb/asterix-dashboard/src/node/src/main.scss
+++ b/asterixdb/asterix-dashboard/src/node/src/main.scss
@@ -11,19 +11,13 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 
express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */
-@import './styles/general';
 
+@import './styles/general';
 // Include material core styles.
 @import '~@angular/material/theming';
 @include mat-core();
-
 // Define the light theme.
 $primary: mat-palette($mat-grey);
-$accent:  mat-palette($mat-orange, A200, A100, A400);
-
+$accent : mat-palette($mat-orange, A200, A100, A400);
 $theme: mat-light-theme($primary, $accent);
 @include angular-material-theme($theme);
-
-* {
-    font-family: Roboto, "Helvetica Neue", sans-serif;
-  }
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/main.ts
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/src/main.ts 
b/asterixdb/asterix-dashboard/src/node/src/main.ts
index 446a9dc..ac7552b 100755
--- a/asterixdb/asterix-dashboard/src/node/src/main.ts
+++ b/asterixdb/asterix-dashboard/src/node/src/main.ts
@@ -19,8 +19,8 @@ import { AppModule } from './app/app.module';
 import { environment } from './environments/environment';
 
 if (environment.production) {
-  enableProdMode();
+    enableProdMode();
 }
 
 platformBrowserDynamic().bootstrapModule(AppModule)
-  .catch(err => console.log(err));
+    .catch(err => console.log(err));
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/polyfills.ts
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/src/polyfills.ts 
b/asterixdb/asterix-dashboard/src/node/src/polyfills.ts
index 20d4075..b7ac983 100755
--- a/asterixdb/asterix-dashboard/src/node/src/polyfills.ts
+++ b/asterixdb/asterix-dashboard/src/node/src/polyfills.ts
@@ -73,4 +73,4 @@ import 'zone.js/dist/zone';  // Included with Angular CLI.
 /**
  * Need to import at least one locale-data with intl.
  */
-// import 'intl/locale-data/jsonp/en';
+// import 'intl/locale-data/jsonp/en';
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/styles/_constants.scss
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/src/styles/_constants.scss 
b/asterixdb/asterix-dashboard/src/node/src/styles/_constants.scss
index b3a5d07..f551ae8 100755
--- a/asterixdb/asterix-dashboard/src/node/src/styles/_constants.scss
+++ b/asterixdb/asterix-dashboard/src/node/src/styles/_constants.scss
@@ -11,11 +11,11 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 
express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */
-@import '../../node_modules/@angular/material/theming';
 
+@import '../../node_modules/@angular/material/theming';
 $small-breakpoint-width: 720px;
-
 /* For desktop, the content should be aligned with the page title. */
+
 $content-padding-side: 70px;
 $content-padding-side-xs: 15px;
 $awc-spacing-unit: 8px;

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/styles/_general.scss
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/src/styles/_general.scss 
b/asterixdb/asterix-dashboard/src/node/src/styles/_general.scss
index 9691cf8..4493367 100755
--- a/asterixdb/asterix-dashboard/src/node/src/styles/_general.scss
+++ b/asterixdb/asterix-dashboard/src/node/src/styles/_general.scss
@@ -11,22 +11,87 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 
express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */
+
 html {
   box-sizing: border-box;
+  width: 100%;
+  height: 100%;
+  margin: 0;
+  padding: 0;
 }
 
 body {
-  font-family: "Roboto Mono", monospace;
-  font-size: 0.80rem;
-       font-weight: 500;
+  width: 100%;
+  height: 100%;
+  background-color: gainsboro;
+  overflow-y: scroll;
+  margin: 0;
+  padding: 0;
+  position: absolute;
+  top: 0;
+  bottom: 0;
+  right: 0;
+  left: 0;
+}
+
+* {
+  font-family: Roboto, "Helvetica Neue", monospace; //font-family: Consolas, 
Courier, monospace;
+  //font-size: 12px;
+  box-sizing: border-box;
+}
+
+*,
+*:before,
+*:after {
+  box-sizing: border-box;
+}
+
+textarea {
+  font-size: 14px;
+  color: red;
+}
+
+:root {
+  --footer-color: #2cba92;
+  --palatte-padding-left: 0px;
+}
+
+.footer {
+  margin-top: 20px;
+  position: fixed;
+  left: 0;
+  bottom: 0;
+  height: 50px
+}
+
+.apache {
+  display: absolute;
+  bottom: 0;
+  margin: 15px;
+  font-size: 10px;
+  vertical-align: middle;
+  color: black;
 }
 
-// Tree and table styling
+.mat-checkbox-inner-container {
+  height: 15px !important;
+  width: 15px !important;
+}
+
+.cdk-global-scrollblock {
+  top: 0 !important;
+}
+
+.CodeMirror {
+  font-family: Arial, monospace;
+  font-size: 14px !important;
+  color: black;
+}
 
-.ui-datatable{
-  //overflow : auto
+.header-centered-v > .mat-content {
+  align-items: center;
 }
 
-.ui-datatable .ui-sortable-column div.ui-dt-c {
-  padding-right: 15px !important;
+.mat-expansion-panel-header-description {
+  margin-right: 0px !important;
 }
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/test.ts
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/src/test.ts 
b/asterixdb/asterix-dashboard/src/node/src/test.ts
index 6edcb85..06c7693 100755
--- a/asterixdb/asterix-dashboard/src/node/src/test.ts
+++ b/asterixdb/asterix-dashboard/src/node/src/test.ts
@@ -35,12 +35,12 @@ __karma__.loaded = function () {};
 
 // First, initialize the Angular testing environment.
 getTestBed().initTestEnvironment(
-  BrowserDynamicTestingModule,
-  platformBrowserDynamicTesting()
+    BrowserDynamicTestingModule,
+    platformBrowserDynamicTesting()
 );
 // Then we find all the tests.
 const context = require.context('./', true, /\.spec\.ts$/);
 // And load the modules.
 context.keys().map(context);
 // Finally, start Karma to run the tests.
-__karma__.start();
+__karma__.start();
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/tsconfig.app.json
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/src/tsconfig.app.json 
b/asterixdb/asterix-dashboard/src/node/src/tsconfig.app.json
index 54434df..693c7a7 100755
--- a/asterixdb/asterix-dashboard/src/node/src/tsconfig.app.json
+++ b/asterixdb/asterix-dashboard/src/node/src/tsconfig.app.json
@@ -12,15 +12,15 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 */
 {
-  "extends": "../tsconfig.json",
-  "compilerOptions": {
-    "outDir": "../out-tsc/app",
-    "baseUrl": "./",
-    "module": "es2015",
-    "types": []
-  },
-  "exclude": [
-    "test.ts",
-    "**/*.spec.ts"
-  ]
-}
+    "extends": "../tsconfig.json",
+    "compilerOptions": {
+        "outDir": "../out-tsc/app",
+        "baseUrl": "./",
+        "module": "es2015",
+        "types": []
+    },
+    "exclude": [
+        "test.ts",
+        "**/*.spec.ts"
+    ]
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/tsconfig.spec.json
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/src/tsconfig.spec.json 
b/asterixdb/asterix-dashboard/src/node/src/tsconfig.spec.json
index 15bcf37..09cf042 100755
--- a/asterixdb/asterix-dashboard/src/node/src/tsconfig.spec.json
+++ b/asterixdb/asterix-dashboard/src/node/src/tsconfig.spec.json
@@ -12,22 +12,23 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 */
 {
-  "extends": "../tsconfig.json",
-  "compilerOptions": {
-    "outDir": "../out-tsc/spec",
-    "baseUrl": "./",
-    "module": "commonjs",
-    "target": "es5",
-    "types": [
-      "jasmine",
-      "node"
-    ]
-  },
-  "files": [
-    "test.ts"
+    "extends": "../tsconfig.json",
+    "compilerOptions": {
+        "outDir": "../out-tsc/spec",
+        "baseUrl": "./",
+        "module": "commonjs",
+        "target": "es5",
+        "types": [
+        "jasmine",
+        "node"
+        ]
+    },
+    "files": [
+        "test.ts",
+      "polyfills.ts"
   ],
-  "include": [
-    "**/*.spec.ts",
-    "**/*.d.ts"
-  ]
-}
+    "include": [
+        "**/*.spec.ts",
+        "**/*.d.ts"
+    ]
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/src/typings.d.ts
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/src/typings.d.ts 
b/asterixdb/asterix-dashboard/src/node/src/typings.d.ts
index ef5c7bd..8975c36 100755
--- a/asterixdb/asterix-dashboard/src/node/src/typings.d.ts
+++ b/asterixdb/asterix-dashboard/src/node/src/typings.d.ts
@@ -1,5 +1,5 @@
 /* SystemJS module definition */
 declare var module: NodeModule;
 interface NodeModule {
-  id: string;
-}
+    id: string;
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/asterix-dashboard/src/node/tslint.json
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-dashboard/src/node/tslint.json 
b/asterixdb/asterix-dashboard/src/node/tslint.json
index 1d02629..171c1df 100755
--- a/asterixdb/asterix-dashboard/src/node/tslint.json
+++ b/asterixdb/asterix-dashboard/src/node/tslint.json
@@ -28,7 +28,6 @@ limitations under the License.
     "forin": true,
     "import-blacklist": [
       true,
-      "rxjs",
       "rxjs/Rx"
     ],
     "import-spacing": true,

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/3e5815a7/asterixdb/src/main/licenses/templates/3rdpartylicenses.txt
----------------------------------------------------------------------
diff --git a/asterixdb/src/main/licenses/templates/3rdpartylicenses.txt 
b/asterixdb/src/main/licenses/templates/3rdpartylicenses.txt
index 2c3d11d..8c67061 100644
--- a/asterixdb/src/main/licenses/templates/3rdpartylicenses.txt
+++ b/asterixdb/src/main/licenses/templates/3rdpartylicenses.txt
@@ -1,6 +1,8 @@
-core-js@2.5.6
+codemirror@5.39.0
 MIT
-Copyright (c) 2014-2018 Denis Pushkarev
+MIT License
+
+Copyright (C) 2017 by Marijn Haverbeke <mari...@gmail.com> and others
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
@@ -20,11 +22,9 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 
OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.
 
-primeng@4.3.0
+core-js@2.5.7
 MIT
-The MIT License (MIT)
-
-Copyright (c) 2016-2017 PrimeTek
+Copyright (c) 2014-2018 Denis Pushkarev
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
@@ -44,15 +44,11 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 
OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.
 
-@angular/forms@5.2.10
-MIT
-MIT
-
-@ngrx/store@4.1.1
+zone.js@0.8.26
 MIT
-The MIT License (MIT)
+The MIT License
 
-Copyright (c) 2017 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald
+Copyright (c) 2016-2018 Google, Inc.
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
@@ -61,53 +57,22 @@ to use, copy, modify, merge, publish, distribute, 
sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-@angular/core@5.2.10
-MIT
-MIT
-
-webpack@3.8.1
-MIT
-Copyright JS Foundation and other contributors
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-'Software'), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-@angular/platform-browser@5.2.10
-MIT
-MIT
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
 
-zone.js@0.8.26
+hammerjs@2.0.8
 MIT
-The MIT License
+The MIT License (MIT)
 
-Copyright (c) 2016-2018 Google, Inc.
+Copyright (C) 2011-2014 by Jorik Tangelder (Eight Media)
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
@@ -127,247 +92,313 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 
OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.
 
-@angular/router@5.2.10
+@angular/core@6.0.7
 MIT
 MIT
 
-@angular/common@5.2.10
-MIT
-MIT
+tslib@1.9.3
+Apache-2.0
+Apache License
 
-file-saver@1.3.8
-MIT
-The MIT License
+Version 2.0, January 2004
 
-Copyright © 2016 [Eli Grey][1].
+http://www.apache.org/licenses/ 
 
-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
 
-The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
+1. Definitions.
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
+"License" shall mean the terms and conditions for use, reproduction, and 
distribution as defined by Sections 1 through 9 of this document.
 
-  [1]: http://eligrey.com
+"Licensor" shall mean the copyright owner or entity authorized by the 
copyright owner that is granting the License.
 
-@types/file-saver@1.3.0
-MIT
-MIT License
+"Legal Entity" shall mean the union of the acting entity and all other 
entities that control, are controlled by, or are under common control with that 
entity. For the purposes of this definition, "control" means (i) the power, 
direct or indirect, to cause the direction or management of such entity, 
whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or 
more of the outstanding shares, or (iii) beneficial ownership of such entity.
 
-    Copyright (c) Microsoft Corporation. All rights reserved.
+"You" (or "Your") shall mean an individual or Legal Entity exercising 
permissions granted by this License.
 
-    Permission is hereby granted, free of charge, to any person obtaining a 
copy
-    of this software and associated documentation files (the "Software"), to 
deal
-    in the Software without restriction, including without limitation the 
rights
-    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-    copies of the Software, and to permit persons to whom the Software is
-    furnished to do so, subject to the following conditions:
+"Source" form shall mean the preferred form for making modifications, 
including but not limited to software source code, documentation source, and 
configuration files.
 
-    The above copyright notice and this permission notice shall be included in 
all
-    copies or substantial portions of the Software.
+"Object" form shall mean any form resulting from mechanical transformation or 
translation of a Source form, including but not limited to compiled object 
code, generated documentation, and conversions to other media types.
 
-    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
FROM,
-    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
THE
-    SOFTWARE
+"Work" shall mean the work of authorship, whether in Source or Object form, 
made available under the License, as indicated by a copyright notice that is 
included in or attached to the work (an example is provided in the Appendix 
below).
 
-css-loader@0.28.11
-MIT
-Copyright JS Foundation and other contributors
+"Derivative Works" shall mean any work, whether in Source or Object form, that 
is based on (or derived from) the Work and for which the editorial revisions, 
annotations, elaborations, or other modifications represent, as a whole, an 
original work of authorship. For the purposes of this License, Derivative Works 
shall not include works that remain separable from, or merely link (or bind by 
name) to the interfaces of, the Work and Derivative Works thereof.
 
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-'Software'), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
+"Contribution" shall mean any work of authorship, including the original 
version of the Work and any modifications or additions to that Work or 
Derivative Works thereof, that is intentionally submitted to Licensor for 
inclusion in the Work by the copyright owner or by an individual or Legal 
Entity authorized to submit on behalf of the copyright owner. For the purposes 
of this definition, "submitted" means any form of electronic, verbal, or 
written communication sent to the Licensor or its representatives, including 
but not limited to communication on electronic mailing lists, source code 
control systems, and issue tracking systems that are managed by, or on behalf 
of, the Licensor for the purpose of discussing and improving the Work, but 
excluding communication that is conspicuously marked or otherwise designated in 
writing by the copyright owner as "Not a Contribution."
 
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
+"Contributor" shall mean Licensor and any individual or Legal Entity on behalf 
of whom a Contribution has been received by Licensor and subsequently 
incorporated within the Work.
 
-THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+2. Grant of Copyright License. Subject to the terms and conditions of this 
License, each Contributor hereby grants to You a perpetual, worldwide, 
non-exclusive, no-charge, royalty-free, irrevocable copyright license to 
reproduce, prepare Derivative Works of, publicly display, publicly perform, 
sublicense, and distribute the Work and such Derivative Works in Source or 
Object form.
 
-@angular/cdk@5.2.5
-MIT
-The MIT License
+3. Grant of Patent License. Subject to the terms and conditions of this 
License, each Contributor hereby grants to You a perpetual, worldwide, 
non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this 
section) patent license to make, have made, use, offer to sell, sell, import, 
and otherwise transfer the Work, where such license applies only to those 
patent claims licensable by such Contributor that are necessarily infringed by 
their Contribution(s) alone or by combination of their Contribution(s) with the 
Work to which such Contribution(s) was submitted. If You institute patent 
litigation against any entity (including a cross-claim or counterclaim in a 
lawsuit) alleging that the Work or a Contribution incorporated within the Work 
constitutes direct or contributory patent infringement, then any patent 
licenses granted to You under this License for that Work shall terminate as of 
the date such litigation is filed.
 
-Copyright (c) 2018 Google LLC.
+4. Redistribution. You may reproduce and distribute copies of the Work or 
Derivative Works thereof in any medium, with or without modifications, and in 
Source or Object form, provided that You meet the following conditions:
 
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+You must give any other recipients of the Work or Derivative Works a copy of 
this License; and
 
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
+You must cause any modified files to carry prominent notices stating that You 
changed the files; and
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
+You must retain, in the Source form of any Derivative Works that You 
distribute, all copyright, patent, trademark, and attribution notices from the 
Source form of the Work, excluding those notices that do not pertain to any 
part of the Derivative Works; and
 
-@angular/material@5.2.5
-MIT
-The MIT License
+If the Work includes a "NOTICE" text file as part of its distribution, then 
any Derivative Works that You distribute must include a readable copy of the 
attribution notices contained within such NOTICE file, excluding those notices 
that do not pertain to any part of the Derivative Works, in at least one of the 
following places: within a NOTICE text file distributed as part of the 
Derivative Works; within the Source form or documentation, if provided along 
with the Derivative Works; or, within a display generated by the Derivative 
Works, if and wherever such third-party notices normally appear. The contents 
of the NOTICE file are for informational purposes only and do not modify the 
License. You may add Your own attribution notices within Derivative Works that 
You distribute, alongside or as an addendum to the NOTICE text from the Work, 
provided that such additional attribution notices cannot be construed as 
modifying the License. You may add Your own copyright statement to Your modi
 fications and may provide additional or different license terms and conditions 
for use, reproduction, or distribution of Your modifications, or for any such 
Derivative Works as a whole, provided Your use, reproduction, and distribution 
of the Work otherwise complies with the conditions stated in this License.
 
-Copyright (c) 2018 Google LLC.
+5. Submission of Contributions. Unless You explicitly state otherwise, any 
Contribution intentionally submitted for inclusion in the Work by You to the 
Licensor shall be under the terms and conditions of this License, without any 
additional terms or conditions. Notwithstanding the above, nothing herein shall 
supersede or modify the terms of any separate license agreement you may have 
executed with Licensor regarding such Contributions.
 
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+6. Trademarks. This License does not grant permission to use the trade names, 
trademarks, service marks, or product names of the Licensor, except as required 
for reasonable and customary use in describing the origin of the Work and 
reproducing the content of the NOTICE file.
 
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
+7. Disclaimer of Warranty. Unless required by applicable law or agreed to in 
writing, Licensor provides the Work (and each Contributor provides its 
Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 
KIND, either express or implied, including, without limitation, any warranties 
or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 
PARTICULAR PURPOSE. You are solely responsible for determining the 
appropriateness of using or redistributing the Work and assume any risks 
associated with Your exercise of permissions under this License.
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
+8. Limitation of Liability. In no event and under no legal theory, whether in 
tort (including negligence), contract, or otherwise, unless required by 
applicable law (such as deliberate and grossly negligent acts) or agreed to in 
writing, shall any Contributor be liable to You for damages, including any 
direct, indirect, special, incidental, or consequential damages of any 
character arising as a result of this License or out of the use or inability to 
use the Work (including but not limited to damages for loss of goodwill, work 
stoppage, computer failure or malfunction, or any and all other commercial 
damages or losses), even if such Contributor has been advised of the 
possibility of such damages.
 
-@ngrx/effects@4.1.1
-MIT
-The MIT License (MIT)
+9. Accepting Warranty or Additional Liability. While redistributing the Work 
or Derivative Works thereof, You may choose to offer, and charge a fee for, 
acceptance of support, warranty, indemnity, or other liability obligations 
and/or rights consistent with this License. However, in accepting such 
obligations, You may act only on Your own behalf and on Your sole 
responsibility, not on behalf of any other Contributor, and only if You agree 
to indemnify, defend, and hold each Contributor harmless for any liability 
incurred by, or claims asserted against, such Contributor by reason of your 
accepting any such warranty or additional liability.
 
-Copyright (c) 2017 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald
+END OF TERMS AND CONDITIONS
 
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+rxjs@6.2.1
+Apache-2.0
+Apache License
+                         Version 2.0, January 2004
+                      http://www.apache.org/licenses/
 
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+ 1. Definitions.
 
-@ngrx/db@2.1.0
-MIT
-The MIT License (MIT)
+    "License" shall mean the terms and conditions for use, reproduction,
+    and distribution as defined by Sections 1 through 9 of this document.
 
-Copyright (c) 2015 ngrx
+    "Licensor" shall mean the copyright owner or entity authorized by
+    the copyright owner that is granting the License.
 
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+    "Legal Entity" shall mean the union of the acting entity and all
+    other entities that control, are controlled by, or are under common
+    control with that entity. For the purposes of this definition,
+    "control" means (i) the power, direct or indirect, to cause the
+    direction or management of such entity, whether by contract or
+    otherwise, or (ii) ownership of fifty percent (50%) or more of the
+    outstanding shares, or (iii) beneficial ownership of such entity.
 
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
+    "You" (or "Your") shall mean an individual or Legal Entity
+    exercising permissions granted by this License.
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-@ngrx/store-devtools@4.1.1
-MIT
-The MIT License (MIT)
-
-Copyright (c) 2017 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald
+    "Source" form shall mean the preferred form for making modifications,
+    including but not limited to software source code, documentation
+    source, and configuration files.
 
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+    "Object" form shall mean any form resulting from mechanical
+    transformation or translation of a Source form, including but
+    not limited to compiled object code, generated documentation,
+    and conversions to other media types.
 
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
+    "Work" shall mean the work of authorship, whether in Source or
+    Object form, made available under the License, as indicated by a
+    copyright notice that is included in or attached to the work
+    (an example is provided in the Appendix below).
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+    "Derivative Works" shall mean any work, whether in Source or Object
+    form, that is based on (or derived from) the Work and for which the
+    editorial revisions, annotations, elaborations, or other modifications
+    represent, as a whole, an original work of authorship. For the purposes
+    of this License, Derivative Works shall not include works that remain
+    separable from, or merely link (or bind by name) to the interfaces of,
+    the Work and Derivative Works thereof.
+
+    "Contribution" shall mean any work of authorship, including
+    the original version of the Work and any modifications or additions
+    to that Work or Derivative Works thereof, that is intentionally
+    submitted to Licensor for inclusion in the Work by the copyright owner
+    or by an individual or Legal Entity authorized to submit on behalf of
+    the copyright owner. For the purposes of this definition, "submitted"
+    means any form of electronic, verbal, or written communication sent
+    to the Licensor or its representatives, including but not limited to
+    communication on electronic mailing lists, source code control systems,
+    and issue tracking systems that are managed by, or on behalf of, the
+    Licensor for the purpose of discussing and improving the Work, but
+    excluding communication that is conspicuously marked or otherwise
+    designated in writing by the copyright owner as "Not a Contribution."
+
+    "Contributor" shall mean Licensor and any individual or Legal Entity
+    on behalf of whom a Contribution has been received by Licensor and
+    subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+    this License, each Contributor hereby grants to You a perpetual,
+    worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+    copyright license to reproduce, prepare Derivative Works of,
+    publicly display, publicly perform, sublicense, and distribute the
+    Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+    this License, each Contributor hereby grants to You a perpetual,
+    worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+    (except as stated in this section) patent license to make, have made,
+    use, offer to sell, sell, import, and otherwise transfer the Work,
+    where such license applies only to those patent claims licensable
+    by such Contributor that are necessarily infringed by their
+    Contribution(s) alone or by combination of their Contribution(s)
+    with the Work to which such Contribution(s) was submitted. If You
+    institute patent litigation against any entity (including a
+    cross-claim or counterclaim in a lawsuit) alleging that the Work
+    or a Contribution incorporated within the Work constitutes direct
+    or contributory patent infringement, then any patent licenses
+    granted to You under this License for that Work shall terminate
+    as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+    Work or Derivative Works thereof in any medium, with or without
+    modifications, and in Source or Object form, provided that You
+    meet the following conditions:
+
+    (a) You must give any other recipients of the Work or
+        Derivative Works a copy of this License; and
+
+    (b) You must cause any modified files to carry prominent notices
+        stating that You changed the files; and
+
+    (c) You must retain, in the Source form of any Derivative Works
+        that You distribute, all copyright, patent, trademark, and
+        attribution notices from the Source form of the Work,
+        excluding those notices that do not pertain to any part of
+        the Derivative Works; and
+
+    (d) If the Work includes a "NOTICE" text file as part of its
+        distribution, then any Derivative Works that You distribute must
+        include a readable copy of the attribution notices contained
+        within such NOTICE file, excluding those notices that do not
+        pertain to any part of the Derivative Works, in at least one
+        of the following places: within a NOTICE text file distributed
+        as part of the Derivative Works; within the Source form or
+        documentation, if provided along with the Derivative Works; or,
+        within a display generated by the Derivative Works, if and
+        wherever such third-party notices normally appear. The contents
+        of the NOTICE file are for informational purposes only and
+        do not modify the License. You may add Your own attribution
+        notices within Derivative Works that You distribute, alongside
+        or as an addendum to the NOTICE text from the Work, provided
+        that such additional attribution notices cannot be construed
+        as modifying the License.
+
+    You may add Your own copyright statement to Your modifications and
+    may provide additional or different license terms and conditions
+    for use, reproduction, or distribution of Your modifications, or
+    for any such Derivative Works as a whole, provided Your use,
+    reproduction, and distribution of the Work otherwise complies with
+    the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+    any Contribution intentionally submitted for inclusion in the Work
+    by You to the Licensor shall be under the terms and conditions of
+    this License, without any additional terms or conditions.
+    Notwithstanding the above, nothing herein shall supersede or modify
+    the terms of any separate license agreement you may have executed
+    with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+    names, trademarks, service marks, or product names of the Licensor,
+    except as required for reasonable and customary use in describing the
+    origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+    agreed to in writing, Licensor provides the Work (and each
+    Contributor provides its Contributions) on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+    implied, including, without limitation, any warranties or conditions
+    of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+    PARTICULAR PURPOSE. You are solely responsible for determining the
+    appropriateness of using or redistributing the Work and assume any
+    risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+    whether in tort (including negligence), contract, or otherwise,
+    unless required by applicable law (such as deliberate and grossly
+    negligent acts) or agreed to in writing, shall any Contributor be
+    liable to You for damages, including any direct, indirect, special,
+    incidental, or consequential damages of any character arising as a
+    result of this License or out of the use or inability to use the
+    Work (including but not limited to damages for loss of goodwill,
+    work stoppage, computer failure or malfunction, or any and all
+    other commercial damages or losses), even if such Contributor
+    has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+    the Work or Derivative Works thereof, You may choose to offer,
+    and charge a fee for, acceptance of support, warranty, indemnity,
+    or other liability obligations and/or rights consistent with this
+    License. However, in accepting such obligations, You may act only
+    on Your own behalf and on Your sole responsibility, not on behalf
+    of any other Contributor, and only if You agree to indemnify,
+    defend, and hold each Contributor harmless for any liability
+    incurred by, or claims asserted against, such Contributor by reason
+    of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+    To apply the Apache License to your work, attach the following
+    boilerplate notice, with the fields enclosed by brackets "[]"
+    replaced with your own identifying information. (Don't include
+    the brackets!)  The text should be enclosed in the appropriate
+    comment syntax for the file format. We also recommend that a
+    file or class name and description of purpose be included on the
+    same "printed page" as the copyright notice for easier
+    identification within third-party archives.
+
+ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and 
contributors
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+@ngrx/store-devtools@6.0.1
+MIT
+MIT
 
-codemirror@5.37.0
+file-saver@1.3.8
 MIT
-MIT License
+The MIT License
 
-Copyright (C) 2017 by Marijn Haverbeke <mari...@gmail.com> and others
+Copyright © 2016 [Eli Grey][1].
 
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the "Software"), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
 
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
 
-@angular/animations@5.2.10
-MIT
-MIT
+  [1]: http://eligrey.com
 
-hammerjs@2.0.8
+webpack@4.8.3
 MIT
-The MIT License (MIT)
-
-Copyright (C) 2011-2014 by Jorik Tangelder (Eight Media)
+Copyright JS Foundation and other contributors
 
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+'Software'), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
 
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
-@angular/platform-browser-dynamic@5.2.10
+@ngrx/store@6.0.1
 MIT
 MIT
\ No newline at end of file

Reply via email to