@dev-tcloud/tcloud-ui 6.5.6 → 6.6.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.
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injectable, Component, EventEmitter, Input, Output, forwardRef, ViewChild, InjectionToken, Optional, Inject, input, effect, Directive, Pipe, ViewEncapsulation, signal, inject, HostListener, NgModule, makeEnvironmentProviders, output, ContentChildren, computed, ApplicationRef, model, viewChild, ChangeDetectionStrategy } from '@angular/core';
2
+ import { Injectable, Component, EventEmitter, Input, Output, forwardRef, ViewChild, InjectionToken, Optional, Inject, input, effect, Directive, Pipe, ViewEncapsulation, signal, inject, HostListener, ChangeDetectorRef, ChangeDetectionStrategy, NgModule, makeEnvironmentProviders, output, ContentChildren, computed, ApplicationRef, model, viewChild } from '@angular/core';
3
3
  import * as i1 from '@angular/common';
4
4
  import { CommonModule, DatePipe, DOCUMENT } from '@angular/common';
5
5
  import { Subject, Subscription, debounceTime, distinctUntilChanged, map, BehaviorSubject } from 'rxjs';
@@ -6312,6 +6312,224 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6312
6312
  args: ['paste', ['$event']]
6313
6313
  }] } });
6314
6314
 
