@dev-tcloud/tcloud-ui 7.1.0 → 7.2.1
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/docs/tcloud-ui-navbar.md +226 -0
- package/fesm2022/dev-tcloud-tcloud-ui.mjs +166 -1
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/js/tcloud-ui-app.js +69 -69
- package/package.json +1 -1
- package/scss/components/custom/_tcloud-ui-navbar.scss +84 -0
- package/scss/components/styles.scss +2 -1
- package/types/dev-tcloud-tcloud-ui.d.ts +124 -3
package/package.json
CHANGED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
// Estilos globais/distribuídos do tcloud-ui-navbar.
|
|
2
|
+
//
|
|
3
|
+
// O grosso do visual vive nos SCSS dos componentes Angular
|
|
4
|
+
// (tcloud-ui-navbar.component.scss e tcloud-ui-navbar-item.component.scss).
|
|
5
|
+
// Aqui ficam apenas as regras que precisam de escopo global — usadas por
|
|
6
|
+
// consumidores que renderizam o markup fora do encapsulamento do componente
|
|
7
|
+
// (ex.: preview de documentação) e ajustes de tema (dark mode).
|
|
8
|
+
|
|
9
|
+
.tcloud-ui-navbar
|
|
10
|
+
{
|
|
11
|
+
// Divisor entre grupos.
|
|
12
|
+
.tcloud-ui-navbar-divider
|
|
13
|
+
{
|
|
14
|
+
border: 0;
|
|
15
|
+
border-top: 1px solid var(--c-neutral-200);
|
|
16
|
+
margin: var(--size-0);
|
|
17
|
+
width: 100%;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// Rótulo do grupo.
|
|
21
|
+
.tcloud-ui-navbar-group-label
|
|
22
|
+
{
|
|
23
|
+
color: var(--c-neutral-500);
|
|
24
|
+
font-size: var(--f-size-12);
|
|
25
|
+
font-weight: var(--f-weight-700);
|
|
26
|
+
text-transform: uppercase;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// Selo curto (ex.: "Novo").
|
|
30
|
+
.navbar-item-badge
|
|
31
|
+
{
|
|
32
|
+
background-color: var(--c-primary-500);
|
|
33
|
+
border-radius: var(--bor-radius-4);
|
|
34
|
+
color: var(--c-neutral-50);
|
|
35
|
+
font-size: var(--f-size-12);
|
|
36
|
+
font-weight: var(--f-weight-700);
|
|
37
|
+
line-height: 1;
|
|
38
|
+
padding: var(--size-4) var(--size-8);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// Item ativo: realce full-width azul claro.
|
|
42
|
+
.tcloud-ui-navbar-item-link
|
|
43
|
+
{
|
|
44
|
+
&.active, &.selected
|
|
45
|
+
{
|
|
46
|
+
background-color: var(--c-primary-300);
|
|
47
|
+
|
|
48
|
+
.navbar-item-icon-container
|
|
49
|
+
{
|
|
50
|
+
background-color: transparent;
|
|
51
|
+
color: var(--c-primary-500);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.navbar-item-label
|
|
55
|
+
{
|
|
56
|
+
color: var(--c-primary-500);
|
|
57
|
+
font-weight: var(--f-weight-700);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// Item filho de submenu: sem box de ícone, texto indentado e trilho vertical
|
|
63
|
+
// à esquerda (cinza; azul quando ativo).
|
|
64
|
+
.tcloud-ui-navbar-subitem .tcloud-ui-navbar-item-link
|
|
65
|
+
{
|
|
66
|
+
border-left: 2px solid var(--c-neutral-200);
|
|
67
|
+
border-radius: 0 var(--bor-radius-4) var(--bor-radius-4) 0;
|
|
68
|
+
|
|
69
|
+
.navbar-item-icon-container
|
|
70
|
+
{
|
|
71
|
+
display: none;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.navbar-item-label
|
|
75
|
+
{
|
|
76
|
+
padding-left: var(--size-12);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&.active, &.selected
|
|
80
|
+
{
|
|
81
|
+
border-left-color: var(--c-primary-500);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -2001,6 +2001,127 @@ 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
|
+
/** Selo curto exibido ao lado do label, ex.: `'Novo'`. */
|
|
2032
|
+
badge?: string;
|
|
2033
|
+
}
|
|
2034
|
+
/**
|
|
2035
|
+
* Grupo de itens do `tcloud-ui-navbar`. Grupos são separados visualmente por um
|
|
2036
|
+
* divisor; o rótulo opcional aparece como cabeçalho da seção (só no modo expandido).
|
|
2037
|
+
*/
|
|
2038
|
+
interface TCloudUiNavbarGroup {
|
|
2039
|
+
/** Rótulo opcional exibido como cabeçalho da seção (só no modo expandido). */
|
|
2040
|
+
label?: string;
|
|
2041
|
+
/** Itens do grupo. */
|
|
2042
|
+
items: TCloudUiNavbarItem[];
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2045
|
+
declare class TCloudUiNavbarComponent {
|
|
2046
|
+
/** Itens do menu (data-driven). Submenu é renderizado recursivamente. */
|
|
2047
|
+
menuItems: TCloudUiNavbarItem[];
|
|
2048
|
+
/**
|
|
2049
|
+
* Grupos de itens separados por divisor. Quando informado, tem precedência
|
|
2050
|
+
* sobre `menuItems`. Use para reproduzir as seções do layout (primária,
|
|
2051
|
+
* secundária, etc.).
|
|
2052
|
+
*/
|
|
2053
|
+
groups: TCloudUiNavbarGroup[];
|
|
2054
|
+
/** Menu expandido (labels visíveis) x minimizado (só ícones). */
|
|
2055
|
+
isMenuExpanded: boolean;
|
|
2056
|
+
/** Exibe o botão interno de minimizar/expandir. */
|
|
2057
|
+
showToggle: boolean;
|
|
2058
|
+
/** Caminho da imagem do logo exibido no header (tema claro). */
|
|
2059
|
+
logoSrc?: string;
|
|
2060
|
+
/**
|
|
2061
|
+
* Caminho da imagem do logo para o tema escuro (`body.tc-dark`). Quando
|
|
2062
|
+
* informado, o header alterna automaticamente entre `logoSrc` (claro) e
|
|
2063
|
+
* `logoSrcDark` (escuro).
|
|
2064
|
+
*/
|
|
2065
|
+
logoSrcDark?: string;
|
|
2066
|
+
/** Texto alternativo do logo. */
|
|
2067
|
+
logoAlt: string;
|
|
2068
|
+
/** Emitido quando o menu é expandido/minimizado. */
|
|
2069
|
+
onExpandChange: i0.OutputEmitterRef<boolean>;
|
|
2070
|
+
/** Emitido ao clicar num item folha (sem submenu). */
|
|
2071
|
+
onItemClick: i0.OutputEmitterRef<TCloudUiNavbarItem>;
|
|
2072
|
+
/**
|
|
2073
|
+
* Grupos efetivamente renderizados: usa `groups` quando informado; caso
|
|
2074
|
+
* contrário embrulha `menuItems` num único grupo (backward-compat).
|
|
2075
|
+
*/
|
|
2076
|
+
get resolvedGroups(): TCloudUiNavbarGroup[];
|
|
2077
|
+
handleExpand(): void;
|
|
2078
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiNavbarComponent, never>;
|
|
2079
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiNavbarComponent, "tcloud-ui-navbar", never, { "menuItems": { "alias": "menuItems"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "isMenuExpanded": { "alias": "isMenuExpanded"; "required": false; }; "showToggle": { "alias": "showToggle"; "required": false; }; "logoSrc": { "alias": "logoSrc"; "required": false; }; "logoSrcDark": { "alias": "logoSrcDark"; "required": false; }; "logoAlt": { "alias": "logoAlt"; "required": false; }; }, { "onExpandChange": "onExpandChange"; "onItemClick": "onItemClick"; }, never, ["[navbar-header]", "[navbar-footer]"], true, never>;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
declare class TCloudUiNavbarItemComponent {
|
|
2083
|
+
item: TCloudUiNavbarItem;
|
|
2084
|
+
/** Menu expandido (labels visíveis) x minimizado (só ícones). */
|
|
2085
|
+
isMenuExpanded: boolean;
|
|
2086
|
+
/** Nível de aninhamento — usado para indentação dos submenus. */
|
|
2087
|
+
level: number;
|
|
2088
|
+
/** Emitido ao clicar num item folha (sem submenu). */
|
|
2089
|
+
onItemClick: i0.OutputEmitterRef<TCloudUiNavbarItem>;
|
|
2090
|
+
get hasSubmenu(): boolean;
|
|
2091
|
+
handleClick(ev: MouseEvent): void;
|
|
2092
|
+
/** Propaga o clique de um item filho para cima na recursão. */
|
|
2093
|
+
bubbleClick(item: TCloudUiNavbarItem): void;
|
|
2094
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiNavbarItemComponent, never>;
|
|
2095
|
+
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>;
|
|
2096
|
+
}
|
|
2097
|
+
|
|
2098
|
+
/**
|
|
2099
|
+
* Rodapé de perfil do `tcloud-ui-navbar`: avatar, nome, papel e botão de sair.
|
|
2100
|
+
*
|
|
2101
|
+
* Projetado no slot `[navbar-footer]` do navbar. Respeita o modo minimizado
|
|
2102
|
+
* (`isMenuExpanded = false`), quando só o avatar é exibido.
|
|
2103
|
+
*/
|
|
2104
|
+
declare class TCloudUiNavbarFooterComponent {
|
|
2105
|
+
/** Caminho da imagem do avatar. */
|
|
2106
|
+
avatarSrc?: string;
|
|
2107
|
+
/** Texto alternativo do avatar. */
|
|
2108
|
+
avatarAlt: string;
|
|
2109
|
+
/** Nome do usuário. */
|
|
2110
|
+
name: string;
|
|
2111
|
+
/** Papel/subtítulo do usuário (ex.: 'Operadora'). */
|
|
2112
|
+
role: string;
|
|
2113
|
+
/** Menu expandido: mostra nome/papel e o botão de sair. */
|
|
2114
|
+
isMenuExpanded: boolean;
|
|
2115
|
+
/** Exibe o botão de sair. */
|
|
2116
|
+
showLogout: boolean;
|
|
2117
|
+
/** Título/tooltip do botão de sair. */
|
|
2118
|
+
logoutTitle: string;
|
|
2119
|
+
/** Emitido ao clicar no botão de sair. */
|
|
2120
|
+
onLogout: i0.OutputEmitterRef<void>;
|
|
2121
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiNavbarFooterComponent, never>;
|
|
2122
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiNavbarFooterComponent, "tcloud-ui-navbar-footer", never, { "avatarSrc": { "alias": "avatarSrc"; "required": false; }; "avatarAlt": { "alias": "avatarAlt"; "required": false; }; "name": { "alias": "name"; "required": false; }; "role": { "alias": "role"; "required": false; }; "isMenuExpanded": { "alias": "isMenuExpanded"; "required": false; }; "showLogout": { "alias": "showLogout"; "required": false; }; "logoutTitle": { "alias": "logoutTitle"; "required": false; }; }, { "onLogout": "onLogout"; }, never, never, true, never>;
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2004
2125
|
declare class TCloudUiTabGroupComponent {
|
|
2005
2126
|
onResize(): void;
|
|
2006
2127
|
tabGroupCarousel: ElementRef<HTMLDivElement>;
|
|
@@ -2552,7 +2673,7 @@ declare class TCloudUiPaginationPipe implements PipeTransform {
|
|
|
2552
2673
|
declare class TCloudUiModule {
|
|
2553
2674
|
static forRoot(config?: TCloudUiConfig): ModuleWithProviders<TCloudUiModule>;
|
|
2554
2675
|
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]>;
|
|
2676
|
+
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 TCloudUiNavbarFooterComponent, 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 TCloudUiNavbarFooterComponent, 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
2677
|
static ɵinj: i0.ɵɵInjectorDeclaration<TCloudUiModule>;
|
|
2557
2678
|
}
|
|
2558
2679
|
|
|
@@ -3359,5 +3480,5 @@ declare class TcRevComponentsLibModule {
|
|
|
3359
3480
|
static ɵinj: i0.ɵɵInjectorDeclaration<TcRevComponentsLibModule>;
|
|
3360
3481
|
}
|
|
3361
3482
|
|
|
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 };
|
|
3483
|
+
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, TCloudUiNavbarFooterComponent, 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 };
|
|
3484
|
+
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, TCloudUiNavbarGroup, TCloudUiNavbarItem, TCloudUiPopoverAlign, TCloudUiPopoverMaxWidth, TCloudUiPopoverPosition, WizardStep$1 as WizardStep, reorderItensData };
|