mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-01 14:41:32 +00:00
71 lines
2.3 KiB
TypeScript
71 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 { TabsWidget } from './tabs/tabs.widget';
|
|
import { ContainerWidget } from './container/container.widget';
|
|
|
|
import { TextWidget } from './text/text.widget';
|
|
import { NumberWidget } from './number/number.widget';
|
|
import { CheckboxWidget } from './checkbox/checkbox.widget';
|
|
import { MultilineTextWidget } from './multiline-text/multiline-text.widget';
|
|
import { DropdownWidget } from './dropdown/dropdown.widget';
|
|
import { HyperlinkWidget } from './hyperlink/hyperlink.widget';
|
|
import { RadioButtonsWidget } from './radio-buttons/radio-buttons.widget';
|
|
import { DisplayValueWidget } from './display-value/display-value.widget';
|
|
import { DisplayTextWidget } from './display-text/display-text.widget';
|
|
import { UploadWidget } from './upload/upload.widget';
|
|
|
|
// core
|
|
export * from './widget.component';
|
|
export * from './core/index';
|
|
|
|
// containers
|
|
export * from './tabs/tabs.widget';
|
|
export * from './container/container.widget';
|
|
|
|
// primitives
|
|
export * from './text/text.widget';
|
|
export * from './number/number.widget';
|
|
export * from './checkbox/checkbox.widget';
|
|
export * from './multiline-text/multiline-text.widget';
|
|
export * from './dropdown/dropdown.widget';
|
|
export * from './hyperlink/hyperlink.widget';
|
|
export * from './radio-buttons/radio-buttons.widget';
|
|
export * from './display-value/display-value.widget';
|
|
export * from './display-text/display-text.widget';
|
|
export * from './upload/upload.widget';
|
|
|
|
export const CONTAINER_WIDGET_DIRECTIVES: [any] = [
|
|
TabsWidget,
|
|
ContainerWidget
|
|
];
|
|
|
|
export const PRIMITIVE_WIDGET_DIRECTIVES: [any] = [
|
|
TextWidget,
|
|
NumberWidget,
|
|
CheckboxWidget,
|
|
MultilineTextWidget,
|
|
DropdownWidget,
|
|
HyperlinkWidget,
|
|
RadioButtonsWidget,
|
|
DisplayValueWidget,
|
|
DisplayTextWidget,
|
|
UploadWidget
|
|
];
|
|
|
|
|