6315
+ [];
6316
+ class TCloudUiPaginationService {
6317
+ constructor() {
6318
+ this._pagination = [];
6319
+ this._stateTotal = new Subject();
6320
+ this.stateTotal$ = this._stateTotal.asObservable();
6321
+ this._collectionChanged = new Subject();
6322
+ this.collectionChanged$ = this._collectionChanged.asObservable();
6323
+ this.total = 0;
6324
+ }
6325
+ set_total(args, total) {
6326
+ if (args.id && this.getPaginations(args.id)) {
6327
+ for (let i = 0; i < (this._pagination).length; i++) {
6328
+ if (this._pagination[i].id === args.id) {
6329
+ this._pagination[i].total = total;
6330
+ this._pagination[i].itemsPerPage = args.itemsPerPage;
6331
+ this._pagination[i].currentPage = args.currentPage;
6332
+ }
6333
+ }
6334
+ this._stateTotal.next(this._pagination);
6335
+ return;
6336
+ }
6337
+ (this._pagination).push({
6338
+ id: args.id,
6339
+ total: total,
6340
+ itemsPerPage: args.itemsPerPage,
6341
+ currentPage: args.currentPage
6342
+ });
6343
+ this._stateTotal.next(this._pagination);
6344
+ }
6345
+ get_total() {
6346
+ return this._pagination;
6347
+ }
6348
+ getPaginations(id) {
6349
+ for (let i = 0; i < (this._pagination).length; i++) {
6350
+ if (this._pagination[i].id === id) {
6351
+ return this._pagination[i];
6352
+ }
6353
+ }
6354
+ return undefined;
6355
+ }
6356
+ notifyCollectionChange(id) {
6357
+ this._collectionChanged.next(id);
6358
+ }
6359
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6360
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationService, providedIn: 'root' }); }
6361
+ }
6362
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationService, decorators: [{
6363
+ type: Injectable,
6364
+ args: [{
6365
+ providedIn: 'root'
6366
+ }]
6367
+ }] });
6368
+
6369
+ class TCloudUiPaginationPipe {
6370
+ constructor() {
6371
+ this._tcloudUiPaginationService = inject(TCloudUiPaginationService);
6372
+ this._previousLengths = new Map();
6373
+ }
6374
+ transform(collection, args) {
6375
+ args.id = (args.id) ?? 'tcloud-ui-pagination-component-alone';
6376
+ const currentLength = collection?.length || 0;
6377
+ const previousLength = this._previousLengths.get(args.id) || 0;
6378
+ // Se o tamanho da coleção mudou, reseta a página para 1
6379
+ if (previousLength !== currentLength && previousLength > 0) {
6380
+ args.currentPage = 1;
6381
+ // Notifica ao serviço para atualizar o estado
6382
+ this._tcloudUiPaginationService.notifyCollectionChange(args.id);
6383
+ }
6384
+ this._previousLengths.set(args.id, currentLength);
6385
+ const total = Math.ceil((collection?.length || 0) / args.itemsPerPage);
6386
+ this._tcloudUiPaginationService.set_total(args, total);
6387
+ if (!Array.isArray(collection) ||
6388
+ isNaN(args.currentPage) ||
6389
+ isNaN(args.itemsPerPage)) {
6390
+ return collection;
6391
+ }
6392
+ const firstIndex = (args?.currentPage - 1) * args?.itemsPerPage;
6393
+ const lastIndex = firstIndex + args?.itemsPerPage;
6394
+ const tempCollection = [];
6395
+ for (let i = firstIndex; i < lastIndex; i++) {
6396
+ if (i < collection?.length) {
6397
+ tempCollection.push(collection[i]);
6398
+ }
6399
+ }
6400
+ return tempCollection;
6401
+ }
6402
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
6403
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationPipe, isStandalone: true, name: "TCloudUiPagination" }); }
6404
+ }
6405
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationPipe, decorators: [{
6406
+ type: Pipe,
6407
+ args: [{
6408
+ name: 'TCloudUiPagination',
6409
+ standalone: true
6410
+ }]
6411
+ }] });
6412
+
6413
+ class TCloudUiPaginationComponent {
6414
+ constructor() {
6415
+ this._id = 'tcloud-ui-pagination-component-alone';
6416
+ this._currentPage = 1;
6417
+ this._tcloudUiPaginationService = inject(TCloudUiPaginationService);
6418
+ this._changeDetectorRef = inject(ChangeDetectorRef);
6419
+ this._lastTotalPages = 1;
6420
+ this.pageChange = new EventEmitter();
6421
+ this.pageInputError = false;
6422
+ }
6423
+ generateID() {
6424
+ return `tcloud-ui-pagination-${Math.floor(Math.random() * Math.floor(Math.random() * Date.now()))}`;
6425
+ }
6426
+ set id(value) {
6427
+ // Use o ID fornecido, ou gere um novo
6428
+ this._id = value || this.generateID();
6429
+ }
6430
+ get id() {
6431
+ return this._id || this.generateID();
6432
+ }
6433
+ set currentPage(value) {
6434
+ this._currentPage = value;
6435
+ }
6436
+ get currentPage() {
6437
+ return this._currentPage;
6438
+ }
6439
+ ngOnInit() {
6440
+ this._tcloudUiPaginationService.stateTotal$.subscribe((items) => {
6441
+ let pagination = {};
6442
+ for (let i = 0; i < (items).length; i++) {
6443
+ if (items[i].id === this.id) {
6444
+ pagination = items[i];
6445
+ }
6446
+ }
6447
+ const newTotalPages = pagination.total || 1;
6448
+ // Se o total de páginas mudou e a página atual é inválida, reseta para 1
6449
+ if (this._lastTotalPages !== newTotalPages && this._currentPage > newTotalPages) {
6450
+ this._currentPage = 1;
6451
+ // Agenda a emissão para depois da detecção de mudanças
6452
+ Promise.resolve().then(() => {
6453
+ this.pageChange.emit(1);
6454
+ });
6455
+ }
6456
+ this._lastTotalPages = newTotalPages;
6457
+ this._changeDetectorRef.markForCheck();
6458
+ });
6459
+ // Escuta mudanças na coleção (filtros)
6460
+ this._tcloudUiPaginationService.collectionChanged$.subscribe((changedId) => {
6461
+ if (changedId === this.id) {
6462
+ this._changeDetectorRef.markForCheck();
6463
+ }
6464
+ });
6465
+ }
6466
+ previous() {
6467
+ if (this.currentPage > 1) {
6468
+ this.currentPage--;
6469
+ this.pageChange.emit(this.currentPage);
6470
+ }
6471
+ }
6472
+ getTotal() {
6473
+ const items = this._tcloudUiPaginationService.get_total();
6474
+ let pagination = {};
6475
+ for (let i = 0; i < (items).length; i++) {
6476
+ if (items[i].id === this.id) {
6477
+ pagination = items[i];
6478
+ }
6479
+ }
6480
+ return pagination;
6481
+ }
6482
+ get totalPages() {
6483
+ return this.getTotal().total;
6484
+ }
6485
+ next() {
6486
+ if (this.currentPage < this.totalPages) {
6487
+ this.currentPage++;
6488
+ this.pageChange.emit(this.currentPage);
6489
+ }
6490
+ }
6491
+ goToPage(event) {
6492
+ const input = event.target;
6493
+ const value = input.value;
6494
+ let pageNumber = parseInt(value.replace(/^0+/, ''), 10);
6495
+ if (isNaN(pageNumber) || pageNumber < 1 || pageNumber > this.totalPages) {
6496
+ this.pageInputError = true;
6497
+ if (isNaN(pageNumber) || pageNumber < 1) {
6498
+ pageNumber = 1;
6499
+ }
6500
+ else if (pageNumber > this.totalPages) {
6501
+ pageNumber = this.totalPages;
6502
+ }
6503
+ }
6504
+ else {
6505
+ this.pageInputError = false;
6506
+ }
6507
+ input.value = this.formatPage(pageNumber);
6508
+ if (pageNumber !== this.currentPage) {
6509
+ this.currentPage = pageNumber;
6510
+ this.pageChange.emit(this.currentPage);
6511
+ }
6512
+ }
6513
+ formatPage(page) {
6514
+ return page < 10 ? `0${page}` : `${page}`;
6515
+ }
6516
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6517
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: TCloudUiPaginationComponent, isStandalone: true, selector: "tcloud-ui-pagination", inputs: { id: "id", currentPage: "currentPage" }, outputs: { pageChange: "pageChange" }, ngImport: i0, template: "<div class=\"pagination-container\">\n\t<button class=\"arrow\" [disabled]=\"currentPage === 1\" (click)=\"previous()\"><i class=\"fas fa-angle-left\"></i></button>\n\n\t<span class=\"label f-family f-weight-600 f-size-14 c-neutral-700\">P\u00E1gina</span>\n\n\t<div class=\"page-input-container\">\n\t\t<input\n\t\t\ttype=\"text\"\n\t\t\tclass=\"page-input\"\n\t\t\t[ngClass]=\"{'error': pageInputError}\"\n\t\t\t[value]=\"formatPage(currentPage)\"\n\t\t\t(keyup.enter)=\"goToPage($event)\"\n\t\t\t(blur)=\"goToPage($event)\"\n\t\t/>\n\t</div>\n\n\t<span class=\"label f-family f-weight-600 f-size-14 c-neutral-700\">de\n\t\t{{ totalPages }}\n\t</span>\n\n\t<button class=\"arrow\" [disabled]=\"currentPage === totalPages\" (click)=\"next()\"><i class=\"fas fa-angle-right\"></i></button>\n</div>\n", styles: [":host{display:block}.pagination-container{display:flex;align-items:center;gap:8px;font-family:var(--f-family);justify-content:center}.pagination-container .label{color:var(--c-neutral-700)}.pagination-container .page-input-container{position:relative;width:48px;height:32px}.pagination-container .page-input{width:100%;height:100%;padding:var(--size-4) var(--size-8);border:1px solid var(--c-neutral-300);border-radius:var(--bor-radius-8);font-size:var(--f-size-14);font-family:var(--f-family);font-weight:var(--f-weight-600);color:var(--c-neutral-700);text-align:center;background-color:var(--c-neutral-50);outline:none;transition:border-color .2s ease}.pagination-container .page-input:focus:not(.error){border-color:var(--c-primary-500)}.pagination-container .page-input.error{border-color:var(--c-danger-500)}.pagination-container .page-input.error:focus{border-color:var(--c-danger-500)}.pagination-container .arrow{background-color:var(--c-neutral-100);border:1px solid var(--c-neutral-300);border-radius:var(--bor-radius-8);width:32px;height:32px;font-size:var(--f-size-16);color:var(--c-neutral-300);cursor:pointer;transition:all .2s ease;display:flex;align-items:center;justify-content:center}.pagination-container .arrow:disabled{cursor:not-allowed;opacity:.5}.pagination-container .arrow:hover:not(:disabled){background-color:var(--c-primary-100);border-color:var(--c-primary-300);color:var(--c-primary-500)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6518
+ }
6519
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationComponent, decorators: [{
6520
+ type: Component,
6521
+ args: [{ selector: 'tcloud-ui-pagination', imports: [
6522
+ CommonModule,
6523
+ TCloudUiPaginationPipe
6524
+ ], changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, template: "<div class=\"pagination-container\">\n\t<button class=\"arrow\" [disabled]=\"currentPage === 1\" (click)=\"previous()\"><i class=\"fas fa-angle-left\"></i></button>\n\n\t<span class=\"label f-family f-weight-600 f-size-14 c-neutral-700\">P\u00E1gina</span>\n\n\t<div class=\"page-input-container\">\n\t\t<input\n\t\t\ttype=\"text\"\n\t\t\tclass=\"page-input\"\n\t\t\t[ngClass]=\"{'error': pageInputError}\"\n\t\t\t[value]=\"formatPage(currentPage)\"\n\t\t\t(keyup.enter)=\"goToPage($event)\"\n\t\t\t(blur)=\"goToPage($event)\"\n\t\t/>\n\t</div>\n\n\t<span class=\"label f-family f-weight-600 f-size-14 c-neutral-700\">de\n\t\t{{ totalPages }}\n\t</span>\n\n\t<button class=\"arrow\" [disabled]=\"currentPage === totalPages\" (click)=\"next()\"><i class=\"fas fa-angle-right\"></i></button>\n</div>\n", styles: [":host{display:block}.pagination-container{display:flex;align-items:center;gap:8px;font-family:var(--f-family);justify-content:center}.pagination-container .label{color:var(--c-neutral-700)}.pagination-container .page-input-container{position:relative;width:48px;height:32px}.pagination-container .page-input{width:100%;height:100%;padding:var(--size-4) var(--size-8);border:1px solid var(--c-neutral-300);border-radius:var(--bor-radius-8);font-size:var(--f-size-14);font-family:var(--f-family);font-weight:var(--f-weight-600);color:var(--c-neutral-700);text-align:center;background-color:var(--c-neutral-50);outline:none;transition:border-color .2s ease}.pagination-container .page-input:focus:not(.error){border-color:var(--c-primary-500)}.pagination-container .page-input.error{border-color:var(--c-danger-500)}.pagination-container .page-input.error:focus{border-color:var(--c-danger-500)}.pagination-container .arrow{background-color:var(--c-neutral-100);border:1px solid var(--c-neutral-300);border-radius:var(--bor-radius-8);width:32px;height:32px;font-size:var(--f-size-16);color:var(--c-neutral-300);cursor:pointer;transition:all .2s ease;display:flex;align-items:center;justify-content:center}.pagination-container .arrow:disabled{cursor:not-allowed;opacity:.5}.pagination-container .arrow:hover:not(:disabled){background-color:var(--c-primary-100);border-color:var(--c-primary-300);color:var(--c-primary-500)}\n"] }]
6525
+ }], propDecorators: { id: [{
6526
+ type: Input
6527
+ }], currentPage: [{
6528
+ type: Input
6529
+ }], pageChange: [{
6530
+ type: Output
6531
+ }] } });
6532
+
6315
6533
  const COMPONENTS = [
6316
6534
  TCloudUiAccordionComponent,
6317
6535
  TCloudUiAccordionBodyComponent,
@@ -6352,7 +6570,8 @@ const COMPONENTS = [
6352
6570
  TCloudUiWelcomeComponent,
6353
6571
  TCloudUiContainerComponent,
6354
6572
  TCloudUiContainerColComponent,
6355
- TCloudUiContainerContentComponent
6573
+ TCloudUiContainerContentComponent,
6574
+ TCloudUiPaginationComponent
6356
6575
  ];
6357
6576
  const DIRECTIVES = [
6358
6577
  TCloudUiAlignDirective,
@@ -6377,7 +6596,8 @@ const PIPES = [
6377
6596
  DateBRPipe,
6378
6597
  MonthNamePipe,
6379
6598
  RespectivePipe,
6380
- StatusInfoPipe
6599
+ StatusInfoPipe,
6600
+ TCloudUiPaginationPipe
6381
6601
  ];
6382
6602
  class TCloudUiModule {
6383
6603
  static forRoot(config) {
@@ -6442,7 +6662,8 @@ class TCloudUiModule {
6442
6662
  TCloudUiWelcomeComponent,
6443
6663
  TCloudUiContainerComponent,
6444
6664
  TCloudUiContainerColComponent,
6445
- TCloudUiContainerContentComponent, TCloudUiAlignDirective,
6665
+ TCloudUiContainerContentComponent,
6666
+ TCloudUiPaginationComponent, TCloudUiAlignDirective,
6446
6667
  TCloudUiCurrencyDirective,
6447
6668
  TCloudUiElCopyDirective,
6448
6669
  TCloudUiHoverParentDirective,
@@ -6461,7 +6682,8 @@ class TCloudUiModule {
6461
6682
  DateBRPipe,
6462
6683
  MonthNamePipe,
6463
6684
  RespectivePipe,
6464
- StatusInfoPipe], exports: [TCloudUiAccordionComponent,
6685
+ StatusInfoPipe,
6686
+ TCloudUiPaginationPipe], exports: [TCloudUiAccordionComponent,
6465
6687
  TCloudUiAccordionBodyComponent,
6466
6688
  TCloudUiAccordionTitleComponent,
6467
6689
  TCloudUiChoiceIssuesComponent,
@@ -6500,7 +6722,8 @@ class TCloudUiModule {
6500
6722
  TCloudUiWelcomeComponent,
6501
6723
  TCloudUiContainerComponent,
6502
6724
  TCloudUiContainerColComponent,
6503
- TCloudUiContainerContentComponent, TCloudUiAlignDirective,
6725
+ TCloudUiContainerContentComponent,
6726
+ TCloudUiPaginationComponent, TCloudUiAlignDirective,
6504
6727
  TCloudUiCurrencyDirective,
6505
6728
  TCloudUiElCopyDirective,
6506
6729
  TCloudUiHoverParentDirective,
@@ -6519,10 +6742,12 @@ class TCloudUiModule {
6519
6742
  DateBRPipe,
6520
6743
  MonthNamePipe,
6521
6744
  RespectivePipe,
6522
- StatusInfoPipe] }); }
6745
+ StatusInfoPipe,
6746
+ TCloudUiPaginationPipe] }); }
6523
6747
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiModule, providers: [
6524
6748
  DatePipe,
6525
- StatusInfoPipe
6749
+ StatusInfoPipe,
6750
+ TCloudUiPaginationService
6526
6751
  ], imports: [TCloudUiAccordionComponent,
6527
6752
  TCloudUiAccordionBodyComponent,
6528
6753
  TCloudUiAccordionTitleComponent,
@@ -6559,7 +6784,8 @@ class TCloudUiModule {
6559
6784
  TCloudUiMultiplesValuesComponent,
6560
6785
  TCloudUiProgressBarComponent,
6561
6786
  TCloudUiReorderItemsComponent,
6562
- TCloudUiWelcomeComponent] }); }
6787
+ TCloudUiWelcomeComponent,
6788
+ TCloudUiPaginationComponent] }); }
6563
6789
  }
