@dev-tcloud/tcloud-ui 6.22.1 → 6.23.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.
@@ -0,0 +1,70 @@
1
+ # Mark Readme
2
+
3
+ ## Caracteristicas
4
+
5
+ O `TCloudUiMarkReadmeComponent` e um componente standalone que carrega um arquivo Markdown a partir de `tcloud-ui/docs/{componentName}.md` e o renderiza dentro de um accordion.
6
+
7
+ Funcionalidades principais:
8
+ - Busca o arquivo `.md` via `HttpClient` com base no valor informado em `componentName`.
9
+ - Renderiza o conteudo usando `ngx-markdown`.
10
+ - Exibe a documentacao dentro de `tcloud-ui-accordion`.
11
+ - Executa ajuste de whitespace e tentativa de highlight nos blocos de codigo apos a renderizacao.
12
+
13
+ ## Instalacao
14
+
15
+ Importe o componente no consumidor standalone:
16
+
17
+ ```typescript
18
+ import { TCloudUiMarkReadmeComponent } from 'tcloud-ui';
19
+
20
+ @Component({
21
+ selector: 'app-exemplo',
22
+ standalone: true,
23
+ imports: [TCloudUiMarkReadmeComponent],
24
+ template: `...`
25
+ })
26
+ export class ExemploComponent {}
27
+ ```
28
+
29
+ Se a aplicacao utilizar a configuracao standalone da biblioteca, mantenha `provideTCloudUi(...)` no bootstrap para disponibilizar os providers necessarios.
30
+
31
+ ## Propriedades (API)
32
+
33
+ ### Inputs
34
+
35
+ | Nome | Tipo | Descricao | Valor Default |
36
+ |------|------|-----------|---------------|
37
+ | componentName | `string` | Nome do arquivo de documentacao sem a extensao. O componente vai buscar `tcloud-ui/docs/{componentName}.md`. | `''` |
38
+
39
+ ### Outputs
40
+
41
+ Este componente nao possui `@Output()` publicos.
42
+
43
+ ## Exemplos de Uso
44
+
45
+ ### Uso Basico
46
+
47
+ ```html
48
+ <tcloud-ui-mark-readme [componentName]="'tcloud-ui-accordion'"></tcloud-ui-mark-readme>
49
+ ```
50
+
51
+ ### Uso Avancado
52
+
53
+ ```typescript
54
+ import { Component } from '@angular/core';
55
+ import { TCloudUiMarkReadmeComponent } from 'tcloud-ui';
56
+
57
+ @Component({
58
+ selector: 'app-exemplo',
59
+ standalone: true,
60
+ imports: [TCloudUiMarkReadmeComponent],
61
+ template: `
62
+ <tcloud-ui-mark-readme [componentName]="selectedDoc"></tcloud-ui-mark-readme>
63
+ `
64
+ })
65
+ export class ExemploComponent {
66
+ selectedDoc = 'tcloud-ui-filter-bar';
67
+ }
68
+ ```
69
+
70
+ Neste formato, a pagina pode alternar dinamicamente qual documentacao sera carregada e exibida pelo componente.
@@ -8,6 +8,11 @@ import * as i2 from '@angular/forms';
8
8
  import { NG_VALUE_ACCESSOR, FormsModule, FormControl, ReactiveFormsModule, NG_VALIDATORS, Validators, FormGroup } from '@angular/forms';
9
9
  import * as i1$1 from '@angular/router';
10
10
  import { Router, RouterModule } from '@angular/router';
11
+ import hljs from 'highlight.js';
12
+ import * as i3 from 'ngx-markdown';
13
+ import { MarkdownModule, provideMarkdown } from 'ngx-markdown';
14
+ import * as i1$2 from '@angular/common/http';
15
+ import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
11
16
 
12
17
  class TCloudUiAccordionService {
13
18
  constructor() {
@@ -9748,6 +9753,106 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
9748
9753
  args: ['dialogRoot', { read: ViewContainerRef }]
9749
9754
  }] } });
9750
9755
 
