[ADF-1346] Attachment list component is shown for completed tasks/processes. (#2194)

* Added ng-content to adf-empty-list compoent.
* Updated css to scss.
* Added 'CUSTOM_ELEMENTS_SCHEMA'  to allow non-angular elements.
* Updated readme.mg file
This commit is contained in:
siva kumar
2017-08-15 19:21:06 +05:30
committed by Mario Romano
parent ad75b6aa87
commit 5e17c8e103
29 changed files with 773 additions and 139 deletions

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { ModuleWithProviders, NgModule } from '@angular/core';
import { ModuleWithProviders, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CoreModule, TRANSLATION_PROVIDER } from 'ng2-alfresco-core';
import { DataTableModule } from 'ng2-alfresco-datatable';
@@ -109,7 +109,8 @@ export const DOCUMENT_LIST_PROVIDERS: any[] = [
DataTableModule,
...DOCUMENT_LIST_DIRECTIVES,
MaterialModule
]
],
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
})
export class DocumentListModule {
/** @deprecated in 1.8.0 */

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { DebugElement, EventEmitter } from '@angular/core';
import { CUSTOM_ELEMENTS_SCHEMA, DebugElement, EventEmitter } from '@angular/core';
import { async, ComponentFixture, fakeAsync, TestBed, tick } from '@angular/core/testing';
import { MD_DIALOG_DATA, MdDialogRef } from '@angular/material';
import { By } from '@angular/platform-browser';
@@ -86,7 +86,8 @@ describe('ContentNodeSelectorComponent', () => {
DocumentListService,
SearchService,
...plusProviders
]
],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
});
}

View File

@@ -59,3 +59,13 @@
flex-direction: row;
height: 100%;
}
adf-empty-list-header >>>>div {
height: 32px;
opacity: 0.26 !important;
font-family: Muli, Helvetica, Arial, sans-serif;
font-size: 24px;
line-height: 1.33;
letter-spacing: -1px;
color: #000000;
}

View File

@@ -21,8 +21,10 @@
<div *ngIf="!isEmptyTemplateDefined()">
<no-content-template>
<ng-template>
<adf-empty-list
emptyMsg="ADF-DOCUMENT-LIST.EMPTY.HEADER">
<adf-empty-list>
<adf-empty-list-header>
<div> {{'ADF-DOCUMENT-LIST.EMPTY.HEADER' | translate}} </div>
</adf-empty-list-header>
</adf-empty-list>
</ng-template>
</no-content-template>

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { NgZone, SimpleChange, TemplateRef } from '@angular/core';
import { CUSTOM_ELEMENTS_SCHEMA, NgZone, SimpleChange, TemplateRef } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AlfrescoTranslationService, CoreModule } from 'ng2-alfresco-core';
import { DataColumn, DataTableComponent } from 'ng2-alfresco-datatable';
@@ -61,7 +61,8 @@ describe('DocumentList', () => {
providers: [
DocumentListService,
{provide: NgZone, useValue: zone}
]
],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
}).compileComponents();
}));