@seniorsistemas/angular-components 17.30.0 → 17.31.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.
@@ -1,4 +1,4 @@
1
- import { __decorate, __assign, __extends, __read, __spread, __awaiter, __generator, __param, __values, __rest } from 'tslib';
1
+ import { __decorate, __values, __assign, __extends, __read, __spread, __awaiter, __generator, __param, __rest } from 'tslib';
2
2
  import { EventEmitter, Input, Output, Component, ContentChildren, ViewChild, HostListener, forwardRef, NgModule, ɵɵdefineInjectable, Injectable, ElementRef, ApplicationRef, ComponentFactoryResolver, Injector, Renderer2, Directive, TemplateRef, ViewContainerRef, Pipe, ɵɵinject, HostBinding, ChangeDetectorRef, ViewChildren, InjectionToken, Inject, PLATFORM_ID, KeyValueDiffers, ViewEncapsulation, INJECTOR, NgZone, ContentChild, Optional } from '@angular/core';
3
3
  import { trigger, transition, style as style$7, animate, state, group, query, animateChild, stagger } from '@angular/animations';
4
4
  import { Subject, of, from, ReplaySubject, throwError, fromEvent, forkJoin, pipe } from 'rxjs';
@@ -182,68 +182,90 @@ var AccordionPanelComponent = /** @class */ (function () {
182
182
  var AccordionComponent = /** @class */ (function () {
183
183
  function AccordionComponent() {
184
184
  this.multiple = false;
185
- this._unsubscribe$ = new Subject();
186
- this._panels = [];
185
+ this.unsubscribe$ = new Subject();
186
+ this.panels = [];
187
187
  }
188
+ AccordionComponent.prototype.ngOnInit = function () {
189
+ this.validateInputs();
190
+ };
188
191
  AccordionComponent.prototype.ngAfterContentInit = function () {
189
- this._panels = this.panelsComponents.toArray();
190
- this._openSubs = new Array(this._panels.length);
191
- this._setBehavior(this.multiple);
192
- this._setupTabs();
192
+ this.panels = this.panelsComponents.toArray();
193
+ this.openSubs = new Array(this.panels.length);
194
+ this.setBehavior(this.multiple);
195
+ this.setupTabs();
193
196
  };
194
197
  AccordionComponent.prototype.ngOnChanges = function (changes) {
195
198
  if (changes.multiple) {
196
- this._setBehavior(changes.multiple.currentValue);
199
+ this.setBehavior(changes.multiple.currentValue);
197
200
  }
198
201
  };
199
202
  AccordionComponent.prototype.ngOnDestroy = function () {
200
- this._unsubscribe$.next();
201
- this._unsubscribe$.complete();
203
+ this.unsubscribe$.next();
204
+ this.unsubscribe$.complete();
202
205
  };
203
- AccordionComponent.prototype._setupTabs = function () {
204
- var _a;
205
- if ((_a = this._panels) === null || _a === void 0 ? void 0 : _a.length) {
206
+ AccordionComponent.prototype.validateInputs = function () {
207
+ if (!this.multiple && Array.isArray(this.activeIndex)) {
208
+ throw new Error("The activeIndex should not be an array when multiple is set to false.");
209
+ }
210
+ };
211
+ AccordionComponent.prototype.setupTabs = function () {
212
+ var e_1, _a;
213
+ var _this = this;
214
+ var _b;
215
+ if ((_b = this.panels) === null || _b === void 0 ? void 0 : _b.length) {
206
216
  if (this.activeIndex !== undefined && this.activeIndex !== null) {
207
- var activeTab = this._panels[this.activeIndex];
208
- if (!activeTab) {
217
+ var activeTabs = Array.isArray(this.activeIndex)
218
+ ? this.panels.filter(function (_, index) { return _this.activeIndex.includes(index); })
219
+ : [this.panels[this.activeIndex]];
220
+ if (activeTabs.length === 0) {
209
221
  throw new Error("activeIndex does not represent any panel.");
210
222
  }
211
- if (!activeTab.disabled) {
212
- this._panels[this.activeIndex].isOpen = true;
223
+ try {
224
+ for (var activeTabs_1 = __values(activeTabs), activeTabs_1_1 = activeTabs_1.next(); !activeTabs_1_1.done; activeTabs_1_1 = activeTabs_1.next()) {
225
+ var activeTab = activeTabs_1_1.value;
226
+ if (!activeTab.disabled) {
227
+ activeTab.isOpen = true;
228
+ }
229
+ }
230
+ }
231
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
232
+ finally {
233
+ try {
234
+ if (activeTabs_1_1 && !activeTabs_1_1.done && (_a = activeTabs_1.return)) _a.call(activeTabs_1);
235
+ }
236
+ finally { if (e_1) throw e_1.error; }
213
237
  }
214
238
  }
215
239
  }
216
240
  };
217
- AccordionComponent.prototype._closeOtherTabs = function (exception) {
218
- this._panels.forEach(function (panel, index) {
241
+ AccordionComponent.prototype.closeOtherTabs = function (exception) {
242
+ this.panels.forEach(function (panel, index) {
219
243
  if (index !== exception) {
220
244
  panel.isOpen = false;
221
245
  }
222
246
  });
223
247
  };
224
- AccordionComponent.prototype._setBehavior = function (multiple) {
248
+ AccordionComponent.prototype.setBehavior = function (multiple) {
225
249
  if (multiple) {
226
- this._enableMultiplePanelBehavior();
250
+ this.enableMultiplePanelBehavior();
227
251
  }
228
252
  else {
229
- this._enableSinglePanelBehavior();
253
+ this.enableSinglePanelBehavior();
230
254
  }
231
255
  };
232
- AccordionComponent.prototype._enableSinglePanelBehavior = function () {
256
+ AccordionComponent.prototype.enableSinglePanelBehavior = function () {
233
257
  var _this = this;
234
- this._panels.forEach(function (panel, index) {
235
- _this._openSubs[index] = panel.panelOpened
236
- .pipe(takeUntil(_this._unsubscribe$))
237
- .subscribe(function () {
238
- _this._closeOtherTabs(index);
258
+ this.panels.forEach(function (panel, index) {
259
+ _this.openSubs[index] = panel.panelOpened.pipe(takeUntil(_this.unsubscribe$)).subscribe(function () {
260
+ _this.closeOtherTabs(index);
239
261
  });
240
262
  });
241
263
  };
242
- AccordionComponent.prototype._enableMultiplePanelBehavior = function () {
264
+ AccordionComponent.prototype.enableMultiplePanelBehavior = function () {
243
265
  var _this = this;
244
- this._panels.forEach(function (_, index) {
245
- if (_this._openSubs[index]) {
246
- _this._openSubs[index].unsubscribe();
266
+ this.panels.forEach(function (_, index) {
267
+ if (_this.openSubs[index]) {
268
+ _this.openSubs[index].unsubscribe();
247
269
  }
248
270
  });
249
271
  };
@@ -461,7 +483,7 @@ var getElementPositionInfo = function (element) {
461
483
  elementHeight: elementHeight,
462
484
  elementWidth: elementWidth,
463
485
  elementVerticalCenter: elementVerticalCenter,
464
- elementHorizontalCenter: elementHorizontalCenter
486
+ elementHorizontalCenter: elementHorizontalCenter,
465
487
  };
466
488
  };
467
489
  var getElementLeftoverContentAvailable = function (element) {
@@ -475,9 +497,14 @@ var getElementLeftoverContentAvailable = function (element) {
475
497
  freeDistanceToBottom: freeDistanceToBottom,
476
498
  freeDistanceToTop: freeDistanceToTop,
477
499
  freeDistanceToLeft: freeDistanceToLeft,
478
- freeDistanceToRight: freeDistanceToRight
500
+ freeDistanceToRight: freeDistanceToRight,
479
501
  };
480
502
  };
503
+ var deepClone = function (obj) {
504
+ if (typeof structuredClone === "function")
505
+ return structuredClone(obj);
506
+ return JSON.parse(JSON.stringify(obj));
507
+ };
481
508
 
482
509
  var MobileBehavior;
483
510
  (function (MobileBehavior) {
@@ -10231,11 +10258,11 @@ var TableColumnsComponent = /** @class */ (function () {
10231
10258
  };
10232
10259
  TableColumnsComponent.prototype.createColumnsTemplate = function (changes) {
10233
10260
  var _this = this;
10234
- var _a, _b, _c;
10261
+ var _a, _b, _c, _d;
10235
10262
  this.viewContainerRef.clear();
10236
10263
  var columns = ((_a = changes.columns) === null || _a === void 0 ? void 0 : _a.currentValue) || this.columns;
10237
- var rowValue = ((_b = changes.rowValue) === null || _b === void 0 ? void 0 : _b.currentValue) || this.rowValue;
10238
- var locale = ((_c = changes.locale) === null || _c === void 0 ? void 0 : _c.currentValue) || this.locale;
10264
+ var rowValue = deepClone((_c = (_b = changes.rowValue) === null || _b === void 0 ? void 0 : _b.currentValue) !== null && _c !== void 0 ? _c : this.rowValue);
10265
+ var locale = ((_d = changes.locale) === null || _d === void 0 ? void 0 : _d.currentValue) || this.locale;
10239
10266
  this.formattedColumns = columns.map(function (column) { return _this.getColumnValue(column, rowValue, locale); });
10240
10267
  this.cellsData = this.formattedColumns.map(function (column) { return _this.getCellData(column); });
10241
10268
  this.viewContainerRef.createEmbeddedView(this.columnsTemplate);
@@ -10366,14 +10393,14 @@ var TableColumnsComponent = /** @class */ (function () {
10366
10393
  };
10367
10394
  TableColumnsComponent.prototype.getColumnScale = function (scale) {
10368
10395
  if (typeof scale === "function") {
10369
- return scale(this.rowValue);
10396
+ return scale(deepClone(this.rowValue));
10370
10397
  }
10371
10398
  return scale;
10372
10399
  };
10373
10400
  TableColumnsComponent.prototype.getColumnInfoSign = function (infoSign) {
10374
10401
  if (infoSign !== undefined && infoSign !== null) {
10375
10402
  if (typeof infoSign === "function") {
10376
- return infoSign(this.rowValue);
10403
+ return infoSign(deepClone(this.rowValue));
10377
10404
  }
10378
10405
  return infoSign;
10379
10406
  }
@@ -10382,7 +10409,7 @@ var TableColumnsComponent = /** @class */ (function () {
10382
10409
  TableColumnsComponent.prototype.getColumnTooltip = function (tooltip) {
10383
10410
  if (tooltip !== undefined && tooltip !== null) {
10384
10411
  if (typeof tooltip === "function") {
10385
- return tooltip(this.rowValue);
10412
+ return tooltip(deepClone(this.rowValue));
10386
10413
  }
10387
10414
  return tooltip;
10388
10415
  }
@@ -10597,7 +10624,7 @@ var TablePagingComponent = /** @class */ (function () {
10597
10624
  });
10598
10625
  };
10599
10626
  TablePagingComponent.prototype.getCurrentPageRowsToExport = function (columns) {
10600
- var tableData = this.table.value;
10627
+ var tableData = deepClone(this.table.value);
10601
10628
  if (this.loadCurrentPageRecords) {
10602
10629
  tableData = this.loadCurrentPageRecords();
10603
10630
  }
@@ -10606,7 +10633,7 @@ var TablePagingComponent = /** @class */ (function () {
10606
10633
  return this.mapColumnsTranslations(columns, tableData);
10607
10634
  };
10608
10635
  TablePagingComponent.prototype.getSelectedRowsToExport = function (columns) {
10609
- var tableData = this.table.selection;
10636
+ var tableData = deepClone(this.table.selection);
10610
10637
  if (this.loadSelectedRecords) {
10611
10638
  tableData = this.loadSelectedRecords();
10612
10639
  }
@@ -24018,5 +24045,5 @@ var fallback = {
24018
24045
  * Generated bundle index. Do not edit.
24019
24046
  */
24020
24047
 
24021
- 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, TreeComponent, TreeModule, 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, TreeNodeItemComponent as ɵei, 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 };
24048
+ 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, TreeComponent, TreeModule, ValidateErrors, ViewMode, WorkspaceSwitchComponent, WorkspaceSwitchModule, convertToMomentDateFormat, countries, deepClone, 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, TreeNodeItemComponent as ɵei, 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 };
24022
24049
  //# sourceMappingURL=seniorsistemas-angular-components.js.map