mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-08 14:51:32 +00:00
Improve 'ng2-alfresco-documentlist' imports
This commit is contained in:
73
ng2-components/ng2-alfresco-documentlist/index.ts
Normal file
73
ng2-components/ng2-alfresco-documentlist/index.ts
Normal file
@@ -0,0 +1,73 @@
|
||||
/*!
|
||||
* @license
|
||||
* Copyright 2016 Alfresco Software, Ltd.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { DocumentList } from './src/components/document-list';
|
||||
import { ContentColumn } from './src/components/content-column';
|
||||
import { ContentColumnList } from './src/components/content-column-list';
|
||||
import { ContentAction } from './src/components/content-action';
|
||||
import { ContentActionList } from './src/components/content-action-list';
|
||||
import { EmptyFolderContent } from './src/components/empty-folder-content';
|
||||
|
||||
import { FolderActionsService } from './src/services/folder-actions.service';
|
||||
import { DocumentActionsService } from './src/services/document-actions.service';
|
||||
import { AlfrescoService } from './src/services/alfresco.service';
|
||||
|
||||
// components
|
||||
export * from './src/components/document-list';
|
||||
export * from './src/components/content-column';
|
||||
export * from './src/components/content-column-list';
|
||||
export * from './src/components/content-action';
|
||||
export * from './src/components/content-action-list';
|
||||
export * from './src/components/empty-folder-content';
|
||||
|
||||
// models
|
||||
export * from './src/models/column-sorting.model';
|
||||
|
||||
// services
|
||||
export * from './src/services/folder-actions.service';
|
||||
export * from './src/services/document-actions.service';
|
||||
export * from './src/services/alfresco.service';
|
||||
|
||||
export default {
|
||||
directives: [
|
||||
DocumentList,
|
||||
ContentColumn,
|
||||
ContentColumnList,
|
||||
ContentAction,
|
||||
ContentActionList
|
||||
],
|
||||
providers: [
|
||||
AlfrescoService,
|
||||
FolderActionsService,
|
||||
DocumentActionsService
|
||||
]
|
||||
};
|
||||
|
||||
export const DOCUMENT_LIST_DIRECTIVES: [any] = [
|
||||
DocumentList,
|
||||
ContentColumn,
|
||||
ContentColumnList,
|
||||
ContentAction,
|
||||
ContentActionList,
|
||||
EmptyFolderContent
|
||||
];
|
||||
|
||||
export const DOCUMENT_LIST_PROVIDERS: [any] = [
|
||||
AlfrescoService,
|
||||
FolderActionsService,
|
||||
DocumentActionsService
|
||||
];
|
Reference in New Issue
Block a user