openvidu-server dashboard: dependencies update

pull/255/head
pabloFuente 2019-03-26 10:40:02 +01:00
parent e1ec42b894
commit 9237f00d32
4 changed files with 2205 additions and 1153 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,45 +1,54 @@
{ {
"dependencies": { "dependencies": {
"@angular/animations": "7.2.1", "@angular/animations": "7.2.10",
"@angular/cdk": "7.2.1", "@angular/cdk": "7.3.5",
"@angular/common": "7.2.1", "@angular/common": "7.2.10",
"@angular/compiler": "7.2.1", "@angular/compiler": "7.2.10",
"@angular/core": "7.2.1", "@angular/core": "7.2.10",
"@angular/flex-layout": "7.0.0-beta.23", "@angular/flex-layout": "7.0.0-beta.24",
"@angular/forms": "7.2.1", "@angular/forms": "7.2.10",
"@angular/http": "7.2.1", "@angular/http": "7.2.10",
"@angular/material": "7.2.1", "@angular/material": "7.3.5",
"@angular/platform-browser": "7.2.1", "@angular/platform-browser": "7.2.10",
"@angular/platform-browser-dynamic": "7.2.1", "@angular/platform-browser-dynamic": "7.2.10",
"@angular/router": "7.2.1", "@angular/router": "7.2.10",
"core-js": "2.6.2", "core-js": "2.6.5",
"hammerjs": "2.0.8", "hammerjs": "2.0.8",
"jquery": "3.3.1", "jquery": "3.3.1",
"openvidu-browser": "2.8.0", "openvidu-browser": "2.8.0",
"rxjs": "6.3.3", "rxjs": "6.4.0",
"zone.js": "0.8.28" "zone.js": "0.9.0"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "0.12.2", "@angular-devkit/build-angular": "0.13.6",
"@angular/cli": "7.2.2", "@angular/cli": "7.3.6",
"@angular/compiler-cli": "7.2.1", "@angular/compiler-cli": "7.2.10",
"@types/jasmine": "3.3.6", "@angular/language-service": "7.2.10",
"@types/node": "10.12.18", "@types/jasmine": "3.3.12",
"codelyzer": "4.5.0", "@types/node": "11.11.7",
"ts-node": "7.0.1", "jasmine-core": "3.3.0",
"tslint": "5.12.1", "jasmine-spec-reporter": "4.2.1",
"typescript": "3.2.4" "karma": "4.0.1",
}, "karma-chrome-launcher": "2.2.0",
"license": "Apache-2.0", "karma-coverage-istanbul-reporter": "2.0.5",
"name": "frontend", "karma-jasmine": "2.0.1",
"private": true, "karma-jasmine-html-reporter": "1.4.0",
"scripts": { "protractor": "6.0.0",
"build": "ng build", "codelyzer": "5.0.0-beta.2",
"e2e": "ng e2e", "ts-node": "8.0.3",
"lint": "ng lint", "tslint": "5.14.0",
"ng": "ng", "typescript": "3.2.4"
"start": "ng serve", },
"test": "ng test" "license": "Apache-2.0",
}, "name": "frontend",
"version": "0.0.0" "private": true,
"scripts": {
"build": "ng build",
"e2e": "ng e2e",
"lint": "ng lint",
"ng": "ng",
"start": "ng serve",
"test": "ng test"
},
"version": "0.0.0"
} }

View File

