@seniorsistemas/angular-components 16.10.0 → 16.10.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 (40) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +169 -31
  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/base-field-component.d.ts +2 -1
  6. package/components/dynamic-form/components/fields/slider/slider-field.component.d.ts +18 -0
  7. package/components/dynamic-form/configurations/dynamic-type.d.ts +2 -1
  8. package/components/dynamic-form/configurations/field-type.d.ts +2 -1
  9. package/components/dynamic-form/configurations/fields/slider-field.d.ts +31 -0
  10. package/components/dynamic-form/configurations/form-field.d.ts +4 -0
  11. package/components/product-header/product-header.component.d.ts +1 -0
  12. package/esm2015/components/dynamic-form/components/fields/base-field-component.js +1 -1
  13. package/esm2015/components/dynamic-form/components/fields/slider/slider-field.component.js +88 -0
  14. package/esm2015/components/dynamic-form/configurations/dynamic-config.js +4 -1
  15. package/esm2015/components/dynamic-form/configurations/dynamic-type.js +2 -1
  16. package/esm2015/components/dynamic-form/configurations/field-type.js +2 -1
  17. package/esm2015/components/dynamic-form/configurations/fields/slider-field.js +21 -0
  18. package/esm2015/components/dynamic-form/configurations/form-field.js +4 -1
  19. package/esm2015/components/dynamic-form/dynamic-form.js +4 -1
  20. package/esm2015/components/dynamic-form/dynamic-form.module.js +7 -2
  21. package/esm2015/components/product-header/product-header.component.js +13 -3
  22. package/esm2015/seniorsistemas-angular-components.js +26 -25
  23. package/esm5/components/dynamic-form/components/fields/base-field-component.js +1 -1
  24. package/esm5/components/dynamic-form/components/fields/slider/slider-field.component.js +100 -0
  25. package/esm5/components/dynamic-form/configurations/dynamic-config.js +4 -1
  26. package/esm5/components/dynamic-form/configurations/dynamic-type.js +2 -1
  27. package/esm5/components/dynamic-form/configurations/field-type.js +2 -1
  28. package/esm5/components/dynamic-form/configurations/fields/slider-field.js +26 -0
  29. package/esm5/components/dynamic-form/configurations/form-field.js +4 -1
  30. package/esm5/components/dynamic-form/dynamic-form.js +4 -1
  31. package/esm5/components/dynamic-form/dynamic-form.module.js +7 -2
  32. package/esm5/components/product-header/product-header.component.js +13 -3
  33. package/esm5/seniorsistemas-angular-components.js +26 -25
  34. package/fesm2015/seniorsistemas-angular-components.js +127 -4
  35. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  36. package/fesm5/seniorsistemas-angular-components.js +142 -4
  37. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  38. package/package.json +3 -3
  39. package/seniorsistemas-angular-components.d.ts +25 -24
  40. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -37,6 +37,7 @@ import { MultiSelectModule } from 'primeng/multiselect';
37
37
  import { InputSwitchModule } from 'primeng/inputswitch';
38
38
  import { PanelModule as PanelModule$1 } from 'primeng/panel';
39
39
  import { RadioButtonModule } from 'primeng/radiobutton';
40
+ import { SliderModule } from 'primeng/slider';
40
41
  import { ProgressBarModule as ProgressBarModule$1 } from 'primeng/progressbar';
41
42
  import { DomSanitizer } from '@angular/platform-browser';
42
43
  import Cropper from 'cropperjs';
@@ -1582,6 +1583,7 @@ var FieldType;
1582
1583
  FieldType["Number"] = "Number";
1583
1584
  FieldType["Custom"] = "Custom";
1584
1585
  FieldType["Password"] = "Password";
1586
+ FieldType["Slider"] = "Slider";
1585
1587
  })(FieldType || (FieldType = {}));
1586
1588
 
1587
1589
  class FieldSize {
@@ -2376,6 +2378,26 @@ class PasswordField extends Field {
2376
2378
  }
2377
2379
  }
2378
2380
 
