@seniorsistemas/angular-components 17.26.15 → 17.27.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 (47) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +235 -78
  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/accessibility-events/accessibility-events.module.d.ts +2 -0
  6. package/components/accessibility-events/directives/accessibility-event.directive.d.ts +12 -0
  7. package/components/accessibility-events/index.d.ts +2 -0
  8. package/components/fieldset/fieldset.component.d.ts +14 -0
  9. package/components/fieldset/fieldset.models.d.ts +4 -0
  10. package/components/fieldset/fieldset.module.d.ts +2 -0
  11. package/components/fieldset/index.d.ts +3 -0
  12. package/components/index.d.ts +4 -1
  13. package/components/structure/header.component.d.ts +2 -0
  14. package/components/structure/index.d.ts +3 -0
  15. package/esm2015/components/accessibility-events/accessibility-events.module.js +17 -0
  16. package/esm2015/components/accessibility-events/directives/accessibility-event.directive.js +55 -0
  17. package/esm2015/components/accessibility-events/index.js +3 -0
  18. package/esm2015/components/dynamic-form/components/structure/fieldset/fieldset.component.js +5 -6
  19. package/esm2015/components/dynamic-form/dynamic-form.module.js +4 -2
  20. package/esm2015/components/fieldset/fieldset.component.js +68 -0
  21. package/esm2015/components/fieldset/fieldset.models.js +1 -0
  22. package/esm2015/components/fieldset/fieldset.module.js +17 -0
  23. package/esm2015/components/fieldset/index.js +3 -0
  24. package/esm2015/components/index.js +5 -2
  25. package/esm2015/components/structure/header.component.js +9 -3
  26. package/esm2015/components/structure/index.js +4 -0
  27. package/esm2015/seniorsistemas-angular-components.js +68 -71
  28. package/esm5/components/accessibility-events/accessibility-events.module.js +20 -0
  29. package/esm5/components/accessibility-events/directives/accessibility-event.directive.js +61 -0
  30. package/esm5/components/accessibility-events/index.js +3 -0
  31. package/esm5/components/dynamic-form/components/structure/fieldset/fieldset.component.js +2 -3
  32. package/esm5/components/dynamic-form/dynamic-form.module.js +4 -2
  33. package/esm5/components/fieldset/fieldset.component.js +69 -0
  34. package/esm5/components/fieldset/fieldset.models.js +1 -0
  35. package/esm5/components/fieldset/fieldset.module.js +20 -0
  36. package/esm5/components/fieldset/index.js +3 -0
  37. package/esm5/components/index.js +5 -2
  38. package/esm5/components/structure/header.component.js +6 -3
  39. package/esm5/components/structure/index.js +4 -0
  40. package/esm5/seniorsistemas-angular-components.js +68 -71
  41. package/fesm2015/seniorsistemas-angular-components.js +151 -8
  42. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  43. package/fesm5/seniorsistemas-angular-components.js +158 -5
  44. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  45. package/package.json +1 -1
  46. package/seniorsistemas-angular-components.d.ts +67 -70
  47. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -37,7 +37,6 @@ import { ButtonModule as ButtonModule$1 } from 'primeng/button';
37
37
  import { CheckboxModule as CheckboxModule$1 } from 'primeng/checkbox';
38
38
  import { ChipsModule as ChipsModule$1 } from 'primeng/chips';
39
39
  import { DropdownModule } from 'primeng/dropdown';
40
- import { FieldsetModule } from 'primeng/fieldset';
41
40
  import { InputMask, InputMaskModule } from 'primeng/inputmask';
42
41
  import { InputTextModule } from 'primeng/inputtext';
43
42
  import { InputTextareaModule } from 'primeng/inputtextarea';
@@ -54,6 +53,7 @@ import { EditorModule } from 'primeng/editor';
54
53
  import { ConfirmationService } from 'primeng/api';
55
54
  import { ConfirmDialogModule } from 'primeng/confirmdialog';
56
55
  import Cropper from 'cropperjs';
56
+ import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
57
57
  import marked from 'marked';
58
58
  import { moveItemInArray, transferArrayItem, DragDropModule } from '@angular/cdk/drag-drop';
