@seniorsistemas/angular-components 16.11.2 → 16.12.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 (31) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +137 -13
  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/dynamic-form/configurations/fields/boolean-switch-field.d.ts +3 -0
  6. package/components/slide-bar/index.d.ts +2 -0
  7. package/components/slide-bar/slide-bar.component.d.ts +23 -0
  8. package/components/slide-bar/slide-bar.module.d.ts +2 -0
  9. package/esm2015/components/accordion/components/accordion-panel/accordion-panel.component.js +11 -12
  10. package/esm2015/components/control-errors/control-errors.component.js +4 -3
  11. package/esm2015/components/dynamic-form/components/fields/boolean/boolean-switch-field.component.js +2 -2
  12. package/esm2015/components/dynamic-form/configurations/fields/boolean-switch-field.js +5 -1
  13. package/esm2015/components/slide-bar/index.js +3 -0
  14. package/esm2015/components/slide-bar/slide-bar.component.js +105 -0
  15. package/esm2015/components/slide-bar/slide-bar.module.js +19 -0
  16. package/esm2015/public-api.js +2 -1
  17. package/esm5/components/accordion/components/accordion-panel/accordion-panel.component.js +11 -12
  18. package/esm5/components/control-errors/control-errors.component.js +4 -3
  19. package/esm5/components/dynamic-form/components/fields/boolean/boolean-switch-field.component.js +2 -2
  20. package/esm5/components/dynamic-form/configurations/fields/boolean-switch-field.js +5 -1
  21. package/esm5/components/slide-bar/index.js +3 -0
  22. package/esm5/components/slide-bar/slide-bar.component.js +107 -0
  23. package/esm5/components/slide-bar/slide-bar.module.js +22 -0
  24. package/esm5/public-api.js +2 -1
  25. package/fesm2015/seniorsistemas-angular-components.js +131 -14
  26. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  27. package/fesm5/seniorsistemas-angular-components.js +136 -14
  28. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  29. package/package.json +1 -1
  30. package/public-api.d.ts +1 -0
  31. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -142,17 +142,16 @@ var AccordionPanelComponent = /** @class */ (function () {
142
142
  AccordionPanelComponent = __decorate([
143
143
  Component({
144
144
  selector: "s-accordion-panel",
145
- template: "<div\n class=\"accordion-panel\"\n [ngClass]=\"{\n 'accordion-panel--open': isOpen,\n 'accordion-panel--disabled': disabled\n }\">\n <div class=\"header\" (click)=\"onTabClick()\">\n <div class=\"header__title\">\n <span class=\"icon\" [ngClass]=\"isOpen ? 'fas fa-minus' : 'fas fa-plus'\"></span>\n <span\n *ngIf=\"validationMessage\"\n class=\"exclamation-icon fas fa-exclamation-circle\"\n [sTooltip]=\"validationMessage\">\n </span>\n <span class=\"title\">{{ header }}</span>\n </div>\n <div class=\"header__controls\">\n <button\n *ngFor=\"let button of buttons\"\n class=\"icon-button\"\n [ngClass]=\"button.icon\"\n (click)=\"onIconButtonsClick($event, button.onClick)\">\n </button>\n <p-inputSwitch\n *ngIf=\"switch\"\n class=\"switch\"\n [disabled]=\"disabled\"\n [(ngModel)]=\"switchState\"\n (click)=\"$event.stopPropagation()\"\n (onChange)=\"switch.onChange($event)\">\n </p-inputSwitch>\n </div>\n </div>\n <ng-container *ngIf=\"cache; then thenBlock else elseBlock\"></ng-container>\n</div>\n\n<ng-template #thenBlock>\n <div\n class=\"content\"\n [hidden]=\"!isOpen\"\n @contentAnimation\n [@.disabled]=\"isContentAnimationDisabled\"\n (@contentAnimation.start)=\"onContentAnimationStart()\"\n (@contentAnimation.done)=\"onContentAnimationDone()\">\n <div class=\"content-container\">\n <ng-content></ng-content>\n </div>\n </div>\n</ng-template>\n\n<ng-template #elseBlock>\n <div\n *ngIf=\"isOpen\"\n class=\"content\"\n @contentAnimation\n [@.disabled]=\"isContentAnimationDisabled\" \n (@contentAnimation.start)=\"onContentAnimationStart()\"\n (@contentAnimation.done)=\"onContentAnimationDone()\">\n <div class=\"content-container\">\n <ng-content></ng-content>\n </div>\n </div>\n</ng-template>",
145
+ template: "<div\n class=\"accordion-panel\"\n [ngClass]=\"{\n 'accordion-panel--open': isOpen,\n 'accordion-panel--disabled': disabled\n }\">\n <div class=\"header\" (click)=\"onTabClick()\">\n <div class=\"header__title\">\n <span class=\"icon\" [ngClass]=\"isOpen ? 'fas fa-minus' : 'fas fa-plus'\"></span>\n <span\n *ngIf=\"validationMessage\"\n class=\"exclamation-icon fas fa-exclamation-circle\"\n [sTooltip]=\"validationMessage\">\n </span>\n <span class=\"title\">{{ header }}</span>\n </div>\n <div class=\"header__controls\">\n <button\n *ngFor=\"let button of buttons\"\n class=\"icon-button\"\n [ngClass]=\"button.icon\"\n (click)=\"onIconButtonsClick($event, button.onClick)\">\n </button>\n <p-inputSwitch\n *ngIf=\"switch\"\n class=\"switch\"\n [disabled]=\"disabled\"\n [(ngModel)]=\"switchState\"\n (click)=\"$event.stopPropagation()\"\n (onChange)=\"switch.onChange($event)\">\n </p-inputSwitch>\n </div>\n </div>\n <ng-container *ngIf=\"cache; then cacheTemplate else cachelessTemplate\"></ng-container>\n</div>\n\n<ng-template #cacheTemplate>\n <div\n class=\"content\"\n [@cacheAnimation]=\"isOpen\"\n [@.disabled]=\"isContentAnimationDisabled\"\n (@cacheAnimation.start)=\"onContentAnimationStart()\"\n (@cacheAnimation.done)=\"onContentAnimationDone()\">\n <div class=\"content-container\">\n <ng-container [ngTemplateOutlet]=\"panelContent\"></ng-container>\n </div>\n </div>\n</ng-template>\n\n<ng-template #cachelessTemplate>\n <div\n *ngIf=\"isOpen\"\n class=\"content\"\n @cachelessAnimation\n [@.disabled]=\"isContentAnimationDisabled\"\n (@cachelessAnimation.start)=\"onContentAnimationStart()\"\n (@cachelessAnimation.done)=\"onContentAnimationDone()\">\n <div class=\"content-container\">\n <ng-container [ngTemplateOutlet]=\"panelContent\"></ng-container>\n </div>\n </div>\n</ng-template>\n\n<ng-template #panelContent>\n <ng-content></ng-content>\n</ng-template>",
146
146
  animations: [
147
- trigger("contentAnimation", [
148
- transition(":enter", [
149
- style$7({ height: "0" }),
150
- animate("200ms linear", style$7({ height: "*" })),
151
- ]),
152
- transition(":leave", [
153
- style$7({ height: "*" }),
154
- animate("200ms linear", style$7({ height: "0" })),
155
- ]),
147
+ trigger("cachelessAnimation", [
148
+ transition(":enter", [style$7({ height: "0" }), animate("200ms linear", style$7({ height: "*" }))]),
149
+ transition(":leave", [style$7({ height: "*" }), animate("200ms linear", style$7({ height: "0" }))]),
150
+ ]),
151
+ trigger("cacheAnimation", [
152
+ state("true", style$7({ height: "*" })),
153
+ state("false", style$7({ height: '0px' })),
154
+ transition("* => *", animate("200ms")),
156
155
  ]),
157
156
  ],
158
157
  styles: [".accordion-panel{border-bottom:1px solid #c1c1cc}.accordion-panel .header{-ms-flex-align:center;align-items:center;background-color:#fff;cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:16px;-webkit-user-select:none;-ms-user-select:none;user-select:none}.accordion-panel .header .header__title{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.accordion-panel .header .header__title .icon{color:#212533;font-size:1rem;margin-right:12px}.accordion-panel .header .header__title .exclamation-icon{color:#c13018;font-size:1rem;margin-right:12px}.accordion-panel .header .header__title .title{font-family:\"Open Sans\" sans-serif;font-size:.875rem;font-weight:700;line-height:150%;text-transform:uppercase}.accordion-panel .header .header__controls{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;margin-left:16px}.accordion-panel .header .header__controls .icon-button{color:#212533;cursor:pointer;font-size:1rem;margin-left:16px;border:none;background:0 0}.accordion-panel .header .header__controls .switch{padding-left:16px}.accordion-panel .content{background-color:#fff;overflow:hidden}.accordion-panel .content .content-container{margin:20px}.accordion-panel--open .header{background-color:#eeebf2;border-bottom:1px solid #c1c1cc}.accordion-panel--disabled .header{cursor:auto}.accordion-panel--disabled .header .header__title .icon,.accordion-panel--disabled .header .header__title .title{color:#c1c1cc}.accordion-panel--disabled .header .header__controls .icon-button{color:#c1c1cc;cursor:auto}"]
@@ -1664,9 +1663,10 @@ var ControlErrorsComponent = /** @class */ (function () {
1664
1663
  ControlErrorsComponent_1 = ControlErrorsComponent;
1665
1664
  ControlErrorsComponent.prototype.getErrorMessagesList = function () {
1666
1665
  var _this = this;
1667
- if (!this.control || !this.control.dirty)
1666
+ if (!this.control || !this.control.dirty) {
1668
1667
  return [];
1669
- return Object.keys(this.control.errors || {}).map(function (error) { return _this.errorMessages[error]; });
1668
+ }
1669
+ return Object.keys(this.control.errors || {}).map(function (error) { var _a; return (_a = _this.errorMessages) === null || _a === void 0 ? void 0 : _a[error]; });
1670
1670
  };
1671
1671
  var ControlErrorsComponent_1;
1672
1672
  ControlErrorsComponent.nextId = 0;
@@ -2806,6 +2806,9 @@ var BooleanSwitchField = /** @class */ (function (_super) {
2806
2806
  function BooleanSwitchField(config) {
2807
2807
  var _this = _super.call(this, config) || this;
2808
2808
  _this.onChange = config.onChange;
2809
+ if (config.optionsLabel) {
2810
+ _this.optionsLabel = new BooleanOptionsLabel(config.optionsLabel);
2811
+ }
2809
2812
  _this.representedBy = "switch";
2810
2813
  return _this;
2811
2814
  }
@@ -6992,7 +6995,7 @@ var BooleanSwitchFieldComponent = /** @class */ (function () {
6992
6995
  ], BooleanSwitchFieldComponent.prototype, "formControl", void 0);
6993
6996
  BooleanSwitchFieldComponent = __decorate([
6994
6997
  Component({
6995
- template: "<div class=\"ui-g\">\n <p-inputSwitch\n [id]=\"(field.id || field.name)\"\n [name]=\"field.name\"\n [formControl]=\"formControl\"\n [sTooltip]=\"field.tooltip\"\n tooltipPosition=\"top\"\n (onChange)=\"field.onChange ? field.onChange($event) : null\">\n </p-inputSwitch>\n</div>"
6998
+ template: "<div class=\"ui-grid ui-grid-responsive ui-grid-pad ui-fluid\">\n <div class=\"ui-grid-row\">\n <div class=\"i-grid-col-1\">\n <p-inputSwitch [id]=\"(field.id || field.name)\" [name]=\"field.name\" [formControl]=\"formControl\"\n [sTooltip]=\"field.tooltip\" tooltipPosition=\"top\"\n (onChange)=\"field.onChange ? field.onChange($event) : null\">\n </p-inputSwitch>\n </div>\n <div class=\"i-grid-col-1\" *ngIf=\"field.optionsLabel\">\n <ng-container *ngIf=\"formControl.value; else caseFalse\">\n <span>{{ field.optionsLabel.true }}</span>\n </ng-container>\n <ng-template #caseFalse>\n <span>{{ field.optionsLabel.false }}</span>\n </ng-template>\n </div>\n </div>\n</div>"
6996
6999
  })
6997
7000
  ], BooleanSwitchFieldComponent);
6998
7001
  return BooleanSwitchFieldComponent;
@@ -9542,6 +9545,125 @@ var SidebarModule = /** @class */ (function () {
9542
9545
  return SidebarModule;
9543
9546
  }());
9544
9547
 
9548
+ var SMALL_DEVICE_BREAKPOINT = 420;
9549
+ var SlideBarComponent = /** @class */ (function () {
9550
+ function SlideBarComponent() {
9551
+ this.openIcon = "fas fa-chevron-right";
9552
+ this.closeIcon = "fas fa-chevron-left";
9553
+ this.cache = false;
9554
+ this.barOpened = new EventEmitter();
9555
+ this.barClosed = new EventEmitter();
9556
+ this.slideHeight = 0;
9557
+ this.isOpen = false;
9558
+ this.isSlideOver = false;
9559
+ this.isAnimating = false;
9560
+ this.isContentAnimationDisabled = true;
9561
+ }
9562
+ SlideBarComponent.prototype.onResize = function () {
9563
+ this._checkOverBehavior();
9564
+ };
9565
+ SlideBarComponent.prototype.ngOnInit = function () {
9566
+ this._checkOverBehavior();
9567
+ };
9568
+ SlideBarComponent.prototype.ngAfterViewChecked = function () {
9569
+ var _this = this;
9570
+ // to executed at a safe time prior to control returning to the browser's event loop
9571
+ queueMicrotask(function () {
9572
+ _this._calculateSlideHeight();
9573
+ _this.isContentAnimationDisabled = false;
9574
+ });
9575
+ };
9576
+ SlideBarComponent.prototype.onClickButton = function () {
9577
+ if (this.isAnimating) {
9578
+ return;
9579
+ }
9580
+ this.isOpen = !this.isOpen;
9581
+ if (this.isOpen) {
9582
+ this.barOpened.emit();
9583
+ }
9584
+ else {
9585
+ this.barClosed.emit();
9586
+ }
9587
+ };
9588
+ SlideBarComponent.prototype.onContentAnimationStart = function () {
9589
+ this.isAnimating = true;
9590
+ };
9591
+ SlideBarComponent.prototype.onContentAnimationDone = function () {
9592
+ this.isAnimating = false;
9593
+ };
9594
+ SlideBarComponent.prototype._checkOverBehavior = function () {
9595
+ this.isSlideOver = window.innerWidth <= SMALL_DEVICE_BREAKPOINT;
9596
+ };
9597
+ SlideBarComponent.prototype._calculateSlideHeight = function () {
9598
+ this.slideHeight = this.sideContent.nativeElement.clientHeight;
9599
+ };
9600
+ __decorate([
9601
+ Input()
9602
+ ], SlideBarComponent.prototype, "openIcon", void 0);
9603
+ __decorate([
9604
+ Input()
9605
+ ], SlideBarComponent.prototype, "closeIcon", void 0);
9606
+ __decorate([
9607
+ Input()
9608
+ ], SlideBarComponent.prototype, "cache", void 0);
9609
+ __decorate([
9610
+ Output()
9611
+ ], SlideBarComponent.prototype, "barOpened", void 0);
9612
+ __decorate([
9613
+ Output()
9614
+ ], SlideBarComponent.prototype, "barClosed", void 0);
9615
+ __decorate([
9616
+ ViewChild("mainContainer")
9617
+ ], SlideBarComponent.prototype, "mainContainer", void 0);
9618
+ __decorate([
9619
+ ViewChild("sideContent")
9620
+ ], SlideBarComponent.prototype, "sideContent", void 0);
9621
+ __decorate([
9622
+ HostListener("window:resize")
9623
+ ], SlideBarComponent.prototype, "onResize", null);
9624
+ SlideBarComponent = __decorate([
9625
+ Component({
9626
+ selector: "s-slide-bar",
9627
+ 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>",
9628
+ animations: [
9629
+ trigger("cachelessAnimation", [
9630
+ transition(":enter", [
9631
+ style$7({ width: "0" }),
9632
+ animate("200ms linear", style$7({ width: "*" })),
9633
+ ]),
9634
+ transition(":leave", [
9635
+ style$7({ width: "*" }),
9636
+ animate("200ms linear", style$7({ width: "0" })),
9637
+ ]),
9638
+ ]),
9639
+ trigger("cacheAnimation", [
9640
+ state("true", style$7({ width: "*", padding: '0 16px' })),
9641
+ state("false", style$7({ width: '0px', padding: '0' })),
9642
+ transition("* => *", animate("200ms")),
9643
+ ]),
9644
+ ],
9645
+ 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}"]
9646
+ })
9647
+ ], SlideBarComponent);
9648
+ return SlideBarComponent;
9649
+ }());
9650
+
9651
+ var SlideBarModule = /** @class */ (function () {
9652
+ function SlideBarModule() {
9653
+ }
9654
+ SlideBarModule = __decorate([
9655
+ NgModule({
9656
+ imports: [
9657
+ CommonModule,
9658
+ BrowserAnimationsModule,
9659
+ ],
9660
+ declarations: [SlideBarComponent],
9661
+ exports: [SlideBarComponent],
9662
+ })
9663
+ ], SlideBarModule);
9664
+ return SlideBarModule;
9665
+ }());
9666
+
9545
9667
  var StatsCardComponent = /** @class */ (function () {
9546
9668
  function StatsCardComponent() {
9547
9669
  this.id = "s-stats-card-" + StatsCardComponent_1.nextId++;
@@ -12647,5 +12769,5 @@ var fallback = {
12647
12769
  * Generated bundle index. Do not edit.
12648
12770
  */
12649
12771
 
12650
- 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, 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 };
12772
+ 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 };
12651
12773
  //# sourceMappingURL=seniorsistemas-angular-components.js.map