@seniorsistemas/angular-components 16.12.3 → 16.13.0

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 +133 -32
  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/rating-scale/index.d.ts +3 -0
  7. package/components/rating-scale/models/index.d.ts +1 -0
  8. package/components/rating-scale/models/rating-scale-node.d.ts +5 -0
  9. package/components/rating-scale/rating-scale.component.d.ts +15 -0
  10. package/components/rating-scale/rating-scale.module.d.ts +2 -0
  11. package/esm2015/components/custom-fields/custom-fields.component.js +54 -32
  12. package/esm2015/components/rating-scale/index.js +3 -0
  13. package/esm2015/components/rating-scale/models/index.js +1 -0
  14. package/esm2015/components/rating-scale/models/rating-scale-node.js +1 -0
  15. package/esm2015/components/rating-scale/rating-scale.component.js +52 -0
  16. package/esm2015/components/rating-scale/rating-scale.module.js +19 -0
  17. package/esm2015/public-api.js +2 -1
  18. package/esm5/components/custom-fields/custom-fields.component.js +67 -34
  19. package/esm5/components/rating-scale/index.js +3 -0
  20. package/esm5/components/rating-scale/models/index.js +1 -0
  21. package/esm5/components/rating-scale/models/rating-scale-node.js +1 -0
  22. package/esm5/components/rating-scale/rating-scale.component.js +54 -0
  23. package/esm5/components/rating-scale/rating-scale.module.js +22 -0
  24. package/esm5/public-api.js +2 -1
  25. package/fesm2015/seniorsistemas-angular-components.js +115 -32
  26. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  27. package/fesm5/seniorsistemas-angular-components.js +132 -33
  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
@@ -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",
@@ -12360,6 +12393,72 @@ var ProgressBarColors;
12360
12393
  ProgressBarColors["Yellow"] = "yellow";
12361
12394
  })(ProgressBarColors || (ProgressBarColors = {}));
12362
12395
 
12396
+ var RatingScaleComponent = /** @class */ (function () {
12397
+ function RatingScaleComponent() {
12398
+ this.disabled = false;
12399
+ }
12400
+ RatingScaleComponent_1 = RatingScaleComponent;
12401
+ RatingScaleComponent.prototype.writeValue = function (value) {
12402
+ if (!this.disabled) {
12403
+ this.value = value;
12404
+ }
12405
+ };
12406
+ RatingScaleComponent.prototype.registerOnChange = function (onChange) {
12407
+ this._onChange = onChange;
12408
+ };
12409
+ RatingScaleComponent.prototype.registerOnTouched = function (onTouched) {
12410
+ this._onTouched = onTouched;
12411
+ };
12412
+ RatingScaleComponent.prototype.onSelect = function (rating) {
12413
+ this.value = rating;
12414
+ if (this._onChange) {
12415
+ this._onChange(this.value);
12416
+ }
12417
+ };
12418
+ var RatingScaleComponent_1;
12419
+ __decorate([
12420
+ Input()
12421
+ ], RatingScaleComponent.prototype, "nodes", void 0);
12422
+ __decorate([
12423
+ Input()
12424
+ ], RatingScaleComponent.prototype, "startLabel", void 0);
12425
+ __decorate([
12426
+ Input()
12427
+ ], RatingScaleComponent.prototype, "endLabel", void 0);
12428
+ __decorate([
12429
+ Input()
12430
+ ], RatingScaleComponent.prototype, "disabled", void 0);
12431
+ RatingScaleComponent = RatingScaleComponent_1 = __decorate([
12432
+ Component({
12433
+ selector: "s-rating-scale",
12434
+ template: "<div\n class=\"rating-scale\"\n [ngClass]=\"{ 'rating-scale--disabled': disabled }\">\n <div class=\"nodes\">\n <button\n *ngFor=\"let node of nodes; index as i\"\n class=\"node\"\n [ngClass]=\"{ 'node--selected': value?.id === node.id && !disabled }\"\n tabindex=\"0\"\n (click)=\"onSelect(node)\"> \n <span\n *ngIf=\"node.icon\"\n class=\"icon fas\"\n [ngClass]=\"node.icon\">\n </span>\n <span\n *ngIf=\"node.title\"\n class=\"label\">\n {{ node.title }}\n </span>\n </button>\n </div>\n <div class=\"labels\">\n <span>{{ startLabel }}</span>\n <span>{{ endLabel }}</span>\n </div>\n</div>",
12435
+ providers: [{
12436
+ provide: NG_VALUE_ACCESSOR,
12437
+ useExisting: forwardRef(function () { return RatingScaleComponent_1; }),
12438
+ multi: true,
12439
+ }],
12440
+ styles: [".rating-scale{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.rating-scale .nodes{display:-ms-flexbox;display:flex}.rating-scale .nodes .node{-ms-flex-align:center;align-items:center;background-color:#fff;border-radius:6px;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-pack:center;justify-content:center;margin:0 2px;padding:8px;border:1px solid #7892a1}.rating-scale .nodes .node .icon{color:#6e7280;font-size:1rem}.rating-scale .nodes .node .label{color:#212533;font-size:.875rem;font-weight:400;line-height:150%}.rating-scale .nodes .node .icon,.rating-scale .nodes .node .label{margin:6px}.rating-scale .nodes .node--selected{background-color:#d5e8ec;border-color:#428bca;color:#428bca}.rating-scale .nodes .node:first-child{margin-left:0}.rating-scale .nodes .node:last-child{margin-right:0}.rating-scale .labels{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:12px 0}.rating-scale .labels span{color:#080808;font-family:\"Open Sans\" sans-serif;font-size:.875rem;font-weight:400;line-height:150%}.rating-scale--disabled{opacity:.5}.rating-scale:not(.rating-scale--disabled) .node{cursor:pointer}.rating-scale:not(.rating-scale--disabled) .node:hover{background-color:#dedce5}.rating-scale:not(.rating-scale--disabled) .node:focus{border-width:2px;outline:0}"]
12441
+ })
12442
+ ], RatingScaleComponent);
12443
+ return RatingScaleComponent;
12444
+ }());
12445
+
12446
+ var RatingScaleModule = /** @class */ (function () {
12447
+ function RatingScaleModule() {
12448
+ }
12449
+ RatingScaleModule = __decorate([
12450
+ NgModule({
12451
+ imports: [
12452
+ CommonModule,
12453
+ ReactiveFormsModule,
12454
+ ],
12455
+ declarations: [RatingScaleComponent],
12456
+ exports: [RatingScaleComponent],
12457
+ })
12458
+ ], RatingScaleModule);
12459
+ return RatingScaleModule;
12460
+ }());
12461
+
12363
12462
  var SplitButtonType;
12364
12463
  (function (SplitButtonType) {
12365
12464
  SplitButtonType["Primary"] = "primary";
@@ -12742,5 +12841,5 @@ var fallback = {
12742
12841
  * Generated bundle index. Do not edit.
12743
12842
  */
12744
12843
 
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, 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 };
12844
+ 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, RatingScaleComponent, RatingScaleModule, 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
12845
  //# sourceMappingURL=seniorsistemas-angular-components.js.map