59
59
  import { FocusTrapFactory, A11yModule } from '@angular/cdk/a11y';
@@ -11636,8 +11636,7 @@ var FieldsetComponent = /** @class */ (function () {
11636
11636
  ], FieldsetComponent.prototype, "errorMessages", void 0);
11637
11637
  FieldsetComponent = __decorate([
11638
11638
  Component({
11639
- selector: "s-fieldset",
11640
- template: "\n <p-fieldset [toggleable]=\"true\" (onBeforeToggle)=\"config.beforeToggle ? config.beforeToggle($event) : 'null'\"\n (onAfterToggle)=\"config.afterToggle ? config.afterToggle($event) : 'null'\">\n <p-header>{{config.header}}</p-header>\n <ng-container *ngFor=\"let conf of config.configs\">\n <ng-container *sDynamicForm=\"{ id: id, config: conf, group: group, errorMessages: errorMessages }\"></ng-container>\n </ng-container>\n </p-fieldset>\n "
11639
+ template: "\n <s-fieldset [toggleable]=\"true\" (beforeToggle)=\"config.beforeToggle ? config.beforeToggle($event) : 'null'\"\n (afterToggle)=\"config.afterToggle ? config.afterToggle($event) : 'null'\">\n <s-header>{{config.header}}</s-header>\n <ng-container *ngFor=\"let conf of config.configs\">\n <ng-container *sDynamicForm=\"{ id: id, config: conf, group: group, errorMessages: errorMessages }\"></ng-container>\n </ng-container>\n </s-fieldset>\n "
11641
11640
  })
11642
11641
  ], FieldsetComponent);
11643
11642
  return FieldsetComponent;
