@seniorsistemas/angular-components 14.14.3 → 14.15.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 (27) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +120 -5
  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 +4 -1
  6. package/components/timeline/index.d.ts +2 -0
  7. package/components/timeline/timeline.component.d.ts +18 -0
  8. package/components/timeline/timeline.module.d.ts +2 -0
  9. package/esm2015/components/locale/options/number.js +2 -2
  10. package/esm2015/components/table/frozen-position/frozen-position.directive.js +24 -5
  11. package/esm2015/components/timeline/index.js +3 -0
  12. package/esm2015/components/timeline/timeline.component.js +79 -0
  13. package/esm2015/components/timeline/timeline.module.js +16 -0
  14. package/esm2015/public-api.js +2 -1
  15. package/esm5/components/locale/options/number.js +2 -3
  16. package/esm5/components/table/frozen-position/frozen-position.directive.js +25 -5
  17. package/esm5/components/timeline/index.js +3 -0
  18. package/esm5/components/timeline/timeline.component.js +85 -0
  19. package/esm5/components/timeline/timeline.module.js +19 -0
  20. package/esm5/public-api.js +2 -1
  21. package/fesm2015/seniorsistemas-angular-components.js +109 -5
  22. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  23. package/fesm5/seniorsistemas-angular-components.js +119 -6
  24. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  25. package/package.json +1 -1
  26. package/public-api.d.ts +1 -0
  27. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -1104,12 +1104,11 @@ var CalendarLocaleOptions = /** @class */ (function () {
1104
1104
 
1105
1105
  var NumberLocaleOptions = /** @class */ (function () {
1106
1106
  function NumberLocaleOptions(config) {
1107
- var _this = this;
1108
1107
  if (config === void 0) { config = {}; }
1109
1108
  this.thousandsSeparator = ".";
1110
1109
  this.decimalSeparator = ",";
1111
1110
  this.currencySymbol = "R$";
1112
- Object.keys(config).forEach(function (key) { return (_this[key] = config[key] || _this[key]); });
1111
+ Object.assign(this, config);
1113
1112
  }
1114
1113
  return NumberLocaleOptions;
1115
1114
  }());
@@ -3773,23 +3772,25 @@ var TableFrozenPositionDirective = /** @class */ (function () {
3773
3772
  this.el = el;
3774
3773
  this.host = host;
3775
3774
  this.sTableFrozenPosition = "left";
3775
+ this.onColumnsChanged = new EventEmitter();
3776
3776
  this.host.onColResize.subscribe(function () {
3777
3777
  _this.handleColResize();
3778
3778
  });
3779
3779
  window.addEventListener("resize", this.handleWindowResize.bind(this));
3780
3780
  var componentId = new Date().getTime();
3781
+ var htmlHead = document.getElementsByTagName("head")[0];
3781
3782
  this.resetRowHeightClassName = "resetTableRowsHeight_" + componentId;
3782
3783
  var styleReset = document.createElement("style");
3783
3784
  styleReset.innerHTML = "." + this.resetRowHeightClassName + " tbody > tr, ." + this.resetRowHeightClassName + " thead > tr { height: auto; }";
3784
- document.getElementsByTagName("head")[0].appendChild(styleReset);
3785
+ htmlHead.appendChild(styleReset);
3785
3786
  this.fixBodyRowClassName = "fixTableBodyRowsHeight_" + componentId;
3786
3787
  this.styleFixBodyRowHeight = document.createElement("style");
3787
3788
  this.styleFixBodyRowHeight.innerHTML = "." + this.fixBodyRowClassName + " tbody > tr { height: auto; }";
3788
- document.getElementsByTagName("head")[0].appendChild(this.styleFixBodyRowHeight);
3789
+ htmlHead.appendChild(this.styleFixBodyRowHeight);
3789
3790
  this.fixHeadRowClassName = "fixTableHeadRowsHeight_" + componentId;
3790
3791
  this.styleFixHeadRowHeight = document.createElement("style");
3791
3792
  this.styleFixHeadRowHeight.innerHTML = "." + this.fixHeadRowClassName + " thead > tr { height: auto; }";
3792
- document.getElementsByTagName("head")[0].appendChild(this.styleFixHeadRowHeight);
3793
+ htmlHead.appendChild(this.styleFixHeadRowHeight);
3793
3794
  }
3794
3795
  Object.defineProperty(TableFrozenPositionDirective.prototype, "sTableFrozenValue", {
3795
3796
  set: function (_) {
@@ -3805,9 +3806,27 @@ var TableFrozenPositionDirective = /** @class */ (function () {
3805
3806
  if (this.sTableFrozenPosition === "left")
3806
3807
  return;
3807
3808
  this.applyStylesForTable();
3809
+ this.setUpColumnMonitoring();
3808
3810
  };
3809
3811
  TableFrozenPositionDirective.prototype.ngOnDestroy = function () {
3810
3812
  window.removeEventListener("resize", this.handleWindowResize.bind(this));
3813
+ if (this.tableHeadObservable) {
3814
+ this.tableHeadObservable.disconnect();
3815
+ }
3816
+ };
3817
+ TableFrozenPositionDirective.prototype.setUpColumnMonitoring = function () {
3818
+ var _this = this;
3819
+ this.tableHeadObservable = new MutationObserver(function () {
3820
+ _this.synchronizeRowHeight();
3821
+ _this.onColumnsChanged.emit(null);
3822
+ });
3823
+ var tableHeads = __spread(this.el.nativeElement.getElementsByTagName("thead"));
3824
+ tableHeads.forEach(function (tableHead) {
3825
+ _this.tableHeadObservable.observe(tableHead, {
3826
+ subtree: true,
3827
+ childList: true
3828
+ });
3829
+ });
3811
3830
  };
3812
3831
  TableFrozenPositionDirective.prototype.applyStylesForTable = function () {
3813
3832
  var scrollWrapper = this.el.nativeElement.querySelector(".ui-table-scrollable-wrapper");
@@ -7168,6 +7187,100 @@ var StepsModule = /** @class */ (function () {
7168
7187
  return StepsModule;
7169
7188
  }());
7170
7189
 
7190
+ var TimelineComponent = /** @class */ (function () {
7191
+ function TimelineComponent() {
7192
+ this.id = "s-timeline-" + TimelineComponent_1.nextId++;
7193
+ this.activeIndex = 0;
7194
+ }
7195
+ TimelineComponent_1 = TimelineComponent;
7196
+ TimelineComponent.prototype.barAnimation = function (index, activeIndex) {
7197
+ var visited = index < activeIndex;
7198
+ var activated = index === activeIndex;
7199
+ return visited || activated;
7200
+ };
7201
+ TimelineComponent.prototype.afterBarAnimation = function (index, activeIndex) {
7202
+ var visited = index < activeIndex;
7203
+ var activated = index === activeIndex - 1;
7204
+ return visited || activated;
7205
+ };
7206
+ Object.defineProperty(TimelineComponent.prototype, "visibledStep", {
7207
+ get: function () {
7208
+ return this.steps.filter(function (step) { return !step.hidden; });
7209
+ },
7210
+ enumerable: true,
7211
+ configurable: true
7212
+ });
7213
+ var TimelineComponent_1;
7214
+ TimelineComponent.nextId = 0;
7215
+ __decorate([
7216
+ Input()
7217
+ ], TimelineComponent.prototype, "id", void 0);
7218
+ __decorate([
7219
+ Input()
7220
+ ], TimelineComponent.prototype, "steps", void 0);
7221
+ __decorate([
7222
+ Input()
7223
+ ], TimelineComponent.prototype, "activeIndex", void 0);
7224
+ TimelineComponent = TimelineComponent_1 = __decorate([
7225
+ Component({
7226
+ selector: "s-timeline",
7227
+ template: "<div [id]=\"id\" class=\"s-timeline-container\">\n <ng-container *ngFor=\"let step of visibledStep; let i = index; let isFirst = first; let isLast = last\">\n <div *ngIf=\"!isFirst\" class=\"s-timeline-progress-bar\"\n [@activeDesative]=\"barAnimation(i, activeIndex) ? 'active': 'desactive'\" [ngClass]=\"{\n 's-timeline-step-completed': (i < activeIndex),\n 's-timeline-step-active': (i === activeIndex)\n }\"></div>\n <div [id]=\"id + '-step-' + (step.id || i)\" class=\"s-timeline-step-header\" role=\"tab\"\n tabindex=\"0\" [attr.aria-label]=\"step.ariaLabel || null\" [attr.aria-controls]=\"step.ariaControls\"\n [attr.aria-labelledby]=\"!step.ariaLabel ? 'step-label-' + i : null\" [attr.aria-posinset]=\"i + 1\"\n [attr.aria-setsize]=\"visibledStep.length\" [attr.aria-selected]=\"activeIndex == i\" [ngClass]=\"{\n 's-timeline-step-completed': (i < activeIndex),\n 's-timeline-step-active': (i === activeIndex)\n }\">\n <div *ngIf=\"!isFirst\"\n [@beforeActiveDesative]=\"barAnimation(i, activeIndex) ? 'active': 'desactive'\"\n class=\"s-timeline-progress-bar-before\" [ngClass]=\"{\n 's-timeline-step-completed': (i < activeIndex),\n 's-timeline-step-active': (i === activeIndex)\n }\"></div>\n <div *ngIf=\"!isLast\"\n [@afterActiveDesative]=\"afterBarAnimation(i, activeIndex) ? 'active': 'desactive'\"\n class=\"s-timeline-progress-bar-after\" [ngClass]=\"{\n 's-timeline-step-completed': ((i + 1) < activeIndex),\n 's-timeline-step-active': (i === (activeIndex - 1))\n }\"></div>\n <div class=\"s-timeline-index\">\n <div class=\"s-timeline-index-content\">\n <span class=\"fas\" [ngClass]=\"step.stepIcon\" aria-hidden=\"true\" [attr.aria-label]=\"i + 1\"></span>\n </div>\n </div>\n <div [id]=\"'step-label-' + i\" class=\"s-timeline-label\">\n <span>{{step.label}}</span>\n </div>\n <div [id]=\"'step-help-label-' + i\" class=\"s-timeline-help-label\">\n <span>{{step.helpLabel}}</span>\n </div>\n </div>\n </ng-container>\n</div>\n",
7228
+ host: {
7229
+ "aria-orientation": "horizontal",
7230
+ role: "tablist",
7231
+ "tab-index": "0",
7232
+ },
7233
+ animations: [
7234
+ trigger("beforeActiveDesative", [
7235
+ state("active", style$7({
7236
+ "background-position": "left bottom",
7237
+ })),
7238
+ state("desactive", style$7({
7239
+ "background-position": "right bottom",
7240
+ })),
7241
+ transition("active => desactive", [animate("50ms 100ms linear")]),
7242
+ transition("desactive => active", [animate("50ms 250ms linear")]),
7243
+ ]),
7244
+ trigger("activeDesative", [
7245
+ state("active", style$7({
7246
+ "background-position": "left bottom",
7247
+ })),
7248
+ state("desactive", style$7({
7249
+ "background-position": "right bottom",
7250
+ })),
7251
+ transition("active => desactive", [animate("100ms 150ms linear")]),
7252
+ transition("desactive => active", [animate("100ms 150ms linear")]),
7253
+ ]),
7254
+ trigger("afterActiveDesative", [
7255
+ state("active", style$7({
7256
+ "background-position": "left bottom",
7257
+ })),
7258
+ state("desactive", style$7({
7259
+ "background-position": "right bottom",
7260
+ })),
7261
+ transition("active => desactive", [animate("50ms 250ms linear")]),
7262
+ transition("desactive => active", [animate("50ms 100ms linear")]),
7263
+ ]),
7264
+ ],
7265
+ styles: ["@keyframes scale-up-center{0%{transform:scale(.5)}100%{transform:scale(1)}}.s-timeline-container{display:-ms-flexbox;display:flex;white-space:nowrap;-ms-flex-align:start;align-items:flex-start;overflow:hidden;padding:15px 10px}.s-timeline-step-header{box-sizing:border-box;-ms-flex-direction:column;flex-direction:column;height:auto;position:relative;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:72px;max-height:98px;min-width:60px;width:100%}.s-timeline-step-header .s-timeline-help-label,.s-timeline-step-header .s-timeline-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-break:break-all;color:#999;font-size:14px;font-weight:400;padding-top:5px}.s-timeline-step-header .s-timeline-progress-bar-before{margin:0;position:absolute;top:20px;-ms-flex:auto;flex:auto;height:3px;overflow:hidden;width:calc(50% - 20px);background-color:#697882;background-image:linear-gradient(to right,#0c9348 50%,#697882 50%);background-position:right bottom;background-size:300% 100%;left:-10px}.s-timeline-step-header .s-timeline-progress-bar-before.s-timeline-step-active,.s-timeline-step-header .s-timeline-progress-bar-before.s-timeline-step-completed{background-position:left bottom}.s-timeline-step-header .s-timeline-progress-bar-after{margin:0;position:absolute;top:20px;-ms-flex:auto;flex:auto;height:3px;overflow:hidden;width:calc(50% - 20px);background-color:#697882;background-image:linear-gradient(to right,#0c9348 50%,#697882 50%);background-position:right bottom;background-size:300% 100%;right:-10px}.s-timeline-step-header .s-timeline-progress-bar-after.s-timeline-step-active,.s-timeline-step-header .s-timeline-progress-bar-after.s-timeline-step-completed{background-position:left bottom}.s-timeline-progress-bar{margin:0;position:relative;top:20px;-ms-flex:auto;flex:auto;height:3px;overflow:hidden;width:100%;background-color:#697882;background-image:linear-gradient(to right,#0c9348 50%,#697882 50%);background-position:right bottom;background-size:300% 100%}.s-timeline-index{background-color:#697882;border:3px solid #697882;border-radius:50%;color:#fff;display:inline-block;font-weight:700;position:relative;transition:background-color .2s ease-out;height:46px;width:46px;-ms-flex:none;flex:none}.s-timeline-index .s-timeline-index-content{line-height:18px;font-size:18px;padding-top:8.5px;text-align:center;position:relative}.s-timeline-step-active .s-timeline-index,.s-timeline-step-completed .s-timeline-index{border-color:#0c9348;animation:.1s ease-out alternate scale-up-center;background-color:#0c9348}.s-timeline-step-active.s-timeline-progress-bar,.s-timeline-step-completed.s-timeline-progress-bar{background-position:left bottom}.s-timeline-step-active .s-timeline-label,.s-timeline-step-completed .s-timeline-label{color:#333;font-weight:700}@media (max-width:767px){.s-timeline-help-label,.s-timeline-label{display:none}}"]
7266
+ })
7267
+ ], TimelineComponent);
7268
+ return TimelineComponent;
7269
+ }());
7270
+
7271
+ var TimelineModule = /** @class */ (function () {
7272
+ function TimelineModule() {
7273
+ }
7274
+ TimelineModule = __decorate([
7275
+ NgModule({
7276
+ imports: [CommonModule, TooltipModule],
7277
+ declarations: [TimelineComponent],
7278
+ exports: [TimelineComponent],
7279
+ })
7280
+ ], TimelineModule);
7281
+ return TimelineModule;
7282
+ }());
7283
+
7171
7284
  var TileComponent = /** @class */ (function () {
7172
7285
  function TileComponent() {
7173
7286
  this.id = "s-tile-" + TileComponent_1.nextId++;
@@ -9037,5 +9150,5 @@ var CodeEditorModule = /** @class */ (function () {
9037
9150
  * Generated bundle index. Do not edit.
9038
9151
  */
9039
9152
 
9040
- export { AngularComponentsModule, AutocompleteField, BaseFieldComponent, 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, DecimalField as ɵba, StructureModule as ɵbb, HeaderComponent as ɵbc, FooterComponent as ɵbd, NumberLocaleOptions as ɵbe, ThumbnailService as ɵbf, InfiniteScrollModule as ɵbg, InfiniteScrollDirective as ɵbh, CustomTranslationsModule as ɵbi, CodeEditorComponent as ɵbj, CoreFacade as ɵbk, CodeMirror6Core as ɵbl, LocalizedBignumberImpurePipe as ɵc, EmptyStateGoBackComponent as ɵd, TableColumnsComponent as ɵe, TablePagingComponent as ɵf, InfoSignComponent as ɵg, AutocompleteFieldComponent as ɵh, BooleanFieldComponent as ɵi, CalendarFieldComponent as ɵj, ChipsFieldComponent as ɵk, CurrencyFieldComponent as ɵl, DynamicFieldComponent as ɵm, DynamicFormDirective as ɵn, FieldsetComponent as ɵo, FileUploadComponent$1 as ɵp, LookupFieldComponent as ɵq, NumberFieldComponent as ɵr, BignumberFieldComponent as ɵs, RadioButtonComponent as ɵt, RowComponent as ɵu, SectionComponent as ɵv, SelectFieldComponent as ɵw, TextAreaFieldComponent as ɵx, TextFieldComponent as ɵy };
9153
+ export { AngularComponentsModule, AutocompleteField, BaseFieldComponent, 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, TimelineComponent, TimelineModule, TokenListComponent, TokenListModule, ValidateErrors, LocalizedCurrencyImpurePipe as ɵa, LocalizedBignumberPipe as ɵb, DecimalField as ɵba, StructureModule as ɵbb, HeaderComponent as ɵbc, FooterComponent as ɵbd, NumberLocaleOptions as ɵbe, ThumbnailService as ɵbf, InfiniteScrollModule as ɵbg, InfiniteScrollDirective as ɵbh, CustomTranslationsModule as ɵbi, CodeEditorComponent as ɵbj, CoreFacade as ɵbk, CodeMirror6Core as ɵbl, LocalizedBignumberImpurePipe as ɵc, EmptyStateGoBackComponent as ɵd, TableColumnsComponent as ɵe, TablePagingComponent as ɵf, InfoSignComponent as ɵg, AutocompleteFieldComponent as ɵh, BooleanFieldComponent as ɵi, CalendarFieldComponent as ɵj, ChipsFieldComponent as ɵk, CurrencyFieldComponent as ɵl, DynamicFieldComponent as ɵm, DynamicFormDirective as ɵn, FieldsetComponent as ɵo, FileUploadComponent$1 as ɵp, LookupFieldComponent as ɵq, NumberFieldComponent as ɵr, BignumberFieldComponent as ɵs, RadioButtonComponent as ɵt, RowComponent as ɵu, SectionComponent as ɵv, SelectFieldComponent as ɵw, TextAreaFieldComponent as ɵx, TextFieldComponent as ɵy };
9041
9154
  //# sourceMappingURL=seniorsistemas-angular-components.js.map