@seniorsistemas/angular-components 14.11.0 → 14.13.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.
Files changed (26) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +349 -39
  2. package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
  4. package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
  5. package/components/table/frozen-position/frozen-position.directive.d.ts +22 -0
  6. package/components/table/index.d.ts +1 -0
  7. package/components/table/table-paging/table-paging.component.d.ts +27 -0
  8. package/esm2015/components/dynamic-form/components/fields/chips/chips-field.component.js +2 -2
  9. package/esm2015/components/table/frozen-position/frozen-position.directive.js +129 -0
  10. package/esm2015/components/table/index.js +2 -1
  11. package/esm2015/components/table/table-paging/table-paging.component.js +111 -0
  12. package/esm2015/components/table/table.module.js +14 -4
  13. package/esm2015/seniorsistemas-angular-components.js +38 -36
  14. package/esm5/components/dynamic-form/components/fields/chips/chips-field.component.js +2 -2
  15. package/esm5/components/table/frozen-position/frozen-position.directive.js +189 -0
  16. package/esm5/components/table/index.js +2 -1
  17. package/esm5/components/table/table-paging/table-paging.component.js +122 -0
  18. package/esm5/components/table/table.module.js +14 -4
  19. package/esm5/seniorsistemas-angular-components.js +38 -36
  20. package/fesm2015/seniorsistemas-angular-components.js +242 -6
  21. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  22. package/fesm5/seniorsistemas-angular-components.js +314 -7
  23. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  24. package/package.json +1 -1
  25. package/seniorsistemas-angular-components.d.ts +37 -35
  26. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import { __decorate, __param, __awaiter } from 'tslib';
2
- import { Input, Component, NgModule, EventEmitter, HostBinding, Output, ViewChild, Renderer2, HostListener, Directive, Injectable, Pipe, forwardRef, ViewEncapsulation, TemplateRef, ViewContainerRef, ComponentFactoryResolver, ChangeDetectorRef, InjectionToken, Inject, ContentChild, ApplicationRef, Injector, ElementRef, ContentChildren } from '@angular/core';
2
+ import { Input, Component, NgModule, EventEmitter, HostBinding, Output, ViewChild, Renderer2, HostListener, Directive, Injectable, Pipe, forwardRef, ViewEncapsulation, TemplateRef, ViewContainerRef, ComponentFactoryResolver, ChangeDetectorRef, ElementRef, InjectionToken, Inject, ContentChild, ApplicationRef, Injector, ContentChildren } from '@angular/core';
3
3
  import { CommonModule } from '@angular/common';
4
4
  import { BreadcrumbModule as BreadcrumbModule$1 } from 'primeng/breadcrumb';
5
5
  import { NavigationEnd, PRIMARY_OUTLET, ActivatedRoute, Router, RouterModule } from '@angular/router';
@@ -3427,6 +3427,131 @@ RowTogllerDirective = __decorate([
3427
3427
  Directive({ selector: "[sRowToggler]" })
3428
3428
  ], RowTogllerDirective);
3429
3429
 
