@seniorsistemas/angular-components 16.7.5 → 16.8.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 (27) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +83 -10
  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/configurations/form-field.d.ts +2 -0
  6. package/components/tooltip/models/element-area.d.ts +6 -0
  7. package/components/tooltip/tooltip.directive.d.ts +12 -6
  8. package/components/utils/debouce.d.ts +4 -0
  9. package/components/utils/index.d.ts +3 -2
  10. package/esm2015/components/dynamic-form/components/grid/row/row.component.js +2 -1
  11. package/esm2015/components/dynamic-form/configurations/form-field.js +1 -1
  12. package/esm2015/components/tooltip/models/element-area.js +1 -0
  13. package/esm2015/components/tooltip/tooltip.directive.js +36 -10
  14. package/esm2015/components/utils/debouce.js +35 -0
  15. package/esm2015/components/utils/index.js +4 -3
  16. package/esm5/components/dynamic-form/components/grid/row/row.component.js +2 -2
  17. package/esm5/components/dynamic-form/configurations/form-field.js +1 -1
  18. package/esm5/components/tooltip/models/element-area.js +1 -0
  19. package/esm5/components/tooltip/tooltip.directive.js +37 -10
  20. package/esm5/components/utils/debouce.js +50 -0
  21. package/esm5/components/utils/index.js +4 -3
  22. package/fesm2015/seniorsistemas-angular-components.js +68 -11
  23. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  24. package/fesm5/seniorsistemas-angular-components.js +84 -12
  25. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  26. package/package.json +1 -1
  27. package/seniorsistemas-angular-components.metadata.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import { __decorate, __spread, __assign, __values, __extends, __rest, __awaiter, __generator, __param, __read } from 'tslib';
2
- import { EventEmitter, Input, Output, HostListener, Component, NgModule, HostBinding, ViewChild, Renderer2, Directive, Injectable, ElementRef, Pipe, forwardRef, ViewEncapsulation, InjectionToken, Inject, ApplicationRef, ComponentFactoryResolver, Injector, TemplateRef, ViewContainerRef, ChangeDetectorRef, Optional, ContentChild, ContentChildren } from '@angular/core';
2
+ import { EventEmitter, Input, Output, HostListener, Component, NgModule, HostBinding, ViewChild, Renderer2, Directive, Injectable, ElementRef, Pipe, forwardRef, ViewEncapsulation, ɵɵdefineInjectable, InjectionToken, Inject, ApplicationRef, ComponentFactoryResolver, Injector, TemplateRef, ViewContainerRef, ChangeDetectorRef, Optional, ContentChild, ContentChildren } from '@angular/core';
3
3
  import { CommonModule } from '@angular/common';
4
4
  import { RouterModule, NavigationEnd, PRIMARY_OUTLET, ActivatedRoute, Router } from '@angular/router';
5
5
  import { BreadcrumbModule as BreadcrumbModule$1 } from 'primeng/breadcrumb';
@@ -3528,6 +3528,52 @@ var ExportUtils = /** @class */ (function () {
3528
3528
  return ExportUtils;
3529
3529
  }());
3530
3530
 
