@dev-tcloud/tcloud-ui 7.1.0 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -2001,6 +2001,67 @@ declare class TCloudUiSubNavbarGroupComponent {
|
|
|
2001
2001
|
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiSubNavbarGroupComponent, "tcloud-ui-sub-navbar-group", never, { "isMenuExpanded": { "alias": "isMenuExpanded"; "required": false; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; "queryParams": { "alias": "queryParams"; "required": false; "isSignal": true; }; }, { "onClick": "onClick"; }, never, ["[icon]", "*"], true, never>;
|
|
2002
2002
|
}
|
|
2003
2003
|
|
|
2004
|
+
/**
|
|
2005
|
+
* Item do menu vertical principal (`tcloud-ui-navbar`).
|
|
2006
|
+
*
|
|
2007
|
+
* Deriva do `IMenu` do front-tcloud, mantendo só o que a lib precisa para
|
|
2008
|
+
* renderizar. Campos de host (labelKey, checkAccess, featureFlag, keywords,
|
|
2009
|
+
* with_active, description) ficam fora — o consumidor filtra/traduz antes de
|
|
2010
|
+
* passar o array já pronto para `[menuItems]`.
|
|
2011
|
+
*/
|
|
2012
|
+
interface TCloudUiNavbarItem {
|
|
2013
|
+
/** Texto exibido do item (já traduzido pelo consumidor). */
|
|
2014
|
+
label: string;
|
|
2015
|
+
/** Classe(s) do ícone, ex.: `'fas fa-laptop'`. */
|
|
2016
|
+
icon?: string;
|
|
2017
|
+
/** Rota interna (usada como `routerLink`). */
|
|
2018
|
+
link?: string;
|
|
2019
|
+
/** Query params aplicados junto do `routerLink`. */
|
|
2020
|
+
queryParams?: Params | null;
|
|
2021
|
+
/** URL externa — quando presente, o item abre em nova aba. */
|
|
2022
|
+
href?: string;
|
|
2023
|
+
/** Sub-itens; renderizados recursivamente. */
|
|
2024
|
+
submenu?: TCloudUiNavbarItem[];
|
|
2025
|
+
/** Marca o item como ativo/selecionado. */
|
|
2026
|
+
active?: boolean;
|
|
2027
|
+
/** Estado inicial do submenu (aberto/fechado). */
|
|
2028
|
+
open?: boolean;
|
|
2029
|
+
/** Quando `false`, o item é ocultado. Default: `true`. */
|
|
2030
|
+
enable?: boolean;
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
declare class TCloudUiNavbarComponent {
|
|
2034
|
+
/** Itens do menu (data-driven). Submenu é renderizado recursivamente. */
|
|
2035
|
+
menuItems: TCloudUiNavbarItem[];
|
|
2036
|
+
/** Menu expandido (labels visíveis) x minimizado (só ícones). */
|
|
2037
|
+
isMenuExpanded: boolean;
|
|
2038
|
+
/** Exibe o botão interno de minimizar/expandir. */
|
|
2039
|
+
showToggle: boolean;
|
|
2040
|
+
/** Emitido quando o menu é expandido/minimizado. */
|
|
2041
|
+
onExpandChange: i0.OutputEmitterRef<boolean>;
|
|
2042
|
+
/** Emitido ao clicar num item folha (sem submenu). */
|
|
2043
|
+
onItemClick: i0.OutputEmitterRef<TCloudUiNavbarItem>;
|
|
2044
|
+
handleExpand(): void;
|
|
2045
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiNavbarComponent, never>;
|
|
2046
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiNavbarComponent, "tcloud-ui-navbar", never, { "menuItems": { "alias": "menuItems"; "required": false; }; "isMenuExpanded": { "alias": "isMenuExpanded"; "required": false; }; "showToggle": { "alias": "showToggle"; "required": false; }; }, { "onExpandChange": "onExpandChange"; "onItemClick": "onItemClick"; }, never, never, true, never>;
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
declare class TCloudUiNavbarItemComponent {
|
|
2050
|
+
item: TCloudUiNavbarItem;
|
|
2051
|
+
/** Menu expandido (labels visíveis) x minimizado (só ícones). */
|
|
2052
|
+
isMenuExpanded: boolean;
|
|
2053
|
+
/** Nível de aninhamento — usado para indentação dos submenus. */
|
|
2054
|
+
level: number;
|
|
2055
|
+
/** Emitido ao clicar num item folha (sem submenu). */
|
|
2056
|
+
onItemClick: i0.OutputEmitterRef<TCloudUiNavbarItem>;
|
|
2057
|
+
get hasSubmenu(): boolean;
|
|
2058
|
+
handleClick(ev: MouseEvent): void;
|
|
2059
|
+
/** Propaga o clique de um item filho para cima na recursão. */
|
|
2060
|
+
bubbleClick(item: TCloudUiNavbarItem): void;
|
|
2061
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiNavbarItemComponent, never>;
|
|
2062
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiNavbarItemComponent, "tcloud-ui-navbar-item", never, { "item": { "alias": "item"; "required": false; }; "isMenuExpanded": { "alias": "isMenuExpanded"; "required": false; }; "level": { "alias": "level"; "required": false; }; }, { "onItemClick": "onItemClick"; }, never, never, true, never>;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2004
2065
|
declare class TCloudUiTabGroupComponent {
|
|
2005
2066
|
onResize(): void;
|
|
2006
2067
|
tabGroupCarousel: ElementRef<HTMLDivElement>;
|
|
@@ -2552,7 +2613,7 @@ declare class TCloudUiPaginationPipe implements PipeTransform {
|
|
|
2552
2613
|
declare class TCloudUiModule {
|
|
2553
2614
|
static forRoot(config?: TCloudUiConfig): ModuleWithProviders<TCloudUiModule>;
|
|
2554
2615
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiModule, never>;
|
|
2555
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TCloudUiModule, never, [typeof TCloudUiAccordionComponent, typeof TCloudUiAccordionBodyComponent, typeof TCloudUiAccordionTitleComponent, typeof TCloudUiChoiceIssuesComponent, typeof TCloudUiDataListComponent, typeof TCloudUiDataListOptionComponent, typeof TCloudUiDatepickerTimeComponent, typeof TCloudUiDatepickerComponent, typeof TCloudUiFiltersComponent, typeof TCloudUiRangeDateComponent, typeof TCloudUiInputSearchComponent, typeof TCloudUiInputContainerComponent, typeof TCloudUiLineStepCircleComponent, typeof TCloudUiLinhaLogoComponent, typeof TCloudUiModalComponent, typeof TCloudUiModalBodyComponent, typeof TCloudUiModalHeaderComponent, typeof TCloudUiModalFooterComponent, typeof TCloudUiPopoverComponent, typeof TCloudUiMultiInputComponent, typeof TCloudUiMultiSelectComponent, typeof TCloudUiNotFoundComponent, typeof TCloudUiNumberStepComponent, typeof TCloudUiScrollBoxComponent, typeof TCloudUiTabMenuComponent, typeof TCloudUiTabHeadComponent, typeof TCloudUiTabContentComponent, typeof TCloudUiTabTitleComponent, typeof TCloudUiTabSubtitleComponent, typeof TCloudUiTableComponent, typeof TCloudUiInputPasswordComponent, typeof TCloudUiLabelTokenComponent, typeof TCloudUiToastComponent, typeof TCloudUiLineStepTitleComponent, typeof TCloudUiLoadingComponent, typeof TCloudUiCubesComponent, typeof TCloudUiMultiplesValuesComponent, typeof TCloudUiProgressBarComponent, typeof TCloudUiProgressStatusBarComponent, typeof TCloudUiReorderItemsComponent, typeof TCloudUiWelcomeComponent, typeof TCloudUiContainerComponent, typeof TCloudUiContainerColComponent, typeof TCloudUiContainerContentComponent, typeof TCloudUiPaginationComponent, typeof TCloudUiCardComponent, typeof TCloudUiCardTitleComponent, typeof TCloudUiCardAccordionComponent, typeof TCloudUiCalendarComponent, typeof TCloudUiCarouselComponent, typeof TCloudUiDropdownComponent, typeof TCloudUiDropdownMultiComponent, typeof TCloudUiDialogComponent, typeof TCloudUiDialogHostComponent, typeof TCloudUiEmptyContentComponent, typeof TCloudUiFaqComponent, typeof TCloudUiMessageComponent, typeof TCloudUiSkeletonLoadingComponent, typeof TCloudUiTagComponent, typeof TCloudUiSubNavbarComponent, typeof TCloudUiSubNavbarGroupComponent, typeof TCloudUiSubNavbarItemComponent, typeof TCloudUiTabGroupComponent, typeof TCloudUiTabItemComponent, typeof TCloudUiWizardStepsComponent, typeof TCloudUiBreadcrumbComponent, typeof TCloudUiSearchInputComponent, typeof TCloudUiAlertBannerComponent, typeof TCloudUiFilterBarComponent, typeof TCloudUiLegendComponent, typeof TCloudUiSearchBarComponent, typeof TCloudUiUploadAreaComponent, typeof TCloudUiEditorComponent, typeof TCloudUiEditorDiffComponent, typeof TCloudUiMarkReadmeComponent, typeof TCloudUiAlignDirective, typeof TCloudUiCheckboxDirective, typeof TCloudUiCurrencyDirective, typeof TCloudUiElCopyDirective, typeof TCloudUiHoverParentDirective, typeof TCloudUiCheckAccessDirective, typeof TCloudUiNgCheckAccessDirective, typeof TCloudUiNgFeatureFlagsDirective, typeof TCloudUiTooltipDirective, typeof TCloudUiDigitOnlyDirective, typeof TCloudUiHighLightDirective, typeof TCloudUiIpMaskDirective, typeof TCloudUiButtonDirective, typeof TCloudUiFormDirective, typeof TCloudUiSlideToggleDirective, typeof TCloudUiRadioDirective, typeof TCloudUiIconButtonDirective, typeof TCloudUiInputDirective, typeof ToTextPipe, typeof BytesPipe, typeof CNPJPipe, typeof CPFPipe, typeof DateBRPipe, typeof MonthNamePipe, typeof RespectivePipe, typeof StatusInfoPipe, typeof TCloudUiPaginationPipe], [typeof TCloudUiAccordionComponent, typeof TCloudUiAccordionBodyComponent, typeof TCloudUiAccordionTitleComponent, typeof TCloudUiChoiceIssuesComponent, typeof TCloudUiDataListComponent, typeof TCloudUiDataListOptionComponent, typeof TCloudUiDatepickerTimeComponent, typeof TCloudUiDatepickerComponent, typeof TCloudUiFiltersComponent, typeof TCloudUiRangeDateComponent, typeof TCloudUiInputSearchComponent, typeof TCloudUiInputContainerComponent, typeof TCloudUiLineStepCircleComponent, typeof TCloudUiLinhaLogoComponent, typeof TCloudUiModalComponent, typeof TCloudUiModalBodyComponent, typeof TCloudUiModalHeaderComponent, typeof TCloudUiModalFooterComponent, typeof TCloudUiPopoverComponent, typeof TCloudUiMultiInputComponent, typeof TCloudUiMultiSelectComponent, typeof TCloudUiNotFoundComponent, typeof TCloudUiNumberStepComponent, typeof TCloudUiScrollBoxComponent, typeof TCloudUiTabMenuComponent, typeof TCloudUiTabHeadComponent, typeof TCloudUiTabContentComponent, typeof TCloudUiTabTitleComponent, typeof TCloudUiTabSubtitleComponent, typeof TCloudUiTableComponent, typeof TCloudUiInputPasswordComponent, typeof TCloudUiLabelTokenComponent, typeof TCloudUiToastComponent, typeof TCloudUiLineStepTitleComponent, typeof TCloudUiLoadingComponent, typeof TCloudUiCubesComponent, typeof TCloudUiMultiplesValuesComponent, typeof TCloudUiProgressBarComponent, typeof TCloudUiProgressStatusBarComponent, typeof TCloudUiReorderItemsComponent, typeof TCloudUiWelcomeComponent, typeof TCloudUiContainerComponent, typeof TCloudUiContainerColComponent, typeof TCloudUiContainerContentComponent, typeof TCloudUiPaginationComponent, typeof TCloudUiCardComponent, typeof TCloudUiCardTitleComponent, typeof TCloudUiCardAccordionComponent, typeof TCloudUiCalendarComponent, typeof TCloudUiCarouselComponent, typeof TCloudUiDropdownComponent, typeof TCloudUiDropdownMultiComponent, typeof TCloudUiDialogComponent, typeof TCloudUiDialogHostComponent, typeof TCloudUiEmptyContentComponent, typeof TCloudUiFaqComponent, typeof TCloudUiMessageComponent, typeof TCloudUiSkeletonLoadingComponent, typeof TCloudUiTagComponent, typeof TCloudUiSubNavbarComponent, typeof TCloudUiSubNavbarGroupComponent, typeof TCloudUiSubNavbarItemComponent, typeof TCloudUiTabGroupComponent, typeof TCloudUiTabItemComponent, typeof TCloudUiWizardStepsComponent, typeof TCloudUiBreadcrumbComponent, typeof TCloudUiSearchInputComponent, typeof TCloudUiAlertBannerComponent, typeof TCloudUiFilterBarComponent, typeof TCloudUiLegendComponent, typeof TCloudUiSearchBarComponent, typeof TCloudUiUploadAreaComponent, typeof TCloudUiEditorComponent, typeof TCloudUiEditorDiffComponent, typeof TCloudUiMarkReadmeComponent, typeof TCloudUiAlignDirective, typeof TCloudUiCheckboxDirective, typeof TCloudUiCurrencyDirective, typeof TCloudUiElCopyDirective, typeof TCloudUiHoverParentDirective, typeof TCloudUiCheckAccessDirective, typeof TCloudUiNgCheckAccessDirective, typeof TCloudUiNgFeatureFlagsDirective, typeof TCloudUiTooltipDirective, typeof TCloudUiDigitOnlyDirective, typeof TCloudUiHighLightDirective, typeof TCloudUiIpMaskDirective, typeof TCloudUiButtonDirective, typeof TCloudUiFormDirective, typeof TCloudUiSlideToggleDirective, typeof TCloudUiRadioDirective, typeof TCloudUiIconButtonDirective, typeof TCloudUiInputDirective, typeof ToTextPipe, typeof BytesPipe, typeof CNPJPipe, typeof CPFPipe, typeof DateBRPipe, typeof MonthNamePipe, typeof RespectivePipe, typeof StatusInfoPipe, typeof TCloudUiPaginationPipe]>;
|
|
2616
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TCloudUiModule, never, [typeof TCloudUiAccordionComponent, typeof TCloudUiAccordionBodyComponent, typeof TCloudUiAccordionTitleComponent, typeof TCloudUiChoiceIssuesComponent, typeof TCloudUiDataListComponent, typeof TCloudUiDataListOptionComponent, typeof TCloudUiDatepickerTimeComponent, typeof TCloudUiDatepickerComponent, typeof TCloudUiFiltersComponent, typeof TCloudUiRangeDateComponent, typeof TCloudUiInputSearchComponent, typeof TCloudUiInputContainerComponent, typeof TCloudUiLineStepCircleComponent, typeof TCloudUiLinhaLogoComponent, typeof TCloudUiModalComponent, typeof TCloudUiModalBodyComponent, typeof TCloudUiModalHeaderComponent, typeof TCloudUiModalFooterComponent, typeof TCloudUiPopoverComponent, typeof TCloudUiMultiInputComponent, typeof TCloudUiMultiSelectComponent, typeof TCloudUiNotFoundComponent, typeof TCloudUiNumberStepComponent, typeof TCloudUiScrollBoxComponent, typeof TCloudUiTabMenuComponent, typeof TCloudUiTabHeadComponent, typeof TCloudUiTabContentComponent, typeof TCloudUiTabTitleComponent, typeof TCloudUiTabSubtitleComponent, typeof TCloudUiTableComponent, typeof TCloudUiInputPasswordComponent, typeof TCloudUiLabelTokenComponent, typeof TCloudUiToastComponent, typeof TCloudUiLineStepTitleComponent, typeof TCloudUiLoadingComponent, typeof TCloudUiCubesComponent, typeof TCloudUiMultiplesValuesComponent, typeof TCloudUiProgressBarComponent, typeof TCloudUiProgressStatusBarComponent, typeof TCloudUiReorderItemsComponent, typeof TCloudUiWelcomeComponent, typeof TCloudUiContainerComponent, typeof TCloudUiContainerColComponent, typeof TCloudUiContainerContentComponent, typeof TCloudUiPaginationComponent, typeof TCloudUiCardComponent, typeof TCloudUiCardTitleComponent, typeof TCloudUiCardAccordionComponent, typeof TCloudUiCalendarComponent, typeof TCloudUiCarouselComponent, typeof TCloudUiDropdownComponent, typeof TCloudUiDropdownMultiComponent, typeof TCloudUiDialogComponent, typeof TCloudUiDialogHostComponent, typeof TCloudUiEmptyContentComponent, typeof TCloudUiFaqComponent, typeof TCloudUiMessageComponent, typeof TCloudUiSkeletonLoadingComponent, typeof TCloudUiTagComponent, typeof TCloudUiSubNavbarComponent, typeof TCloudUiSubNavbarGroupComponent, typeof TCloudUiSubNavbarItemComponent, typeof TCloudUiNavbarComponent, typeof TCloudUiNavbarItemComponent, typeof TCloudUiTabGroupComponent, typeof TCloudUiTabItemComponent, typeof TCloudUiWizardStepsComponent, typeof TCloudUiBreadcrumbComponent, typeof TCloudUiSearchInputComponent, typeof TCloudUiAlertBannerComponent, typeof TCloudUiFilterBarComponent, typeof TCloudUiLegendComponent, typeof TCloudUiSearchBarComponent, typeof TCloudUiUploadAreaComponent, typeof TCloudUiEditorComponent, typeof TCloudUiEditorDiffComponent, typeof TCloudUiMarkReadmeComponent, typeof TCloudUiAlignDirective, typeof TCloudUiCheckboxDirective, typeof TCloudUiCurrencyDirective, typeof TCloudUiElCopyDirective, typeof TCloudUiHoverParentDirective, typeof TCloudUiCheckAccessDirective, typeof TCloudUiNgCheckAccessDirective, typeof TCloudUiNgFeatureFlagsDirective, typeof TCloudUiTooltipDirective, typeof TCloudUiDigitOnlyDirective, typeof TCloudUiHighLightDirective, typeof TCloudUiIpMaskDirective, typeof TCloudUiButtonDirective, typeof TCloudUiFormDirective, typeof TCloudUiSlideToggleDirective, typeof TCloudUiRadioDirective, typeof TCloudUiIconButtonDirective, typeof TCloudUiInputDirective, typeof ToTextPipe, typeof BytesPipe, typeof CNPJPipe, typeof CPFPipe, typeof DateBRPipe, typeof MonthNamePipe, typeof RespectivePipe, typeof StatusInfoPipe, typeof TCloudUiPaginationPipe], [typeof TCloudUiAccordionComponent, typeof TCloudUiAccordionBodyComponent, typeof TCloudUiAccordionTitleComponent, typeof TCloudUiChoiceIssuesComponent, typeof TCloudUiDataListComponent, typeof TCloudUiDataListOptionComponent, typeof TCloudUiDatepickerTimeComponent, typeof TCloudUiDatepickerComponent, typeof TCloudUiFiltersComponent, typeof TCloudUiRangeDateComponent, typeof TCloudUiInputSearchComponent, typeof TCloudUiInputContainerComponent, typeof TCloudUiLineStepCircleComponent, typeof TCloudUiLinhaLogoComponent, typeof TCloudUiModalComponent, typeof TCloudUiModalBodyComponent, typeof TCloudUiModalHeaderComponent, typeof TCloudUiModalFooterComponent, typeof TCloudUiPopoverComponent, typeof TCloudUiMultiInputComponent, typeof TCloudUiMultiSelectComponent, typeof TCloudUiNotFoundComponent, typeof TCloudUiNumberStepComponent, typeof TCloudUiScrollBoxComponent, typeof TCloudUiTabMenuComponent, typeof TCloudUiTabHeadComponent, typeof TCloudUiTabContentComponent, typeof TCloudUiTabTitleComponent, typeof TCloudUiTabSubtitleComponent, typeof TCloudUiTableComponent, typeof TCloudUiInputPasswordComponent, typeof TCloudUiLabelTokenComponent, typeof TCloudUiToastComponent, typeof TCloudUiLineStepTitleComponent, typeof TCloudUiLoadingComponent, typeof TCloudUiCubesComponent, typeof TCloudUiMultiplesValuesComponent, typeof TCloudUiProgressBarComponent, typeof TCloudUiProgressStatusBarComponent, typeof TCloudUiReorderItemsComponent, typeof TCloudUiWelcomeComponent, typeof TCloudUiContainerComponent, typeof TCloudUiContainerColComponent, typeof TCloudUiContainerContentComponent, typeof TCloudUiPaginationComponent, typeof TCloudUiCardComponent, typeof TCloudUiCardTitleComponent, typeof TCloudUiCardAccordionComponent, typeof TCloudUiCalendarComponent, typeof TCloudUiCarouselComponent, typeof TCloudUiDropdownComponent, typeof TCloudUiDropdownMultiComponent, typeof TCloudUiDialogComponent, typeof TCloudUiDialogHostComponent, typeof TCloudUiEmptyContentComponent, typeof TCloudUiFaqComponent, typeof TCloudUiMessageComponent, typeof TCloudUiSkeletonLoadingComponent, typeof TCloudUiTagComponent, typeof TCloudUiSubNavbarComponent, typeof TCloudUiSubNavbarGroupComponent, typeof TCloudUiSubNavbarItemComponent, typeof TCloudUiNavbarComponent, typeof TCloudUiNavbarItemComponent, typeof TCloudUiTabGroupComponent, typeof TCloudUiTabItemComponent, typeof TCloudUiWizardStepsComponent, typeof TCloudUiBreadcrumbComponent, typeof TCloudUiSearchInputComponent, typeof TCloudUiAlertBannerComponent, typeof TCloudUiFilterBarComponent, typeof TCloudUiLegendComponent, typeof TCloudUiSearchBarComponent, typeof TCloudUiUploadAreaComponent, typeof TCloudUiEditorComponent, typeof TCloudUiEditorDiffComponent, typeof TCloudUiMarkReadmeComponent, typeof TCloudUiAlignDirective, typeof TCloudUiCheckboxDirective, typeof TCloudUiCurrencyDirective, typeof TCloudUiElCopyDirective, typeof TCloudUiHoverParentDirective, typeof TCloudUiCheckAccessDirective, typeof TCloudUiNgCheckAccessDirective, typeof TCloudUiNgFeatureFlagsDirective, typeof TCloudUiTooltipDirective, typeof TCloudUiDigitOnlyDirective, typeof TCloudUiHighLightDirective, typeof TCloudUiIpMaskDirective, typeof TCloudUiButtonDirective, typeof TCloudUiFormDirective, typeof TCloudUiSlideToggleDirective, typeof TCloudUiRadioDirective, typeof TCloudUiIconButtonDirective, typeof TCloudUiInputDirective, typeof ToTextPipe, typeof BytesPipe, typeof CNPJPipe, typeof CPFPipe, typeof DateBRPipe, typeof MonthNamePipe, typeof RespectivePipe, typeof StatusInfoPipe, typeof TCloudUiPaginationPipe]>;
|
|
2556
2617
|
static ɵinj: i0.ɵɵInjectorDeclaration<TCloudUiModule>;
|
|
2557
2618
|
}
|
|
2558
2619
|
|
|
@@ -3359,5 +3420,5 @@ declare class TcRevComponentsLibModule {
|
|
|
3359
3420
|
static ɵinj: i0.ɵɵInjectorDeclaration<TcRevComponentsLibModule>;
|
|
3360
3421
|
}
|
|
3361
3422
|
|
|
3362
|
-
export { AcceptedFileType, BytesPipe, CNPJPipe, CPFPipe, CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR, DateBRPipe, DropdownGroupedSize, DropdownMultiSize$1 as DropdownMultiSize, DropdownSize$1 as DropdownSize, MonthNamePipe, MultiLevelDropdownSize$1 as MultiLevelDropdownSize, ProductActionPipe, ProgressStatusBarGradientStatus$1 as ProgressStatusBarGradientStatus, RespectivePipe, StatusInfoPipe, TCCondition, TCFiltersType, TCLOUD_UI_CONFIG, TCLOUD_UI_LAYOUT_SERVICE, TCLOUD_UI_LOCALE_SERVICE, TCLOUD_UI_USER_SERVICE, TCLOUD_UI_VIEWPORT_SERVICE, TCloudUiAccordionBodyComponent, TCloudUiAccordionComponent, TCloudUiAccordionTitleComponent, TCloudUiAlertBannerComponent, TCloudUiAlignDirective, TCloudUiBreadcrumbComponent, TCloudUiBreadcrumbService, TCloudUiButtonDirective, TCloudUiCalendarComponent, TCloudUiCardAccordionComponent, TCloudUiCardComponent, TCloudUiCardTitleComponent, TCloudUiCarouselComponent, TCloudUiCheckAccessDirective, TCloudUiCheckAccessService, TCloudUiCheckboxDirective, TCloudUiChoiceIssuesComponent, TCloudUiContainerColComponent, TCloudUiContainerComponent, TCloudUiContainerContentComponent, TCloudUiCubesComponent, TCloudUiCurrencyDirective, TCloudUiDataListComponent, TCloudUiDataListOptionComponent, TCloudUiDatepickerComponent, TCloudUiDatepickerTimeComponent, TCloudUiDialogComponent, TCloudUiDialogEventsEnum, TCloudUiDialogHostComponent, TCloudUiDialogModel, TCloudUiDialogService, TCloudUiDialogStatusEnum, TCloudUiDialogTextConfirmationEnum, TCloudUiDigitOnlyDirective, TCloudUiDropdownComponent, TCloudUiDropdownMultiComponent, TCloudUiDropdownMultiLevelComponent, TCloudUiEditorComponent, TCloudUiEditorDiffComponent, TCloudUiElCopyDirective, TCloudUiEmptyContentComponent, TCloudUiFaqComponent, TCloudUiFilterBarComponent, TCloudUiFiltersComponent, TCloudUiFormDirective, TCloudUiHighLightDirective, TCloudUiHoverParentDirective, TCloudUiIconButtonDirective, TCloudUiInputContainerComponent, TCloudUiInputDirective, TCloudUiInputPasswordComponent, TCloudUiInputSearchComponent, TCloudUiIpMaskDirective, TCloudUiLabelTokenComponent, TCloudUiLegendComponent, TCloudUiLineStepCircleComponent, TCloudUiLineStepTitleComponent, TCloudUiLinhaLogoComponent, TCloudUiLoadingComponent, TCloudUiLoadingTransitionsService, TCloudUiMarkReadmeComponent, TCloudUiMessageComponent, TCloudUiModalBodyComponent, TCloudUiModalComponent, TCloudUiModalFooterComponent, TCloudUiModalHeaderComponent, TCloudUiModule, TCloudUiMultiInputComponent, TCloudUiMultiSelectComponent, TCloudUiMultiplesValuesComponent, TCloudUiNgCheckAccessDirective, TCloudUiNgFeatureFlagsDirective, TCloudUiNotFoundComponent, TCloudUiNumberStepComponent, TCloudUiPaginationComponent, TCloudUiPaginationPipe, TCloudUiPopoverComponent, TCloudUiProgressBarComponent, TCloudUiProgressStatusBarComponent, TCloudUiRadioDirective, TCloudUiRangeDateComponent, TCloudUiReorderItemsComponent, TCloudUiScrollBoxComponent, TCloudUiSearchBarComponent, TCloudUiSearchInObjectService, TCloudUiSearchInputComponent, TCloudUiSkeletonLoadingComponent, TCloudUiSkeletonLoadingComponentStyle, TCloudUiSlideToggleDirective, TCloudUiSubNavbarComponent, TCloudUiSubNavbarGroupComponent, TCloudUiSubNavbarItemComponent, TCloudUiTabContentComponent, TCloudUiTabGroupComponent, TCloudUiTabHeadComponent, TCloudUiTabItemComponent, TCloudUiTabMenuComponent, TCloudUiTabSubtitleComponent, TCloudUiTabTitleComponent, TCloudUiTableComponent, TCloudUiTagComponent, TCloudUiToastComponent, TCloudUiTooltipDirective, TCloudUiUploadAreaComponent, TCloudUiWelcomeComponent, TCloudUiWizardStepsComponent, TagColorsEnum, TcRevButtonDirective, TcRevCalendarComponent, TcRevCardAccordionComponent, TcRevCardComponent, TcRevCardTitleComponent, TcRevCheckboxDirective, TcRevComponentsLibModule, TcRevDropdownComponent, TcRevDropdownGroupedComponent, TcRevDropdownMultiComponent, TcRevDropdownMultiLevelComponent, TcRevEmptyContentComponent, TcRevFaqComponent, TcRevIconButtonDirective, TcRevInputContainerComponent, TcRevInputDirective, TcRevLoadingComponent, TcRevMessageComponent, TcRevMultiInputComponent, TcRevPaginationComponent, TcRevProgressStatusBarComponent, TcRevRadioDirective, TcRevSearchInputComponent, TcRevSideDrawerComponent, TcRevSkeletonLoadingComponent, TcRevSkeletonLoadingComponentStyle, TcRevSlideToggleDirective, TcRevSmallLoadingComponent, TcRevSmallLoadingComponentStyle, TcRevSubNavbarComponent, TcRevSubNavbarItemComponent, TcRevTabGroupComponent, TcRevTabItemComponent, TcRevTagComponent, TcRevToastComponent, TcRevTooltipDirective, TcRevWizardStepsComponent, ToTextPipe, TopologyEnvironmentPipe, TopologyProductPipe, TopologyRegionPipe, TopologyStatusPipe, echartBarConfig, isTextEllipsed, provideTCloudUi };
|
|
3363
|
-
export type { AlertType, BarChartData, BreadcrumbItem$1 as BreadcrumbItem, CalendarAppointment$1 as CalendarAppointment, DropdownGroup, DropdownGroupedOption, DropdownMultiOption$1 as DropdownMultiOption, DropdownOption$1 as DropdownOption, ImageDimensions, ImageItem, LineStepTitleData, MultiLevelDropdownOption$1 as MultiLevelDropdownOption, PreloadedImage, ProgressStatusConfig$1 as ProgressStatusConfig, TCDataFilters, TCDataOtions, TCloudUiCarouselEffect, TCloudUiConfig, TCloudUiCustomServices, TCloudUiPopoverAlign, TCloudUiPopoverMaxWidth, TCloudUiPopoverPosition, WizardStep$1 as WizardStep, reorderItensData };
|
|
3423
|
+
export { AcceptedFileType, BytesPipe, CNPJPipe, CPFPipe, CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR, DateBRPipe, DropdownGroupedSize, DropdownMultiSize$1 as DropdownMultiSize, DropdownSize$1 as DropdownSize, MonthNamePipe, MultiLevelDropdownSize$1 as MultiLevelDropdownSize, ProductActionPipe, ProgressStatusBarGradientStatus$1 as ProgressStatusBarGradientStatus, RespectivePipe, StatusInfoPipe, TCCondition, TCFiltersType, TCLOUD_UI_CONFIG, TCLOUD_UI_LAYOUT_SERVICE, TCLOUD_UI_LOCALE_SERVICE, TCLOUD_UI_USER_SERVICE, TCLOUD_UI_VIEWPORT_SERVICE, TCloudUiAccordionBodyComponent, TCloudUiAccordionComponent, TCloudUiAccordionTitleComponent, TCloudUiAlertBannerComponent, TCloudUiAlignDirective, TCloudUiBreadcrumbComponent, TCloudUiBreadcrumbService, TCloudUiButtonDirective, TCloudUiCalendarComponent, TCloudUiCardAccordionComponent, TCloudUiCardComponent, TCloudUiCardTitleComponent, TCloudUiCarouselComponent, TCloudUiCheckAccessDirective, TCloudUiCheckAccessService, TCloudUiCheckboxDirective, TCloudUiChoiceIssuesComponent, TCloudUiContainerColComponent, TCloudUiContainerComponent, TCloudUiContainerContentComponent, TCloudUiCubesComponent, TCloudUiCurrencyDirective, TCloudUiDataListComponent, TCloudUiDataListOptionComponent, TCloudUiDatepickerComponent, TCloudUiDatepickerTimeComponent, TCloudUiDialogComponent, TCloudUiDialogEventsEnum, TCloudUiDialogHostComponent, TCloudUiDialogModel, TCloudUiDialogService, TCloudUiDialogStatusEnum, TCloudUiDialogTextConfirmationEnum, TCloudUiDigitOnlyDirective, TCloudUiDropdownComponent, TCloudUiDropdownMultiComponent, TCloudUiDropdownMultiLevelComponent, TCloudUiEditorComponent, TCloudUiEditorDiffComponent, TCloudUiElCopyDirective, TCloudUiEmptyContentComponent, TCloudUiFaqComponent, TCloudUiFilterBarComponent, TCloudUiFiltersComponent, TCloudUiFormDirective, TCloudUiHighLightDirective, TCloudUiHoverParentDirective, TCloudUiIconButtonDirective, TCloudUiInputContainerComponent, TCloudUiInputDirective, TCloudUiInputPasswordComponent, TCloudUiInputSearchComponent, TCloudUiIpMaskDirective, TCloudUiLabelTokenComponent, TCloudUiLegendComponent, TCloudUiLineStepCircleComponent, TCloudUiLineStepTitleComponent, TCloudUiLinhaLogoComponent, TCloudUiLoadingComponent, TCloudUiLoadingTransitionsService, TCloudUiMarkReadmeComponent, TCloudUiMessageComponent, TCloudUiModalBodyComponent, TCloudUiModalComponent, TCloudUiModalFooterComponent, TCloudUiModalHeaderComponent, TCloudUiModule, TCloudUiMultiInputComponent, TCloudUiMultiSelectComponent, TCloudUiMultiplesValuesComponent, TCloudUiNavbarComponent, TCloudUiNavbarItemComponent, TCloudUiNgCheckAccessDirective, TCloudUiNgFeatureFlagsDirective, TCloudUiNotFoundComponent, TCloudUiNumberStepComponent, TCloudUiPaginationComponent, TCloudUiPaginationPipe, TCloudUiPopoverComponent, TCloudUiProgressBarComponent, TCloudUiProgressStatusBarComponent, TCloudUiRadioDirective, TCloudUiRangeDateComponent, TCloudUiReorderItemsComponent, TCloudUiScrollBoxComponent, TCloudUiSearchBarComponent, TCloudUiSearchInObjectService, TCloudUiSearchInputComponent, TCloudUiSkeletonLoadingComponent, TCloudUiSkeletonLoadingComponentStyle, TCloudUiSlideToggleDirective, TCloudUiSubNavbarComponent, TCloudUiSubNavbarGroupComponent, TCloudUiSubNavbarItemComponent, TCloudUiTabContentComponent, TCloudUiTabGroupComponent, TCloudUiTabHeadComponent, TCloudUiTabItemComponent, TCloudUiTabMenuComponent, TCloudUiTabSubtitleComponent, TCloudUiTabTitleComponent, TCloudUiTableComponent, TCloudUiTagComponent, TCloudUiToastComponent, TCloudUiTooltipDirective, TCloudUiUploadAreaComponent, TCloudUiWelcomeComponent, TCloudUiWizardStepsComponent, TagColorsEnum, TcRevButtonDirective, TcRevCalendarComponent, TcRevCardAccordionComponent, TcRevCardComponent, TcRevCardTitleComponent, TcRevCheckboxDirective, TcRevComponentsLibModule, TcRevDropdownComponent, TcRevDropdownGroupedComponent, TcRevDropdownMultiComponent, TcRevDropdownMultiLevelComponent, TcRevEmptyContentComponent, TcRevFaqComponent, TcRevIconButtonDirective, TcRevInputContainerComponent, TcRevInputDirective, TcRevLoadingComponent, TcRevMessageComponent, TcRevMultiInputComponent, TcRevPaginationComponent, TcRevProgressStatusBarComponent, TcRevRadioDirective, TcRevSearchInputComponent, TcRevSideDrawerComponent, TcRevSkeletonLoadingComponent, TcRevSkeletonLoadingComponentStyle, TcRevSlideToggleDirective, TcRevSmallLoadingComponent, TcRevSmallLoadingComponentStyle, TcRevSubNavbarComponent, TcRevSubNavbarItemComponent, TcRevTabGroupComponent, TcRevTabItemComponent, TcRevTagComponent, TcRevToastComponent, TcRevTooltipDirective, TcRevWizardStepsComponent, ToTextPipe, TopologyEnvironmentPipe, TopologyProductPipe, TopologyRegionPipe, TopologyStatusPipe, echartBarConfig, isTextEllipsed, provideTCloudUi };
|
|
3424
|
+
export type { AlertType, BarChartData, BreadcrumbItem$1 as BreadcrumbItem, CalendarAppointment$1 as CalendarAppointment, DropdownGroup, DropdownGroupedOption, DropdownMultiOption$1 as DropdownMultiOption, DropdownOption$1 as DropdownOption, ImageDimensions, ImageItem, LineStepTitleData, MultiLevelDropdownOption$1 as MultiLevelDropdownOption, PreloadedImage, ProgressStatusConfig$1 as ProgressStatusConfig, TCDataFilters, TCDataOtions, TCloudUiCarouselEffect, TCloudUiConfig, TCloudUiCustomServices, TCloudUiNavbarItem, TCloudUiPopoverAlign, TCloudUiPopoverMaxWidth, TCloudUiPopoverPosition, WizardStep$1 as WizardStep, reorderItensData };
|