@seniorsistemas/angular-components 14.15.1 → 14.16.2

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 (37) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +68 -21
  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/components/fields/boolean/boolean-field.component.d.ts +1 -0
  6. package/components/dynamic-form/components/fields/boolean/boolean-switch-field.component.d.ts +7 -0
  7. package/components/dynamic-form/configurations/fields/boolean-field.d.ts +2 -0
  8. package/components/dynamic-form/configurations/fields/boolean-switch-field.d.ts +8 -0
  9. package/components/dynamic-form/configurations/fields/field.d.ts +2 -0
  10. package/components/dynamic-form/configurations/form-field.d.ts +1 -0
  11. package/esm2015/components/dynamic-form/components/fields/boolean/boolean-field.component.js +5 -2
  12. package/esm2015/components/dynamic-form/components/fields/boolean/boolean-switch-field.component.js +17 -0
  13. package/esm2015/components/dynamic-form/configurations/dynamic-config.js +6 -2
  14. package/esm2015/components/dynamic-form/configurations/fields/boolean-field.js +3 -1
  15. package/esm2015/components/dynamic-form/configurations/fields/boolean-switch-field.js +9 -0
  16. package/esm2015/components/dynamic-form/configurations/fields/field.js +2 -1
  17. package/esm2015/components/dynamic-form/configurations/form-field.js +5 -1
  18. package/esm2015/components/dynamic-form/dynamic-form.js +5 -1
  19. package/esm2015/components/dynamic-form/dynamic-form.module.js +9 -4
  20. package/esm2015/seniorsistemas-angular-components.js +14 -13
  21. package/esm5/components/dynamic-form/components/fields/boolean/boolean-field.component.js +5 -2
  22. package/esm5/components/dynamic-form/components/fields/boolean/boolean-switch-field.component.js +20 -0
  23. package/esm5/components/dynamic-form/configurations/dynamic-config.js +6 -2
  24. package/esm5/components/dynamic-form/configurations/fields/boolean-field.js +3 -1
  25. package/esm5/components/dynamic-form/configurations/fields/boolean-switch-field.js +14 -0
  26. package/esm5/components/dynamic-form/configurations/fields/field.js +2 -1
  27. package/esm5/components/dynamic-form/configurations/form-field.js +5 -1
  28. package/esm5/components/dynamic-form/dynamic-form.js +5 -1
  29. package/esm5/components/dynamic-form/dynamic-form.module.js +9 -4
  30. package/esm5/seniorsistemas-angular-components.js +14 -13
  31. package/fesm2015/seniorsistemas-angular-components.js +47 -6
  32. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  33. package/fesm5/seniorsistemas-angular-components.js +53 -6
  34. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  35. package/package.json +2 -2
  36. package/seniorsistemas-angular-components.d.ts +13 -12
  37. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -32,6 +32,7 @@ import { InputTextModule } from 'primeng/inputtext';
32
32
  import { InputTextareaModule } from 'primeng/inputtextarea';
33
33
  import { KeyFilterModule } from 'primeng/keyfilter';
34
34
  import { MultiSelectModule } from 'primeng/multiselect';
35
+ import { InputSwitchModule } from 'primeng/inputswitch';
35
36
  import { PanelModule } from 'primeng/panel';
36
37
  import { RadioButtonModule } from 'primeng/radiobutton';
37
38
  import { ProgressBarModule } from 'primeng/progressbar';
@@ -1054,6 +1055,7 @@ var Field = /** @class */ (function () {
1054
1055
  this.errorMessages = config.errorMessages;
1055
1056
  this.gridClass = Object.keys(this.size).map(function (key) { return "ui-" + key + "-" + _this.size[key]; });
1056
1057
  this.defaultValue = config.defaultValue;
1058
+ this.representedBy = config.representedBy;
1057
1059
  }
1058
1060
  return Field;
1059
1061
  }());
