@seniorsistemas/angular-components 16.12.2 → 16.12.4

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 (33) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +102 -69
  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/custom-fields/custom-fields.component.d.ts +9 -4
  6. package/components/slide-panel/index.d.ts +2 -0
  7. package/components/{slide-bar/slide-bar.component.d.ts → slide-panel/slide-panel.component.d.ts} +3 -3
  8. package/components/slide-panel/slide-panel.module.d.ts +2 -0
  9. package/esm2015/components/custom-fields/custom-fields.component.js +54 -32
  10. package/esm2015/components/slide-panel/index.js +3 -0
  11. package/esm2015/components/slide-panel/slide-panel.component.js +105 -0
  12. package/esm2015/components/slide-panel/slide-panel.module.js +19 -0
  13. package/esm2015/public-api.js +2 -2
  14. package/esm5/components/custom-fields/custom-fields.component.js +67 -34
  15. package/esm5/components/slide-panel/index.js +3 -0
  16. package/esm5/components/slide-panel/slide-panel.component.js +107 -0
  17. package/esm5/components/slide-panel/slide-panel.module.js +22 -0
  18. package/esm5/public-api.js +2 -2
  19. package/fesm2015/seniorsistemas-angular-components.js +77 -55
  20. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  21. package/fesm5/seniorsistemas-angular-components.js +101 -68
  22. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  23. package/package.json +1 -1
  24. package/public-api.d.ts +1 -1
  25. package/seniorsistemas-angular-components.metadata.json +1 -1
  26. package/components/slide-bar/index.d.ts +0 -2
  27. package/components/slide-bar/slide-bar.module.d.ts +0 -2
  28. package/esm2015/components/slide-bar/index.js +0 -3
  29. package/esm2015/components/slide-bar/slide-bar.component.js +0 -105
  30. package/esm2015/components/slide-bar/slide-bar.module.js +0 -19
  31. package/esm5/components/slide-bar/index.js +0 -3
  32. package/esm5/components/slide-bar/slide-bar.component.js +0 -107
  33. package/esm5/components/slide-bar/slide-bar.module.js +0 -22
@@ -7963,38 +7963,6 @@ var CustomFieldsComponent = /** @class */ (function () {
7963
7963
  enumerable: true,
7964
7964
  configurable: true
7965
7965
  });
7966
- CustomFieldsComponent.prototype.registerOnChange = function (fn) {
7967
- var _this = this;
7968
- this.onChange = fn;
7969
- this.formGroup.valueChanges.subscribe(function () { return _this.onChange(_this.parseFieldsValues()); });
7970
- };
7971
- CustomFieldsComponent.prototype.registerOnTouched = function (fn) {
7972
- this.onTouched = fn;
7973
- };
7974
- CustomFieldsComponent.prototype.writeValue = function (value) {
7975
- if (this.ready) {
7976
- var newValue = this.parseValuesForFields(value);
7977
- this.formGroup.patchValue(newValue);
7978
- this.value = newValue;
7979
- this.createFilesIfSetFormValuesAfterInit();
7980
- }
7981
- else {
7982
- this.formGroup.patchValue(value || {});
7983
- this.value = value;
7984
- }
7985
- };
7986
- CustomFieldsComponent.prototype.setDisabledState = function (isDisabled) {
7987
- if (isDisabled)
7988
- this.formGroup.disable({ emitEvent: false });
7989
- else
7990
- this.formGroup.enable({ emitEvent: false });
7991
- };
7992
- CustomFieldsComponent.prototype.getCustomFields = function () {
7993
- if (this.entityObject && this.entityObject.entity_) {
7994
- return of(this.entityObject);
7995
- }
7996
- return this.customFieldsService.getCustomFields(this.domain, this.service, this.entity, this.customFieldsEndpoint);
7997
- };
7998
7966
  CustomFieldsComponent.prototype.ngOnInit = function () {
7999
7967
  var _this = this;
8000
7968
  if (!this.domain)
@@ -8067,10 +8035,50 @@ var CustomFieldsComponent = /** @class */ (function () {
8067
8035
  _this.ready = true;
8068
8036
  });
8069
8037
  };
