@seniorsistemas/angular-components 17.19.3 → 17.20.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 (52) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +149 -58
  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/button-field/button-field.component.d.ts +5 -0
  6. package/components/dynamic-form/components/grid/row/row.component.d.ts +2 -5
  7. package/components/dynamic-form/components/structure/section/section.component.d.ts +1 -0
  8. package/components/dynamic-form/configurations/field-type.d.ts +2 -1
  9. package/components/dynamic-form/configurations/fields/button-field.d.ts +33 -0
  10. package/components/dynamic-form/configurations/fields/index.d.ts +1 -0
  11. package/components/dynamic-form/configurations/grid/grid.d.ts +2 -1
  12. package/components/dynamic-form/configurations/structure/section.d.ts +18 -2
  13. package/components/dynamic-form/configurations/structure/structure.d.ts +5 -3
  14. package/components/dynamic-form/dynamic-form.d.ts +6 -5
  15. package/components/dynamic-form/index.d.ts +5 -0
  16. package/esm2015/components/dynamic-form/components/fields/button-field/button-field.component.js +21 -0
  17. package/esm2015/components/dynamic-form/components/grid/row/row.component.js +2 -2
  18. package/esm2015/components/dynamic-form/components/structure/section/section.component.js +24 -5
  19. package/esm2015/components/dynamic-form/configurations/field-type.js +2 -1
  20. package/esm2015/components/dynamic-form/configurations/fields/button-field.js +28 -0
  21. package/esm2015/components/dynamic-form/configurations/fields/index.js +2 -1
  22. package/esm2015/components/dynamic-form/configurations/form-field.js +4 -1
  23. package/esm2015/components/dynamic-form/configurations/grid/grid.js +1 -1
  24. package/esm2015/components/dynamic-form/configurations/structure/section.js +23 -1
  25. package/esm2015/components/dynamic-form/configurations/structure/structure.js +2 -1
  26. package/esm2015/components/dynamic-form/dynamic-form.directive.js +1 -1
  27. package/esm2015/components/dynamic-form/dynamic-form.js +4 -1
  28. package/esm2015/components/dynamic-form/dynamic-form.module.js +3 -1
  29. package/esm2015/components/dynamic-form/index.js +6 -1
  30. package/esm2015/seniorsistemas-angular-components.js +41 -40
  31. package/esm5/components/dynamic-form/components/fields/button-field/button-field.component.js +24 -0
  32. package/esm5/components/dynamic-form/components/grid/row/row.component.js +2 -2
  33. package/esm5/components/dynamic-form/components/structure/section/section.component.js +11 -2
  34. package/esm5/components/dynamic-form/configurations/field-type.js +2 -1
  35. package/esm5/components/dynamic-form/configurations/fields/button-field.js +33 -0
  36. package/esm5/components/dynamic-form/configurations/fields/index.js +2 -1
  37. package/esm5/components/dynamic-form/configurations/form-field.js +4 -1
  38. package/esm5/components/dynamic-form/configurations/grid/grid.js +1 -1
  39. package/esm5/components/dynamic-form/configurations/structure/section.js +25 -2
  40. package/esm5/components/dynamic-form/configurations/structure/structure.js +2 -1
  41. package/esm5/components/dynamic-form/dynamic-form.directive.js +1 -1
  42. package/esm5/components/dynamic-form/dynamic-form.js +4 -1
  43. package/esm5/components/dynamic-form/dynamic-form.module.js +3 -1
  44. package/esm5/components/dynamic-form/index.js +6 -1
  45. package/esm5/seniorsistemas-angular-components.js +41 -40
  46. package/fesm2015/seniorsistemas-angular-components.js +107 -17
  47. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  48. package/fesm5/seniorsistemas-angular-components.js +102 -15
  49. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  50. package/package.json +1 -1
  51. package/seniorsistemas-angular-components.d.ts +40 -39
  52. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -5904,6 +5904,7 @@ var FieldType;
5904
5904
  FieldType["TextIA"] = "TextIA";
5905
5905
  FieldType["Time"] = "Time";
5906
5906
  FieldType["ProfilePicture"] = "ProfilePicture";
5907
+ FieldType["Button"] = "Button";
5907
5908
  })(FieldType || (FieldType = {}));
5908
5909
 
5909
5910
  class FieldSize {
@@ -6447,6 +6448,31 @@ class TextField extends Field {
6447
6448
  }
6448
6449
  }
6449
6450
 
