@dev-tcloud/tcloud-ui 7.2.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 +88 -5
- 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 +64 -4
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
|
+
}
|
|
@@ -2028,22 +2028,55 @@ interface TCloudUiNavbarItem {
|
|
|
2028
2028
|
open?: boolean;
|
|
2029
2029
|
/** Quando `false`, o item é ocultado. Default: `true`. */
|
|
2030
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[];
|
|
2031
2043
|
}
|
|
2032
2044
|
|
|
2033
2045
|
declare class TCloudUiNavbarComponent {
|
|
2034
2046
|
/** Itens do menu (data-driven). Submenu é renderizado recursivamente. */
|
|
2035
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[];
|
|
2036
2054
|
/** Menu expandido (labels visíveis) x minimizado (só ícones). */
|
|
2037
2055
|
isMenuExpanded: boolean;
|
|
2038
2056
|
/** Exibe o botão interno de minimizar/expandir. */
|
|
2039
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;
|
|
2040
2068
|
/** Emitido quando o menu é expandido/minimizado. */
|
|
2041
2069
|
onExpandChange: i0.OutputEmitterRef<boolean>;
|
|
2042
2070
|
/** Emitido ao clicar num item folha (sem submenu). */
|
|
2043
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[];
|
|
2044
2077
|
handleExpand(): void;
|
|
2045
2078
|
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,
|
|
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>;
|
|
2047
2080
|
}
|
|
2048
2081
|
|
|
2049
2082
|
declare class TCloudUiNavbarItemComponent {
|
|
@@ -2062,6 +2095,33 @@ declare class TCloudUiNavbarItemComponent {
|
|
|
2062
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>;
|
|
2063
2096
|
}
|
|
2064
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
|
+
|
|
2065
2125
|
declare class TCloudUiTabGroupComponent {
|
|
2066
2126
|
onResize(): void;
|
|
2067
2127
|
tabGroupCarousel: ElementRef<HTMLDivElement>;
|
|
@@ -2613,7 +2673,7 @@ declare class TCloudUiPaginationPipe implements PipeTransform {
|
|
|
2613
2673
|
declare class TCloudUiModule {
|
|
2614
2674
|
static forRoot(config?: TCloudUiConfig): ModuleWithProviders<TCloudUiModule>;
|
|
2615
2675
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiModule, never>;
|
|
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]>;
|
|
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]>;
|
|
2617
2677
|
static ɵinj: i0.ɵɵInjectorDeclaration<TCloudUiModule>;
|
|
2618
2678
|
}
|
|
2619
2679
|
|
|
@@ -3420,5 +3480,5 @@ declare class TcRevComponentsLibModule {
|
|
|
3420
3480
|
static ɵinj: i0.ɵɵInjectorDeclaration<TcRevComponentsLibModule>;
|
|
3421
3481
|
}
|
|
3422
3482
|
|
|
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 };
|
|
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 };
|