@@ -1509,6 +1511,7 @@ var BooleanOptionsLabel = /** @class */ (function () {
1509
1511
  this.true = config.true;
1510
1512
  this.false = config.false;
1511
1513
  this.empty = config.empty;
1514
+ this.clear = config.clear;
1512
1515
  }
1513
1516
  return BooleanOptionsLabel;
1514
1517
  }());
@@ -1518,6 +1521,7 @@ var BooleanField = /** @class */ (function (_super) {
1518
1521
  var _this = _super.call(this, config) || this;
1519
1522
  _this.verticalAlignment = config.verticalAlignment;
1520
1523
  _this.optionsLabel = new BooleanOptionsLabel(config.optionsLabel);
1524
+ _this.representedBy = "radio";
1521
1525
  _this.onBlur = config.onBlur;
1522
1526
  _this.onFocus = config.onFocus;
1523
1527
  _this.onClick = config.onClick;
@@ -1526,6 +1530,17 @@ var BooleanField = /** @class */ (function (_super) {
1526
1530
  return BooleanField;
1527
1531
  }(Field));
1528
1532
 
1533
+ var BooleanSwitchField = /** @class */ (function (_super) {
1534
+ __extends(BooleanSwitchField, _super);
1535
+ function BooleanSwitchField(config) {
1536
+ var _this = _super.call(this, config) || this;
1537
+ _this.onChange = config.onChange;
1538
+ _this.representedBy = "switch";
1539
+ return _this;
1540
+ }
1541
+ return BooleanSwitchField;
1542
+ }(Field));
1543
+
1529
1544
  var CalendarField = /** @class */ (function (_super) {
1530
1545
  __extends(CalendarField, _super);
1531
1546
  function CalendarField(config) {
@@ -1909,6 +1924,9 @@ var FormField = /** @class */ (function () {
1909
1924
  case FieldType.Text:
1910
1925
  return new TextAreaField(config);
1911
1926
  case FieldType.Boolean:
1927
+ if (config.representedBy === "switch") {
1928
+ return new BooleanSwitchField(config);
1929
+ }
1912
1930
  return new BooleanField(config);
1913
1931
  case FieldType.Date:
1914
1932
  case FieldType.DateTime:
@@ -2479,7 +2497,7 @@ var Section = /** @class */ (function (_super) {
2479
2497
 
2480
2498
  var DynamicConfig = /** @class */ (function () {
2481
2499
  function DynamicConfig(config) {
2482
- var type = config.type;
2500
+ var type = config.type, representedBy = config.representedBy;
2483
2501
  switch (type) {
2484
2502
  case DynamicType.Autocomplete:
2485
2503
  return new AutocompleteField(config);
@@ -2487,6 +2505,9 @@ var DynamicConfig = /** @class */ (function () {
2487
2505
  case DynamicType.String:
2488
2506
  return new TextField(config);
2489
2507
  case DynamicType.Boolean:
2508
+ if (representedBy === "switch") {
2509
+ return new BooleanSwitchField(config);
2510
+ }
2490
2511
  return new BooleanField(config);
2491
2512
  case DynamicType.Chips:
2492
2513
  return new ChipsField(config);
@@ -4480,6 +4501,9 @@ var AutocompleteFieldComponent = /** @class */ (function () {
4480
4501
  var BooleanFieldComponent = /** @class */ (function () {
4481
4502
  function BooleanFieldComponent() {
4482
4503
  }
4504
+ BooleanFieldComponent.prototype.onClear = function () {
4505
+ this.formControl.reset();
4506
+ };
4483
4507
  __decorate([
4484
4508
  Input()
4485
4509
  ], BooleanFieldComponent.prototype, "field", void 0);
@@ -4488,7 +4512,7 @@ var BooleanFieldComponent = /** @class */ (function () {
4488
4512
  ], BooleanFieldComponent.prototype, "formControl", void 0);
4489
4513
  BooleanFieldComponent = __decorate([
4490
4514
  Component({
4491
- template: "<ng-container *ngIf=\"field.verticalAlignment;else horizontalAlignment\">\n <div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <p-radioButton [name]=\"field.name\" [value]=\"true\" [label]=\"field.optionsLabel.true\"\n [formControl]=\"formControl\" [inputId]=\"(field.id || field.name) + '-1'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n </div>\n <div class=\"ui-g-12\">\n <p-radioButton [name]=\"field.name\" [value]=\"false\" [label]=\"field.optionsLabel.false\"\n [formControl]=\"formControl\" [inputId]=\"(field.id || field.name) + '-2'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n </div>\n <div class=\"ui-g-12\">\n <p-radioButton *ngIf=\"!field.required()\" [name]=\"field.name\" [value]=\"null\"\n [label]=\"field.optionsLabel.empty\" [formControl]=\"formControl\" [inputId]=\"(field.id || field.name) + '-3'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n </div>\n </div>\n</ng-container>\n\n<ng-template #horizontalAlignment>\n <p-radioButton [name]=\"field.name\" [value]=\"true\" [label]=\"field.optionsLabel.true\" [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-1'\" (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\" (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n <p-radioButton [name]=\"field.name\" [value]=\"false\" [label]=\"field.optionsLabel.false\" [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-2'\" (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\" (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n <p-radioButton *ngIf=\"!field.required()\" [name]=\"field.name\" [value]=\"null\" [label]=\"field.optionsLabel.empty\"\n [formControl]=\"formControl\" [inputId]=\"(field.id || field.name) + '-3'\" (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\" (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n</ng-template>\n"
4515
+ template: "<ng-container *ngIf=\"field.verticalAlignment;else horizontalAlignment\">\n <div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <p-radioButton\n [name]=\"field.name\"\n [value]=\"true\"\n [label]=\"field.optionsLabel.true\"\n [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-1'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n </div>\n <div class=\"ui-g-12\">\n <p-radioButton\n [name]=\"field.name\"\n [value]=\"false\"\n [label]=\"field.optionsLabel.false\"\n [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-2'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n </div>\n <div\n *ngIf=\"!field.showClear && !field.required()\"\n class=\"ui-g-12\">\n <p-radioButton \n [name]=\"field.name\"\n [value]=\"null\"\n [label]=\"field.optionsLabel.empty\"\n [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-3'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton> \n </div>\n <div>\n <s-button\n *ngIf=\"field.showClear && !field.required()\"\n [label]=\"field.optionsLabel.clear || 'Clear selection'\"\n (onClick)=\"onClear()\"\n priority=\"link\">\n </s-button>\n </div>\n\n </div>\n</ng-container>\n\n<ng-template #horizontalAlignment>\n <div class=\"ui-g\">\n <p-radioButton\n [name]=\"field.name\"\n [value]=\"true\"\n [label]=\"field.optionsLabel.true\"\n [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-1'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n \n <p-radioButton\n [name]=\"field.name\"\n [value]=\"false\"\n [label]=\"field.optionsLabel.false\"\n [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-2'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n\n <p-radioButton\n *ngIf=\"!field.showClear && !field.required()\"\n [name]=\"field.name\"\n [value]=\"null\"\n [label]=\"field.optionsLabel.empty\"\n [formControl]=\"formControl\"\n [inputId]=\"(field.id || field.name) + '-3'\"\n (onClick)=\"field.onClick ? field.onClick($event) : null\"\n (onFocus)=\"field.onFocus ? field.onFocus($event) : null\"\n (onBlur)=\"field.onBlur ? field.onBlur($event) : null\">\n </p-radioButton>\n\n <s-button\n *ngIf=\"field.showClear && !field.required()\"\n style=\"margin-left: 40px;\"\n [label]=\"field.optionsLabel.clear || 'Clear selection'\"\n (onClick)=\"onClear()\"\n priority=\"link\">\n </s-button>\n </div>\n</ng-template>\n"
4492
4516
  })
4493
4517
  ], BooleanFieldComponent);
4494
4518
  return BooleanFieldComponent;
@@ -4982,6 +5006,23 @@ var BignumberFieldComponent = /** @class */ (function (_super) {
4982
5006
  return BignumberFieldComponent;
4983
5007
  }(BaseFieldComponent));
4984
5008
 
5009
+ var BooleanSwitchFieldComponent = /** @class */ (function () {
5010
+ function BooleanSwitchFieldComponent() {
5011
+ }
5012
+ __decorate([
5013
+ Input()
5014
+ ], BooleanSwitchFieldComponent.prototype, "field", void 0);
5015
+ __decorate([
5016
+ Input()
5017
+ ], BooleanSwitchFieldComponent.prototype, "formControl", void 0);
5018
+ BooleanSwitchFieldComponent = __decorate([
5019
+ Component({
5020
+ template: "<div class=\"ui-g\">\n <p-inputSwitch [id]=\"(field.id || field.name)\" [name]=\"field.name\" [formControl]=\"formControl\"\n [pTooltip]=\"field.tooltip\" tooltipPosition=\"top\"\n (onChange)=\"field.onChange ? field.onChange($event) : null\">\n </p-inputSwitch>\n</div>"
5021
+ })
5022
+ ], BooleanSwitchFieldComponent);
5023
+ return BooleanSwitchFieldComponent;
5024
+ }());
5025
+
4985
5026
  var DynamicForm = /** @class */ (function () {
4986
5027
  function DynamicForm(_a) {
4987
5028
  var group = _a.group, errorMessages = _a.errorMessages;
@@ -5040,6 +5081,9 @@ var DynamicField = /** @class */ (function (_super) {
5040
5081
  case FieldType.String:
5041
5082
  return TextFieldComponent;
5042
5083
  case FieldType.Boolean:
5084
+ if (this.field.representedBy === "switch") {
5085
+ return BooleanSwitchFieldComponent;
5086
+ }
5043
5087
  return BooleanFieldComponent;
5044
5088
  case FieldType.Chips:
5045
5089
  return ChipsFieldComponent;
@@ -5358,7 +5402,8 @@ var DynamicFormModule = /** @class */ (function () {
5358
5402
  InfoSignModule,
5359
5403
  MaskFormatterModule,
5360
5404
  HotkeyModule.forRoot(),
5361
- MouseEventsModule
5405
+ MouseEventsModule,
5406
+ InputSwitchModule
5362
5407
  ],
5363
5408
  declarations: [
5364
5409
  AutocompleteFieldComponent,
@@ -5380,7 +5425,8 @@ var DynamicFormModule = /** @class */ (function () {
5380
5425
  SectionComponent,
5381
5426
  SelectFieldComponent,
5382
5427
  TextAreaFieldComponent,
5383
- TextFieldComponent
5428
+ TextFieldComponent,
5429
+ BooleanSwitchFieldComponent
5384
5430
  ],
5385
5431
  exports: [DynamicFormComponent, LookupComponent],
5386
5432
  entryComponents: [
@@ -5399,7 +5445,8 @@ var DynamicFormModule = /** @class */ (function () {
5399
5445
  SectionComponent,
5400
5446
  SelectFieldComponent,
5401
5447
  TextAreaFieldComponent,
5402
- TextFieldComponent
5448
+ TextFieldComponent,
5449
+ BooleanSwitchFieldComponent
5403
5450
  ],
5404
5451
  providers: [HotkeysService]
5405
5452
  })
@@ -9150,5 +9197,5 @@ var CodeEditorModule = /** @class */ (function () {
9150
9197
  * Generated bundle index. Do not edit.
9151
9198
  */
9152
9199
 
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 };
9200
+ 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 ɵbb, StructureModule as ɵbc, HeaderComponent as ɵbd, FooterComponent as ɵbe, NumberLocaleOptions as ɵbf, ThumbnailService as ɵbg, InfiniteScrollModule as ɵbh, InfiniteScrollDirective as ɵbi, CustomTranslationsModule as ɵbj, CodeEditorComponent as ɵbk, CoreFacade as ɵbl, CodeMirror6Core as ɵbm, 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, BooleanSwitchFieldComponent as ɵz };
9154
9201
  //# sourceMappingURL=seniorsistemas-angular-components.js.map