Denys Vuika e0d8b1fe31 #152 Support for custom 'empty folder' template
- default background image for empty folders
- support for user-defined custom templates
- readme updated
2016-06-07 14:32:07 +01:00

74 lines
2.3 KiB
TypeScript

/*!
* @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
];