intelica-library-components 1.1.49 → 1.1.51

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,9 +1,9 @@
1
1
  import * as i0 from '@angular/core';
2
- import { inject, Injectable, signal, Pipe, Component, TemplateRef, ContentChild, Input, Directive, EventEmitter, ContentChildren, Output, HostListener, forwardRef, ViewChild, PLATFORM_ID, Inject, output, Optional, Host } from '@angular/core';
2
+ import { inject, Injectable, signal, Pipe, Component, TemplateRef, ContentChild, Input, Directive, EventEmitter, ContentChildren, Output, HostListener, forwardRef, ViewChild, PLATFORM_ID, Inject, DestroyRef, output, Optional, Host } from '@angular/core';
3
3
  import { getCookie, setCookie, Cookies } from 'typescript-cookie';
4
4
  import * as i1$4 from '@angular/common/http';
5
5
  import { HttpClient, HttpHeaders, HttpResponse } from '@angular/common/http';
6
- import { BehaviorSubject, catchError, throwError, from, switchMap, Subject, Subscription, of, delay, tap as tap$1, map, firstValueFrom } from 'rxjs';
6
+ import { BehaviorSubject, catchError, throwError, from, switchMap, Subject, Subscription, tap as tap$1, of, map, fromEvent, startWith, distinctUntilChanged, firstValueFrom } from 'rxjs';
7
7
  import Swal from 'sweetalert2';
8
8
  import { tap } from 'rxjs/operators';
9
9
  import * as i1 from '@angular/common';
@@ -51,11 +51,12 @@ import * as i2$4 from 'primeng/skeleton';
51
51
  import { SkeletonModule } from 'primeng/skeleton';
52
52
  import * as i1$3 from 'primeng/confirmdialog';
53
53
  import { ConfirmDialogModule } from 'primeng/confirmdialog';
54
+ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
55
+ import { Guid } from 'guid-typescript';
54
56
  import * as XLSX from 'xlsx';
55
57
  import { Workbook } from 'exceljs';
56
58
  import { saveAs } from 'file-saver';
57
59
  import JSEncrypt from 'jsencrypt';
58
- import { Guid } from 'guid-typescript';
59
60
  import Aura from '@primeng/themes/aura';
60
61
  import { definePreset } from '@primeng/themes';
61
62
  import * as signalR from '@microsoft/signalr';
@@ -6026,19 +6027,100 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
6026
6027
  args: [{ selector: "intelica-alert", standalone: true, imports: [CommonModule, ConfirmDialogModule, ButtonModule], template: "<!-- \r\n Clases Modificadoras para estados:\r\n prConfirmDialog--warning\r\n prConfirmDialog--danger\r\n prConfirmDialog--error\r\n prConfirmDialog--success\r\n prConfirmDialog--default\r\n-->\r\n<p-confirmDialog #cd\r\n [styleClass]=\"'prConfirmDialog ' + ($any(cd.confirmation)?.data?.config?.type ? ' prConfirmDialog--' + $any(cd.confirmation).data.config.type : ' prConfirmDialog--default')\"\r\n key=\"intelica-alert-dialog\" [closable]=\"false\" [visible]=\"undefined\">\r\n <!-- \r\n We use the headless template. \r\n 'message' contains the confirmation object.\r\n 'message.data' contains our custom 'presentationData' object from AlertService.\r\n -->\r\n <ng-template pTemplate=\"headless\" let-message let-onAccept=\"onAccept\" let-onReject=\"onReject\">\r\n <div class=\"prConfirmDialog__content\">\r\n <!-- Close Button -->\r\n @if (message.data.config.showCloseButton) {\r\n <div class=\"prConfirmDialog__close\">\r\n <p-button icon=\"pi pi-times\" class=\"prButton\" [rounded]=\"false\" [text]=\"true\" (onClick)=\"onReject()\"\r\n ariaLabel=\"Cerrar\"></p-button>\r\n </div>\r\n }\r\n\r\n <!-- Icon -->\r\n <div class=\"prConfirmDialog__icon\">\r\n @if (message.data.config.customImageUrl) {\r\n <img [src]=\"message.data.config.customImageUrl\" alt=\"Alert icon\" />\r\n } @else {\r\n <i [class]=\"$any(message).data.iconClass\"></i>\r\n }\r\n </div>\r\n <div class=\"prConfirmDialog__details\">\r\n <!-- Title -->\r\n <h2 class=\"prConfirmDialog__title\">{{ message.header }}</h2>\r\n\r\n <!-- Subtitle / Message -->\r\n @if (message.message) {\r\n <p class=\"prConfirmDialog__subtitle\"\r\n [style.color]=\"$any(message).data.config.styles?.subtitleColor ?? '#555'\">{{ message.message }}</p>\r\n }\r\n </div>\r\n\r\n <!-- HTML Content -->\r\n @if (message.data.config.htmlContent) {\r\n <div class=\"prConfirmDialog__text\" [innerHTML]=\"$any(message).data.config.htmlContent\"\r\n [style.color]=\"$any(message).data.config.styles?.subtitleColor ?? '#555'\"></div>\r\n }\r\n\r\n <!-- Buttons -->\r\n <div class=\"prConfirmDialog__footer\">\r\n <!-- Confirm Button -->\r\n <p-button class=\"prButton\" [label]=\"message.data.confirmText\" (onClick)=\"onAccept()\" />\r\n <!-- Cancel Button -->\r\n @if (message.data.showCancelButton) {\r\n <p-button class=\"prButton\" [label]=\"message.data.cancelText\" severity=\"secondary\" [outlined]=\"true\"\r\n (onClick)=\"onReject()\" />\r\n }\r\n </div>\r\n </div>\r\n </ng-template>\r\n</p-confirmDialog>" }]