3430
+ let TableFrozenPositionDirective = class TableFrozenPositionDirective {
3431
+ constructor(el, host) {
3432
+ this.el = el;
3433
+ this.host = host;
3434
+ this.sTableFrozenPosition = "left";
3435
+ this.host.onColResize.subscribe(() => {
3436
+ this.handleColResize();
3437
+ });
3438
+ window.addEventListener("resize", this.handleWindowResize.bind(this));
3439
+ const componentId = new Date().getTime();
3440
+ this.resetRowHeightClassName = `resetTableRowsHeight_${componentId}`;
3441
+ const styleReset = document.createElement("style");
3442
+ styleReset.innerHTML = `.${this.resetRowHeightClassName} tbody > tr, .${this.resetRowHeightClassName} thead > tr { height: auto; }`;
3443
+ document.getElementsByTagName("head")[0].appendChild(styleReset);
3444
+ this.fixBodyRowClassName = `fixTableBodyRowsHeight_${componentId}`;
3445
+ this.styleFixBodyRowHeight = document.createElement("style");
3446
+ this.styleFixBodyRowHeight.innerHTML = `.${this.fixBodyRowClassName} tbody > tr { height: auto; }`;
3447
+ document.getElementsByTagName("head")[0].appendChild(this.styleFixBodyRowHeight);
3448
+ this.fixHeadRowClassName = `fixTableHeadRowsHeight_${componentId}`;
3449
+ this.styleFixHeadRowHeight = document.createElement("style");
3450
+ this.styleFixHeadRowHeight.innerHTML = `.${this.fixHeadRowClassName} thead > tr { height: auto; }`;
3451
+ document.getElementsByTagName("head")[0].appendChild(this.styleFixHeadRowHeight);
3452
+ }
3453
+ set sTableFrozenValue(_) {
3454
+ setTimeout(() => {
3455
+ this.synchronizeRowHeight();
3456
+ });
3457
+ }
3458
+ ngAfterViewInit() {
3459
+ if (this.sTableFrozenPosition === "left")
3460
+ return;
3461
+ this.applyStylesForTable();
3462
+ }
3463
+ ngOnDestroy() {
3464
+ window.removeEventListener("resize", this.handleWindowResize.bind(this));
3465
+ }
3466
+ applyStylesForTable() {
3467
+ const scrollWrapper = this.el.nativeElement.querySelector(".ui-table-scrollable-wrapper");
3468
+ if (!scrollWrapper) {
3469
+ console.warn("Unable to find scroll-wrapper element from table. Is the table configured with frozen template?");
3470
+ return;
3471
+ }
3472
+ scrollWrapper.style.display = "flex";
3473
+ scrollWrapper.style.flexDirection = "row";
3474
+ const frozenTable = this.el.nativeElement.querySelector(".ui-table-frozen-view");
3475
+ if (!frozenTable) {
3476
+ console.warn("Unable to find frozen element from table. Is the table configured with frozen template?");
3477
+ return;
3478
+ }
3479
+ frozenTable.style.order = "1";
3480
+ frozenTable.style.borderRight = "none";
3481
+ frozenTable.style.borderLeft = "1px solid #dddddd";
3482
+ frozenTable.style.boxShadow = "-5px 0 5px -5px #cccccc";
3483
+ const unfrozenTable = this.el.nativeElement.querySelector(".ui-table-unfrozen-view");
3484
+ if (!unfrozenTable) {
3485
+ console.warn("Unable to find unfrozen element from table. Is the table configured with frozen template?");
3486
+ return;
3487
+ }
3488
+ unfrozenTable.style.position = "unset";
3489
+ }
3490
+ handleWindowResize() {
3491
+ this.synchronizeRowHeight();
3492
+ }
3493
+ handleColResize() {
3494
+ this.synchronizeRowHeight();
3495
+ }
3496
+ synchronizeRowHeight() {
3497
+ const tableBodyWrappers = this.el.nativeElement.getElementsByClassName("ui-table-scrollable-body");
3498
+ const tableBodies = [...tableBodyWrappers].map(divWrapper => [...divWrapper.childNodes].find(p => p.tagName === "TABLE"));
3499
+ this.recalculateDefaultRowHeight(tableBodies);
3500
+ this.applyMaxRowHeight(tableBodies);
3501
+ const tableHeadWrappers = this.el.nativeElement.getElementsByClassName("ui-table-scrollable-header-box");
3502
+ const tableHeads = [...tableHeadWrappers].map(divWrapper => [...divWrapper.childNodes].find(p => p.tagName === "TABLE"));
3503
+ this.recalculateDefaultRowHeight(tableHeads);
3504
+ this.applyMaxRowHeight(tableHeads, true);
3505
+ }
3506
+ recalculateDefaultRowHeight(tables) {
3507
+ for (const table of tables) {
3508
+ table.classList.remove(this.fixBodyRowClassName);
3509
+ table.classList.remove(this.fixHeadRowClassName);
3510
+ table.classList.add(this.resetRowHeightClassName);
3511
+ }
3512
+ }
3513
+ applyMaxRowHeight(tables, isHead = false) {
3514
+ const rowSizes = [];
3515
+ for (const table of tables) {
3516
+ for (const tr of table.rows) {
3517
+ rowSizes.push(tr.getBoundingClientRect().height);
3518
+ }
3519
+ }
3520
+ if (!rowSizes.length)
3521
+ return;
3522
+ const maxHeight = Math.max(...rowSizes);
3523
+ if (isHead) {
3524
+ this.styleFixHeadRowHeight.innerHTML = `.${this.fixHeadRowClassName} thead > tr { height: ${maxHeight}px; }`;
3525
+ for (const table of tables) {
3526
+ table.classList.remove(this.resetRowHeightClassName);
3527
+ table.classList.add(this.fixHeadRowClassName);
3528
+ }
3529
+ }
3530
+ else {
3531
+ this.styleFixBodyRowHeight.innerHTML = `.${this.fixBodyRowClassName} tbody > tr { height: ${maxHeight}px; }`;
3532
+ for (const table of tables) {
3533
+ table.classList.remove(this.resetRowHeightClassName);
3534
+ table.classList.add(this.fixBodyRowClassName);
3535
+ }
3536
+ }
3537
+ }
3538
+ };
3539
+ TableFrozenPositionDirective.ctorParameters = () => [
3540
+ { type: ElementRef },
3541
+ { type: Table }
3542
+ ];
3543
+ __decorate([
3544
+ Input()
3545
+ ], TableFrozenPositionDirective.prototype, "sTableFrozenPosition", void 0);
3546
+ __decorate([
3547
+ Input()
3548
+ ], TableFrozenPositionDirective.prototype, "sTableFrozenValue", null);
3549
+ TableFrozenPositionDirective = __decorate([
3550
+ Directive({
3551
+ selector: "[sTableFrozenPosition]"
3552
+ })
3553
+ ], TableFrozenPositionDirective);
3554
+
3430
3555
  var EnumColumnFieldType;