@ -9,6 +9,7 @@ import { AppMaterialModule } from './app.material.module';
import { routing } from './app.routing'; import { routing } from './app.routing';
import { CredentialsDialogComponent } from './components/dashboard/credentials-dialog.component'; import { CredentialsDialogComponent } from './components/dashboard/credentials-dialog.component';
import { DashboardComponent } from './components/dashboard/dashboard.component'; import { DashboardComponent } from './components/dashboard/dashboard.component';
import { LayoutBaseComponent } from './components/layouts/layout-base/layout-base.component';
import { LayoutBestFitComponent } from './components/layouts/layout-best-fit/layout-best-fit.component'; import { LayoutBestFitComponent } from './components/layouts/layout-best-fit/layout-best-fit.component';
import { LayoutHorizontalPresentationComponent } from './components/layouts/layout-horizontal-presentation/layout-horizontal-presentation.component'; import { LayoutHorizontalPresentationComponent } from './components/layouts/layout-horizontal-presentation/layout-horizontal-presentation.component';
import { LayoutVerticalPresentationComponent } from './components/layouts/layout-vertical-presentation/layout-vertical-presentation.component'; import { LayoutVerticalPresentationComponent } from './components/layouts/layout-vertical-presentation/layout-vertical-presentation.component';
@ -23,6 +24,7 @@ import { RestService } from './services/rest.service';
DashboardComponent, DashboardComponent,
SessionDetailsComponent, SessionDetailsComponent,
CredentialsDialogComponent, CredentialsDialogComponent,
LayoutBaseComponent,
LayoutBestFitComponent, LayoutBestFitComponent,
LayoutVerticalPresentationComponent, LayoutVerticalPresentationComponent,
LayoutHorizontalPresentationComponent, LayoutHorizontalPresentationComponent,

View File

@ -11,60 +11,55 @@
* automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
* Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
* *
* Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html * Learn more in https://angular.io/guide/browser-support
*/ */
/*************************************************************************************************** /***************************************************************************************************
* BROWSER POLYFILLS * BROWSER POLYFILLS
*/ */
/** IE9, IE10 and IE11 requires all of the following polyfills. **/
// import 'core-js/es6/symbol';
// import 'core-js/es6/object';
// import 'core-js/es6/function';
// import 'core-js/es6/parse-int';
// import 'core-js/es6/parse-float';
// import 'core-js/es6/number';
// import 'core-js/es6/math';
// import 'core-js/es6/string';
// import 'core-js/es6/date';
// import 'core-js/es6/array';
// import 'core-js/es6/regexp';
// import 'core-js/es6/map';
// import 'core-js/es6/set';
/** IE10 and IE11 requires the following for NgClass support on SVG elements */ /** IE10 and IE11 requires the following for NgClass support on SVG elements */
// import 'classlist.js'; // Run `npm install --save classlist.js`. // import 'classlist.js'; // Run `npm install --save classlist.js`.
/** IE10 and IE11 requires the following to support `@angular/animation`. */ /**
* Web Animations `@angular/platform-browser/animations`
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
*/
// import 'web-animations-js'; // Run `npm install --save web-animations-js`. // import 'web-animations-js'; // Run `npm install --save web-animations-js`.
/**
/** Evergreen browsers require these. **/ * By default, zone.js will patch all possible macroTask and DomEvents
import 'core-js/es6/reflect'; * user can disable parts of macroTask/DomEvents patch by setting following flags
import 'core-js/es7/reflect'; * because those flags need to be set before `zone.js` being loaded, and webpack
* will put import in the top of bundle, so user need to create a separate file
* in this directory (for example: zone-flags.ts), and put the following flags
/** ALL Firefox browsers require the following to support `@angular/animation`. **/ * into that file, and then add the following code before importing zone.js.
// import 'web-animations-js'; // Run `npm install --save web-animations-js`. * import './zone-flags.ts';
*
* The flags allowed in zone-flags.ts are listed here.
*
* The following flags will work for all browsers.
*
* (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
* (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
* (window as any).__zone_symbol__BLACK_LISTED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
*
* in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
* with the following flag, it will bypass `zone.js` patch for IE/Edge
*
* (window as any).__Zone_enable_cross_context_check = true;
*
*/
/*************************************************************************************************** /***************************************************************************************************
* Zone JS is required by Angular itself. * Zone JS is required by default for Angular itself.
*/ */
import 'zone.js/dist/zone'; // Included with Angular CLI. import 'zone.js/dist/zone'; // Included with Angular CLI.
/*************************************************************************************************** /***************************************************************************************************
* APPLICATION IMPORTS * APPLICATION IMPORTS
*/ */
/** (window as any).global = window;
* Date, currency, decimal and percent pipes.
* Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
*/
// import 'intl'; // Run `npm install --save intl`.
(window as any).global = window;