@dev-tcloud/tcloud-ui 6.5.6 → 6.6.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.
@@ -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, 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,123 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6312
6312
  args: ['paste', ['$event']]
6313
6313
  }] } });
6314
6314
 
6315
+ class TCloudUiPaginationService {
6316
+ constructor() {
6317
+ this.total = 0;
6318
+ }
6319
+ set_total(total) {
6320
+ this.total = total;
6321
+ }
6322
+ get_total() {
6323
+ return this.total;
6324
+ }
6325
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6326
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationService, providedIn: 'root' }); }
6327
+ }
6328
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationService, decorators: [{
6329
+ type: Injectable,
6330
+ args: [{
6331
+ providedIn: 'root'
6332
+ }]
6333
+ }] });
6334
+
6335
+ class TCloudUiPaginationPipe {
6336
+ constructor() {
6337
+ this._tcloudUiPaginationService = inject(TCloudUiPaginationService);
6338
+ this.resultItems = [];
6339
+ }
6340
+ transform(collection, args) {
6341
+ const total = Math.ceil((collection?.length || 0) / args.itemsPerPage);
6342
+ this._tcloudUiPaginationService.set_total(total);
6343
+ if (!Array.isArray(collection) ||
6344
+ isNaN(args.currentPage) ||
6345
+ isNaN(args.itemsPerPage)) {
6346
+ return collection;
6347
+ }
6348
+ const firstIndex = (args?.currentPage - 1) * args?.itemsPerPage;
6349
+ const lastIndex = firstIndex + args?.itemsPerPage;
6350
+ const tempCollection = [];
6351
+ for (let i = firstIndex; i < lastIndex; i++) {
6352
+ if (i < collection?.length) {
6353
+ tempCollection.push(collection[i]);
6354
+ }
6355
+ }
6356
+ return tempCollection;
6357
+ }
6358
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
6359
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationPipe, isStandalone: true, name: "TCloudUiPagination" }); }
6360
+ }
6361
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationPipe, decorators: [{
6362
+ type: Pipe,
6363
+ args: [{
6364
+ name: 'TCloudUiPagination',
6365
+ standalone: true
6366
+ }]
6367
+ }] });
6368
+
6369
+ class TCloudUiPaginationComponent {
6370
+ constructor() {
6371
+ this.currentPage = 1;
6372
+ //@Input() totalPages = 1;
6373
+ this._tcloudUiPaginationService = inject(TCloudUiPaginationService);
6374
+ this.pageChange = new EventEmitter();
6375
+ this.pageInputError = false;
6376
+ }
6377
+ previous() {
6378
+ if (this.currentPage > 1) {
6379
+ this.currentPage--;
6380
+ this.pageChange.emit(this.currentPage);
6381
+ }
6382
+ }
6383
+ get totalPages() {
6384
+ return this._tcloudUiPaginationService.get_total();
6385
+ }
6386
+ next() {
6387
+ if (this.currentPage < this.totalPages) {
6388
+ this.currentPage++;
6389
+ this.pageChange.emit(this.currentPage);
6390
+ }
6391
+ }
6392
+ goToPage(event) {
6393
+ const input = event.target;
6394
+ const value = input.value;
6395
+ let pageNumber = parseInt(value.replace(/^0+/, ''), 10);
6396
+ if (isNaN(pageNumber) || pageNumber < 1 || pageNumber > this.totalPages) {
6397
+ this.pageInputError = true;
6398
+ if (isNaN(pageNumber) || pageNumber < 1) {
6399
+ pageNumber = 1;
6400
+ }
6401
+ else if (pageNumber > this.totalPages) {
6402
+ pageNumber = this.totalPages;
6403
+ }
6404
+ }
6405
+ else {
6406
+ this.pageInputError = false;
6407
+ }
6408
+ input.value = this.formatPage(pageNumber);
6409
+ if (pageNumber !== this.currentPage) {
6410
+ this.currentPage = pageNumber;
6411
+ this.pageChange.emit(this.currentPage);
6412
+ }
6413
+ }
6414
+ formatPage(page) {
6415
+ return page < 10 ? `0${page}` : `${page}`;
6416
+ }
6417
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6418
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: TCloudUiPaginationComponent, isStandalone: true, selector: "tcloud-ui-pagination", inputs: { 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 {{ totalPages }}</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 }); }
6419
+ }
6420
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiPaginationComponent, decorators: [{
6421
+ type: Component,
6422
+ args: [{ selector: 'tcloud-ui-pagination', imports: [
6423
+ CommonModule,
6424
+ TCloudUiPaginationPipe
6425
+ ], 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 {{ totalPages }}</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"] }]
6426
+ }], propDecorators: { currentPage: [{
6427
+ type: Input
6428
+ }], pageChange: [{
6429
+ type: Output
6430
+ }] } });
6431
+
6315
6432
  const COMPONENTS = [
6316
6433
  TCloudUiAccordionComponent,
6317
6434
  TCloudUiAccordionBodyComponent,
@@ -6352,7 +6469,8 @@ const COMPONENTS = [
6352
6469
  TCloudUiWelcomeComponent,
6353
6470
  TCloudUiContainerComponent,
6354
6471
  TCloudUiContainerColComponent,
6355
- TCloudUiContainerContentComponent
6472
+ TCloudUiContainerContentComponent,
6473
+ TCloudUiPaginationComponent
6356
6474
  ];
6357
6475
  const DIRECTIVES = [
6358
6476
  TCloudUiAlignDirective,
@@ -6377,7 +6495,8 @@ const PIPES = [
6377
6495
  DateBRPipe,
6378
6496
  MonthNamePipe,
6379
6497
  RespectivePipe,
6380
- StatusInfoPipe
6498
+ StatusInfoPipe,
6499
+ TCloudUiPaginationPipe
6381
6500
  ];
6382
6501
  class TCloudUiModule {
6383
6502
  static forRoot(config) {
@@ -6442,7 +6561,8 @@ class TCloudUiModule {
6442
6561
  TCloudUiWelcomeComponent,
6443
6562
  TCloudUiContainerComponent,
6444
6563
  TCloudUiContainerColComponent,
6445
- TCloudUiContainerContentComponent, TCloudUiAlignDirective,
6564
+ TCloudUiContainerContentComponent,
6565
+ TCloudUiPaginationComponent, TCloudUiAlignDirective,
6446
6566
  TCloudUiCurrencyDirective,
6447
6567
  TCloudUiElCopyDirective,
6448
6568
  TCloudUiHoverParentDirective,
@@ -6461,7 +6581,8 @@ class TCloudUiModule {
6461
6581
  DateBRPipe,
6462
6582
  MonthNamePipe,
6463
6583
  RespectivePipe,
6464
- StatusInfoPipe], exports: [TCloudUiAccordionComponent,
6584
+ StatusInfoPipe,
6585
+ TCloudUiPaginationPipe], exports: [TCloudUiAccordionComponent,
6465
6586
  TCloudUiAccordionBodyComponent,
6466
6587
  TCloudUiAccordionTitleComponent,
6467
6588
  TCloudUiChoiceIssuesComponent,
@@ -6500,7 +6621,8 @@ class TCloudUiModule {
6500
6621
  TCloudUiWelcomeComponent,
6501
6622
  TCloudUiContainerComponent,
6502
6623
  TCloudUiContainerColComponent,
6503
- TCloudUiContainerContentComponent, TCloudUiAlignDirective,
6624
+ TCloudUiContainerContentComponent,
6625
+ TCloudUiPaginationComponent, TCloudUiAlignDirective,
6504
6626
  TCloudUiCurrencyDirective,
6505
6627
  TCloudUiElCopyDirective,
6506
6628
  TCloudUiHoverParentDirective,
@@ -6519,10 +6641,12 @@ class TCloudUiModule {
6519
6641
  DateBRPipe,
6520
6642
  MonthNamePipe,
6521
6643
  RespectivePipe,
6522
- StatusInfoPipe] }); }
6644
+ StatusInfoPipe,
6645
+ TCloudUiPaginationPipe] }); }
6523
6646
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiModule, providers: [
6524
6647
  DatePipe,
6525
- StatusInfoPipe
6648
+ StatusInfoPipe,
6649
+ TCloudUiPaginationService
6526
6650
  ], imports: [TCloudUiAccordionComponent,
6527
6651
  TCloudUiAccordionBodyComponent,
6528
6652
  TCloudUiAccordionTitleComponent,
@@ -6559,7 +6683,8 @@ class TCloudUiModule {
6559
6683
  TCloudUiMultiplesValuesComponent,
6560
6684
  TCloudUiProgressBarComponent,
6561
6685
  TCloudUiReorderItemsComponent,
6562
- TCloudUiWelcomeComponent] }); }
6686
+ TCloudUiWelcomeComponent,
6687
+ TCloudUiPaginationComponent] }); }
6563
6688
  }
6564
6689
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TCloudUiModule, decorators: [{
6565
6690
  type: NgModule,
@@ -6576,7 +6701,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6576
6701
  ],
6577
6702
  providers: [
6578
6703
  DatePipe,
6579
- StatusInfoPipe
6704
+ StatusInfoPipe,
6705
+ TCloudUiPaginationService
6580
6706
  ]
6581
6707
  }]
6582
6708
  }] });
@@ -8903,5 +9029,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
8903
9029
  * Generated bundle index. Do not edit.
8904
9030
  */
8905
9031
 
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 };
9032
+ 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
9033
  //# sourceMappingURL=dev-tcloud-tcloud-ui.mjs.map