#1471 rollback className change (#1472)

This commit is contained in:
Mario Romano
2017-01-16 11:49:43 +00:00
committed by Denys Vuika
parent 473241f792
commit 9655e51943
119 changed files with 356 additions and 494 deletions

View File

@@ -17,7 +17,7 @@
import { Component } from '@angular/core';
import { Router } from '@angular/router';
import { AlfrescoTranslateService, AuthService, SettingsService, StorageService, LogService } from 'ng2-alfresco-core';
import { AlfrescoTranslationService, AlfrescoAuthenticationService, AlfrescoSettingsService, StorageService, LogService } from 'ng2-alfresco-core';
declare var document: any;
@@ -32,10 +32,10 @@ export class AppComponent {
ecmHost: string = 'http://' + window.location.hostname + ':8080';
bpmHost: string = 'http://' + window.location.hostname + ':9999';
constructor(private authService: AuthService,
constructor(private authService: AlfrescoAuthenticationService,
private router: Router,
private settingsService: SettingsService,
private translateService: AlfrescoTranslateService,
private settingsService: AlfrescoSettingsService,
private translateService: AlfrescoTranslationService,
private storage: StorageService,
private logService: LogService) {
this.setEcmHost();

View File

@@ -17,7 +17,7 @@
import { Component, OnInit, Optional, ViewChild } from '@angular/core';
import { ActivatedRoute, Params, Router } from '@angular/router';
import { AuthService, LogService } from 'ng2-alfresco-core';
import { AlfrescoAuthenticationService, LogService } from 'ng2-alfresco-core';
import { DocumentActionsService, DocumentListComponent, ContentActionHandler, DocumentActionModel, FolderActionModel } from 'ng2-alfresco-documentlist';
import { FormService } from 'ng2-activiti-form';
@@ -43,7 +43,7 @@ export class FilesComponent implements OnInit {
documentList: DocumentListComponent;
constructor(private documentActions: DocumentActionsService,
private authService: AuthService,
private authService: AlfrescoAuthenticationService,
private formService: FormService,
private logService: LogService,
private router: Router,

View File

@@ -17,7 +17,7 @@
import { Component, EventEmitter, Output } from '@angular/core';
import { Router } from '@angular/router';
import { AuthService } from 'ng2-alfresco-core';
import { AlfrescoAuthenticationService } from 'ng2-alfresco-core';
import { MinimalNodeEntity } from 'alfresco-js-api';
@Component({
@@ -34,7 +34,7 @@ export class SearchBarComponent {
expand = new EventEmitter();
constructor(public router: Router,
public authService: AuthService) {
public authService: AlfrescoAuthenticationService) {
}
isLoggedIn(): boolean {

View File

@@ -16,7 +16,7 @@
*/
import { Component } from '@angular/core';
import { SettingsService, StorageService, LogService } from 'ng2-alfresco-core';
import { AlfrescoSettingsService, StorageService, LogService } from 'ng2-alfresco-core';
@Component({
selector: 'alfresco-setting-demo',
@@ -28,7 +28,7 @@ export class SettingComponent {
ecmHost: string;
bpmHost: string;
constructor(private settingsService: SettingsService,
constructor(private settingsService: AlfrescoSettingsService,
private storage: StorageService,
private logService: LogService) {
this.ecmHost = this.settingsService.ecmHost;