2381
+ class SliderField extends Field {
2382
+ constructor(config) {
2383
+ var _a, _b, _c, _d, _e, _f, _g, _h;
2384
+ super(config);
2385
+ this.maxDefault = 100;
2386
+ this.onChange = config.onChange;
2387
+ this.onSlideEnd = config.onSlideEnd;
2388
+ this.range = (_a = config.range) !== null && _a !== void 0 ? _a : false;
2389
+ this.min = (_b = config.min) !== null && _b !== void 0 ? _b : 0;
2390
+ this.max = (_c = config.max) !== null && _c !== void 0 ? _c : this.maxDefault;
2391
+ this.orientation = (_d = config.orientation) !== null && _d !== void 0 ? _d : "horizontal";
2392
+ this.step = (_e = config.step) !== null && _e !== void 0 ? _e : 1;
2393
+ this.animate = (_f = config.animate) !== null && _f !== void 0 ? _f : false;
2394
+ this.disabled = (_g = config.disabled) !== null && _g !== void 0 ? _g : false;
2395
+ this.prefix = config.prefix;
2396
+ this.suffix = config.suffix;
2397
+ this.rangeSeparator = (_h = config.rangeSeparator) !== null && _h !== void 0 ? _h : ' - ';
2398
+ }
2399
+ }
2400
+
2379
2401
  class FormField {
2380
2402
  constructor(config) {
2381
2403
  switch (config.type) {
@@ -2416,6 +2438,8 @@ class FormField {
2416
2438
  return new ChipsField(config);
2417
2439
  case FieldType.Blob:
2418
2440
  return new BlobField(config);
2441
+ case FieldType.Slider:
2442
+ return new SliderField(config);
2419
2443
  case FieldType.Custom:
2420
2444
  const { CustomFieldClass } = config, otherConfigs = __rest(config, ["CustomFieldClass"]);
2421
2445
  return new CustomFieldClass(otherConfigs);
@@ -2983,6 +3007,7 @@ var DynamicType;
2983
3007
  DynamicType["Time"] = "Time";
2984
3008
  DynamicType["Number"] = "Number";
2985
3009
  DynamicType["Password"] = "Password";
3010
+ DynamicType["Slider"] = "Slider";
2986
3011
  })(DynamicType || (DynamicType = {}));
2987
3012
 
2988
3013
  class Grid {
@@ -3059,6 +3084,8 @@ class DynamicConfig {
3059
3084
  return new Row(config);
3060
3085
  case DynamicType.Section:
3061
3086
  return new Section(config);
3087
+ case DynamicType.Slider:
3088
+ return new SliderField(config);
3062
3089
  case DynamicType.Text:
3063
3090
  return new TextAreaField(config);
3064
3091
  }
@@ -6242,6 +6269,87 @@ PasswordFieldComponent = __decorate([
6242
6269
  })
6243
6270
  ], PasswordFieldComponent);
6244
6271
 
6272
+ let SliderFieldComponent = class SliderFieldComponent extends BaseFieldComponent {
6273
+ constructor() {
6274
+ super(...arguments);
6275
+ this.onChange = new EventEmitter();
6276
+ this.onSlideEnd = new EventEmitter();
6277
+ this.ngUnsubscribe = new Subject();
6278
+ }
6279
+ ngOnInit() {
6280
+ var _a, _b;
6281
+ this.onChange.pipe(takeUntil(this.ngUnsubscribe))
6282
+ .subscribe((event) => {
6283
+ if (this.field.onChange) {
6284
+ this.field.onChange(event);
6285
+ }
6286
+ });
6287
+ this.onSlideEnd.pipe(takeUntil(this.ngUnsubscribe))
6288
+ .subscribe((event) => {
6289
+ if (this.field.onSlideEnd) {
6290
+ this.field.onSlideEnd(event);
6291
+ }
6292
+ });
6293
+ const values = ((_a = this.field) === null || _a === void 0 ? void 0 : _a.range) ? [this.field.min, this.field.max] : this.field.min;
6294
+ this.formControl.setValue((_b = this.field.defaultValue) !== null && _b !== void 0 ? _b : values);
6295
+ }
6296
+ ngOnDestroy() {
6297
+ this.ngUnsubscribe.next();
6298
+ this.ngUnsubscribe.complete();
6299
+ }
6300
+ get fieldType() {
6301
+ return FieldType;
6302
+ }
6303
+ getRangeLabel() {
6304
+ var _a, _b, _c, _d;
6305
+ let [value0, value1] = (_a = this.formControl.value) !== null && _a !== void 0 ? _a : [0, 0];
6306
+ const prefix = (_b = this.field.prefix) !== null && _b !== void 0 ? _b : '';
6307
+ const suffix = (_c = this.field.suffix) !== null && _c !== void 0 ? _c : '';
6308
+ const separator = (_d = this.field.rangeSeparator) !== null && _d !== void 0 ? _d : ' - ';
6309
+ if (!value0 || value0 < this.field.min) {
6310
+ value0 = this.field.min;
6311
+ }
6312
+ if (!value1 || value1 > this.field.max) {
6313
+ value1 = this.field.max;
6314
+ }
6315
+ return `${prefix}${value0}${suffix}${separator}${prefix}${value1}${suffix}`;
6316
+ }
6317
+ getNonRangeLabel() {
6318
+ var _a, _b, _c;
6319
+ let value = (_a = this.formControl) === null || _a === void 0 ? void 0 : _a.value;
6320
+ const prefix = (_b = this.field.prefix) !== null && _b !== void 0 ? _b : '';
6321
+ const suffix = (_c = this.field.suffix) !== null && _c !== void 0 ? _c : '';
6322
+ if (!value || value < this.field.min) {
6323
+ value = this.field.min;
6324
+ }
6325
+ if (value > this.field.max) {
6326
+ value = this.field.max;
6327
+ }
6328
+ return `${prefix}${value}${suffix}`;
6329
+ }
6330
+ get label() {
6331
+ return this.field.range ? this.getRangeLabel() : this.getNonRangeLabel();
6332
+ }
6333
+ };
6334
+ __decorate([
6335
+ Input()
6336
+ ], SliderFieldComponent.prototype, "field", void 0);
6337
+ __decorate([
6338
+ Input()
6339
+ ], SliderFieldComponent.prototype, "formControl", void 0);
6340
+ __decorate([
6341
+ Output()
6342
+ ], SliderFieldComponent.prototype, "onChange", void 0);
6343
+ __decorate([
6344
+ Output()
6345
+ ], SliderFieldComponent.prototype, "onSlideEnd", void 0);
6346
+ SliderFieldComponent = __decorate([
6347
+ Component({
6348
+ template: "<ng-container>\n <div class=\"slider-group\">\n <div class=\"slider-label\">\n <span>{{label}}</span>\n </div>\n <p-slider \n [id]=\"(field.id || field.name)\"\n [formControl]=\"formControl\"\n [range]=\"field.range\"\n [orientation]=\"field.orientation\"\n [min]=\"field.min\" \n [max]=\"field.max\"\n [step]=\"field.step\"\n [animate]=\"field.animate\" \n (onChange)=\"field.onChange ? field.onChange($event) : null\"\n (onSlideEnd)=\"field.onSlideEnd ? field.onSlideEnd($event) : null\">\n </p-slider>\n </div>\n</ng-container>",
6349
+ styles: [".slider-label{margin-bottom:5px;margin-left:-10px}.slider-group{margin-left:9px;margin-right:11px}"]
6350
+ })
6351
+ ], SliderFieldComponent);
6352
+
6245
6353
  class DynamicForm {
6246
6354
  constructor({ group, errorMessages }) {
6247
6355
  this.group = group;
@@ -6322,6 +6430,8 @@ class DynamicField extends DynamicForm {
6322
6430
  return PasswordFieldComponent;
6323
6431
  case FieldType.Blob:
6324
6432
  return FileUploadComponent$1;
6433
+ case FieldType.Slider:
6434
+ return SliderFieldComponent;
6325
6435
  case FieldType.Custom:
6326
6436
  return this.field.CustomFieldComponentClass;
6327
6437
  default:
@@ -6909,6 +7019,7 @@ DynamicFormModule = __decorate([
6909
7019
  MouseEventsModule,
6910
7020
  InputSwitchModule,
6911
7021
  PasswordStrengthModule,
7022
+ SliderModule,
6912
7023
  ],
6913
7024
  declarations: [
6914
7025
  AutocompleteFieldComponent,
@@ -6933,6 +7044,7 @@ DynamicFormModule = __decorate([
6933
7044
  TextFieldComponent,
6934
7045
  BooleanSwitchFieldComponent,
6935
7046
  PasswordFieldComponent,
7047
+ SliderFieldComponent,
6936
7048
  ],
6937
7049
  exports: [DynamicFormComponent, LookupComponent],
6938
7050
  entryComponents: [
@@ -6953,7 +7065,8 @@ DynamicFormModule = __decorate([
6953
7065
  TextAreaFieldComponent,
6954
7066
  TextFieldComponent,
6955
7067
  PasswordFieldComponent,
6956
- BooleanSwitchFieldComponent
7068
+ BooleanSwitchFieldComponent,
7069
+ SliderFieldComponent,
6957
7070
  ],
6958
7071
  providers: [HotkeysService]
6959
7072
  })
@@ -8363,9 +8476,16 @@ let ProductHeaderComponent = ProductHeaderComponent_1 = class ProductHeaderCompo
8363
8476
  constructor() {
8364
8477
  this.id = `s-product-header-${ProductHeaderComponent_1.nextId++}`;
8365
8478
  this.baseZIndex = 0;
8479
+ this.isHeaderFrame = true;
8366
8480
  }
8367
8481
  ngAfterViewInit() {
8368
8482
  this.container.nativeElement.style.zIndex = String(this.baseZIndex + ++DomHandler.zindex);
8483
+ if (this.isHeaderFrame) {
8484
+ this.container.nativeElement.style.borderBottom = "1px solid $default-secondary-color";
8485
+ }
8486
+ else {
8487
+ this.container.nativeElement.style.borderTop = "1px solid $default-secondary-color";
8488
+ }
8369
8489
  }
8370
8490
  };
8371
8491
  ProductHeaderComponent.nextId = 0;
@@ -8378,14 +8498,17 @@ __decorate([
8378
8498
  __decorate([
8379
8499
  Input()
8380
8500
  ], ProductHeaderComponent.prototype, "baseZIndex", void 0);
8501
+ __decorate([
8502
+ Input()
8503
+ ], ProductHeaderComponent.prototype, "isHeaderFrame", void 0);
8381
8504
  __decorate([
8382
8505
  ViewChild("headerContainer", { static: false })
8383
8506
  ], ProductHeaderComponent.prototype, "container", void 0);
8384
8507
  ProductHeaderComponent = ProductHeaderComponent_1 = __decorate([
8385
8508
  Component({
8386
8509
  selector: "s-product-header",
8387
- template: "<div [id]=\"id\" class=\"box\">\n <div #headerContainer class=\"sds-container header\">\n <h1 class=\"title\">{{header}}</h1>\n <div class=\"content\">\n <ng-content></ng-content>\n </div>\n </div>\n</div>",
8388
- styles: [".box{position:relative;width:100%;height:70px}.header{padding-top:15px;padding-bottom:15px;position:fixed;width:100%;top:0;left:0;height:70px;background-color:#fff;border-bottom:1px solid #ddd;box-shadow:0 1px 2px #ddd;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}.title{color:#999;font-weight:400;font-size:16pt;margin-right:15px;min-width:140px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.content{display:-ms-flexbox;display:flex;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}"]
8510
+ template: "<div [id]=\"id\" class=\"box\">\n <div\n #headerContainer\n class=\"sds-container\"\n [class]=\"isHeaderFrame ? 'header-frame' : 'primary-header'\"\n >\n <h1 [class]=\"isHeaderFrame ? 'title' : 'primary-title'\">{{ header }}</h1>\n <div class=\"content\">\n <ng-content></ng-content>\n </div>\n </div>\n </div>\n",
8511
+ styles: [".box{position:relative;width:100%;height:70px}.header-frame{padding-top:15px;padding-bottom:15px;width:100%;top:0;left:0;height:70px;background-color:#fff;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;position:fixed}.title{color:#999;font-weight:400;font-size:16pt;margin-right:15px;min-width:140px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.content{display:-ms-flexbox;display:flex;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.primary-header{display:-ms-flexbox;display:flex;width:100%;height:70px;padding:15px 20px;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;border-bottom:1px solid #ddd;background-color:#fff;gap:24px}@media (max-width:768px){.primary-header{width:100%}}.primary-header .primary-title{color:#999;font-weight:400;font-size:16pt;margin-right:15px;min-width:140px;overflow:hidden;text-overflow:ellipsis}"]
8389
8512
  })
8390
8513
  ], ProductHeaderComponent);
8391
8514
 
@@ -11430,5 +11553,5 @@ const fallback = {
11430
11553
  * Generated bundle index. Do not edit.
11431
11554
  */
11432
11555
 
11433
- export { 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, fallback, CountryPhonePickerService as ɵa, LocalizedCurrencyImpurePipe as ɵb, SelectFieldComponent as ɵba, TextAreaFieldComponent as ɵbb, TextFieldComponent as ɵbc, BooleanSwitchFieldComponent as ɵbd, PasswordFieldComponent as ɵbe, DecimalField as ɵbg, StructureModule as ɵbh, HeaderComponent as ɵbi, FooterComponent as ɵbj, NumberLocaleOptions as ɵbk, ThumbnailService as ɵbl, BorderButtonModule as ɵbm, BorderButtonComponent as ɵbn, TimelineItemModule as ɵbo, TimelineIconItemComponent as ɵbp, HorizontalTimelineModule as ɵbq, HorizontalTimelineComponent as ɵbr, VerticalTimelineModule as ɵbs, VerticalTimelineComponent as ɵbt, RangeLineComponent as ɵbu, CollapseOptionComponent as ɵbv, CollapsedItemsComponent as ɵbw, VerticalItemsComponent as ɵbx, InfiniteScrollModule as ɵby, InfiniteScrollDirective as ɵbz, LocalizedBignumberPipe as ɵc, CustomTranslationsModule as ɵca, CodeEditorComponent as ɵcb, CoreFacade as ɵcc, CodeMirror6Core as ɵcd, LocalizedBignumberImpurePipe as ɵd, TooltipComponent as ɵe, TooltipDirective 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 };
11556
+ export { 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, fallback, CountryPhonePickerService as ɵa, LocalizedCurrencyImpurePipe 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, LocalizedBignumberPipe as ɵc, InfiniteScrollDirective as ɵca, CustomTranslationsModule as ɵcb, CodeEditorComponent as ɵcc, CoreFacade as ɵcd, CodeMirror6Core as ɵce, LocalizedBignumberImpurePipe as ɵd, TooltipComponent as ɵe, TooltipDirective 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 };
11434
11557
  //# sourceMappingURL=seniorsistemas-angular-components.js.map