@seniorsistemas/angular-components 17.3.16 → 17.3.17

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 (24) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +132 -94
  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/file-upload/components/file-item/file-item.component.d.ts +7 -1
  6. package/components/file-upload/file-upload.component.d.ts +4 -2
  7. package/components/file-upload/models/validate-errors.d.ts +1 -0
  8. package/esm2015/components/file-upload/components/file-item/file-item.component.js +23 -6
  9. package/esm2015/components/file-upload/file-upload.component.js +23 -7
  10. package/esm2015/components/file-upload/file-upload.module.js +8 -2
  11. package/esm2015/components/file-upload/models/validate-errors.js +2 -1
  12. package/esm2015/seniorsistemas-angular-components.js +62 -61
  13. package/esm5/components/file-upload/components/file-item/file-item.component.js +24 -6
  14. package/esm5/components/file-upload/file-upload.component.js +24 -8
  15. package/esm5/components/file-upload/file-upload.module.js +8 -2
  16. package/esm5/components/file-upload/models/validate-errors.js +2 -1
  17. package/esm5/seniorsistemas-angular-components.js +62 -61
  18. package/fesm2015/seniorsistemas-angular-components.js +73 -37
  19. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  20. package/fesm5/seniorsistemas-angular-components.js +74 -37
  21. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  22. package/package.json +1 -1
  23. package/seniorsistemas-angular-components.d.ts +61 -60
  24. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -2,7 +2,7 @@ import { __decorate, __extends, __spread, __assign, __awaiter, __generator, __pa
2
2
  import { EventEmitter, Input, Output, Component, ContentChildren, ViewChild, HostListener, forwardRef, NgModule, ɵɵdefineInjectable, Injectable, ElementRef, ApplicationRef, ComponentFactoryResolver, Injector, Directive, HostBinding, Renderer2, InjectionToken, Inject, Pipe, ViewEncapsulation, TemplateRef, ViewContainerRef, ChangeDetectorRef, Optional, ContentChild } from '@angular/core';
3
3
  import { trigger, transition, style as style$7, animate, state, group, query, animateChild } from '@angular/animations';
4
4
  import { Subject, ReplaySubject, of, from, throwError, forkJoin } from 'rxjs';
5
- import { takeUntil, filter, take, tap, map, switchMap, catchError, delay, debounceTime, repeat, finalize } from 'rxjs/operators';
5
+ import { takeUntil, filter, take, tap, map, switchMap, catchError, delay, debounceTime, repeat, first, finalize } from 'rxjs/operators';
6
6
  import { CommonModule } from '@angular/common';
7
7
  import { NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule, FormControl, FormGroup, NG_VALIDATORS, FormBuilder, Validators, FormArray, ControlContainer } from '@angular/forms';
8
8
  import { RouterModule, NavigationEnd, PRIMARY_OUTLET, ActivatedRoute, Router } from '@angular/router';
@@ -24,7 +24,7 @@ import { TranslateService, TranslateModule } from '@ngx-translate/core';
24
24
  import { showTooltip } from '@codemirror/tooltip';
25
25
  import { lineNumbers } from '@codemirror/gutter';
26
26
  import { NgxMaskModule } from 'ngx-mask';
27
- import { HttpClient, HttpEventType, HttpClientModule } from '@angular/common/http';
27
+ import { HttpClient, HttpClientModule, HttpEventType } from '@angular/common/http';
28
28
  import { Hotkey, HotkeysService, HotkeyModule } from 'angular2-hotkeys';
29
29
  import BigNumber, { BigNumber as BigNumber$1 } from 'bignumber.js';
30
30
  import { AutoComplete, AutoCompleteModule } from 'primeng/autocomplete';
@@ -6219,31 +6219,6 @@ var ProgressBarModule = /** @class */ (function () {
6219
6219
  return ProgressBarModule;
6220
6220
  }());
6221
6221
 
6222
- var ValidateErrors;
6223
- (function (ValidateErrors) {
6224
- ValidateErrors["MAX_FILE_SIZE"] = "MAX_FILE_SIZE";
6225
- ValidateErrors["MAX_FILE_LIMIT"] = "MAX_FILE_LIMIT";
6226
- ValidateErrors["UNSUPPORTED_EXTENSION"] = "UNSUPPORTED_EXTENSION";
6227
- })(ValidateErrors || (ValidateErrors = {}));
6228
-
6229
- var FileUploadPermissions;
6230
- (function (FileUploadPermissions) {
6231
- FileUploadPermissions["Add"] = "add";
6232
- FileUploadPermissions["Read"] = "read";
6233
- FileUploadPermissions["Remove"] = "remove";
6234
- })(FileUploadPermissions || (FileUploadPermissions = {}));
6235
- var ALL_PERMISSIONS = [
6236
- FileUploadPermissions.Add,
6237
- FileUploadPermissions.Read,
6238
- FileUploadPermissions.Remove,
6239
- ];
6240
-
6241
- var StorageUnits = {
6242
- KB: 1024,
6243
- MB: Math.pow(1024, 2),
6244
- GB: Math.pow(1024, 3),
6245
- };
6246
-
6247
6222
  var Breakpoints = {
6248
6223
  SM_MIN: 0,
6249
6224
  SM_MAX: 767,
@@ -6350,13 +6325,43 @@ var ExportUtils = /** @class */ (function () {
6350
6325
  return ExportUtils;
6351
6326
  }());
6352
6327
 
6328
+ var ValidateErrors;
6329
+ (function (ValidateErrors) {
6330
+ ValidateErrors["MAX_FILE_SIZE"] = "MAX_FILE_SIZE";
6331
+ ValidateErrors["MAX_COMBINED_FILE_SIZE"] = "MAX_COMBINED_FILE_SIZE";
6332
+ ValidateErrors["MAX_FILE_LIMIT"] = "MAX_FILE_LIMIT";
6333
+ ValidateErrors["UNSUPPORTED_EXTENSION"] = "UNSUPPORTED_EXTENSION";
6334
+ })(ValidateErrors || (ValidateErrors = {}));
6335
+
6336
+ var FileUploadPermissions;
6337
+ (function (FileUploadPermissions) {
6338
+ FileUploadPermissions["Add"] = "add";
6339
+ FileUploadPermissions["Read"] = "read";
6340
+ FileUploadPermissions["Remove"] = "remove";
6341
+ })(FileUploadPermissions || (FileUploadPermissions = {}));
6342
+ var ALL_PERMISSIONS = [
6343
+ FileUploadPermissions.Add,
6344
+ FileUploadPermissions.Read,
6345
+ FileUploadPermissions.Remove,
6346
+ ];
6347
+
6348
+ var StorageUnits = {
6349
+ KB: 1024,
6350
+ MB: Math.pow(1024, 2),
6351
+ GB: Math.pow(1024, 3),
6352
+ };
6353
+
6353
6354
  var FileItemComponent = /** @class */ (function () {
6354
- function FileItemComponent() {
6355
+ function FileItemComponent(localeService) {
6356
+ this.localeService = localeService;
6355
6357
  this.canReadFiles = true;
6356
6358
  this.canRemoveFiles = true;
6357
6359
  this.cancelUpload = new EventEmitter();
6358
6360
  this.removeFile = new EventEmitter();
6359
6361
  }
6362
+ FileItemComponent.prototype.ngOnInit = function () {
6363
+ this._getLocale();
6364
+ };
6360
6365
  FileItemComponent.prototype.ngAfterContentInit = function () {
6361
6366
  this._update();
6362
6367
  };
@@ -6386,8 +6391,20 @@ var FileItemComponent = /** @class */ (function () {
6386
6391
  convertedSize = size / StorageUnits.GB;
6387
6392
  unit = "GB";
6388
6393
  }
6389
- return convertedSize + " " + unit;
6394
+ return convertedSize.toLocaleString(this._locale, { maximumFractionDigits: 2 }) + " " + unit;
6390
6395
  };
6396
+ FileItemComponent.prototype._getLocale = function () {
6397
+ var _this = this;
6398
+ this.localeService
6399
+ .getLocale()
6400
+ .pipe(first())
6401
+ .subscribe(function (locale) {
6402
+ _this._locale = locale;
6403
+ });
6404
+ };
6405
+ FileItemComponent.ctorParameters = function () { return [
6406
+ { type: LocaleService }
6407
+ ]; };
6391
6408
  __decorate([
6392
6409
  Input()
6393
6410
  ], FileItemComponent.prototype, "id", void 0);
@@ -6428,7 +6445,7 @@ var FileItemComponent = /** @class */ (function () {
6428
6445
  Component({
6429
6446
  selector: "s-file-item",
6430
6447
  template: "<div [id]=\"id\" class=\"file-item-container\">\n <div class=\"file-info\">\n <ng-container *ngIf=\"canReadFiles; then fileNameUrl; else fileName\"></ng-container>\n <ng-template #fileNameUrl>\n <a\n class=\"file-name file-name--link\"\n tabindex=\"0\"\n [href]=\"file.objectURL\"\n download>\n {{ file.name }}\n </a>\n </ng-template>\n <ng-template #fileName>\n <span\n *ngIf=\"!canReadFiles\"\n class=\"file-name\">\n {{ file.name }}\n </span>\n </ng-template>\n <span class=\"file-size\">\n {{ simplifySize(file.size) }}\n </span>\n <div\n *ngIf=\"file.isUploading && !isSmallDevice\"\n class=\"progressbar\"\n [attr.aria-label]=\"ariaLabelProgress || 'platform.angular_components.loading_file' | translate\">\n <s-progressbar\n [value]=\"file.progress\"\n activeColor=\"blue\"\n [showValue]=\"true\">\n </s-progressbar>\n </div>\n <span\n *ngIf=\"file.isUploading && isSmallDevice\" \n class=\"fas fa-circle-notch fa-spin\"\n [attr.aria-label]=\"ariaLabelProgress || 'platform.angular_components.loading_file' | translate\">\n </span>\n\n <span\n *ngIf=\"!file.isUploading && !file.error\"\n class=\"status-icon status-icon--success fas fa-check\"\n [attr.aria-label]=\"ariaLabelSuccess || successTooltip || 'platform.angular_components.file_attached_successfully' | translate\"\n [sTooltip]=\"successTooltip || 'platform.angular_components.file_attached_successfully' | translate\">\n </span>\n <span\n *ngIf=\"!file.isUploading && file.error\"\n class=\"status-icon status-icon--fail fas fa-times\"\n [attr.aria-label]=\"file.error?.message\"\n [sTooltip]=\"file.error?.message\">\n </span>\n </div>\n <button\n *ngIf=\"file.isUploading\"\n class=\"file-option file-option--cancel\"\n (click)=\"cancelUpload.emit(file)\">\n {{ cancelLabel || \"platform.angular_components.cancel\" | translate }}\n </button>\n <button\n *ngIf=\"canRemoveFiles && !file.isUploading\"\n class=\"file-option file-option--remove\"\n (click)=\"removeFile.emit(file)\">\n {{ removeLabel || \"platform.angular_components.remove\" | translate }}\n </button>\n</div>\n",
6431
- styles: [".file-item-container{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;gap:16px;padding:16px}.file-item-container .file-info{color:#212533;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;gap:16px;width:100%;-ms-flex-align:center;align-items:center}.file-item-container .file-info .file-name{-ms-flex-positive:1;flex-grow:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.file-item-container .file-info .file-name--link{color:#428bca;text-decoration:none}.file-item-container .file-info .file-size{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.file-item-container .progressbar{width:20%}.file-item-container .status-icon{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;font-size:12px}.file-item-container .status-icon--success{color:#0c9348}.file-item-container .status-icon--fail{color:#c13018}.file-item-container .file-option{background-color:transparent;border:none;color:#428bca;cursor:pointer;font-family:\"Open Sans\",sans-serif;font-size:14px;overflow:hidden;text-overflow:ellipsis;max-width:100%}@media screen and (max-width:600px){.file-item-container{-ms-flex-align:start;align-items:flex-start;-ms-flex-direction:column;flex-direction:column}}"]
6448
+ styles: [".file-item-container{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;gap:16px;padding:16px}.file-item-container .file-info{color:#212533;display:-ms-flexbox;display:flex;font-family:\"Open Sans\",sans-serif;font-size:14px;gap:16px;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.file-item-container .file-info .file-name{-ms-flex-positive:1;flex-grow:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.file-item-container .file-info .file-name--link{color:#428bca;text-decoration:none}.file-item-container .file-info .file-size{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.file-item-container .progressbar{width:20%}.file-item-container .status-icon{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;font-size:12px}.file-item-container .status-icon--success{color:#0c9348}.file-item-container .status-icon--fail{color:#c13018}.file-item-container .file-option{background-color:transparent;border:none;color:#428bca;cursor:pointer;font-family:\"Open Sans\",sans-serif;font-size:14px;overflow:hidden;text-overflow:ellipsis;max-width:100%}@media screen and (max-width:600px){.file-item-container{-ms-flex-align:start;align-items:flex-start;-ms-flex-direction:column;flex-direction:column}}"]
6432
6449
  })
6433
6450
  ], FileItemComponent);
6434
6451
  return FileItemComponent;
@@ -6472,9 +6489,9 @@ var FileUploadComponent = /** @class */ (function () {
6472
6489
  this.cancelUpload = new EventEmitter();
6473
6490
  this.downloadFile = new EventEmitter();
6474
6491
  this.validateErrors = new EventEmitter();
6492
+ this.inputValue = "";
6475
6493
  this._files = [];
6476
6494
  this.ngUsubscribe = new Subject();
6477
- this.inputValue = "";
6478
6495
  }
6479
6496
  FileUploadComponent_1 = FileUploadComponent;
6480
6497
  Object.defineProperty(FileUploadComponent.prototype, "files", {
@@ -6498,10 +6515,7 @@ var FileUploadComponent = /** @class */ (function () {
6498
6515
  configurable: true
6499
6516
  });
6500
6517
  FileUploadComponent.prototype.ngOnInit = function () {
6501
- this.supportedExtensions = this.supportedExtensions
6502
- .map(function (extension) { return extension
6503
- .replace(".", "")
6504
- .toLowerCase(); });
6518
+ this.supportedExtensions = this.supportedExtensions.map(function (extension) { return extension.replace(".", "").toLowerCase(); });
6505
6519
  };
6506
6520
  FileUploadComponent.prototype.ngOnDestroy = function () {
6507
6521
  this.ngUsubscribe.next();
@@ -6521,6 +6535,14 @@ var FileUploadComponent = /** @class */ (function () {
6521
6535
  this._clearFileInput();
6522
6536
  return;
6523
6537
  }
6538
+ if (this._isFileCombinedSizeExceeded(files)) {
6539
+ this.validateErrors.emit({
6540
+ files: files,
6541
+ validation: ValidateErrors.MAX_COMBINED_FILE_SIZE,
6542
+ });
6543
+ this._clearFileInput();
6544
+ return;
6545
+ }
6524
6546
  try {
6525
6547
  for (var files_1 = __values(files), files_1_1 = files_1.next(); !files_1_1.done; files_1_1 = files_1.next()) {
6526
6548
  var file = files_1_1.value;
@@ -6586,6 +6608,14 @@ var FileUploadComponent = /** @class */ (function () {
6586
6608
  }
6587
6609
  return this.files.length + files.length > this.fileLimit;
6588
6610
  };
6611
+ FileUploadComponent.prototype._isFileCombinedSizeExceeded = function (files) {
6612
+ if (!this.maxCombinedFileSize) {
6613
+ return false;
6614
+ }
6615
+ var filesList = __spread(files, this.files);
6616
+ var combinedSize = filesList.reduce(function (combinedSize, file) { return combinedSize + file.size; }, 0);
6617
+ return combinedSize > this.maxCombinedFileSize;
6618
+ };
6589
6619
  FileUploadComponent.prototype._isFileSizeExceeded = function (file) {
6590
6620
  if (!this.maxFileSize) {
6591
6621
  return false;
@@ -6672,6 +6702,9 @@ var FileUploadComponent = /** @class */ (function () {
6672
6702
  __decorate([
6673
6703
  Input()
6674
6704
  ], FileUploadComponent.prototype, "maxFileSize", void 0);
6705
+ __decorate([
6706
+ Input()
6707
+ ], FileUploadComponent.prototype, "maxCombinedFileSize", void 0);
6675
6708
  __decorate([
6676
6709
  Input()
6677
6710
  ], FileUploadComponent.prototype, "fileLimit", void 0);
@@ -6734,6 +6767,7 @@ var FileUploadModule = /** @class */ (function () {
6734
6767
  NgModule({
6735
6768
  imports: [
6736
6769
  CommonModule,
6770
+ HttpClientModule,
6737
6771
  ButtonModule,
6738
6772
  TooltipModule,
6739
6773
  ProgressBarModule,
@@ -6743,7 +6777,10 @@ var FileUploadModule = /** @class */ (function () {
6743
6777
  FileUploadComponent,
6744
6778
  FileItemComponent,
6745
6779
  ],
6746
- providers: [FileUploadService],
6780
+ providers: [
6781
+ FileUploadService,
6782
+ LocaleService,
6783
+ ],
6747
6784
  exports: [FileUploadComponent],
6748
6785
  })
6749
6786
  ], FileUploadModule);
@@ -16751,5 +16788,5 @@ var fallback = {
16751
16788
  * Generated bundle index. Do not edit.
16752
16789
  */
16753
16790
 
16754
- export { AccordionComponent, AccordionModule, AccordionPanelComponent, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, KanbanComponent, KanbanModule, KanbanTemplateTypes, 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, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, DynamicFieldComponent as ɵba, DynamicFormDirective as ɵbb, FieldsetComponent as ɵbc, FileUploadComponent$1 as ɵbd, LookupFieldComponent as ɵbe, NumberFieldComponent as ɵbf, PasswordFieldComponent as ɵbg, RadioButtonComponent as ɵbh, RowComponent as ɵbi, SectionComponent as ɵbj, SelectFieldComponent as ɵbk, SliderFieldComponent as ɵbl, TextAreaFieldComponent as ɵbm, TextAreaIAFieldComponent as ɵbn, IAssistService as ɵbo, TextFieldComponent as ɵbp, DecimalField as ɵbr, SideTableComponent as ɵbs, ThumbnailService as ɵbt, InfiniteScrollModule as ɵbu, InfiniteScrollDirective as ɵbv, StructureModule as ɵbw, HeaderComponent as ɵbx, FooterComponent as ɵby, KanbanEventService as ɵbz, CustomTranslationsModule as ɵc, KanbanItemComponent as ɵca, KanbanColumnComponent as ɵcb, KanbanItemDraggingComponent as ɵcc, NumberLocaleOptions as ɵcd, BorderButtonModule as ɵce, BorderButtonComponent as ɵcf, SelectButtonItemComponent as ɵcg, SlidePanelService as ɵch, TieredMenuEventService as ɵci, TieredMenuService as ɵcj, TieredMenuComponent as ɵck, TieredMenuNestedComponent as ɵcl, TieredMenuItemComponent as ɵcm, TieredMenuDividerComponent as ɵcn, TimelineItemModule as ɵco, TimelineIconItemComponent as ɵcp, HorizontalTimelineModule as ɵcq, HorizontalTimelineComponent as ɵcr, VerticalTimelineModule as ɵcs, VerticalTimelineComponent as ɵct, RangeLineComponent as ɵcu, CollapseOptionComponent as ɵcv, CollapsedItemsComponent as ɵcw, VerticalItemsComponent as ɵcx, CodeEditorComponent as ɵd, CoreFacade as ɵe, CodeMirror6Core as ɵf, CountryPhonePickerService as ɵg, LocalizedCurrencyImpurePipe as ɵh, LocalizedBignumberPipe as ɵi, LocalizedBignumberImpurePipe as ɵj, EmptyStateGoBackComponent as ɵk, ProgressBarDeterminateComponent as ɵl, ProgressBarIndeterminateComponent as ɵm, FileUploadService as ɵn, FileItemComponent as ɵo, InfoSignComponent as ɵp, TableColumnsComponent as ɵq, TablePagingComponent as ɵr, AutocompleteFieldComponent as ɵs, BignumberFieldComponent as ɵt, BooleanFieldComponent as ɵu, BooleanSwitchFieldComponent as ɵv, CalendarFieldComponent as ɵw, ChipsFieldComponent as ɵx, CountryPhonePickerFieldComponent as ɵy, CurrencyFieldComponent as ɵz };
16791
+ export { AccordionComponent, AccordionModule, AccordionPanelComponent, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, KanbanComponent, KanbanModule, KanbanTemplateTypes, 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, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, CurrencyFieldComponent as ɵba, DynamicFieldComponent as ɵbb, DynamicFormDirective as ɵbc, FieldsetComponent as ɵbd, FileUploadComponent$1 as ɵbe, LookupFieldComponent as ɵbf, NumberFieldComponent as ɵbg, PasswordFieldComponent as ɵbh, RadioButtonComponent as ɵbi, RowComponent as ɵbj, SectionComponent as ɵbk, SelectFieldComponent as ɵbl, SliderFieldComponent as ɵbm, TextAreaFieldComponent as ɵbn, TextAreaIAFieldComponent as ɵbo, IAssistService as ɵbp, TextFieldComponent as ɵbq, DecimalField as ɵbs, SideTableComponent as ɵbt, ThumbnailService as ɵbu, InfiniteScrollModule as ɵbv, InfiniteScrollDirective as ɵbw, StructureModule as ɵbx, HeaderComponent as ɵby, FooterComponent as ɵbz, CustomTranslationsModule as ɵc, KanbanEventService as ɵca, KanbanItemComponent as ɵcb, KanbanColumnComponent as ɵcc, KanbanItemDraggingComponent as ɵcd, NumberLocaleOptions as ɵce, BorderButtonModule as ɵcf, BorderButtonComponent as ɵcg, SelectButtonItemComponent as ɵch, SlidePanelService as ɵci, TieredMenuEventService as ɵcj, TieredMenuService as ɵck, TieredMenuComponent as ɵcl, TieredMenuNestedComponent as ɵcm, TieredMenuItemComponent as ɵcn, TieredMenuDividerComponent as ɵco, TimelineItemModule as ɵcp, TimelineIconItemComponent as ɵcq, HorizontalTimelineModule as ɵcr, HorizontalTimelineComponent as ɵcs, VerticalTimelineModule as ɵct, VerticalTimelineComponent as ɵcu, RangeLineComponent as ɵcv, CollapseOptionComponent as ɵcw, CollapsedItemsComponent as ɵcx, VerticalItemsComponent as ɵcy, CodeEditorComponent as ɵd, CoreFacade as ɵe, CodeMirror6Core as ɵf, CountryPhonePickerService as ɵg, LocalizedCurrencyImpurePipe as ɵh, LocalizedBignumberPipe as ɵi, LocalizedBignumberImpurePipe as ɵj, EmptyStateGoBackComponent as ɵk, ProgressBarDeterminateComponent as ɵl, ProgressBarIndeterminateComponent as ɵm, FileUploadService as ɵn, FileItemComponent as ɵo, LocaleService as ɵp, InfoSignComponent as ɵq, TableColumnsComponent as ɵr, TablePagingComponent as ɵs, AutocompleteFieldComponent as ɵt, BignumberFieldComponent as ɵu, BooleanFieldComponent as ɵv, BooleanSwitchFieldComponent as ɵw, CalendarFieldComponent as ɵx, ChipsFieldComponent as ɵy, CountryPhonePickerFieldComponent as ɵz };
16755
16792
  //# sourceMappingURL=seniorsistemas-angular-components.js.map