6564
6790
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiModule, decorators: [{
6565
6791
  type: NgModule,
@@ -6576,7 +6802,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6576
6802
  ],
6577
6803
  providers: [
6578
6804
  DatePipe,
6579
- StatusInfoPipe
6805
+ StatusInfoPipe,
6806
+ TCloudUiPaginationService
6580
6807
  ]
6581
6808
  }]
6582
6809
  }] });
@@ -8903,5 +9130,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
8903
9130
  * Generated bundle index. Do not edit.
8904
9131
  */
8905
9132
 
8906
- export { BytesPipe, CNPJPipe, CPFPipe, CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR$1 as CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR, DateBRPipe, DropdownGroupedSize, DropdownMultiSize, DropdownSize, MonthNamePipe, MultiLevelDropdownSize, ProgressStatusBarGradientStatus, RespectivePipe, StatusInfoPipe, TCCondition, TCFiltersType, TCLOUD_UI_CONFIG, TCLOUD_UI_LAYOUT_SERVICE, TCLOUD_UI_USER_SERVICE, TCLOUD_UI_VIEWPORT_SERVICE, TCloudUiAccordionBodyComponent, TCloudUiAccordionComponent, TCloudUiAccordionTitleComponent, TCloudUiAlignDirective, TCloudUiButtonDirective, TCloudUiCheckAccessDirective, TCloudUiCheckAccessService, TCloudUiChoiceIssuesComponent, TCloudUiContainerColComponent, TCloudUiContainerComponent, TCloudUiContainerContentComponent, TCloudUiCubesComponent, TCloudUiCurrencyDirective, TCloudUiDataListComponent, TCloudUiDataListOptionComponent, TCloudUiDatepickerComponent, TCloudUiDatepickerTimeComponent, TCloudUiDigitOnlyDirective, TCloudUiElCopyDirective, TCloudUiFiltersComponent, TCloudUiFormDirective, TCloudUiHighLightDirective, TCloudUiHoverParentDirective, TCloudUiInputPasswordComponent, TCloudUiInputSearchComponent, TCloudUiIpMaskDirective, TCloudUiLabelTokenComponent, TCloudUiLineStepCircleComponent, TCloudUiLineStepTitleComponent, TCloudUiLinhaLogoComponent, TCloudUiLoadingComponent, TCloudUiLoadingTransitionsService, TCloudUiModalBodyComponent, TCloudUiModalComponent, TCloudUiModalFooterComponent, TCloudUiModalHeaderComponent, TCloudUiModule, TCloudUiMultiInputComponent, TCloudUiMultiSelectComponent, TCloudUiMultiplesValuesComponent, TCloudUiNgCheckAccessDirective, TCloudUiNgFeatureFlagsDirective, TCloudUiNotFoundComponent, TCloudUiNumberStepComponent, TCloudUiProgressBarComponent, TCloudUiRangeDateComponent, TCloudUiReorderItemsComponent, TCloudUiScrollBoxComponent, TCloudUiSearchInObjectService, TCloudUiSubNavbarComponent, TCloudUiSubNavbarItemComponent, TCloudUiTabContentComponent, TCloudUiTabHeadComponent, TCloudUiTabMenuComponent, TCloudUiTabSubtitleComponent, TCloudUiTabTitleComponent, TCloudUiTableComponent, TCloudUiTooltipDirective, TCloudUiWelcomeComponent, 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, echartBarConfig, isTextEllipsed, provideTCloudUi };
9133
+ export { BytesPipe, CNPJPipe, CPFPipe, CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR$1 as CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR, DateBRPipe, DropdownGroupedSize, DropdownMultiSize, DropdownSize, MonthNamePipe, MultiLevelDropdownSize, ProgressStatusBarGradientStatus, RespectivePipe, StatusInfoPipe, TCCondition, TCFiltersType, TCLOUD_UI_CONFIG, TCLOUD_UI_LAYOUT_SERVICE, TCLOUD_UI_USER_SERVICE, TCLOUD_UI_VIEWPORT_SERVICE, TCloudUiAccordionBodyComponent, TCloudUiAccordionComponent, TCloudUiAccordionTitleComponent, TCloudUiAlignDirective, TCloudUiButtonDirective, TCloudUiCheckAccessDirective, TCloudUiCheckAccessService, TCloudUiChoiceIssuesComponent, TCloudUiContainerColComponent, TCloudUiContainerComponent, TCloudUiContainerContentComponent, TCloudUiCubesComponent, TCloudUiCurrencyDirective, TCloudUiDataListComponent, TCloudUiDataListOptionComponent, TCloudUiDatepickerComponent, TCloudUiDatepickerTimeComponent, TCloudUiDigitOnlyDirective, TCloudUiElCopyDirective, TCloudUiFiltersComponent, TCloudUiFormDirective, TCloudUiHighLightDirective, TCloudUiHoverParentDirective, TCloudUiInputPasswordComponent, TCloudUiInputSearchComponent, TCloudUiIpMaskDirective, TCloudUiLabelTokenComponent, TCloudUiLineStepCircleComponent, TCloudUiLineStepTitleComponent, TCloudUiLinhaLogoComponent, TCloudUiLoadingComponent, TCloudUiLoadingTransitionsService, TCloudUiModalBodyComponent, TCloudUiModalComponent, TCloudUiModalFooterComponent, TCloudUiModalHeaderComponent, TCloudUiModule, TCloudUiMultiInputComponent, TCloudUiMultiSelectComponent, TCloudUiMultiplesValuesComponent, TCloudUiNgCheckAccessDirective, TCloudUiNgFeatureFlagsDirective, TCloudUiNotFoundComponent, TCloudUiNumberStepComponent, TCloudUiPaginationComponent, TCloudUiPaginationPipe, TCloudUiProgressBarComponent, TCloudUiRangeDateComponent, TCloudUiReorderItemsComponent, TCloudUiScrollBoxComponent, TCloudUiSearchInObjectService, TCloudUiSubNavbarComponent, TCloudUiSubNavbarItemComponent, TCloudUiTabContentComponent, TCloudUiTabHeadComponent, TCloudUiTabMenuComponent, TCloudUiTabSubtitleComponent, TCloudUiTabTitleComponent, TCloudUiTableComponent, TCloudUiTooltipDirective, TCloudUiWelcomeComponent, 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, echartBarConfig, isTextEllipsed, provideTCloudUi };
8907
9134
  //# sourceMappingURL=dev-tcloud-tcloud-ui.mjs.map