@@ -12704,10 +12703,13 @@ var PasswordFieldModule = /** @class */ (function () {
12704
12703
  var HeaderComponent = /** @class */ (function () {
12705
12704
  function HeaderComponent() {
12706
12705
  }
12706
+ __decorate([
12707
+ ViewChild('headerTemplate', { static: true })
12708
+ ], HeaderComponent.prototype, "template", void 0);
12707
12709
  HeaderComponent = __decorate([
12708
12710
  Component({
12709
12711
  selector: "s-header",
12710
- template: "<ng-content></ng-content>"
12712
+ template: "\n <ng-template #headerTemplate>\n <ng-content></ng-content>\n </ng-template>"
12711
12713
  })
12712
12714
  ], HeaderComponent);
12713
12715
  return HeaderComponent;
@@ -13973,6 +13975,156 @@ var TextAreaModule = /** @class */ (function () {
13973
13975
  return TextAreaModule;
13974
13976
  }());
13975
13977
 
13978
+ var FieldsetComponent$1 = /** @class */ (function () {
13979
+ function FieldsetComponent() {
13980
+ this.legend = '';
13981
+ this.toggleable = false;
13982
+ this.icon = '';
13983
+ this.destroyOnHide = true;
13984
+ this.beforeToggle = new EventEmitter();
13985
+ this.afterToggle = new EventEmitter();
13986
+ this.active = true;
13987
+ }
13988
+ FieldsetComponent.prototype.toggleActive = function (originalEvent) {
13989
+ if (!this.toggleable) {
13990
+ return;
13991
+ }
13992
+ this.beforeToggle.next({ collapsed: this.active, originalEvent: originalEvent });
13993
+ this.active = !this.active;
13994
+ this.afterToggle.next({ collapsed: this.active, originalEvent: originalEvent });
13995
+ };
13996
+ __decorate([
13997
+ Input()
13998
+ ], FieldsetComponent.prototype, "legend", void 0);
13999
+ __decorate([
14000
+ Input()
14001
+ ], FieldsetComponent.prototype, "toggleable", void 0);
14002
+ __decorate([
14003
+ Input()
14004
+ ], FieldsetComponent.prototype, "icon", void 0);
14005
+ __decorate([
14006
+ Input()
14007
+ ], FieldsetComponent.prototype, "destroyOnHide", void 0);
14008
+ __decorate([
14009
+ ContentChild(HeaderComponent)
14010
+ ], FieldsetComponent.prototype, "headerTemplate", void 0);
14011
+ __decorate([
14012
+ Output()
14013
+ ], FieldsetComponent.prototype, "beforeToggle", void 0);
14014
+ __decorate([
14015
+ Output()
14016
+ ], FieldsetComponent.prototype, "afterToggle", void 0);
14017
+ FieldsetComponent = __decorate([
14018
+ Component({
14019
+ selector: "s-fieldset",
14020
+ template: "\n<fieldset class=\"fieldset\" [class.fieldset-togglable]=\"toggleable\">\n <legend class=\"fieldset-title\" (sActivatedContent)=\"toggleActive($event)\">\n <ng-container *ngIf=\"toggleable\">\n <i *ngIf=\"active\" class=\"fas fa-solid fa-chevron-up\"></i>\n <i *ngIf=\"!active\" class=\"fas fa-solid fa-chevron-down\"></i>\n </ng-container>\n <ng-container *ngIf=\"headerTemplate?.template\">\n <ng-container *ngTemplateOutlet=\"headerTemplate.template\"></ng-container>\n </ng-container>\n <ng-container *ngIf=\"!headerTemplate\">\n <i *ngIf=\"icon\" [class]=\"icon\"></i>\n {{ legend }}\n </ng-container>\n </legend>\n <div\n *ngIf=\"destroyOnHide ? (toggleable ? active : true) : true\"\n [@toggleAnimation]=\"destroyOnHide ? null : (active ? 'open' : 'closed')\">\n <ng-content></ng-content>\n </div>\n</fieldset>\n",
14021
+ animations: [
14022
+ trigger('toggleAnimation', [
14023
+ transition(':enter', [
14024
+ style$7({ opacity: 0, height: 0 }),
14025
+ animate('300ms ease-out', style$7({ opacity: 1, height: '*' })),
14026
+ ]),
14027
+ transition(':leave', [
14028
+ style$7({ opacity: 1, height: '*' }),
14029
+ animate('300ms ease-in', style$7({ opacity: 0, height: 0 })),
14030
+ ]),
14031
+ state('open', style$7({ opacity: 1, height: '*' })),
14032
+ state('closed', style$7({ opacity: 0, height: 0 })),
14033
+ transition('open <=> closed', animate('300ms ease')),
14034
+ ]),
14035
+ ],
14036
+ styles: [".fieldset{background-color:#fff;border:1px solid #dedce5;border-radius:6px;margin-bottom:10px;padding:6px 8px;min-height:4.5em}.fieldset-title{font-family:\"Open Sans\",sans-serif;font-size:14px;font-weight:700;color:#212533;padding:0 4px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:4px;margin-left:16px}.fieldset-togglable .fieldset-title,.fieldset-togglable .fieldset-title *{cursor:pointer}.hidden{display:none}"]
14037
+ })
14038
+ ], FieldsetComponent);
14039
+ return FieldsetComponent;
14040
+ }());
14041
+
14042
+ var AccessibilityEventDirective = /** @class */ (function () {
14043
+ function AccessibilityEventDirective(elementRef) {
14044
+ var _this = this;
14045
+ this.elementRef = elementRef;
14046
+ this.sActivatedContent = new EventEmitter();
14047
+ this.tabindex = 0;
14048
+ this.EVENT_LISTENER = function (event) {
14049
+ if (event instanceof KeyboardEvent) {
14050
+ var key = event.key;
14051
+ var validKeys = ['Enter', ' '];
14052
+ if (!validKeys.includes(key)) {
14053
+ return;
14054
+ }
14055
+ }
14056
+ _this.sActivatedContent.next(event);
14057
+ };
14058
+ this.setTabIndex();
14059
+ this.checkAccessbilityEvents();
14060
+ }
14061
+ AccessibilityEventDirective.prototype.setTabIndex = function () {
14062
+ var hasTabIndex = this.element.tabIndex >= 0;
14063
+ if (hasTabIndex) {
14064
+ return;
14065
+ }
14066
+ this.element.tabIndex = this.tabindex;
14067
+ };
14068
+ AccessibilityEventDirective.prototype.checkAccessbilityEvents = function () {
14069
+ this.element.addEventListener('click', this.EVENT_LISTENER);
14070
+ this.element.addEventListener('keydown', this.EVENT_LISTENER);
14071
+ };
14072
+ Object.defineProperty(AccessibilityEventDirective.prototype, "element", {
14073
+ get: function () {
14074
+ return this.elementRef.nativeElement;
14075
+ },
14076
+ enumerable: true,
14077
+ configurable: true
14078
+ });
14079
+ AccessibilityEventDirective.prototype.ngOnDestroy = function () {
14080
+ this.element.removeEventListener('click', this.EVENT_LISTENER);
14081
+ this.element.removeEventListener('keydown', this.EVENT_LISTENER);
14082
+ };
14083
+ AccessibilityEventDirective.ctorParameters = function () { return [
14084
+ { type: ElementRef }
14085
+ ]; };
14086
+ __decorate([
14087
+ Output()
14088
+ ], AccessibilityEventDirective.prototype, "sActivatedContent", void 0);
14089
+ __decorate([
14090
+ Input()
14091
+ ], AccessibilityEventDirective.prototype, "tabindex", void 0);
14092
+ AccessibilityEventDirective = __decorate([
14093
+ Directive({
14094
+ selector: '[sActivatedContent]'
14095
+ })
14096
+ ], AccessibilityEventDirective);
14097
+ return AccessibilityEventDirective;
14098
+ }());
14099
+
14100
+ var AccessibilityEventsModule = /** @class */ (function () {
14101
+ function AccessibilityEventsModule() {
14102
+ }
14103
+ AccessibilityEventsModule = __decorate([
14104
+ NgModule({
14105
+ declarations: [AccessibilityEventDirective],
14106
+ imports: [
14107
+ CommonModule
14108
+ ],
14109
+ exports: [AccessibilityEventDirective]
14110
+ })
14111
+ ], AccessibilityEventsModule);
14112
+ return AccessibilityEventsModule;
14113
+ }());
14114
+
14115
+ var FieldsetModule = /** @class */ (function () {
14116
+ function FieldsetModule() {
14117
+ }
14118
+ FieldsetModule = __decorate([
14119
+ NgModule({
14120
+ imports: [CommonModule, AccessibilityEventsModule, BrowserAnimationsModule],
14121
+ declarations: [FieldsetComponent$1],
14122
+ exports: [FieldsetComponent$1],
14123
+ })
14124
+ ], FieldsetModule);
14125
+ return FieldsetModule;
14126
+ }());
14127
+
13976
14128
  var DynamicFormModule = /** @class */ (function () {
13977
14129
  function DynamicFormModule() {
13978
14130
  }
@@ -14011,6 +14163,7 @@ var DynamicFormModule = /** @class */ (function () {
14011
14163
  ReactiveFormsModule,
14012
14164
  TooltipModule,
14013
14165
  FieldsetModule,
14166
+ StructureModule,
14014
14167
  TableHeaderCheckboxModule,
14015
14168
  FileUploadModule,
14016
14169
  TableModule,
@@ -23254,5 +23407,5 @@ var fallback = {
23254
23407
  * Generated bundle index. Do not edit.
23255
23408
  */
23256
23409
 
23257
- export { AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonAnimation, 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, GridMenuComponent, GridMenuModule, GridType, HelpPopoverComponent, HelpPopoverDirective, HelpPopoverModule, 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, TextAreaComponent, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextAreaModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, ThumbnailsComponent, ThumbnailsModule, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, ToastComponent, ToastModule, ToastService, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, getElementLeftoverContentAvailable, getElementPositionInfo, isMousePositionOutsideOfElement, 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, SpeechRecognitionModule as ɵby, SpeechRecognitionComponent as ɵbz, InfoSignComponent as ɵc, SpeechRecognitionService as ɵca, TextToSpeechService as ɵcb, AutocompleteFieldComponent as ɵcc, BooleanFieldComponent as ɵcd, BooleanSwitchFieldComponent as ɵce, CalendarFieldComponent as ɵcf, ChipsFieldComponent as ɵcg, CountryPhonePickerFieldComponent as ɵch, DynamicFieldComponent as ɵci, DynamicFormDirective as ɵcj, FieldsetComponent as ɵck, FileUploadComponent$1 as ɵcl, LookupFieldComponent as ɵcm, RadioButtonComponent as ɵcn, RowComponent as ɵco, SectionComponent as ɵcp, SelectFieldComponent as ɵcq, SliderFieldComponent as ɵcr, TextAreaFieldComponent as ɵcs, TextAreaIAFieldComponent as ɵct, IAssistService as ɵcu, ButtonFieldComponent as ɵcv, DecimalField as ɵcx, SideTableComponent as ɵcy, InfiniteScrollModule as ɵcz, TieredMenuEventService as ɵd, InfiniteScrollDirective as ɵda, IAInsightSidebarComponent as ɵdb, IAInsightCardComponent as ɵdc, IAInsightCardLoaderComponent as ɵdd, GridMenuItemComponent as ɵde, InlineEditItemComponent as ɵdf, InlineEditCalendarComponent as ɵdg, InlineEditLookupComponent as ɵdh, InlineEditNumberComponent as ɵdi, InlineEditTextComponent as ɵdj, InlineEditTextAreaComponent as ɵdk, InlineEditTextAreaIAComponent as ɵdl, KanbanEventService as ɵdm, KanbanItemComponent as ɵdn, KanbanColumnComponent as ɵdo, KanbanItemDraggingComponent as ɵdp, NumberLocaleOptions as ɵdq, BorderButtonModule as ɵdr, BorderButtonComponent as ɵds, ProgressBarDeterminateComponent as ɵdt, ProgressBarIndeterminateComponent as ɵdu, SelectButtonItemComponent as ɵdv, SlidePanelService as ɵdw, ThumbnailItemComponent as ɵdx, ThumbnailItemVideoComponent as ɵdy, ThumbnailItemImageComponent as ɵdz, TieredMenuService as ɵe, TimelineItemModule as ɵea, TimelineIconItemComponent as ɵeb, HorizontalTimelineModule as ɵec, HorizontalTimelineComponent as ɵed, VerticalTimelineModule as ɵee, VerticalTimelineComponent as ɵef, RangeLineComponent as ɵeg, CollapseOptionComponent as ɵeh, CollapsedItemsComponent as ɵei, VerticalItemsComponent as ɵej, ChipItemComponent as ɵek, TieredMenuGlobalService as ɵf, TieredMenuComponent as ɵg, TieredMenuNestedComponent as ɵh, TieredMenuItemComponent as ɵi, TieredMenuDividerComponent as ɵj, LocalizedCurrencyImpurePipe as ɵk, LocalizedBignumberPipe as ɵl, LocalizedBignumberImpurePipe as ɵm, NumericPipe as ɵn, ChatMessageComponent as ɵo, CustomTranslationsModule as ɵp, CodeEditorComponent as ɵq, CoreFacade as ɵr, CodeMirror6Core as ɵs, CountryPhonePickerService as ɵt, EmptyStateGoBackComponent as ɵu, IAssistIconComponent as ɵv, SeniorIconComponent as ɵw, DotsIndicatorComponent as ɵx, LoadingIndicatorComponent as ɵy, FileUploadService as ɵz };
23410
+ export { AccessibilityEventDirective, AccessibilityEventsModule, AccordionComponent, AccordionModule, AccordionPanelComponent, AlertComponent, AlertModule, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonAnimation, 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, FieldsetComponent$1 as FieldsetComponent, FieldsetModule, FileUploadComponent, FileUploadModule, FileUploadPermissions, FileValidation, FooterComponent, FormField, GanttComponent, GanttModule, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, Grid, GridMenuComponent, GridMenuModule, GridType, HeaderComponent, HelpPopoverComponent, HelpPopoverDirective, HelpPopoverModule, 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, StructureModule, StructureType, SwitchComponent, SwitchModule, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TemplateDirective, TemplateModule, TextAreaComponent, TextAreaField, TextAreaIAComponent, TextAreaIAModule, TextAreaModule, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, ThumbnailsComponent, ThumbnailsModule, TieredMenuDirective, TieredMenuModule, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, ToastComponent, ToastModule, ToastService, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, fallback, getElementLeftoverContentAvailable, getElementPositionInfo, isMousePositionOutsideOfElement, 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, ProfilePictureFieldComponent as ɵbs, EditorFieldModule as ɵbt, EditorFieldComponent as ɵbu, SpeechRecognitionModule as ɵbv, SpeechRecognitionComponent as ɵbw, SpeechRecognitionService as ɵbx, TextToSpeechService as ɵby, AutocompleteFieldComponent as ɵbz, InfoSignComponent as ɵc, BooleanFieldComponent as ɵca, BooleanSwitchFieldComponent as ɵcb, CalendarFieldComponent as ɵcc, ChipsFieldComponent as ɵcd, CountryPhonePickerFieldComponent as ɵce, DynamicFieldComponent as ɵcf, DynamicFormDirective as ɵcg, FieldsetComponent as ɵch, FileUploadComponent$1 as ɵci, LookupFieldComponent as ɵcj, RadioButtonComponent as ɵck, RowComponent as ɵcl, SectionComponent as ɵcm, SelectFieldComponent as ɵcn, SliderFieldComponent as ɵco, TextAreaFieldComponent as ɵcp, TextAreaIAFieldComponent as ɵcq, IAssistService as ɵcr, ButtonFieldComponent as ɵcs, DecimalField as ɵcu, SideTableComponent as ɵcv, InfiniteScrollModule as ɵcw, InfiniteScrollDirective as ɵcx, IAInsightSidebarComponent as ɵcy, IAInsightCardComponent as ɵcz, TieredMenuEventService as ɵd, IAInsightCardLoaderComponent as ɵda, GridMenuItemComponent as ɵdb, InlineEditItemComponent as ɵdc, InlineEditCalendarComponent as ɵdd, InlineEditLookupComponent as ɵde, InlineEditNumberComponent as ɵdf, InlineEditTextComponent as ɵdg, InlineEditTextAreaComponent as ɵdh, InlineEditTextAreaIAComponent as ɵdi, KanbanEventService as ɵdj, KanbanItemComponent as ɵdk, KanbanColumnComponent as ɵdl, KanbanItemDraggingComponent as ɵdm, NumberLocaleOptions as ɵdn, BorderButtonModule as ɵdo, BorderButtonComponent as ɵdp, ProgressBarDeterminateComponent as ɵdq, ProgressBarIndeterminateComponent as ɵdr, SelectButtonItemComponent as ɵds, SlidePanelService as ɵdt, ThumbnailItemComponent as ɵdu, ThumbnailItemVideoComponent as ɵdv, ThumbnailItemImageComponent as ɵdw, TimelineItemModule as ɵdx, TimelineIconItemComponent as ɵdy, HorizontalTimelineModule as ɵdz, TieredMenuService as ɵe, HorizontalTimelineComponent as ɵea, VerticalTimelineModule as ɵeb, VerticalTimelineComponent as ɵec, RangeLineComponent as ɵed, CollapseOptionComponent as ɵee, CollapsedItemsComponent as ɵef, VerticalItemsComponent as ɵeg, ChipItemComponent as ɵeh, TieredMenuGlobalService as ɵf, TieredMenuComponent as ɵg, TieredMenuNestedComponent as ɵh, TieredMenuItemComponent as ɵi, TieredMenuDividerComponent as ɵj, LocalizedCurrencyImpurePipe as ɵk, LocalizedBignumberPipe as ɵl, LocalizedBignumberImpurePipe as ɵm, NumericPipe as ɵn, ChatMessageComponent as ɵo, CustomTranslationsModule as ɵp, CodeEditorComponent as ɵq, CoreFacade as ɵr, CodeMirror6Core as ɵs, CountryPhonePickerService as ɵt, EmptyStateGoBackComponent as ɵu, IAssistIconComponent as ɵv, SeniorIconComponent as ɵw, DotsIndicatorComponent as ɵx, LoadingIndicatorComponent as ɵy, FileUploadService as ɵz };
23258
23411
  //# sourceMappingURL=seniorsistemas-angular-components.js.map