3431
3556
  (function (EnumColumnFieldType) {
3432
3557
  EnumColumnFieldType["STRING"] = "STRING";
@@ -3728,6 +3853,111 @@ TokenListModule = __decorate([
3728
3853
  })
3729
3854
  ], TokenListModule);
3730
3855
 
3856
+ let TablePagingComponent = class TablePagingComponent {
3857
+ constructor(translate, hostProjectConfigs) {
3858
+ this.translate = translate;
3859
+ this.hostProjectConfigs = hostProjectConfigs;
3860
+ }
3861
+ ngOnChanges(changes) {
3862
+ this.totalRecordsText = this.translate.instant(`${this.getTranslatePrefix()}total_records`, {
3863
+ value: changes.totalRecords.currentValue
3864
+ });
3865
+ }
3866
+ getTranslatePrefix() {
3867
+ return `${this.hostProjectConfigs.domain}.${this.hostProjectConfigs.service}.`;
3868
+ }
3869
+ getTooltipText() {
3870
+ return this.translate.instant(`${this.getTranslatePrefix()}export_to_csv`);
3871
+ }
3872
+ getActions() {
3873
+ const actions = [
3874
+ {
3875
+ id: "exportCurrentPage",
3876
+ label: this.translate.instant(`${this.getTranslatePrefix()}export_current_page`),
3877
+ command: () => this.exportCurrentPage()
3878
+ },
3879
+ {
3880
+ id: "exportSelected",
3881
+ label: this.translate.instant(`${this.getTranslatePrefix()}export_selected_records`),
3882
+ command: () => this.exportSelectedRecords()
3883
+ }
3884
+ ];
3885
+ if (this.loadAllRecords) {
3886
+ actions.push({
3887
+ id: "exportAll",
3888
+ label: this.translate.instant(`${this.getTranslatePrefix()}export_all_records`),
3889
+ command: () => this.exportAllRecords()
3890
+ });
3891
+ }
3892
+ return actions;
3893
+ }
3894
+ validateComponent() {
3895
+ if (!this.table) {
3896
+ throw new Error("Table component not defined");
3897
+ }
3898
+ }
3899
+ getColumnsToExport() {
3900
+ return [...this.table.columns].map(column => {
3901
+ if (column.exportable === null || column.exportable === undefined) {
3902
+ column.exportable = true;
3903
+ }
3904
+ return column;
3905
+ });
3906
+ }
3907
+ getRowsToExport() {
3908
+ return this.table.value;
3909
+ }
3910
+ getSelectedRowsToExport() {
3911
+ return this.table.selection;
3912
+ }
3913
+ getExportFileName() {
3914
+ var _a;
3915
+ return (_a = this.exportFileName) !== null && _a !== void 0 ? _a : "download";
3916
+ }
3917
+ exportCurrentPage() {
3918
+ this.validateComponent();
3919
+ ExportUtils.exportCSV(this.getColumnsToExport(), this.getRowsToExport(), undefined, this.getExportFileName());
3920
+ }
3921
+ exportSelectedRecords() {
3922
+ this.validateComponent();
3923
+ ExportUtils.exportCSV(this.getColumnsToExport(), this.getSelectedRowsToExport(), undefined, this.getExportFileName());
3924
+ }
3925
+ exportAllRecords() {
3926
+ return __awaiter(this, void 0, void 0, function* () {
3927
+ this.validateComponent();
3928
+ const data = yield this.loadAllRecords();
3929
+ ExportUtils.exportCSV(this.getColumnsToExport(), data, undefined, this.getExportFileName());
3930
+ });
3931
+ }
3932
+ };
3933
+ TablePagingComponent.ctorParameters = () => [
3934
+ { type: TranslateService },
3935
+ { type: undefined, decorators: [{ type: Inject, args: [HostProjectConfigsInjectionToken,] }] }
3936
+ ];
3937
+ __decorate([
3938
+ Input()
3939
+ ], TablePagingComponent.prototype, "totalRecords", void 0);
3940
+ __decorate([
3941
+ Input()
3942
+ ], TablePagingComponent.prototype, "exportFileName", void 0);
3943
+ __decorate([
3944
+ Input()
3945
+ ], TablePagingComponent.prototype, "table", void 0);
3946
+ __decorate([
3947
+ Input()
3948
+ ], TablePagingComponent.prototype, "loadAllRecords", void 0);
3949
+ __decorate([
3950
+ Output()
3951
+ ], TablePagingComponent.prototype, "totalRecordsText", void 0);
3952
+ TablePagingComponent = __decorate([
3953
+ Component({
3954
+ template: "<div class=\"paging-container\">\n <span class=\"total-records\">\n {{totalRecordsText}}\n </span>\n <s-button class=\"export-button\" \n priority=\"default\" \n iconClass=\"fa fa-fw fa-file-export\" \n [disabled]=\"false\" \n [auxiliary]=\"true\" \n [tooltip]=\"getTooltipText()\" \n [model]=\"getActions()\"></s-button>\n</div>\n",
3955
+ selector: "s-table-paging",
3956
+ styles: [".paging-container{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.export-button{margin-left:6px}"]
3957
+ }),
3958
+ __param(1, Inject(HostProjectConfigsInjectionToken))
3959
+ ], TablePagingComponent);
3960
+
3731
3961
  let TableModule = class TableModule {
3732
3962
  };
