[ADF-1895] update Material2 to 5.0.0-rc0 (#2621)

update Material2 to 5.0.0-rc0
This commit is contained in:
Eugenio Romano 2017-11-08 00:39:34 +00:00 committed by GitHub
parent 50ff6cde45
commit a2310336dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
39 changed files with 99 additions and 85 deletions

View File

@ -60,14 +60,14 @@
"private": true,
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -3,7 +3,7 @@
</button>
<mat-menu class="docs-theme-picker-menu" #themeMenu="matMenu" x-position="before">
<mat-list-item *ngFor="let theme of themes" mat-menu-item (click)="installTheme(theme)" >
<button *ngFor="let theme of themes" mat-menu-item (click)="installTheme(theme)" >
<mat-icon mat-list-icon [matTooltip]="theme.name" class="docs-theme-chosen-icon" [style.color]="theme.accent"
[style.background]="theme.primary"
*ngIf="currentTheme === theme">check_circle
@ -13,5 +13,5 @@
*ngIf="currentTheme !== theme">invert_colors
</mat-icon>
{{theme.name}}
</mat-list-item>
</button>
</mat-menu>

View File

@ -2,7 +2,7 @@ import { CommonModule } from '@angular/common';
import { ChangeDetectionStrategy, Component, NgModule } from '@angular/core';
import {
MatButtonModule, MatGridListModule, MatIconModule, MatMenuModule,
MatTooltipModule
MatTooltipModule, MatListModule
} from '@angular/material';
import { StyleManager } from './style-manager/style-manager';
import { DocsSiteTheme, ThemeStorage } from './theme-storage/theme-storage';
@ -121,6 +121,7 @@ export class ThemePickerComponent {
MatMenuModule,
MatGridListModule,
MatTooltipModule,
MatListModule,
CommonModule
],
exports: [ThemePickerComponent],

View File

@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="favicon-96x96.png" sizes="96x96">
<link href="https://fonts.googleapis.com/css?family=Muli" rel="stylesheet" media="none" onload="if(media!='all')media='all'">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" rel="stylesheet" media="none" onload="if(media!='all')media='all'">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" media="none" onload="if(media!='all')media='all'">
<style>
body, html {

View File

@ -33,14 +33,14 @@
},
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -21,6 +21,7 @@ import { ReportParametersModel } from 'ng2-activiti-diagrams';
import { AlfrescoTranslationService, AppConfigService, CoreModule } from 'ng2-alfresco-core';
import { Observable } from 'rxjs/Rx';
import { AnalyticsReportListComponent } from '../components/analytics-report-list.component';
import { MaterialModule } from '../material.module';
import { AnalyticsService } from '../services/analytics.service';
declare let jasmine: any;
@ -45,7 +46,8 @@ describe('AnalyticsReportListComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
CoreModule
CoreModule,
MaterialModule
],
declarations: [
AnalyticsReportListComponent

View File

@ -29,14 +29,14 @@
},
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -36,14 +36,14 @@
],
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -16,8 +16,8 @@
*/
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { MatInputModule } from '@angular/material';
import { CoreModule } from 'ng2-alfresco-core';
import { MaterialModule } from '../material.module';
import { ErrorWidgetComponent } from '../widgets/error/error.component';
import { FormRenderingService } from './../../services/form-rendering.service';
import { WidgetVisibilityService } from './../../services/widget-visibility.service';
@ -38,7 +38,7 @@ describe('FormFieldComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [CoreModule,
MatInputModule
MaterialModule
],
declarations: [
FormFieldComponent,

View File

@ -24,12 +24,10 @@ import { ErrorWidgetComponent } from '../error/error.component';
import { EcmModelService } from './../../../services/ecm-model.service';
import { FormService } from './../../../services/form.service';
import { FormFieldModel, FormFieldTypes, FormModel } from './../core/index';
import { DynamicTableWidgetComponent } from './dynamic-table.widget';
import { DynamicTableModel } from './dynamic-table.widget.model';
import { DynamicTableColumn } from './dynamic-table-column.model';
import { DynamicTableRow } from './dynamic-table-row.model';
import { DynamicTableWidgetComponent } from './dynamic-table.widget';
import { DynamicTableModel } from './dynamic-table.widget.model';
import { BooleanEditorComponent } from './editors/boolean/boolean.editor';
import { DateEditorComponent } from './editors/date/date.editor';

View File

@ -18,8 +18,6 @@
import { DynamicTableColumn } from './../../dynamic-table-column.model';
import { DynamicTableRow } from './../../dynamic-table-row.model';
import { BooleanEditorComponent } from './boolean.editor';
describe('BooleanEditorComponent', () => {

View File

@ -21,11 +21,9 @@ import * as moment from 'moment';
import { CoreModule } from 'ng2-alfresco-core';
import { MaterialModule } from '../../../../material.module';
import { FormFieldModel, FormModel } from '../../../index';
import { DynamicTableModel } from './../../dynamic-table.widget.model';
import { DynamicTableColumn } from './../../dynamic-table-column.model';
import { DynamicTableRow } from './../../dynamic-table-row.model';
import { DynamicTableModel } from './../../dynamic-table.widget.model';
import { DateEditorComponent } from './date.editor';

View File

@ -23,10 +23,10 @@ import { EcmModelService } from '../../../../../services/ecm-model.service';
import { MaterialModule } from '../../../../material.module';
import { FormService } from './../../../../../services/form.service';
import { FormFieldModel, FormModel } from './../../../core/index';
import { DynamicTableModel } from './../../dynamic-table.widget.model';
import { DynamicTableColumn } from './../../dynamic-table-column.model';
import { DynamicTableColumnOption } from './../../dynamic-table-column-option.model';
import { DynamicTableColumn } from './../../dynamic-table-column.model';
import { DynamicTableRow } from './../../dynamic-table-row.model';
import { DynamicTableModel } from './../../dynamic-table.widget.model';
import { DropdownEditorComponent } from './dropdown.editor';

View File

@ -17,11 +17,11 @@
import { FormFieldModel, FormModel } from '../../index';
import { FormService } from './../../../../services/form.service';
import { RowEditorComponent } from './row.editor';
import { DynamicTableModel } from './../dynamic-table.widget.model';
import { DynamicTableColumn } from './../dynamic-table-column.model';
import { DynamicRowValidationSummary } from './../dynamic-row-validation-summary.model';
import { DynamicTableColumn } from './../dynamic-table-column.model';
import { DynamicTableRow } from './../dynamic-table-row.model';
import { DynamicTableModel } from './../dynamic-table.widget.model';
import { RowEditorComponent } from './row.editor';
describe('RowEditorComponent', () => {

View File

@ -35,14 +35,14 @@
],
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -39,14 +39,14 @@
],
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -23,12 +23,13 @@
<div mat-card-title class="adf-app-listgrid-item-card-title">
<h1>{{getAppName(app) | async}}</h1>
</div>
<div mat-card-subtitle class="adf-app-listgrid-item-card-subtitle" fxFlex="1 0 auto">
<mat-card-subtitle class="adf-app-listgrid-item-card-subtitle" fxFlex="1 0 auto">
<p>{{app.description}}</p>
</div>
<div mat-card-actions class="adf-app-listgrid-item-card-actions">
</mat-card-subtitle>
<mat-card-actions class="adf-app-listgrid-item-card-actions">
<mat-icon class="adf-app-listgrid-item-card-actions-icon" *ngIf="isSelected(app.id)">done</mat-icon>
</div>
</mat-card-actions>
</mat-card>
</div>
</div>

View File

@ -20,6 +20,7 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { AppsProcessService, CoreModule, TranslationService } from 'ng2-alfresco-core';
import { Observable } from 'rxjs/Rx';
import { MaterialModule } from './material.module';
import { TranslationMock } from '../assets/translation.service.mock';
import { defaultApp, deployedApps, nonDeployedApps } from './../assets/apps-list.mock';
@ -36,7 +37,8 @@ describe('AppsListComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
CoreModule
CoreModule,
MaterialModule
],
declarations: [
AppsListComponent

View File

@ -25,6 +25,7 @@ import {
MatGridListModule,
MatIconModule,
MatInputModule,
MatListModule,
MatNativeDateModule,
MatProgressSpinnerModule,
MatRippleModule,
@ -46,7 +47,8 @@ export function modules() {
MatGridListModule,
MatRippleModule,
MatTooltipModule,
MatChipsModule
MatChipsModule,
MatListModule
];
}

View File

@ -22,6 +22,7 @@ import { Observable } from 'rxjs/Rx';
import { TranslationMock } from '../assets/translation.service.mock';
import { FilterParamsModel, FilterRepresentationModel } from '../models/filter.model';
import { TaskListService } from '../services/tasklist.service';
import { MaterialModule } from './material.module';
import { TaskFiltersComponent } from './task-filters.component';
describe('TaskFiltersComponent', () => {
@ -64,7 +65,8 @@ describe('TaskFiltersComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
CoreModule
CoreModule,
MaterialModule
],
declarations: [
TaskFiltersComponent

View File

@ -44,14 +44,14 @@
],
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -16,10 +16,10 @@
*/
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { MatDatepickerModule, MatIconModule, MatInputModule, MatNativeDateModule } from '@angular/material';
import { By } from '@angular/platform-browser';
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
import { Pagination } from 'alfresco-js-api';
import { MaterialModule } from '../../material.module';
import { InfinitePaginationComponent } from './infinite-pagination.component';
describe('InfinitePaginationComponent', () => {
@ -32,10 +32,7 @@ describe('InfinitePaginationComponent', () => {
TestBed.configureTestingModule({
imports: [
NoopAnimationsModule,
MatDatepickerModule,
MatIconModule,
MatInputModule,
MatNativeDateModule
MaterialModule
],
declarations: [
InfinitePaginationComponent

View File

@ -5,11 +5,11 @@
</mat-toolbar>
<mat-card class="adf-setting-card">
<mat-card-content>
<div *ngIf="providers==='ALL' || providers==='ECM'">
<div *ngIf="providers==='ALL' || providers==='ECM'">
<mat-card-header>
<mat-card-subtitle>{{'CORE.HOST_SETTINGS.CS-HOST' | translate }}</mat-card-subtitle>
</mat-card-header>
<mat-card-content>
<mat-form-field class="full-width">
<mat-icon class="adf-CORE.HOST_SETTINGS-link-icon" matPrefix>link</mat-icon>
<input matInput
@ -26,11 +26,14 @@
</mat-error>
</mat-form-field>
<p>
</div>
<p>
<div *ngIf="providers==='ALL' || providers==='BPM'">
</mat-card-content>
</div>
<p>
<div *ngIf="providers==='ALL' || providers==='BPM'">
<mat-card-header>
<mat-card-subtitle>{{'CORE.HOST_SETTINGS.BP-HOST' | translate }}</mat-card-subtitle>
</mat-card-header>
<mat-card-content>
<mat-form-field class="full-width">
<mat-icon class="adf-CORE.HOST_SETTINGS-link-icon" matPrefix>link</mat-icon>
@ -47,8 +50,8 @@
{{ 'CORE.HOST_SETTINGS.NOT_VALID'| translate }}
</mat-error>
</mat-form-field>
</div>
</mat-card-content>
</mat-card-content>
</div>
<mat-card-actions class="adf-CORE.HOST_SETTINGS-actions">
<button mat-button onclick="window.history.back()" color="primary">

View File

@ -18,11 +18,13 @@
import { NgModule } from '@angular/core';
import {
MatButtonModule,
MatCardModule,
MatDialogModule,
MatIconModule,
MatInputModule,
MatMenuModule,
MatProgressBarModule,
MatProgressSpinnerModule,
MatSnackBarModule,
MatTabsModule,
MatToolbarModule
@ -34,11 +36,13 @@ export function modules() {
MatDialogModule,
MatInputModule,
MatProgressBarModule,
MatProgressSpinnerModule,
MatSnackBarModule,
MatToolbarModule,
MatTabsModule,
MatMenuModule,
MatIconModule
MatIconModule,
MatCardModule
];
}

View File

@ -214,4 +214,7 @@ export class MomentDateAdapter extends DateAdapter<Moment> {
return this.isValid(d) ? d : null;
}
invalid(): Moment {
return moment.invalid();
}
}

View File

@ -35,14 +35,14 @@
],
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -43,14 +43,14 @@
],
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -47,14 +47,14 @@
],
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -43,14 +43,14 @@
],
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -23,14 +23,14 @@
},
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -19,6 +19,7 @@ import { DebugElement } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CoreModule } from 'ng2-alfresco-core';
import { LikeComponent } from '../components/like.component';
import { MaterialModule } from '../material.module';
import { RatingService } from '../services/rating.service';
declare let jasmine: any;
@ -33,7 +34,8 @@ describe('Like component', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
CoreModule
CoreModule,
MaterialModule
],
declarations: [
LikeComponent

View File

@ -19,6 +19,7 @@ import { DebugElement } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CoreModule } from 'ng2-alfresco-core';
import { RatingComponent } from '../components/rating.component';
import { MaterialModule } from '../material.module';
import { RatingService } from '../services/rating.service';
declare let jasmine: any;
@ -33,7 +34,8 @@ describe('Rating component', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
CoreModule
CoreModule,
MaterialModule
],
declarations: [
RatingComponent

View File

@ -23,14 +23,14 @@
},
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -17,12 +17,12 @@
import { NgModule } from '@angular/core';
import {
MatButtonModule, MatChipsModule, MatIconModule, MatInputModule
MatButtonModule, MatChipsModule, MatIconModule, MatInputModule, MatListModule
} from '@angular/material';
export function modules() {
return [
MatButtonModule, MatInputModule, MatChipsModule, MatIconModule
MatButtonModule, MatInputModule, MatChipsModule, MatIconModule, MatListModule
];
}

View File

@ -44,14 +44,14 @@
],
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -23,14 +23,14 @@
},
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -38,14 +38,14 @@
],
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -23,14 +23,14 @@
},
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",

View File

@ -65,20 +65,19 @@
},
"dependencies": {
"@angular/animations": "5.0.0",
"@angular/cdk": "2.0.0-beta.12",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/flex-layout": "2.0.0-beta.10",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/material": "2.0.0-beta.12",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",
"@ngx-translate/core": "8.0.0",
"alfresco-js-api": "1.9.0",
"classlist.js": "1.1.20150312",
"core-js": "2.4.1",
"hammerjs": "2.0.8",
"moment": "2.15.2",