8038
+ CustomFieldsComponent.prototype.ngAfterViewInit = function () {
8039
+ this.enableOrDisableFields(this.disableFields);
8040
+ };
8041
+ CustomFieldsComponent.prototype.ngOnChanges = function (changes) {
8042
+ if (changes.disableFields) {
8043
+ this.enableOrDisableFields(changes.disableFields.currentValue);
8044
+ }
8045
+ };
8070
8046
  CustomFieldsComponent.prototype.ngOnDestroy = function () {
8071
8047
  this.ngUsubscribe.next();
8072
8048
  this.ngUsubscribe.complete();
8073
8049
  };
8050
+ CustomFieldsComponent.prototype.registerOnChange = function (fn) {
8051
+ var _this = this;
8052
+ this.onChange = fn;
8053
+ this.formGroup.valueChanges.subscribe(function () { return _this.onChange(_this.parseFieldsValues()); });
8054
+ };
8055
+ CustomFieldsComponent.prototype.registerOnTouched = function (fn) {
8056
+ this.onTouched = fn;
8057
+ };
8058
+ CustomFieldsComponent.prototype.writeValue = function (value) {
8059
+ if (this.ready) {
8060
+ var newValue = this.parseValuesForFields(value);
8061
+ this.formGroup.patchValue(newValue);
8062
+ this.value = newValue;
8063
+ this.createFilesIfSetFormValuesAfterInit();
8064
+ }
8065
+ else {
8066
+ this.formGroup.patchValue(value || {});
8067
+ this.value = value;
8068
+ }
8069
+ };
8070
+ CustomFieldsComponent.prototype.setDisabledState = function (isDisabled) {
8071
+ if (isDisabled)
8072
+ this.formGroup.disable({ emitEvent: false });
8073
+ else
8074
+ this.formGroup.enable({ emitEvent: false });
8075
+ };
8076
+ CustomFieldsComponent.prototype.getCustomFields = function () {
8077
+ if (this.entityObject && this.entityObject.entity_) {
8078
+ return of(this.entityObject);
8079
+ }
8080
+ return this.customFieldsService.getCustomFields(this.domain, this.service, this.entity, this.customFieldsEndpoint);
8081
+ };
8074
8082
  CustomFieldsComponent.prototype.validate = function () {
8075
8083
  var _this = this;
8076
8084
  var errors = {};
@@ -8081,6 +8089,28 @@ var CustomFieldsComponent = /** @class */ (function () {
8081
8089
  });
8082
8090
  return errors;
8083
8091
  };