3733
3963
  TableModule = __decorate([
@@ -3735,17 +3965,23 @@ TableModule = __decorate([
3735
3965
  imports: [
3736
3966
  CommonModule,
3737
3967
  TooltipModule,
3738
- TokenListModule
3968
+ TokenListModule,
3969
+ TranslateModule,
3970
+ ButtonModule
3739
3971
  ],
3740
3972
  exports: [
3741
3973
  RowTogllerDirective,
3742
3974
  NavigationDirective,
3743
- TableColumnsComponent
3975
+ TableColumnsComponent,
3976
+ TableFrozenPositionDirective,
3977
+ TablePagingComponent
3744
3978
  ],
3745
3979
  declarations: [
3746
3980
  RowTogllerDirective,
3747
3981
  NavigationDirective,
3748
- TableColumnsComponent
3982
+ TableColumnsComponent,
3983
+ TableFrozenPositionDirective,
3984
+ TablePagingComponent
3749
3985
  ],
3750
3986
  })
3751
3987
  ], TableModule);
@@ -3811,7 +4047,7 @@ __decorate([
3811
4047
  ], ChipsFieldComponent.prototype, "formControl", void 0);
3812
4048
  ChipsFieldComponent = __decorate([
3813
4049
  Component({
3814
- template: "<p-chips\n [inputId]=\"(field.id || field.name)\"\n [formControl]=\"formControl\"\n [placeholder]=\"field.placeholder\"\n [allowDuplicate]=\"false\"\n [addOnTab]=\"true\"\n [addOnBlur]=\"true\"\n (onAdd)=\"field.onAdd ? field.onAdd($event) : null\"\n (onRemove)=\"field.onRemove ? field.onRemove($event) : null\"\n (onChipClick)=\"field.onChipClick ? field.onChipClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n [pKeyFilter]=\"field.keyFilter\"\n></p-chips>\n"
4050
+ template: "<p-chips\n *ngIf=\"field.keyFilter\"\n [inputId]=\"(field.id || field.name)\"\n [formControl]=\"formControl\"\n [placeholder]=\"field.placeholder\"\n [allowDuplicate]=\"false\"\n [addOnTab]=\"true\"\n [addOnBlur]=\"true\"\n (onAdd)=\"field.onAdd ? field.onAdd($event) : null\"\n (onRemove)=\"field.onRemove ? field.onRemove($event) : null\"\n (onChipClick)=\"field.onChipClick ? field.onChipClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\"\n [pKeyFilter]=\"field.keyFilter\">\n</p-chips>\n\n<p-chips\n *ngIf=\"!field.keyFilter\"\n [inputId]=\"(field.id || field.name)\"\n [formControl]=\"formControl\"\n [placeholder]=\"field.placeholder\"\n [allowDuplicate]=\"false\"\n [addOnTab]=\"true\"\n [addOnBlur]=\"true\"\n (onAdd)=\"field.onAdd ? field.onAdd($event) : null\"\n (onRemove)=\"field.onRemove ? field.onRemove($event) : null\"\n (onChipClick)=\"field.onChipClick ? field.onChipClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n</p-chips>\n"
3815
4051
  })
3816
4052
  ], ChipsFieldComponent);