3531
+ var DEFAULT_TIMER = 300;
3532
+ var DebounceUtils = /** @class */ (function () {
3533
+ function DebounceUtils() {
3534
+ }
3535
+ DebounceUtils.prototype.debounce = function (func, timeout) {
3536
+ var _this = this;
3537
+ if (timeout === void 0) { timeout = DEFAULT_TIMER; }
3538
+ var timer;
3539
+ return function () {
3540
+ var args = [];
3541
+ for (var _i = 0; _i < arguments.length; _i++) {
3542
+ args[_i] = arguments[_i];
3543
+ }
3544
+ clearTimeout(timer);
3545
+ timer = setTimeout(function () {
3546
+ func.apply(_this, args);
3547
+ }, timeout);
3548
+ };
3549
+ };
3550
+ DebounceUtils.prototype.debounceLeading = function (func, timeout) {
3551
+ var _this = this;
3552
+ if (timeout === void 0) { timeout = DEFAULT_TIMER; }
3553
+ var timer;
3554
+ return function () {
3555
+ var args = [];
3556
+ for (var _i = 0; _i < arguments.length; _i++) {
3557
+ args[_i] = arguments[_i];
3558
+ }
3559
+ if (!timer) {
3560
+ func.apply(_this, args);
3561
+ }
3562
+ clearTimeout(timer);
3563
+ timer = setTimeout(function () {
3564
+ timer = null;
3565
+ }, timeout);
3566
+ };
3567
+ };
3568
+ DebounceUtils.ɵprov = ɵɵdefineInjectable({ factory: function DebounceUtils_Factory() { return new DebounceUtils(); }, token: DebounceUtils, providedIn: "root" });
3569
+ DebounceUtils = __decorate([
3570
+ Injectable({
3571
+ providedIn: 'root',
3572
+ })
3573
+ ], DebounceUtils);
3574
+ return DebounceUtils;
3575
+ }());
3576
+
3531
3577
  /**
3532
3578
  * Formats a JSON response to a JS object
3533
3579
  * @param response The response to format
@@ -4114,11 +4160,13 @@ var TooltipEvent;
4114
4160
  })(TooltipEvent || (TooltipEvent = {}));
4115
4161
 
4116
4162
  var TooltipDirective = /** @class */ (function () {
4117
- function TooltipDirective(elementRef, appRef, componentFactoryResolver, injector) {
4163
+ function TooltipDirective(elementRef, appRef, componentFactoryResolver, injector, debounceUtils) {
4164
+ var _this = this;
4118
4165
  this.elementRef = elementRef;
4119
4166
  this.appRef = appRef;
4120
4167
  this.componentFactoryResolver = componentFactoryResolver;
4121
4168
  this.injector = injector;
4169
+ this.debounceUtils = debounceUtils;
4122
4170
  this.position = TooltipPosition.Top;
4123
4171
  this.showDelay = 500;
4124
4172
  this.tooltipEvent = TooltipEvent.Hover;
@@ -4126,6 +4174,8 @@ var TooltipDirective = /** @class */ (function () {
4126
4174
  this.visible = true;
4127
4175
  this.mobileBehavior = MobileBehavior.Pressing;
4128
4176
  this.componentRef = null;
4177
+ this.boundOnWindowMouseMoveFunction = this.onWindowMouseMove.bind(this);
4178
+ this.debounceCreateTooltipFunction = this.debounceUtils.debounceLeading(function () { return _this.createTootip(); });
4129
4179
  }
4130
4180
  TooltipDirective.prototype.ngOnInit = function () {
4131
4181
  this.validatePosition();
@@ -4133,6 +4183,25 @@ var TooltipDirective = /** @class */ (function () {
4133
4183
  TooltipDirective.prototype.ngOnDestroy = function () {
4134
4184
  this.destroy();
4135
4185
  };
4186
+ TooltipDirective.prototype.onWindowMouseMove = function (event) {
4187
+ if (!this.componentRef) {
4188
+ return;
4189
+ }
4190
+ var elementRect = this.elementRef.nativeElement.getBoundingClientRect();
4191
+ var toolTipRect = this.tooltipDivElement.getBoundingClientRect();
4192
+ var totalElementArea = {
4193
+ top: Math.min(elementRect.top, toolTipRect.top),
4194
+ right: Math.max(elementRect.right, toolTipRect.right),
4195
+ left: Math.min(elementRect.left, toolTipRect.left),
4196
+ bottom: Math.max(elementRect.bottom, toolTipRect.bottom)
4197
+ };
4198
+ if (this.isMousePositionOutsideOfElement(event.clientX, event.clientY, totalElementArea)) {
4199
+ this.destroy();
4200
+ }
4201
+ };
4202
+ TooltipDirective.prototype.isMousePositionOutsideOfElement = function (mouseX, mouseY, elementArea) {
4203
+ return mouseX < elementArea.left || mouseX >= elementArea.right || mouseY < elementArea.top || mouseY >= elementArea.bottom;
4204
+ };
4136
4205
  // whenever the component with the tooltip is clicked I destroy the tooltip.
4137
4206
  // whenever a key is pressed on the component with the tooltip I destroy the tooltip.
4138
4207
  TooltipDirective.prototype.onClick = function () {
@@ -4160,12 +4229,12 @@ var TooltipDirective = /** @class */ (function () {
4160
4229
  };
4161
4230
  TooltipDirective.prototype.onMouseEnter = function () {
4162
4231
  if (this.tooltipEvent === TooltipEvent.Hover) {
4163
- this.createTootip();
4232
+ this.debounceCreateTooltipFunction();
4164
4233
  }
4165
4234
  };
4166
4235
  TooltipDirective.prototype.onMouseLeave = function () {
4167
4236
  if (this.tooltipEvent === TooltipEvent.Hover) {
4168
- this.setHideTooltipTimeout();
4237
+ this.destroy();
4169
4238
  }
4170
4239
  };
4171
4240
  TooltipDirective.prototype.onTouchStart = function () {
@@ -4178,7 +4247,7 @@ var TooltipDirective = /** @class */ (function () {
4178
4247
  if (this.tooltipEvent === TooltipEvent.Hover) {
4179
4248
  if (this.mobileBehavior === MobileBehavior.Pressing) {
4180
4249
  window.clearTimeout(this.touchTimeout);
4181
- this.setHideTooltipTimeout();
4250
+ this.destroy();
4182
4251
  }
4183
4252
  }
4184
4253
  };
@@ -4194,9 +4263,6 @@ var TooltipDirective = /** @class */ (function () {
4194
4263
  throw new Error("Tooltip " + this.position + " position is unexpected");
4195
4264
  }
4196
4265
  };
4197
- TooltipDirective.prototype.setHideTooltipTimeout = function () {
4198
- this.destroy();
4199
- };
4200
4266
  TooltipDirective.prototype.createTootip = function () {
4201
4267
  var _a;
4202
4268
  if (this.componentRef === null && ((_a = this.tooltip) === null || _a === void 0 ? void 0 : _a.length)) {
@@ -4207,6 +4273,7 @@ var TooltipDirective = /** @class */ (function () {
4207
4273
  document.body.appendChild(domElem);
4208
4274
  this.setTooltipComponentProperties();
4209
4275
  this.showTimeout = window.setTimeout(this.showTooltip.bind(this), this.showDelay);
4276
+ this.tooltipDivElement = domElem.querySelector('.tooltip');
4210
4277
  if (this.displayTime) {
4211
4278
  window.setTimeout(this.destroy.bind(this), this.displayTime);
4212
4279
  }
@@ -4215,6 +4282,7 @@ var TooltipDirective = /** @class */ (function () {
4215
4282
  TooltipDirective.prototype.showTooltip = function () {
4216
4283
  if (this.componentRef !== null) {
4217
4284
  this.componentRef.instance.visible = true;
4285
+ window.addEventListener('mousemove', this.boundOnWindowMouseMoveFunction);
4218
4286
  }
4219
4287
  };
4220
4288
  TooltipDirective.prototype.setTooltipComponentProperties = function () {
@@ -4319,13 +4387,16 @@ var TooltipDirective = /** @class */ (function () {
4319
4387
  this.appRef.detachView(this.componentRef.hostView);
4320
4388
  this.componentRef.destroy();
4321
4389
  this.componentRef = null;
4390
+ this.tooltipDivElement = null;
4322
4391
  }
4392
+ window.removeEventListener('mousemove', this.boundOnWindowMouseMoveFunction);
4323
4393
  };
4324
4394
  TooltipDirective.ctorParameters = function () { return [
4325
4395
  { type: ElementRef },
4326
4396
  { type: ApplicationRef },
4327
4397
  { type: ComponentFactoryResolver },
4328
- { type: Injector }
4398
+ { type: Injector },
4399
+ { type: DebounceUtils }
4329
4400
  ]; };
4330
4401
  __decorate([
4331
4402
  Input("sTooltip")
@@ -4368,7 +4439,8 @@ var TooltipDirective = /** @class */ (function () {
4368
4439
  HostListener("mouseenter")
4369
4440
  ], TooltipDirective.prototype, "onMouseEnter", null);
4370
4441
  __decorate([
4371
- HostListener("mouseleave")
4442
+ HostListener("mouseleave"),
4443
+ HostListener("wheel")
4372
4444
  ], TooltipDirective.prototype, "onMouseLeave", null);
4373
4445
  __decorate([
4374
4446
  HostListener("touchstart")
@@ -6428,7 +6500,7 @@ var RowComponent = /** @class */ (function () {
6428
6500
  ], RowComponent.prototype, "errorMessages", void 0);
6429
6501
  RowComponent = __decorate([
6430
6502
  Component({
6431
- template: "\n <div class=\"ui-fluid\" [formGroup]=\"group\">\n <div class=\"ui-g\">\n <ng-container *ngFor=\"let field of config.fields\">\n <div [ngClass]=\"field.gridClass\" *ngIf=\"field.visible()\">\n <label\n [for]=\"field.name\"\n [ngClass]=\"{ 'required': field.required() }\"\n *sInfoSign=\"field.infoSign\"\n >\n {{ field.label }}\n </label>\n <ng-container *sDynamicForm=\"{ id: id, config: field, group: group}\"></ng-container>\n <s-control-errors [form]=\"group\" [control]=\"group.controls[field.name]\"\n [errorMessages]=\"getErrorMessages(field.errorMessages)\"></s-control-errors>\n </div>\n </ng-container>\n </div>\n "
6503
+ template: "\n <div class=\"ui-fluid\" [formGroup]=\"group\">\n <div class=\"ui-g\">\n <ng-container *ngFor=\"let field of config.fields\">\n <div [ngClass]=\"field.gridClass\" *ngIf=\"field.visible()\">\n <label\n [for]=\"field.name\"\n [ngClass]=\"{ 'required': field.required() }\"\n *sInfoSign=\"field.infoSign\"\n >\n {{ field.label }}\n </label>\n <ng-container *sDynamicForm=\"{ id: id, config: field, group: group}\"></ng-container>\n <s-control-errors [form]=\"group\" [control]=\"group.controls[field.name]\"\n [errorMessages]=\"getErrorMessages(field.errorMessages)\"></s-control-errors>\n <ng-template *ngIf=\"field?.bottomTemplate\" [ngTemplateOutlet]=\"field.bottomTemplate\"></ng-template>\n </div>\n </ng-container>\n </div>\n "
6432
6504
  })
6433
6505
  ], RowComponent);
6434
6506
  return RowComponent;
@@ -11927,5 +11999,5 @@ var fallback = {
11927
11999
  * Generated bundle index. Do not edit.
11928
12000
  */
11929
12001
 
11930
- 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, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, 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, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, 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, 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, TimelineItemModule as ɵbm, TimelineIconItemComponent as ɵbn, HorizontalTimelineModule as ɵbo, HorizontalTimelineComponent as ɵbp, VerticalTimelineModule as ɵbq, VerticalTimelineComponent as ɵbr, RangeLineComponent as ɵbs, CollapseOptionComponent as ɵbt, CollapsedItemsComponent as ɵbu, VerticalItemsComponent as ɵbv, InfiniteScrollModule as ɵbw, InfiniteScrollDirective as ɵbx, CustomTranslationsModule as ɵby, CodeEditorComponent as ɵbz, LocalizedBignumberPipe as ɵc, CoreFacade as ɵca, CodeMirror6Core as ɵcb, 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 };
12002
+ 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, 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, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, 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, 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, TimelineItemModule as ɵbm, TimelineIconItemComponent as ɵbn, HorizontalTimelineModule as ɵbo, HorizontalTimelineComponent as ɵbp, VerticalTimelineModule as ɵbq, VerticalTimelineComponent as ɵbr, RangeLineComponent as ɵbs, CollapseOptionComponent as ɵbt, CollapsedItemsComponent as ɵbu, VerticalItemsComponent as ɵbv, InfiniteScrollModule as ɵbw, InfiniteScrollDirective as ɵbx, CustomTranslationsModule as ɵby, CodeEditorComponent as ɵbz, LocalizedBignumberPipe as ɵc, CoreFacade as ɵca, CodeMirror6Core as ɵcb, 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 };
11931
12003
  //# sourceMappingURL=seniorsistemas-angular-components.js.map