9756
+ class TCloudUiMarkReadmeComponent {
9757
+ constructor(http) {
9758
+ this.http = http;
9759
+ this.message = '';
9760
+ this.loading = false;
9761
+ this.ID = 'mark-readme-content';
9762
+ this.changelogContent = '';
9763
+ this._pathName = '';
9764
+ this._description = '';
9765
+ }
9766
+ ngAfterViewInit() {
9767
+ // Configurar highlight.js quando o componente for inicializado
9768
+ setTimeout(() => {
9769
+ this.setupHighlight();
9770
+ });
9771
+ }
9772
+ set pathName(v) {
9773
+ this._pathName = v;
9774
+ if (this._pathName !== '') {
9775
+ this.loadChangelog();
9776
+ }
9777
+ }
9778
+ get pathName() {
9779
+ return this._pathName;
9780
+ }
9781
+ set description(v) {
9782
+ this._description = v;
9783
+ if (this._description !== '') {
9784
+ this.loadChangelog();
9785
+ }
9786
+ }
9787
+ get description() {
9788
+ return this._description;
9789
+ }
9790
+ loadChangelog() {
9791
+ this.message = '';
9792
+ this.loading = true;
9793
+ this.http.get(`${this.pathName}`, { responseType: 'text' }).subscribe({
9794
+ next: (data) => {
9795
+ this.changelogContent = data;
9796
+ this.loading = false;
9797
+ },
9798
+ error: (error) => {
9799
+ //console.error('Erro ao carregar o changelog:', error);
9800
+ this.loading = false;
9801
+ this.message = 'falha ao carregar documento.';
9802
+ }
9803
+ });
9804
+ }
9805
+ preserveWhitespace() {
9806
+ // Garantir que <code> dentro de <pre> preservem espaçamento
9807
+ const codeElements = document.querySelectorAll(`#${this.ID} pre code`);
9808
+ codeElements.forEach((code) => {
9809
+ // Garantir que newlines e espaços não sejam colapsados
9810
+ code.style.whiteSpace = 'pre-wrap';
9811
+ code.style.wordWrap = 'break-word';
9812
+ code.style.overflowWrap = 'break-word';
9813
+ code.style.display = 'block';
9814
+ });
9815
+ }
9816
+ onMarkdownReady() {
9817
+ this.preserveWhitespace();
9818
+ this.highlightCodeBlocks();
9819
+ }
9820
+ setupHighlight() {
9821
+ if (this.changelogContent) {
9822
+ this.highlightCodeBlocks();
9823
+ }
9824
+ }
9825
+ highlightCodeBlocks() {
9826
+ // Aplicar highlight em blocos de código já renderizados
9827
+ const codeBlocks = document.querySelectorAll(`#${this.ID} pre code`);
9828
+ codeBlocks.forEach((block) => {
9829
+ try {
9830
+ hljs.highlightElement(block);
9831
+ }
9832
+ catch (e) {
9833
+ // console.error('Erro ao destacar código:', e);
9834
+ }
9835
+ });
9836
+ }
9837
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: TCloudUiMarkReadmeComponent, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Component }); }
9838
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: TCloudUiMarkReadmeComponent, isStandalone: true, selector: "tcloud-ui-mark-readme", inputs: { pathName: "pathName", description: "description" }, ngImport: i0, template: "<br><div><hr></div><br>\n\n<div *ngIf=\"message\" [innerHTML]=\"message\"></div>\n\n<tcloud-ui-accordion>\n <tcloud-ui-accordion-title>\n {{ description }}\n </tcloud-ui-accordion-title>\n \n <tcloud-ui-accordion-body>\n <div>\n <tcloud-ui-loading [loading]=\"loading\" [mode]=\"'inline'\"></tcloud-ui-loading>\n <markdown\n [id]=\"ID\"\n [data]=\"changelogContent\"\n (ready)=\"onMarkdownReady()\">\n </markdown>\n </div>\n </tcloud-ui-accordion-body>\n</tcloud-ui-accordion>\n\n\n", styles: [".hljs{color:#383a42;background:#fafafa}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-variable,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id{color:#e45649}.hljs-built_in,.hljs-builtin-name,.hljs-class,.hljs-title{color:#c18401}.hljs-comment,.hljs-quote,.hljs-deletion{color:#a0a1a7;font-style:italic}.hljs-keyword,.hljs-selector-tag,.hljs-section,.hljs-link,.hljs-emphasis{color:#a626a4}.hljs-addition,.hljs-string,.hljs-symbol{color:#50a14f}.hljs-code{color:#383a42}.hljs-meta-string{color:#50a14f}.hljs-regexp{color:#0184bc}.hljs-name{color:#4078f2}.hljs-type,.hljs-attr-name,.hljs-selector-pseudo{color:#e45649}.hljs-subst{color:#383a42}.hljs-tag{color:#e45649}.hljs-tag .hljs-name,.hljs-tag .hljs-attr{color:#383a42}.hljs-template-tag,.hljs-template-variable{color:#a626a4}#mark-readme-content{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;line-height:1.6;color:#333}#mark-readme-content h1,#mark-readme-content h2,#mark-readme-content h3,#mark-readme-content h4,#mark-readme-content h5,#mark-readme-content h6{margin-top:1.5em;margin-bottom:.5em;font-weight:600;line-height:1.25}#mark-readme-content h1{font-size:2em;border-bottom:1px solid #eaecef;padding-bottom:.3em}#mark-readme-content h2{font-size:1.5em;border-bottom:1px solid #eaecef;padding-bottom:.3em}#mark-readme-content h3{font-size:1.25em}#mark-readme-content p{margin:.5em 0}#mark-readme-content ul,#mark-readme-content ol{padding-left:2em;margin:.5em 0}#mark-readme-content ul li,#mark-readme-content ol li{margin:.25em 0}#mark-readme-content a{color:#0366d6;text-decoration:none}#mark-readme-content a:hover{text-decoration:underline}#mark-readme-content code{background-color:#f6f8fa;border-radius:3px;padding:.2em .4em;font-family:Courier New,Courier,monospace;font-size:.9em;color:#24292e;white-space:normal}#mark-readme-content pre{background-color:#fafafa!important;border:1px solid #ddd!important;border-radius:6px!important;overflow:auto!important;padding:16px!important;margin:1em 0!important;font-family:Courier New,Courier,monospace!important;font-size:.9em!important;line-height:1.45!important;white-space:pre-wrap!important;word-wrap:break-word!important;overflow-wrap:break-word!important;display:block!important}#mark-readme-content pre code{background-color:transparent!important;padding:0!important;margin:0!important;border-radius:0!important;color:inherit!important;display:block!important;white-space:pre-wrap!important;word-break:break-word!important;word-spacing:normal!important;overflow-wrap:break-word!important;tab-size:4!important;-moz-tab-size:4!important;border:none!important;font-family:Courier New,Courier,monospace!important;font-size:.9em!important;line-height:1.45!important}#mark-readme-content pre code.language-typescript,#mark-readme-content pre code.language-html,#mark-readme-content pre code.language-css,#mark-readme-content pre code.language-scss,#mark-readme-content pre code.language-javascript,#mark-readme-content pre code.language-json,#mark-readme-content pre code.language-bash{color:inherit!important}#mark-readme-content table{border-collapse:collapse;width:100%;margin:1em 0}#mark-readme-content table thead{background-color:#f6f8fa;font-weight:600}#mark-readme-content table th,#mark-readme-content table td{border:1px solid #ddd;padding:12px;text-align:left}#mark-readme-content table tr:nth-child(2n){background-color:#f9fafb}#mark-readme-content table tr:hover{background-color:#f0f3f8}#mark-readme-content blockquote{border-left:4px solid #ddd;color:#666;padding:.5em 1em;margin:1em 0}#mark-readme-content hr{border:none;border-top:2px solid #eaecef;margin:2em 0}#mark-readme-content img{max-width:100%;height:auto}.p-relative{position:relative}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MarkdownModule }, { kind: "component", type: i3.MarkdownComponent, selector: "markdown, [markdown]", inputs: ["data", "src", "disableSanitizer", "inline", "clipboard", "clipboardButtonComponent", "clipboardButtonTemplate", "emoji", "katex", "katexOptions", "mermaid", "mermaidOptions", "lineHighlight", "line", "lineOffset", "lineNumbers", "start", "commandLine", "filterOutput", "host", "prompt", "output", "user"], outputs: ["error", "load", "ready"] }, { kind: "component", type: TCloudUiAccordionComponent, selector: "tcloud-ui-accordion", inputs: ["disabled", "show", "loading"], outputs: ["onAction"] }, { kind: "component", type: TCloudUiAccordionTitleComponent, selector: "tcloud-ui-accordion-title" }, { kind: "component", type: TCloudUiAccordionBodyComponent, selector: "tcloud-ui-accordion-body" }, { kind: "component", type: TCloudUiLoadingComponent, selector: "tcloud-ui-loading", inputs: ["gif", "mode", "onlyInline", "onlyIcon", "full", "loading"] }] }); }
9839
+ }
9840
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: TCloudUiMarkReadmeComponent, decorators: [{
9841
+ type: Component,
9842
+ args: [{ selector: 'tcloud-ui-mark-readme', imports: [
9843
+ CommonModule,
9844
+ MarkdownModule,
9845
+ TCloudUiAccordionComponent,
9846
+ TCloudUiAccordionTitleComponent,
9847
+ TCloudUiAccordionBodyComponent,
9848
+ TCloudUiLoadingComponent
9849
+ ], template: "<br><div><hr></div><br>\n\n<div *ngIf=\"message\" [innerHTML]=\"message\"></div>\n\n<tcloud-ui-accordion>\n <tcloud-ui-accordion-title>\n {{ description }}\n </tcloud-ui-accordion-title>\n \n <tcloud-ui-accordion-body>\n <div>\n <tcloud-ui-loading [loading]=\"loading\" [mode]=\"'inline'\"></tcloud-ui-loading>\n <markdown\n [id]=\"ID\"\n [data]=\"changelogContent\"\n (ready)=\"onMarkdownReady()\">\n </markdown>\n </div>\n </tcloud-ui-accordion-body>\n</tcloud-ui-accordion>\n\n\n", styles: [".hljs{color:#383a42;background:#fafafa}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-variable,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id{color:#e45649}.hljs-built_in,.hljs-builtin-name,.hljs-class,.hljs-title{color:#c18401}.hljs-comment,.hljs-quote,.hljs-deletion{color:#a0a1a7;font-style:italic}.hljs-keyword,.hljs-selector-tag,.hljs-section,.hljs-link,.hljs-emphasis{color:#a626a4}.hljs-addition,.hljs-string,.hljs-symbol{color:#50a14f}.hljs-code{color:#383a42}.hljs-meta-string{color:#50a14f}.hljs-regexp{color:#0184bc}.hljs-name{color:#4078f2}.hljs-type,.hljs-attr-name,.hljs-selector-pseudo{color:#e45649}.hljs-subst{color:#383a42}.hljs-tag{color:#e45649}.hljs-tag .hljs-name,.hljs-tag .hljs-attr{color:#383a42}.hljs-template-tag,.hljs-template-variable{color:#a626a4}#mark-readme-content{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;line-height:1.6;color:#333}#mark-readme-content h1,#mark-readme-content h2,#mark-readme-content h3,#mark-readme-content h4,#mark-readme-content h5,#mark-readme-content h6{margin-top:1.5em;margin-bottom:.5em;font-weight:600;line-height:1.25}#mark-readme-content h1{font-size:2em;border-bottom:1px solid #eaecef;padding-bottom:.3em}#mark-readme-content h2{font-size:1.5em;border-bottom:1px solid #eaecef;padding-bottom:.3em}#mark-readme-content h3{font-size:1.25em}#mark-readme-content p{margin:.5em 0}#mark-readme-content ul,#mark-readme-content ol{padding-left:2em;margin:.5em 0}#mark-readme-content ul li,#mark-readme-content ol li{margin:.25em 0}#mark-readme-content a{color:#0366d6;text-decoration:none}#mark-readme-content a:hover{text-decoration:underline}#mark-readme-content code{background-color:#f6f8fa;border-radius:3px;padding:.2em .4em;font-family:Courier New,Courier,monospace;font-size:.9em;color:#24292e;white-space:normal}#mark-readme-content pre{background-color:#fafafa!important;border:1px solid #ddd!important;border-radius:6px!important;overflow:auto!important;padding:16px!important;margin:1em 0!important;font-family:Courier New,Courier,monospace!important;font-size:.9em!important;line-height:1.45!important;white-space:pre-wrap!important;word-wrap:break-word!important;overflow-wrap:break-word!important;display:block!important}#mark-readme-content pre code{background-color:transparent!important;padding:0!important;margin:0!important;border-radius:0!important;color:inherit!important;display:block!important;white-space:pre-wrap!important;word-break:break-word!important;word-spacing:normal!important;overflow-wrap:break-word!important;tab-size:4!important;-moz-tab-size:4!important;border:none!important;font-family:Courier New,Courier,monospace!important;font-size:.9em!important;line-height:1.45!important}#mark-readme-content pre code.language-typescript,#mark-readme-content pre code.language-html,#mark-readme-content pre code.language-css,#mark-readme-content pre code.language-scss,#mark-readme-content pre code.language-javascript,#mark-readme-content pre code.language-json,#mark-readme-content pre code.language-bash{color:inherit!important}#mark-readme-content table{border-collapse:collapse;width:100%;margin:1em 0}#mark-readme-content table thead{background-color:#f6f8fa;font-weight:600}#mark-readme-content table th,#mark-readme-content table td{border:1px solid #ddd;padding:12px;text-align:left}#mark-readme-content table tr:nth-child(2n){background-color:#f9fafb}#mark-readme-content table tr:hover{background-color:#f0f3f8}#mark-readme-content blockquote{border-left:4px solid #ddd;color:#666;padding:.5em 1em;margin:1em 0}#mark-readme-content hr{border:none;border-top:2px solid #eaecef;margin:2em 0}#mark-readme-content img{max-width:100%;height:auto}.p-relative{position:relative}\n"] }]
9850
+ }], ctorParameters: () => [{ type: i1$2.HttpClient }], propDecorators: { pathName: [{
9851
+ type: Input
9852
+ }], description: [{
9853
+ type: Input
9854
+ }] } });
9855
+
9751
9856
  const COMPONENTS = [
9752
9857
  TCloudUiAccordionComponent,
9753
9858
  TCloudUiAccordionBodyComponent,
@@ -9820,7 +9925,8 @@ const COMPONENTS = [
9820
9925
  TCloudUiSearchBarComponent,
9821
9926
  TCloudUiUploadAreaComponent,
9822
9927
  TCloudUiEditorComponent,
9823
- TCloudUiEditorDiffComponent
9928
+ TCloudUiEditorDiffComponent,
9929
+ TCloudUiMarkReadmeComponent
9824
9930
  ];
9825
9931
  const DIRECTIVES = [
9826
9932
  TCloudUiAlignDirective,
@@ -9954,7 +10060,8 @@ class TCloudUiModule {
9954
10060
  TCloudUiSearchBarComponent,
9955
10061
  TCloudUiUploadAreaComponent,
9956
10062
  TCloudUiEditorComponent,
9957
- TCloudUiEditorDiffComponent, TCloudUiAlignDirective,
10063
+ TCloudUiEditorDiffComponent,
10064
+ TCloudUiMarkReadmeComponent, TCloudUiAlignDirective,
9958
10065
  TCloudUiCheckboxDirective,
9959
10066
  TCloudUiCurrencyDirective,
9960
10067
  TCloudUiElCopyDirective,
@@ -10050,7 +10157,8 @@ class TCloudUiModule {
10050
10157
  TCloudUiSearchBarComponent,
10051
10158
  TCloudUiUploadAreaComponent,
10052
10159
  TCloudUiEditorComponent,
10053
- TCloudUiEditorDiffComponent, TCloudUiAlignDirective,
10160
+ TCloudUiEditorDiffComponent,
10161
+ TCloudUiMarkReadmeComponent, TCloudUiAlignDirective,
10054
10162
  TCloudUiCheckboxDirective,
10055
10163
  TCloudUiCurrencyDirective,
10056
10164
  TCloudUiElCopyDirective,
@@ -10143,7 +10251,8 @@ class TCloudUiModule {
10143
10251
  TCloudUiFilterBarComponent,
10144
10252
  TCloudUiLegendComponent,
10145
10253
  TCloudUiSearchBarComponent,
10146
- TCloudUiUploadAreaComponent] }); }
10254
+ TCloudUiUploadAreaComponent,
10255
+ TCloudUiMarkReadmeComponent] }); }
10147
10256
  }
