mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
document actions are now nested within “document-actions” container to separate them from other action types (i.e. folder actions); and to be able applying bulk properties for “document-actions” collection if needed (i.e. ‘show system actions’)
19 lines
573 B
TypeScript
19 lines
573 B
TypeScript
import {DocumentList} from './src/document-list.component';
|
|
import {DocumentListActions} from './src/document-list-actions.component';
|
|
import {DocumentAction} from './src/document-action.component';
|
|
|
|
export * from './src/document-list.component';
|
|
export * from './src/document-list-actions.component';
|
|
export * from './src/document-action.component';
|
|
|
|
export default {
|
|
directives: [DocumentList, DocumentListActions, DocumentAction],
|
|
providers: []
|
|
}
|
|
|
|
export const DOCUMENT_LIST_DIRECTIVES: [any] = [
|
|
DocumentList,
|
|
DocumentListActions,
|
|
DocumentAction
|
|
];
|