3817
4053
 
@@ -8050,5 +8286,5 @@ CodeEditorModule = __decorate([
8050
8286
  * Generated bundle index. Do not edit.
8051
8287
  */
8052
8288
 
8053
- export { AngularComponentsModule, AutocompleteField, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, ProductHeaderComponent, ProductHeaderModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TokenListComponent, TokenListModule, ValidateErrors, LocalizedCurrencyImpurePipe as ɵa, LocalizedBignumberPipe as ɵb, DecimalField as ɵbb, StructureModule as ɵbc, HeaderComponent as ɵbd, FooterComponent as ɵbe, InfoSignComponent as ɵbf, NumberLocaleOptions as ɵbg, ThumbnailService as ɵbh, InfiniteScrollModule as ɵbi, InfiniteScrollDirective as ɵbj, CustomTranslationsModule as ɵbk, CodeEditorComponent as ɵbl, CoreFacade as ɵbm, CodeMirror6Core as ɵbn, LocalizedBignumberImpurePipe as ɵc, TokenListModule as ɵd, TableColumnsComponent as ɵe, InfoSignModule as ɵf, MouseEventsModule as ɵg, AutocompleteFieldComponent as ɵh, BooleanFieldComponent as ɵi, CalendarFieldComponent as ɵj, ChipsFieldComponent as ɵk, CurrencyFieldComponent as ɵl, BaseFieldComponent as ɵm, DynamicFieldComponent as ɵn, DynamicFormDirective as ɵo, FieldsetComponent as ɵp, FileUploadComponent$1 as ɵq, LookupFieldComponent as ɵr, NumberFieldComponent as ɵs, BignumberFieldComponent as ɵt, RadioButtonComponent as ɵu, RowComponent as ɵv, SectionComponent as ɵw, SelectFieldComponent as ɵx, TextAreaFieldComponent as ɵy, TextFieldComponent as ɵz };
8289
+ export { AngularComponentsModule, AutocompleteField, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, ProductHeaderComponent, ProductHeaderModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TokenListComponent, TokenListModule, ValidateErrors, LocalizedCurrencyImpurePipe as ɵa, LocalizedBignumberPipe as ɵb, TextAreaFieldComponent as ɵba, TextFieldComponent as ɵbb, DecimalField as ɵbd, StructureModule as ɵbe, HeaderComponent as ɵbf, FooterComponent as ɵbg, InfoSignComponent as ɵbh, NumberLocaleOptions as ɵbi, ThumbnailService as ɵbj, InfiniteScrollModule as ɵbk, InfiniteScrollDirective as ɵbl, CustomTranslationsModule as ɵbm, CodeEditorComponent as ɵbn, CoreFacade as ɵbo, CodeMirror6Core as ɵbp, LocalizedBignumberImpurePipe as ɵc, TokenListModule as ɵd, ButtonModule as ɵe, TableColumnsComponent as ɵf, TablePagingComponent as ɵg, InfoSignModule as ɵh, MouseEventsModule as ɵi, AutocompleteFieldComponent as ɵj, BooleanFieldComponent as ɵk, CalendarFieldComponent as ɵl, ChipsFieldComponent as ɵm, CurrencyFieldComponent as ɵn, BaseFieldComponent as ɵo, DynamicFieldComponent as ɵp, DynamicFormDirective as ɵq, FieldsetComponent as ɵr, FileUploadComponent$1 as ɵs, LookupFieldComponent as ɵt, NumberFieldComponent as ɵu, BignumberFieldComponent as ɵv, RadioButtonComponent as ɵw, RowComponent as ɵx, SectionComponent as ɵy, SelectFieldComponent as ɵz };
8054
8290
  //# sourceMappingURL=seniorsistemas-angular-components.js.map