8092
+ CustomFieldsComponent.prototype.enableOrDisableFields = function (disabled) {
8093
+ var e_1, _a;
8094
+ if (!this.formGroup) {
8095
+ return;
8096
+ }
8097
+ try {
8098
+ for (var _b = __values(Object.keys(this.formGroup.value)), _c = _b.next(); !_c.done; _c = _b.next()) {
8099
+ var controlName = _c.value;
8100
+ disabled ? this.formGroup.get(controlName).disable() : this.formGroup.get(controlName).enable();
8101
+ }
8102
+ }
8103
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
8104
+ finally {
8105
+ try {
8106
+ if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
8107
+ }
8108
+ finally { if (e_1) throw e_1.error; }
8109
+ }
8110
+ };
8111
+ CustomFieldsComponent.prototype.cleanFields = function () {
8112
+ this.formGroup.reset();
8113
+ };
8084
8114
  CustomFieldsComponent.prototype.parseValuesForFields = function (values) {
8085
8115
  var parsedValues = __assign({}, values);
8086
8116
  this.fields.forEach(function (field) {
@@ -8468,6 +8498,9 @@ var CustomFieldsComponent = /** @class */ (function () {
8468
8498
  __decorate([
8469
8499
  Input()
8470
8500
  ], CustomFieldsComponent.prototype, "ready$", void 0);
8501
+ __decorate([
8502
+ Input()
8503
+ ], CustomFieldsComponent.prototype, "disableFields", void 0);
8471
8504
  CustomFieldsComponent = CustomFieldsComponent_1 = __decorate([
8472
8505
  Component({
8473
8506
  selector: "s-custom-fields",
@@ -9519,26 +9552,26 @@ var SidebarModule = /** @class */ (function () {
9519
9552
  }());
9520
9553
 
9521
9554
  var SMALL_DEVICE_BREAKPOINT = 420;
9522
- var SlideBarComponent = /** @class */ (function () {
9523
- function SlideBarComponent() {
9555
+ var SlidePanelComponent = /** @class */ (function () {
9556
+ function SlidePanelComponent() {
9524
9557
  this.openIcon = "fas fa-chevron-right";
9525
9558
  this.closeIcon = "fas fa-chevron-left";
9526
9559
  this.cache = false;
9527
- this.barOpened = new EventEmitter();
9528
- this.barClosed = new EventEmitter();
9560
+ this.panelOpened = new EventEmitter();
9561
+ this.panelClosed = new EventEmitter();
9529
9562
  this.slideHeight = 0;
9530
9563
  this.isOpen = false;
9531
9564
  this.isSlideOver = false;
9532
9565
  this.isAnimating = false;
9533
9566
  this.isContentAnimationDisabled = true;
9534
9567
  }
9535
- SlideBarComponent.prototype.onResize = function () {
9568
+ SlidePanelComponent.prototype.onResize = function () {
9536
9569
  this._checkOverBehavior();
9537
9570
  };
9538
- SlideBarComponent.prototype.ngOnInit = function () {
9571
+ SlidePanelComponent.prototype.ngOnInit = function () {
9539
9572
  this._checkOverBehavior();
9540
9573
  };
9541
- SlideBarComponent.prototype.ngAfterViewChecked = function () {
9574
+ SlidePanelComponent.prototype.ngAfterViewChecked = function () {
9542
9575
  var _this = this;
9543
9576
  // to executed at a safe time prior to control returning to the browser's event loop
9544
9577
  queueMicrotask(function () {
@@ -9546,58 +9579,58 @@ var SlideBarComponent = /** @class */ (function () {
9546
9579
  _this.isContentAnimationDisabled = false;
9547
9580
  });
9548
9581
  };
9549
- SlideBarComponent.prototype.onClickButton = function () {
9582
+ SlidePanelComponent.prototype.onClickButton = function () {
9550
9583
  if (this.isAnimating) {
9551
9584
  return;
9552
9585
  }
9553
9586
  this.isOpen = !this.isOpen;
9554
9587
  if (this.isOpen) {
9555
- this.barOpened.emit();
9588
+ this.panelOpened.emit();
9556
9589
  }
9557
9590
  else {
9558
- this.barClosed.emit();
9591
+ this.panelClosed.emit();
9559
9592
  }
9560
9593
  };
9561
- SlideBarComponent.prototype.onContentAnimationStart = function () {
9594
+ SlidePanelComponent.prototype.onContentAnimationStart = function () {
9562
9595
  this.isAnimating = true;
9563
9596
  };
9564
- SlideBarComponent.prototype.onContentAnimationDone = function () {
9597
+ SlidePanelComponent.prototype.onContentAnimationDone = function () {
9565
9598
  this.isAnimating = false;
9566
9599
  };
9567
- SlideBarComponent.prototype._checkOverBehavior = function () {
9600
+ SlidePanelComponent.prototype._checkOverBehavior = function () {
9568
9601
  this.isSlideOver = window.innerWidth <= SMALL_DEVICE_BREAKPOINT;
9569
9602
  };
9570
- SlideBarComponent.prototype._calculateSlideHeight = function () {
9603
+ SlidePanelComponent.prototype._calculateSlideHeight = function () {
9571
9604
  this.slideHeight = this.sideContent.nativeElement.clientHeight;
9572
9605
  };
9573
9606
  __decorate([
9574
9607
  Input()
9575
- ], SlideBarComponent.prototype, "openIcon", void 0);
9608
+ ], SlidePanelComponent.prototype, "openIcon", void 0);
9576
9609
  __decorate([
9577
9610
  Input()
9578
- ], SlideBarComponent.prototype, "closeIcon", void 0);
9611
+ ], SlidePanelComponent.prototype, "closeIcon", void 0);
9579
9612
  __decorate([
9580
9613
  Input()
9581
- ], SlideBarComponent.prototype, "cache", void 0);
9614
+ ], SlidePanelComponent.prototype, "cache", void 0);
9582
9615
  __decorate([
9583
9616
  Output()
9584
- ], SlideBarComponent.prototype, "barOpened", void 0);
9617
+ ], SlidePanelComponent.prototype, "panelOpened", void 0);
9585
9618
  __decorate([
9586
9619
  Output()
9587
- ], SlideBarComponent.prototype, "barClosed", void 0);
9620
+ ], SlidePanelComponent.prototype, "panelClosed", void 0);
9588
9621
  __decorate([
9589
9622
  ViewChild("mainContainer")
9590
- ], SlideBarComponent.prototype, "mainContainer", void 0);
9623
+ ], SlidePanelComponent.prototype, "mainContainer", void 0);
9591
9624
  __decorate([
9592
9625
  ViewChild("sideContent")
9593
- ], SlideBarComponent.prototype, "sideContent", void 0);
9626
+ ], SlidePanelComponent.prototype, "sideContent", void 0);
9594
9627
  __decorate([
9595
9628
  HostListener("window:resize")
9596
- ], SlideBarComponent.prototype, "onResize", null);
9597
- SlideBarComponent = __decorate([
9629
+ ], SlidePanelComponent.prototype, "onResize", null);
9630
+ SlidePanelComponent = __decorate([
9598
9631
  Component({
9599
- selector: "s-slide-bar",
9600
- template: "<div class=\"slide-bar\">\n <div\n class=\"slide-content\"\n [ngClass]=\"{\n 'slide-content--closed': !isOpen,\n 'slide-content--over': isSlideOver\n }\">\n <div\n #mainContainer\n class=\"main-container\"\n [style.maxHeight]=\"slideHeight + 'px'\">\n <ng-container *ngIf=\"cache; then cacheTemplate else cachelessTemplate\"></ng-container>\n </div>\n <button\n class=\"button\"\n [ngClass]=\"isOpen ? closeIcon : openIcon\"\n (click)=\"onClickButton()\">\n </button>\n </div>\n <div #sideContent class=\"side-content\">\n <ng-content select=\"[side-content]\"></ng-content>\n </div>\n</div>\n\n<ng-template #cacheTemplate>\n <div\n class=\"content-container\"\n [@cacheAnimation]=\"isOpen\"\n [@.disabled]=\"isContentAnimationDisabled\"\n (@cacheAnimation.start)=\"onContentAnimationStart()\"\n (@cacheAnimation.done)=\"onContentAnimationDone()\">\n <ng-container [ngTemplateOutlet]=\"slideContent\"></ng-container>\n </div>\n</ng-template>\n\n<ng-template #cachelessTemplate>\n <div\n *ngIf=\"isOpen\"\n class=\"content-container\"\n @cachelessAnimation\n [@.disabled]=\"isContentAnimationDisabled\"\n (@cachelessAnimation.start)=\"onContentAnimationStart()\"\n (@cachelessAnimation.done)=\"onContentAnimationDone()\">\n <ng-container [ngTemplateOutlet]=\"slideContent\"></ng-container>\n </div>\n</ng-template>\n\n<ng-template #slideContent>\n <ng-content select=\"[slide-content]\"></ng-content>\n</ng-template>",
9632
+ selector: "s-slide-panel",
9633
+ template: "<div class=\"slide-panel\">\n <div\n class=\"slide-content\"\n [ngClass]=\"{\n 'slide-content--closed': !isOpen,\n 'slide-content--over': isSlideOver\n }\">\n <div\n #mainContainer\n class=\"main-container\"\n [style.maxHeight]=\"slideHeight + 'px'\">\n <ng-container *ngIf=\"cache; then cacheTemplate else cachelessTemplate\"></ng-container>\n </div>\n <button\n class=\"button\"\n [ngClass]=\"isOpen ? closeIcon : openIcon\"\n (click)=\"onClickButton()\">\n </button>\n </div>\n <div #sideContent class=\"side-content\">\n <ng-content select=\"[side-content]\"></ng-content>\n </div>\n</div>\n\n<ng-template #cacheTemplate>\n <div\n class=\"content-container\"\n [@cacheAnimation]=\"isOpen\"\n [@.disabled]=\"isContentAnimationDisabled\"\n (@cacheAnimation.start)=\"onContentAnimationStart()\"\n (@cacheAnimation.done)=\"onContentAnimationDone()\">\n <ng-container [ngTemplateOutlet]=\"slideContent\"></ng-container>\n </div>\n</ng-template>\n\n<ng-template #cachelessTemplate>\n <div\n *ngIf=\"isOpen\"\n class=\"content-container\"\n @cachelessAnimation\n [@.disabled]=\"isContentAnimationDisabled\"\n (@cachelessAnimation.start)=\"onContentAnimationStart()\"\n (@cachelessAnimation.done)=\"onContentAnimationDone()\">\n <ng-container [ngTemplateOutlet]=\"slideContent\"></ng-container>\n </div>\n</ng-template>\n\n<ng-template #slideContent>\n <ng-content select=\"[slide-content]\"></ng-content>\n</ng-template>",
9601
9634
  animations: [
9602
9635
  trigger("cachelessAnimation", [
9603
9636
  transition(":enter", [
@@ -9615,26 +9648,26 @@ var SlideBarComponent = /** @class */ (function () {
9615
9648
  transition("* => *", animate("200ms")),
9616
9649
  ]),
9617
9650
  ],
9618
- styles: [".slide-bar{display:-ms-flexbox;display:flex}.slide-bar .slide-content{display:-ms-flexbox;display:flex;position:relative}.slide-bar .slide-content .main-container{background-color:#eeebf2;display:-ms-flexbox;display:flex;border:1px solid #ccc;overflow:hidden;position:relative}.slide-bar .slide-content .main-container .content-container{overflow-y:auto;overflow-x:hidden;padding:16px}.slide-bar .slide-content .button{-ms-flex-align:center;align-items:center;background-color:#eeebf2;border:1px solid #ccc;border-left:none;border-radius:0 4px 4px 0;cursor:pointer;display:-ms-flexbox;display:flex;font-size:16px;height:32px;-ms-flex-pack:center;justify-content:center;position:absolute;right:-32px;top:16px;width:32px}.slide-bar .slide-content--closed .main-container{border:none}.slide-bar .slide-content--over{position:absolute}.slide-bar .side-content{display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;height:-webkit-max-content;height:max-content}"]
9651
+ styles: [".slide-panel{display:-ms-flexbox;display:flex}.slide-panel .slide-content{display:-ms-flexbox;display:flex;position:relative}.slide-panel .slide-content .main-container{background-color:#eeebf2;display:-ms-flexbox;display:flex;border:1px solid #ccc;overflow:hidden;position:relative}.slide-panel .slide-content .main-container .content-container{overflow-y:auto;overflow-x:hidden;padding:16px}.slide-panel .slide-content .button{-ms-flex-align:center;align-items:center;background-color:#eeebf2;border:1px solid #ccc;border-left:none;border-radius:0 4px 4px 0;cursor:pointer;display:-ms-flexbox;display:flex;font-size:16px;height:32px;-ms-flex-pack:center;justify-content:center;position:absolute;right:-32px;top:16px;width:32px}.slide-panel .slide-content--closed .main-container{border:none}.slide-panel .slide-content--over{position:absolute}.slide-panel .side-content{display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;height:-webkit-max-content;height:max-content}"]
9619
9652
  })
9620
- ], SlideBarComponent);
9621
- return SlideBarComponent;
9653
+ ], SlidePanelComponent);
9654
+ return SlidePanelComponent;
9622
9655
  }());
9623
9656
 
9624
- var SlideBarModule = /** @class */ (function () {
9625
- function SlideBarModule() {
9657
+ var SlidePanelModule = /** @class */ (function () {
9658
+ function SlidePanelModule() {
9626
9659
  }
9627
- SlideBarModule = __decorate([
9660
+ SlidePanelModule = __decorate([
9628
9661
  NgModule({
9629
9662
  imports: [
9630
9663
  CommonModule,
9631
9664
  BrowserAnimationsModule,
9632
9665
  ],
9633
- declarations: [SlideBarComponent],
9634
- exports: [SlideBarComponent],
9666
+ declarations: [SlidePanelComponent],
9667
+ exports: [SlidePanelComponent],
9635
9668
  })
9636
- ], SlideBarModule);
9637
- return SlideBarModule;
9669
+ ], SlidePanelModule);
9670
+ return SlidePanelModule;
9638
9671
  }());
9639
9672
 
9640
9673
  var StatsCardComponent = /** @class */ (function () {
@@ -12742,5 +12775,5 @@ var fallback = {
12742
12775
  * Generated bundle index. Do not edit.
12743
12776
  */
12744
12777
 
12745
- 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, 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, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, SlideBarComponent, SlideBarModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, WorkspaceSwitchComponent, WorkspaceSwitchModule, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, SelectFieldComponent as ɵba, TextAreaFieldComponent as ɵbb, TextFieldComponent as ɵbc, BooleanSwitchFieldComponent as ɵbd, PasswordFieldComponent as ɵbe, SliderFieldComponent as ɵbf, DecimalField as ɵbh, StructureModule as ɵbi, HeaderComponent as ɵbj, FooterComponent as ɵbk, NumberLocaleOptions as ɵbl, ThumbnailService as ɵbm, BorderButtonModule as ɵbn, BorderButtonComponent as ɵbo, TimelineItemModule as ɵbp, TimelineIconItemComponent as ɵbq, HorizontalTimelineModule as ɵbr, HorizontalTimelineComponent as ɵbs, VerticalTimelineModule as ɵbt, VerticalTimelineComponent as ɵbu, RangeLineComponent as ɵbv, CollapseOptionComponent as ɵbw, CollapsedItemsComponent as ɵbx, VerticalItemsComponent as ɵby, InfiniteScrollModule as ɵbz, CountryPhonePickerService as ɵc, InfiniteScrollDirective as ɵca, CustomTranslationsModule as ɵcb, CodeEditorComponent as ɵcc, CoreFacade as ɵcd, CodeMirror6Core as ɵce, LocalizedCurrencyImpurePipe as ɵd, LocalizedBignumberPipe as ɵe, LocalizedBignumberImpurePipe as ɵf, EmptyStateGoBackComponent as ɵg, FileUploadService as ɵh, InfoSignComponent as ɵi, TableColumnsComponent as ɵj, TablePagingComponent as ɵk, AutocompleteFieldComponent as ɵl, BooleanFieldComponent as ɵm, CalendarFieldComponent as ɵn, ChipsFieldComponent as ɵo, CurrencyFieldComponent as ɵp, DynamicFieldComponent as ɵq, DynamicFormDirective as ɵr, FieldsetComponent as ɵs, FileUploadComponent$1 as ɵt, LookupFieldComponent as ɵu, NumberFieldComponent as ɵv, BignumberFieldComponent as ɵw, RadioButtonComponent as ɵx, RowComponent as ɵy, SectionComponent as ɵz };
12778
+ 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, 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, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, WorkspaceSwitchComponent, WorkspaceSwitchModule, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, SelectFieldComponent as ɵba, TextAreaFieldComponent as ɵbb, TextFieldComponent as ɵbc, BooleanSwitchFieldComponent as ɵbd, PasswordFieldComponent as ɵbe, SliderFieldComponent as ɵbf, DecimalField as ɵbh, StructureModule as ɵbi, HeaderComponent as ɵbj, FooterComponent as ɵbk, NumberLocaleOptions as ɵbl, ThumbnailService as ɵbm, BorderButtonModule as ɵbn, BorderButtonComponent as ɵbo, TimelineItemModule as ɵbp, TimelineIconItemComponent as ɵbq, HorizontalTimelineModule as ɵbr, HorizontalTimelineComponent as ɵbs, VerticalTimelineModule as ɵbt, VerticalTimelineComponent as ɵbu, RangeLineComponent as ɵbv, CollapseOptionComponent as ɵbw, CollapsedItemsComponent as ɵbx, VerticalItemsComponent as ɵby, InfiniteScrollModule as ɵbz, CountryPhonePickerService as ɵc, InfiniteScrollDirective as ɵca, CustomTranslationsModule as ɵcb, CodeEditorComponent as ɵcc, CoreFacade as ɵcd, CodeMirror6Core as ɵce, LocalizedCurrencyImpurePipe as ɵd, LocalizedBignumberPipe as ɵe, LocalizedBignumberImpurePipe as ɵf, EmptyStateGoBackComponent as ɵg, FileUploadService as ɵh, InfoSignComponent as ɵi, TableColumnsComponent as ɵj, TablePagingComponent as ɵk, AutocompleteFieldComponent as ɵl, BooleanFieldComponent as ɵm, CalendarFieldComponent as ɵn, ChipsFieldComponent as ɵo, CurrencyFieldComponent as ɵp, DynamicFieldComponent as ɵq, DynamicFormDirective as ɵr, FieldsetComponent as ɵs, FileUploadComponent$1 as ɵt, LookupFieldComponent as ɵu, NumberFieldComponent as ɵv, BignumberFieldComponent as ɵw, RadioButtonComponent as ɵx, RowComponent as ɵy, SectionComponent as ɵz };
12746
12779
  //# sourceMappingURL=seniorsistemas-angular-components.js.map