6451
+ class ButtonField extends Field {
6452
+ constructor(config) {
6453
+ super(config);
6454
+ this.tooltipPosition = "top";
6455
+ this.priority = config.priority || ButtonPriority.Primary;
6456
+ this.iconClass = config.iconClass || "";
6457
+ this.disabled = config.disabled || false;
6458
+ this.auxiliary = config.auxiliary || false;
6459
+ this.caret = config.caret || false;
6460
+ this.id = config.id || `s-button-${ButtonComponent.nextId++}`;
6461
+ this.onClick = config.onClick || (() => { });
6462
+ this.fullWidth = config.fullWidth || false;
6463
+ this.iconColor = config.iconColor;
6464
+ this.badge = config.badge;
6465
+ this.animation = config.animation;
6466
+ this.slide = config.slide;
6467
+ this.menuOptions = config.menuOptions;
6468
+ this.model = config.model;
6469
+ this.baseZIndex = config.baseZIndex;
6470
+ this.styleClass = config.styleClass;
6471
+ this.rightIconClass = config.rightIconClass;
6472
+ this.tooltipPosition = config.tooltipPosition;
6473
+ }
6474
+ }
6475
+
6450
6476
  class EditorField extends Field {
6451
6477
  constructor(config) {
6452
6478
  super(config);
@@ -6530,6 +6556,8 @@ class FormField {
6530
6556
  return new ProfilePictureField(config);
6531
6557
  case FieldType.Editor:
6532
6558
  return new EditorField(config);
6559
+ case FieldType.Button:
6560
+ return new ButtonField(config);
6533
6561
  case FieldType.Custom:
6534
6562
  const { CustomFieldClass } = config, otherConfigs = __rest(config, ["CustomFieldClass"]);
6535
6563
  return new CustomFieldClass(otherConfigs);
@@ -7144,6 +7172,7 @@ class Row extends Grid {
7144
7172
 
7145
7173
  class Structure {
7146
7174
  constructor(config) {
7175
+ this.isFlex = false;
7147
7176
  Object.assign(this, Object.assign({}, config));
7148
7177
  }
7149
7178
  }
@@ -7158,6 +7187,27 @@ class Fieldset extends Structure {
7158
7187
  class Section extends Structure {
7159
7188
  constructor(config) {
7160
7189
  super(config);
7190
+ /**
7191
+ * Define if the structure is a flex container.
7192
+ */
7193
+ this.isFlex = false;
7194
+ /**
7195
+ * Define the justify-content property.
7196
+ */
7197
+ this.justifyContent = 'flex-start';
7198
+ /**
7199
+ * Define the align-items property.
7200
+ */
7201
+ this.alignItems = 'flex-start';
7202
+ this.visible = () => true;
7203
+ this.isFlex = config.isFlex || false;
7204
+ this.justifyContent = config.justifyContent || 'flex-start';
7205
+ this.alignItems = config.alignItems || 'flex-start';
7206
+ if (config.visible) {
7207
+ this.visible = config.visible;
7208
+ }
7209
+ this.size = new FieldSize(config.size || {});
7210
+ this.gridClass = Object.keys(this.size).map((key) => `ui-${key}-${this.size[key]}`);
7161
7211
  }
7162
7212
  }
7163
7213
 
@@ -7212,6 +7262,17 @@ class DynamicConfig {
7212
7262
  }
7213
7263
  }
7214
7264
 
7265
+ var GridType;
7266
+ (function (GridType) {
7267
+ GridType["Row"] = "Row";
7268
+ })(GridType || (GridType = {}));
7269
+
7270
+ var StructureType;
7271
+ (function (StructureType) {
7272
+ StructureType["Fieldset"] = "Fieldset";
7273
+ StructureType["Section"] = "Section";
7274
+ })(StructureType || (StructureType = {}));
7275
+
7215
7276
  let DynamicFormComponent = class DynamicFormComponent {
7216
7277
  constructor() {
7217
7278
  this.errorMessages = {};
@@ -10408,6 +10469,9 @@ FieldsetComponent = __decorate([
10408
10469
  ], FieldsetComponent);
10409
10470
 
10410
10471
  let SectionComponent = class SectionComponent {
10472
+ get flexContainer() {
10473
+ return this.config.isFlex;
10474
+ }
10411
10475
  };
10412
10476
  __decorate([
10413
10477
  Input()
@@ -10423,12 +10487,28 @@ __decorate([
10423
10487
  ], SectionComponent.prototype, "errorMessages", void 0);
10424
10488
  SectionComponent = __decorate([
10425
10489
  Component({
10490
+ selector: 's-section',
10426
10491
  template: `
10427
10492
  <h3 *ngIf="config?.header" class="sds-section-title">{{config.header}}</h3>
10428
- <ng-container *ngFor="let conf of config.configs">
10429
- <ng-container *sDynamicForm="{ id: id, config: conf, group: group, errorMessages: errorMessages }"></ng-container>
10430
- </ng-container>
10431
- `
10493
+ <section [class.flex-container]="flexContainer" [style.justify-content]="config.justifyContent" [style.align-items]="config.alignItems">
10494
+ <ng-container *ngFor="let conf of config.configs">
10495
+ <ng-container *sDynamicForm="{ id: id, config: conf, group: group, errorMessages: errorMessages }"></ng-container>
10496
+ </ng-container>
10497
+ </section>
10498
+ `,
10499
+ styles: [`
10500
+ .flex-container {
10501
+ display: flex
10502
+ }
10503
+
10504
+ :host {
10505
+ height: 100%
10506
+ }
10507
+
10508
+ section {
10509
+ height: 100%;
10510
+ }
10511
+ `]
10432
10512
  })
10433
10513
  ], SectionComponent);
10434
10514
 
@@ -10436,7 +10516,6 @@ let RowComponent = class RowComponent {
10436
10516
  constructor() {
10437
10517
  this.FieldType = FieldType;
10438
10518
  }
10439
- ngOnInit() { }
10440
10519
  getErrorMessages(errorMessages) {
10441
10520
  if (errorMessages)
10442
10521
  return this.isFunction(errorMessages) ? errorMessages() : errorMessages;
@@ -10460,6 +10539,7 @@ __decorate([
10460
10539
  ], RowComponent.prototype, "errorMessages", void 0);
10461
10540
  RowComponent = __decorate([
10462
10541
  Component({
10542
+ selector: 's-row',
10463
10543
  template: `
10464
10544
  <div class="ui-fluid" [formGroup]="group">
10465
10545
  <div class="ui-g">
@@ -10538,17 +10618,6 @@ DynamicFieldComponent = __decorate([
10538
10618
  })
10539
10619
  ], DynamicFieldComponent);
10540
10620
 
10541
- var GridType;
10542
- (function (GridType) {
10543
- GridType["Row"] = "Row";
10544
- })(GridType || (GridType = {}));
10545
-
10546
- var StructureType;
10547
- (function (StructureType) {
10548
- StructureType["Fieldset"] = "Fieldset";
10549
- StructureType["Section"] = "Section";
10550
- })(StructureType || (StructureType = {}));
10551
-
10552
10621
  let BignumberFieldComponent = class BignumberFieldComponent extends BaseFieldComponent {
10553
10622
  constructor(localeService, changeDetectorRef) {
10554
10623
  super();
@@ -10991,6 +11060,24 @@ ProfilePictureFieldComponent = __decorate([
10991
11060
  })
10992
11061
  ], ProfilePictureFieldComponent);
10993
11062
 
11063
+ let ButtonFieldComponent = class ButtonFieldComponent {
11064
+ clickedButton($event) {
11065
+ if (this.field.onClick) {
11066
+ this.field.onClick($event);
11067
+ }
11068
+ }
11069
+ };
11070
+ __decorate([
11071
+ Input()
11072
+ ], ButtonFieldComponent.prototype, "field", void 0);
11073
+ ButtonFieldComponent = __decorate([
11074
+ Component({
11075
+ selector: 's-button-field',
11076
+ template: "<section [class.full-width]=\"field.fullWidth\" [class.fit-content]=\"!field.fullWidth\">\n <s-button\n [label]=\"field.label\"\n [priority]=\"field.priority\"\n [iconClass]=\"field.iconClass\"\n [disabled]=\"field.disabled\"\n [auxiliary]=\"field.auxiliary\"\n [caret]=\"field.caret\"\n [id]=\"field.id\"\n [tooltip]=\"field.tooltip\"\n (onClick)=\"clickedButton($event)\"\n [iconColor]=\"field.iconColor\"\n [badge]=\"field.badge\"\n [animation]=\"field.animation\"\n [slide]=\"field.slide\"\n [menuOptions]=\"field.menuOptions\"\n [model]=\"field.model\"\n [baseZIndex]=\"field.baseZIndex\"\n [styleClass]=\"field.styleClass\"\n [rightIconClass]=\"field.rightIconClass\"\n [tooltipPosition]=\"field.tooltipPosition\"\n [type]=\"field.buttonType\"\n [size]=\"field.buttonSize\">\n </s-button>\n</section>\n",
11077
+ styles: ["section{height:100%;display:-ms-flexbox;display:flex;-ms-flex-align:end;align-items:flex-end}section.full-width{width:100%}section.fit-content{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}"]
11078
+ })
11079
+ ], ButtonFieldComponent);
11080
+
10994
11081
  class DynamicForm {
10995
11082
  constructor({ group, errorMessages }) {
10996
11083
  this.group = group;
@@ -11093,6 +11180,8 @@ class DynamicField extends DynamicForm {
11093
11180
  return ProfilePictureFieldComponent;
11094
11181
  case FieldType.Editor:
11095
11182
  return EditorFieldComponent;
11183
+ case FieldType.Button:
11184
+ return ButtonFieldComponent;
11096
11185
  case FieldType.Custom:
11097
11186
  return this.field.CustomFieldComponentClass;
11098
11187
  default:
@@ -12176,6 +12265,7 @@ DynamicFormModule = __decorate([
12176
12265
  SliderFieldComponent,
12177
12266
  TextAreaFieldComponent,
12178
12267
  TextAreaIAFieldComponent,
12268
+ ButtonFieldComponent
12179
12269
  ],
12180
12270
  exports: [DynamicFormComponent, LookupComponent],
12181
12271
  entryComponents: [
@@ -20173,5 +20263,5 @@ const fallback = {
20173
20263
  * Generated bundle index. Do not edit.
20174
20264
  */
20175
20265
 
20176
- export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, ChatComponent, ChatModule, CheckDisabled, CheckboxComponent, CheckboxModule, ChipsComponent, ChipsField, ChipsModule, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CurrencyService, 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, FileUploadPermissions, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, InlineEditCalendarField, InlineEditComponent, InlineEditField, InlineEditLookupField, InlineEditModule, InlineEditNumberField, InlineEditTextAreaField, InlineEditTextAreaIAField, InlineEditTextField, KanbanComponent, KanbanModule, KanbanTemplateTypes, LabelValueComponent, LabelValueModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationButtonComponent, NavigationButtonModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, NumericService, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, PicklistComponent, PicklistModule, PicklistTemplateTypes, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SliderComponent, SliderModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, ThumbnailsComponent, ThumbnailsModule, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, isNullOrUndefined, parseItensPickList, ɵ0$3 as ɵ0, ɵ1$2 as ɵ1, ɵ2$1 as ɵ2, ɵ3$1 as ɵ3, ɵ4, TooltipComponent as ɵa, TooltipDirective as ɵb, TableColumnsComponent as ɵba, TablePagingComponent as ɵbb, PasswordFieldModule as ɵbc, FieldLabelModule as ɵbd, FieldLabelComponent as ɵbe, PasswordFieldComponent as ɵbf, TextFieldModule as ɵbg, TextFieldComponent as ɵbh, NumberFieldModule as ɵbi, NumberFieldComponent as ɵbj, CurrencyFieldModule as ɵbk, CurrencyFieldComponent as ɵbl, BignumberFieldModule as ɵbm, BignumberFieldComponent as ɵbn, CheckboxFieldModule as ɵbo, CheckboxFieldComponent as ɵbp, ProfilePictureModule as ɵbq, ThumbnailService as ɵbr, StructureModule as ɵbs, HeaderComponent as ɵbt, FooterComponent as ɵbu, ProfilePictureFieldComponent as ɵbv, EditorFieldModule as ɵbw, EditorFieldComponent as ɵbx, AutocompleteFieldComponent as ɵby, BooleanFieldComponent as ɵbz, TieredMenuEventService as ɵc, BooleanSwitchFieldComponent as ɵca, CalendarFieldComponent as ɵcb, ChipsFieldComponent as ɵcc, CountryPhonePickerFieldComponent as ɵcd, DynamicFieldComponent as ɵce, DynamicFormDirective as ɵcf, FieldsetComponent as ɵcg, FileUploadComponent$1 as ɵch, LookupFieldComponent as ɵci, RadioButtonComponent as ɵcj, RowComponent as ɵck, SectionComponent as ɵcl, SelectFieldComponent as ɵcm, SliderFieldComponent as ɵcn, TextAreaFieldComponent as ɵco, TextAreaIAFieldComponent as ɵcp, IAssistService as ɵcq, DecimalField as ɵcs, SideTableComponent as ɵct, InfiniteScrollModule as ɵcu, InfiniteScrollDirective as ɵcv, IAInsightSidebarComponent as ɵcw, IAInsightCardComponent as ɵcx, IAInsightCardLoaderComponent as ɵcy, InlineEditItemComponent as ɵcz, TieredMenuService as ɵd, InlineEditCalendarComponent as ɵda, InlineEditLookupComponent as ɵdb, InlineEditNumberComponent as ɵdc, InlineEditTextComponent as ɵdd, InlineEditTextAreaComponent as ɵde, InlineEditTextAreaIAComponent as ɵdf, KanbanEventService as ɵdg, KanbanItemComponent as ɵdh, KanbanColumnComponent as ɵdi, KanbanItemDraggingComponent as ɵdj, NumberLocaleOptions as ɵdk, BorderButtonModule as ɵdl, BorderButtonComponent as ɵdm, ProgressBarDeterminateComponent as ɵdn, ProgressBarIndeterminateComponent as ɵdo, SelectButtonItemComponent as ɵdp, SlidePanelService as ɵdq, ThumbnailItemComponent as ɵdr, ThumbnailItemVideoComponent as ɵds, ThumbnailItemImageComponent as ɵdt, TimelineItemModule as ɵdu, TimelineIconItemComponent as ɵdv, HorizontalTimelineModule as ɵdw, HorizontalTimelineComponent as ɵdx, VerticalTimelineModule as ɵdy, VerticalTimelineComponent as ɵdz, TieredMenuGlobalService as ɵe, RangeLineComponent as ɵea, CollapseOptionComponent as ɵeb, CollapsedItemsComponent as ɵec, VerticalItemsComponent as ɵed, ChipItemComponent as ɵee, TieredMenuComponent as ɵf, TieredMenuNestedComponent as ɵg, TieredMenuItemComponent as ɵh, TieredMenuDividerComponent as ɵi, LocalizedCurrencyImpurePipe as ɵj, LocalizedBignumberPipe as ɵk, LocalizedBignumberImpurePipe as ɵl, NumericPipe as ɵm, ChatMessageComponent as ɵn, CustomTranslationsModule as ɵo, CodeEditorComponent as ɵp, CoreFacade as ɵq, CodeMirror6Core as ɵr, CountryPhonePickerService as ɵs, EmptyStateGoBackComponent as ɵt, IAssistIconComponent as ɵu, SeniorIconComponent as ɵv, DotsIndicatorComponent as ɵw, LoadingIndicatorComponent as ɵx, FileUploadService as ɵy, InfoSignComponent as ɵz };
20266
+ export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonField, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, CardComponent, CardModule, CardTemplateTypes, ChatComponent, ChatModule, CheckDisabled, CheckboxComponent, CheckboxModule, ChipsComponent, ChipsField, ChipsModule, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CurrencyService, 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, FileUploadPermissions, FileValidation, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, Grid, GridType, HostProjectConfigsInjectionToken, IAInsightComponent, IAInsightModule, IAInsightTemplateTypes, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, InlineEditCalendarField, InlineEditComponent, InlineEditField, InlineEditLookupField, InlineEditModule, InlineEditNumberField, InlineEditTextAreaField, InlineEditTextAreaIAField, InlineEditTextField, KanbanComponent, KanbanModule, KanbanTemplateTypes, LabelValueComponent, LabelValueModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationButtonComponent, NavigationButtonModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, NumericService, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, PicklistComponent, PicklistModule, PicklistTemplateTypes, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RatingScaleComponent, RatingScaleModule, RationButtonOption, Row, RowTogllerDirective, SVGFactoryDirective, SVGFactoryModule, Section, SelectButtonComponent, SelectButtonModule, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SliderComponent, SliderModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, StructureType, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, ThumbnailsComponent, ThumbnailsModule, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, isNullOrUndefined, parseItensPickList, ɵ0$3 as ɵ0, ɵ1$2 as ɵ1, ɵ2$1 as ɵ2, ɵ3$1 as ɵ3, ɵ4, TooltipComponent as ɵa, TooltipDirective as ɵb, TableColumnsComponent as ɵba, TablePagingComponent as ɵbb, PasswordFieldModule as ɵbc, FieldLabelModule as ɵbd, FieldLabelComponent as ɵbe, PasswordFieldComponent as ɵbf, TextFieldModule as ɵbg, TextFieldComponent as ɵbh, NumberFieldModule as ɵbi, NumberFieldComponent as ɵbj, CurrencyFieldModule as ɵbk, CurrencyFieldComponent as ɵbl, BignumberFieldModule as ɵbm, BignumberFieldComponent as ɵbn, CheckboxFieldModule as ɵbo, CheckboxFieldComponent as ɵbp, ProfilePictureModule as ɵbq, ThumbnailService as ɵbr, StructureModule as ɵbs, HeaderComponent as ɵbt, FooterComponent as ɵbu, ProfilePictureFieldComponent as ɵbv, EditorFieldModule as ɵbw, EditorFieldComponent as ɵbx, AutocompleteFieldComponent as ɵby, BooleanFieldComponent as ɵbz, TieredMenuEventService as ɵc, BooleanSwitchFieldComponent as ɵca, CalendarFieldComponent as ɵcb, ChipsFieldComponent as ɵcc, CountryPhonePickerFieldComponent as ɵcd, DynamicFieldComponent as ɵce, DynamicFormDirective as ɵcf, FieldsetComponent as ɵcg, FileUploadComponent$1 as ɵch, LookupFieldComponent as ɵci, RadioButtonComponent as ɵcj, RowComponent as ɵck, SectionComponent as ɵcl, SelectFieldComponent as ɵcm, SliderFieldComponent as ɵcn, TextAreaFieldComponent as ɵco, TextAreaIAFieldComponent as ɵcp, IAssistService as ɵcq, ButtonFieldComponent as ɵcr, DecimalField as ɵct, SideTableComponent as ɵcu, InfiniteScrollModule as ɵcv, InfiniteScrollDirective as ɵcw, IAInsightSidebarComponent as ɵcx, IAInsightCardComponent as ɵcy, IAInsightCardLoaderComponent as ɵcz, TieredMenuService as ɵd, InlineEditItemComponent as ɵda, InlineEditCalendarComponent as ɵdb, InlineEditLookupComponent as ɵdc, InlineEditNumberComponent as ɵdd, InlineEditTextComponent as ɵde, InlineEditTextAreaComponent as ɵdf, InlineEditTextAreaIAComponent as ɵdg, KanbanEventService as ɵdh, KanbanItemComponent as ɵdi, KanbanColumnComponent as ɵdj, KanbanItemDraggingComponent as ɵdk, NumberLocaleOptions as ɵdl, BorderButtonModule as ɵdm, BorderButtonComponent as ɵdn, ProgressBarDeterminateComponent as ɵdo, ProgressBarIndeterminateComponent as ɵdp, SelectButtonItemComponent as ɵdq, SlidePanelService as ɵdr, ThumbnailItemComponent as ɵds, ThumbnailItemVideoComponent as ɵdt, ThumbnailItemImageComponent as ɵdu, TimelineItemModule as ɵdv, TimelineIconItemComponent as ɵdw, HorizontalTimelineModule as ɵdx, HorizontalTimelineComponent as ɵdy, VerticalTimelineModule as ɵdz, TieredMenuGlobalService as ɵe, VerticalTimelineComponent as ɵea, RangeLineComponent as ɵeb, CollapseOptionComponent as ɵec, CollapsedItemsComponent as ɵed, VerticalItemsComponent as ɵee, ChipItemComponent as ɵef, TieredMenuComponent as ɵf, TieredMenuNestedComponent as ɵg, TieredMenuItemComponent as ɵh, TieredMenuDividerComponent as ɵi, LocalizedCurrencyImpurePipe as ɵj, LocalizedBignumberPipe as ɵk, LocalizedBignumberImpurePipe as ɵl, NumericPipe as ɵm, ChatMessageComponent as ɵn, CustomTranslationsModule as ɵo, CodeEditorComponent as ɵp, CoreFacade as ɵq, CodeMirror6Core as ɵr, CountryPhonePickerService as ɵs, EmptyStateGoBackComponent as ɵt, IAssistIconComponent as ɵu, SeniorIconComponent as ɵv, DotsIndicatorComponent as ɵw, LoadingIndicatorComponent as ɵx, FileUploadService as ɵy, InfoSignComponent as ɵz };
20177
20267
  //# sourceMappingURL=seniorsistemas-angular-components.js.map