10148
10257
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: TCloudUiModule, decorators: [{
10149
10258
  type: NgModule,
@@ -10214,7 +10323,11 @@ function provideTCloudUi(config) {
10214
10323
  if (config?.services?.viewportService) {
10215
10324
  providers.push({ provide: TCLOUD_UI_VIEWPORT_SERVICE, useClass: config.services.viewportService });
10216
10325
  }
10217
- return makeEnvironmentProviders(providers);
10326
+ return makeEnvironmentProviders([
10327
+ provideHttpClient(withInterceptorsFromDi()),
10328
+ provideMarkdown(),
10329
+ ...providers
10330
+ ]);
10218
10331
  }
10219
10332
 
10220
10333
  class TCloudUiDropdownSubMenuComponent {
@@ -12164,5 +12277,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
12164
12277
  * Generated bundle index. Do not edit.
12165
12278
  */
12166
12279
 
12167
- export { AcceptedFileType, BytesPipe, CNPJPipe, CPFPipe, CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR$2 as 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, 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, TCloudUiMessageComponent, TCloudUiModalBodyComponent, TCloudUiModalComponent, TCloudUiModalFooterComponent, TCloudUiModalHeaderComponent, TCloudUiModule, TCloudUiMultiInputComponent, TCloudUiMultiSelectComponent, TCloudUiMultiplesValuesComponent, TCloudUiNgCheckAccessDirective, TCloudUiNgFeatureFlagsDirective, TCloudUiNotFoundComponent, TCloudUiNumberStepComponent, TCloudUiPaginationComponent, TCloudUiPaginationPipe, 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 };
12280
+ export { AcceptedFileType, BytesPipe, CNPJPipe, CPFPipe, CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR$2 as 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, 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, 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 };
12168
12281
  //# sourceMappingURL=dev-tcloud-tcloud-ui.mjs.map