6027
6028
  }] });
6028
6029
 
6029
- class AddFavoritesService {
6030
+ class GlobalFavoriteService {
6030
6031
  configService = inject(ConfigService);
6032
+ http = inject(HttpClient);
6033
+ path = `${this.configService.environment?.securityPath}/favorite-page`;
6034
+ eventFavorites = "FavoritesUpdatedEvent";
6035
+ _favorites = signal([], ...(ngDevMode ? [{ debugName: "_favorites" }] : []));
6036
+ favorites = this._favorites.asReadonly();
6037
+ constructor() {
6038
+ this.loadAllAndStore();
6039
+ window.addEventListener(this.eventFavorites, this.onFavoritesUpdated);
6040
+ }
6041
+ delete(guid) {
6042
+ return this.http.delete(`${this.path}/${guid}`).pipe(tap$1(() => this.loadAllAndStore()));
6043
+ }
6044
+ getAll() {
6045
+ return this.http.get(`${this.path}`);
6046
+ }
6047
+ create() {
6048
+ return this.http.post(`${this.path}`, {}).pipe(tap$1(() => this.loadAllAndStore()));
6049
+ }
6050
+ loadAllAndStore() {
6051
+ this.getAll()
6052
+ .pipe(tap$1(favorites => this.setFavorites(favorites)))
6053
+ .subscribe();
6054
+ }
6055
+ setFavorites(favorites) {
6056
+ this._favorites.set([...favorites]);
6057
+ this.emitFavoritesUpdatedEvent();
6058
+ }
6059
+ removeFavoriteByPageUrl(pageUrl) {
6060
+ const normalizedPageUrl = pageUrl;
6061
+ const filtered = this._favorites().filter(item => !this.matchesPage(item, normalizedPageUrl));
6062
+ this._favorites.set(filtered);
6063
+ this.emitFavoritesUpdatedEvent();
6064
+ }
6065
+ isFavoriteByPageUrl(pageUrl) {
6066
+ const normalizedPageUrl = pageUrl;
6067
+ return this._favorites().some(item => this.matchesPage(item, normalizedPageUrl));
6068
+ }
6069
+ isFavoriteByPageRoot(pageRoot) {
6070
+ return this._favorites().some(item => item.pageRoot === pageRoot);
6071
+ }
6072
+ removeFavoriteByPageRoot(pageRoot) {
6073
+ const favorite = this._favorites().find(item => item.pageRoot === pageRoot);
6074
+ if (!favorite)
6075
+ return of(void 0);
6076
+ return this.delete(Guid.parse(favorite.favoritePageID)).pipe(map(() => void 0));
6077
+ }
6078
+ favoritesChanges() {
6079
+ return fromEvent(window, this.eventFavorites).pipe(map(event => event.detail.favorites), startWith(this._favorites()));
6080
+ }
6081
+ onFavoritesUpdated = (event) => {
6082
+ const detail = event.detail;
6083
+ if (!detail?.favorites)
6084
+ return;
6085
+ this._favorites.set([...detail.favorites]);
6086
+ };
6087
+ emitFavoritesUpdatedEvent() {
6088
+ const event = new CustomEvent(this.eventFavorites, {
6089
+ detail: { favorites: this._favorites() },
6090
+ });
6091
+ window.dispatchEvent(event);
6092
+ }
6093
+ matchesPage(item, value) {
6094
+ return item.pageUrl === value || item.pageRoot === value;
6095
+ }
6096
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GlobalFavoriteService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
6097
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GlobalFavoriteService, providedIn: "root" });
6098
+ }
6099
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: GlobalFavoriteService, decorators: [{
6100
+ type: Injectable,
6101
+ args: [{ providedIn: "root" }]
6102
+ }], ctorParameters: () => [] });
6103
+
6104
+ class AddFavoritesService {
6105
+ favoritesService = inject(GlobalFavoriteService);
6106
+ featureFlagService = inject(GlobalFeatureFlagService);
6031
6107
  addPageToFavorites() {
6032
- return of(void 0).pipe(delay(200), tap$1(() => console.log("Test: Added current page to favorites")));
6108
+ return this.favoritesService.create().pipe(map(() => void 0));
6109
+ }
6110
+ isPageFavorite(pageRoot) {
6111
+ const resolvedPageRoot = this.resolvePageRoot(pageRoot);
6112
+ return this.favoritesService.favoritesChanges().pipe(map(() => this.favoritesService.isFavoriteByPageRoot(resolvedPageRoot)), distinctUntilChanged());
6033
6113
  }
6034
- isPageFavorite() {
6035
- return of(false).pipe(delay(200), tap$1(() => console.log("Test: Checked if current page is favorite")));
6114
+ watchPageFavorite(pageRoot) {
6115
+ const resolvedPageRoot = this.resolvePageRoot(pageRoot);
6116
+ return this.favoritesService.favoritesChanges().pipe(map(() => this.favoritesService.isFavoriteByPageRoot(resolvedPageRoot)), distinctUntilChanged());
6036
6117
  }
6037
- simulateToggle() {
6038
- return of(void 0).pipe(delay(200), tap$1(() => console.log("Test: Toggle favorite request")));
6118
+ removeFromFavorites(pageRoot) {
6119
+ const resolvedPageRoot = this.resolvePageRoot(pageRoot);
6120
+ return this.favoritesService.removeFavoriteByPageRoot(resolvedPageRoot);
6039
6121
  }
6040
- removeFromFavorites() {
6041
- return of(void 0).pipe(delay(200), tap$1(() => console.log("Test: removed from favorites")));
6122
+ resolvePageRoot(pageRoot) {
6123
+ return pageRoot?.trim() || this.featureFlagService.GetPageRoot();
6042
6124
  }
6043
6125
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AddFavoritesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
6044
6126
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AddFavoritesService, providedIn: "root" });
@@ -6054,25 +6136,34 @@ const ICON_ON = "icon-favorites-on";
6054
6136
  const ICON_OFF = "icon-favorites-off";
6055
6137
  class AddFavoritesComponent {
6056
6138
  termService = inject(GlobalTermService);
6057
- favoritesMock = inject(AddFavoritesService);
6139
+ addFavoriteService = inject(AddFavoritesService);
6140
+ destroyRef = inject(DestroyRef);
6058
6141
  favoriteChanged = output();
6059
6142
  isFavorite = false;
6143
+ isToggling = false;
6060
6144
  iconClass = ICON_OFF;
6061
6145
  ngOnInit() {
6062
6146
  this.loadInitialState();
6063
6147
  }
6064
6148
  toggleFavorite() {
6065
- const action$ = this.isFavorite ? this.favoritesMock.removeFromFavorites() : this.favoritesMock.addPageToFavorites();
6149
+ if (this.isToggling)
6150
+ return;
6151
+ this.isToggling = true;
6152
+ const nextFavorite = !this.isFavorite;
6153
+ const action$ = this.isFavorite ? this.addFavoriteService.removeFromFavorites() : this.addFavoriteService.addPageToFavorites();
6066
6154
  action$.subscribe({
6067
6155
  next: () => {
6068
- this.isFavorite = !this.isFavorite;
6069
- this.updateIcon();
6070
- this.favoriteChanged.emit(this.isFavorite);
6156
+ this.favoriteChanged.emit(nextFavorite);
6071
6157
  },
6158
+ complete: () => (this.isToggling = false),
6159
+ error: () => (this.isToggling = false),
6072
6160
  });
6073
6161
  }
6074
6162
  loadInitialState() {
6075
- this.favoritesMock.isPageFavorite().subscribe({
6163
+ this.addFavoriteService
6164
+ .watchPageFavorite()
6165
+ .pipe(takeUntilDestroyed(this.destroyRef))
6166
+ .subscribe({
6076
6167
  next: isFavorite => {
6077
6168
  this.isFavorite = isFavorite;
6078
6169
  this.updateIcon();
@@ -6083,11 +6174,11 @@ class AddFavoritesComponent {
6083
6174
  this.iconClass = this.isFavorite ? ICON_ON : ICON_OFF;
6084
6175
  }
6085
6176
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AddFavoritesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6086
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: AddFavoritesComponent, isStandalone: true, selector: "intelica-add-favorites", outputs: { favoriteChanged: "favoriteChanged" }, ngImport: i0, template: "<p-button class=\"prButton\" severity=\"secondary\" (onClick)=\"toggleFavorite()\">\r\n\t<i class=\"icon p-button-icon-left\" [ngClass]=\"iconClass\" pButtonIcon></i>\r\n\t<span pButtonLabel>{{ \"ADD_TO_FAVORITES\" | term : termService.languageCode }}</span>\r\n</p-button>\r\n", dependencies: [{ kind: "component", type: Button, selector: "p-button", inputs: ["hostName", "type", "badge", "disabled", "raised", "rounded", "text", "plain", "outlined", "link", "tabindex", "size", "variant", "style", "styleClass", "badgeClass", "badgeSeverity", "ariaLabel", "autofocus", "iconPos", "icon", "label", "loading", "loadingIcon", "severity", "buttonProps", "fluid"], outputs: ["onClick", "onFocus", "onBlur"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "pipe", type: TermPipe, name: "term" }] });
6177
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: AddFavoritesComponent, isStandalone: true, selector: "intelica-add-favorites", outputs: { favoriteChanged: "favoriteChanged" }, ngImport: i0, template: "<p-button class=\"prButton\" severity=\"secondary\" [disabled]=\"isToggling\" (onClick)=\"toggleFavorite()\">\r\n\t<i class=\"icon p-button-icon-left\" [ngClass]=\"iconClass\" pButtonIcon></i>\r\n\t<span pButtonLabel>{{ \"ADD_TO_FAVORITES\" | term : termService.languageCode }}</span>\r\n</p-button>\r\n", dependencies: [{ kind: "component", type: Button, selector: "p-button", inputs: ["hostName", "type", "badge", "disabled", "raised", "rounded", "text", "plain", "outlined", "link", "tabindex", "size", "variant", "style", "styleClass", "badgeClass", "badgeSeverity", "ariaLabel", "autofocus", "iconPos", "icon", "label", "loading", "loadingIcon", "severity", "buttonProps", "fluid"], outputs: ["onClick", "onFocus", "onBlur"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "pipe", type: TermPipe, name: "term" }] });
6087
6178
  }
6088
6179
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AddFavoritesComponent, decorators: [{
6089
6180
  type: Component,
6090
- args: [{ selector: "intelica-add-favorites", imports: [Button, TermPipe, NgClass], template: "<p-button class=\"prButton\" severity=\"secondary\" (onClick)=\"toggleFavorite()\">\r\n\t<i class=\"icon p-button-icon-left\" [ngClass]=\"iconClass\" pButtonIcon></i>\r\n\t<span pButtonLabel>{{ \"ADD_TO_FAVORITES\" | term : termService.languageCode }}</span>\r\n</p-button>\r\n" }]
6181
+ args: [{ selector: "intelica-add-favorites", imports: [Button, TermPipe, NgClass], template: "<p-button class=\"prButton\" severity=\"secondary\" [disabled]=\"isToggling\" (onClick)=\"toggleFavorite()\">\r\n\t<i class=\"icon p-button-icon-left\" [ngClass]=\"iconClass\" pButtonIcon></i>\r\n\t<span pButtonLabel>{{ \"ADD_TO_FAVORITES\" | term : termService.languageCode }}</span>\r\n</p-button>\r\n" }]
6091
6182
  }], propDecorators: { favoriteChanged: [{ type: i0.Output, args: ["favoriteChanged"] }] } });
6092
6183
 
6093
6184
  class CheckboxFilterDirective extends FilterDirective {
@@ -8138,7 +8229,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
8138
8229
 
8139
8230
  class GlobalMenuService {
8140
8231
  _isMenuVisible = signal(true, ...(ngDevMode ? [{ debugName: "_isMenuVisible" }] : []));
8141
- _selectedProduct = signal("", ...(ngDevMode ? [{ debugName: "_selectedProduct" }] : []));
8232
+ _selectedProduct = signal({ product: "", icon: "", authClient: "" }, ...(ngDevMode ? [{ debugName: "_selectedProduct" }] : []));
8142
8233
  isMenuVisible = this._isMenuVisible.asReadonly();
8143
8234
  selectedProduct = this._selectedProduct.asReadonly();
8144
8235
  eventMenu = "MenuBarEvent";
@@ -8162,9 +8253,13 @@ class GlobalMenuService {
8162
8253
  this._isMenuVisible.set(menuIsVisible);
8163
8254
  };
8164
8255
  onSelectedProductEvent = (event) => {
8165
- const { selectedProduct } = event.detail ?? {};
8166
- if (typeof selectedProduct === "string")
8167
- this._selectedProduct.set(selectedProduct);
8256
+ const detail = event.detail;
8257
+ if (!detail)
8258
+ return;
8259
+ const { product, icon, authClient } = detail;
8260
+ if (typeof product === "string" && typeof icon === "string" && typeof authClient === "string") {
8261
+ this._selectedProduct.set({ product, icon, authClient });
8262
+ }
8168
8263
  };
8169
8264
  emitMenuEvent(isVisible) {
8170
8265
  const event = new CustomEvent(this.eventMenu, {
@@ -8172,9 +8267,9 @@ class GlobalMenuService {
8172
8267
  });
8173
8268
  window.dispatchEvent(event);
8174
8269
  }
8175
- emitSelectedProductEvent(product) {
8270
+ emitSelectedProductEvent(selectedProduct) {
8176
8271
  const event = new CustomEvent(this.eventProducts, {
8177
- detail: { selectedProduct: product },
8272
+ detail: { product: selectedProduct.product, icon: selectedProduct.icon, authClient: selectedProduct.authClient },
8178
8273
  });
8179
8274
  window.dispatchEvent(event);
8180
8275
  }
@@ -11009,9 +11104,9 @@ class NotificationOrchestratorService {
11009
11104
  return;
11010
11105
  const active = await firstValueFrom(this.jobService.getActiveJob(this.featureCode, this.origin));
11011
11106
  if (!active) {
11012
- this.currentJobId = undefined;
11013
- this.setJobState({ status: "pending", processedCount: 0, totalCount: 0, processedNotificationsCount: 0, totalNotificationsCount: 0 });
11014
- this.dispatchErrorsMapSubject.next(new Map());
11107
+ //this.currentJobId = undefined;
11108
+ //this.setJobState({ status: "idle", processedCount: 0, totalCount: 0, processedNotificationsCount: 0, totalNotificationsCount: 0 });
11109
+ //this.dispatchErrorsMapSubject.next(new Map());
11015
11110
  return;
11016
11111
  }
11017
11112
  this.currentJobId = active.jobId;
@@ -11145,5 +11240,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
11145
11240
  * Generated bundle index. Do not edit.
11146
11241
  */
11147
11242
 
11148
- export { ALERT_DEFAULTS, ALERT_ICON_PATHS, ALERT_TYPE_CONFIG, ActionDirective, ActionsMenuComponent, AddFavoritesComponent, AlertButtonMode, AlertService, AlertType, ButtonSplitComponent, CheckboxFilterDirective, Color, ColumnComponent, ColumnGroupComponent, CompareByField, ConfigService, CookieAttributesGeneral, DATEPICKER_BUTTON_TYPES, DataDirective, DateFilterDirective, DateModeOptions, DatepickerComponent, DynamicInputValidation, EchartComponent, EchartService, ElementService, EmailInputValidation, ErrorInterceptor, ErrorNewInterceptor, FeatureFlagService, FilterChipsComponent, FiltersComponent, FormatAmountPipe, GetCookieAttributes, GlobalFeatureFlagService, GlobalMenuService, GlobalTermService, HtmlToExcelService, InitializeConfigService, InputValidation, IntelicaAlertComponent, IntelicaCellCheckboxDirective, IntelicaSessionService, IntelicaTheme, ItemSplitDirective, LanguageService, MatrixColumnComponent, MatrixColumnGroupComponent, MatrixTableComponent, ModalDialogComponent, MultiSelectComponent, NotificationJobService, NotificationOrchestratorService, NotificationService, NotificationSignalRService, OrderConstants, PageInformation, PageRootChildGuard, PaginatorComponent, Patterns, PopoverComponent, ProfileService, RecordPerPageComponent, RefreshTokenInterceptor, ResponseHeadersInterceptor, RouteGuard, RouteNewGuard, RowResumenComponent, RowResumenTreeComponent, SearchComponent, SelectDetailFilterDirective, SelectFilterDirective, SharedService, SkeletonChartComponent, SkeletonComponent, SkeletonService, SkeletonTableComponent, SortingComponent, SpinnerComponent, SpinnerService, SweetAlertService, TableComponent, TableFetchComponent, TableSortOrder, TemplateDirective, TemplateMenuComponent, TermGuard, TermPipe, TermService, TextAreaFilterDirective, TextFilterDirective, TextRangeFilterDirective, TreeColumnComponent, TreeColumnGroupComponent, TreeTableComponent, TruncatePipe, decryptData, encryptData, getColor };
11243
+ export { ALERT_DEFAULTS, ALERT_ICON_PATHS, ALERT_TYPE_CONFIG, ActionDirective, ActionsMenuComponent, AddFavoritesComponent, AlertButtonMode, AlertService, AlertType, ButtonSplitComponent, CheckboxFilterDirective, Color, ColumnComponent, ColumnGroupComponent, CompareByField, ConfigService, CookieAttributesGeneral, DATEPICKER_BUTTON_TYPES, DataDirective, DateFilterDirective, DateModeOptions, DatepickerComponent, DynamicInputValidation, EchartComponent, EchartService, ElementService, EmailInputValidation, ErrorInterceptor, ErrorNewInterceptor, FeatureFlagService, FilterChipsComponent, FiltersComponent, FormatAmountPipe, GetCookieAttributes, GlobalFavoriteService, GlobalFeatureFlagService, GlobalMenuService, GlobalTermService, HtmlToExcelService, InitializeConfigService, InputValidation, IntelicaAlertComponent, IntelicaCellCheckboxDirective, IntelicaSessionService, IntelicaTheme, ItemSplitDirective, LanguageService, MatrixColumnComponent, MatrixColumnGroupComponent, MatrixTableComponent, ModalDialogComponent, MultiSelectComponent, NotificationJobService, NotificationOrchestratorService, NotificationService, NotificationSignalRService, OrderConstants, PageInformation, PageRootChildGuard, PaginatorComponent, Patterns, PopoverComponent, ProfileService, RecordPerPageComponent, RefreshTokenInterceptor, ResponseHeadersInterceptor, RouteGuard, RouteNewGuard, RowResumenComponent, RowResumenTreeComponent, SearchComponent, SelectDetailFilterDirective, SelectFilterDirective, SharedService, SkeletonChartComponent, SkeletonComponent, SkeletonService, SkeletonTableComponent, SortingComponent, SpinnerComponent, SpinnerService, SweetAlertService, TableComponent, TableFetchComponent, TableSortOrder, TemplateDirective, TemplateMenuComponent, TermGuard, TermPipe, TermService, TextAreaFilterDirective, TextFilterDirective, TextRangeFilterDirective, TreeColumnComponent, TreeColumnGroupComponent, TreeTableComponent, TruncatePipe, decryptData, encryptData, getColor };
11149
11244
  //# sourceMappingURL=intelica-library-components.mjs.map