intelica-library-project 20.0.13 → 20.0.15

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.
package/index.d.ts CHANGED
@@ -544,7 +544,8 @@ interface QuicksightEventOutputs {
544
544
  declare class DashboardQsComponent {
545
545
  private readonly sharedService;
546
546
  private readonly alertService;
547
- private readonly term;
547
+ private readonly termPipe;
548
+ private readonly GlobalTermService;
548
549
  private readonly route;
549
550
  private sessionExpiredShown;
550
551
  containers: QueryList<ElementRef>;
@@ -565,7 +566,6 @@ declare class DashboardQsComponent {
565
566
  constructor();
566
567
  ngAfterViewInit(): void;
567
568
  EmbedDashboard(dashboardId: string, parameters: Record<string, string[]> | undefined): Promise<void>;
568
- private t;
569
569
  private handleSessionExpired;
570
570
  static ɵfac: i0.ɵɵFactoryDeclaration<DashboardQsComponent, never>;
571
571
  static ɵcmp: i0.ɵɵComponentDeclaration<DashboardQsComponent, "intelica-dashboard-qs", never, { "dashboardIdInput": { "alias": "dashboardId"; "required": false; "isSignal": true; }; "parametersInput": { "alias": "parameters"; "required": false; "isSignal": true; }; "heightInput": { "alias": "height"; "required": false; "isSignal": true; }; }, { "isLoadingChange": "isLoadingChange"; "sdkEvent": "sdkEvent"; "contentLoaded": "contentLoaded"; "errorOccurred": "errorOccurred"; "sessionExpired": "sessionExpired"; }, never, never, true, never>;
@@ -574,7 +574,8 @@ declare class DashboardQsComponent {
574
574
  declare class DashboardQsInteractiveComponent {
575
575
  private readonly sharedService;
576
576
  private readonly alertService;
577
- private readonly term;
577
+ private readonly termPipe;
578
+ private readonly GlobalTermService;
578
579
  private readonly route;
579
580
  private sessionExpiredShown;
580
581
  containers: QueryList<ElementRef>;
@@ -597,7 +598,6 @@ declare class DashboardQsInteractiveComponent {
597
598
  constructor();
598
599
  ngAfterViewInit(): void;
599
600
  firstEmbed(dashboardId: string): Promise<void>;
600
- private t;
601
601
  private handleSessionExpired;
602
602
  static ɵfac: i0.ɵɵFactoryDeclaration<DashboardQsInteractiveComponent, never>;
603
603
  static ɵcmp: i0.ɵɵComponentDeclaration<DashboardQsInteractiveComponent, "intelica-dashboard-qs-interactive", never, { "dashboardIdInput": { "alias": "dashboardId"; "required": false; "isSignal": true; }; "parametersInput": { "alias": "parameters"; "required": false; "isSignal": true; }; "heightInput": { "alias": "height"; "required": false; "isSignal": true; }; }, { "isLoadingChange": "isLoadingChange"; "sdkEvent": "sdkEvent"; "contentLoaded": "contentLoaded"; "errorOccurred": "errorOccurred"; "sessionExpired": "sessionExpired"; }, never, never, true, never>;
@@ -763,20 +763,20 @@ interface ElementResponse {
763
763
 
764
764
  declare class ElementService {
765
765
  Elements: ElementResponse[];
766
- PageRoot: string;
767
- private readonly pageElementService;
768
- Initialize$(pageRootValue: string): Observable<void>;
766
+ ElementsReady: i0.WritableSignal<boolean>;
767
+ private readonly elementService;
768
+ Initialize(pageRoot: string): void;
769
769
  HasElement(description: string): boolean;
770
770
  static ɵfac: i0.ɵɵFactoryDeclaration<ElementService, never>;
771
771
  static ɵprov: i0.ɵɵInjectableDeclaration<ElementService>;
772
772
  }
773
773
 
774
- declare class PageElementService {
775
- private readonly _http;
774
+ declare class ElementHTTPService {
775
+ private readonly httpClient;
776
776
  private readonly _configService;
777
777
  GetElements(pageRoot: string): Observable<ElementResponse[]>;
778
- static ɵfac: i0.ɵɵFactoryDeclaration<PageElementService, never>;
779
- static ɵprov: i0.ɵɵInjectableDeclaration<PageElementService>;
778
+ static ɵfac: i0.ɵɵFactoryDeclaration<ElementHTTPService, never>;
779
+ static ɵprov: i0.ɵɵInjectableDeclaration<ElementHTTPService>;
780
780
  }
781
781
 
782
782
  declare class EchartService {
@@ -1003,5 +1003,5 @@ declare function darkenColor(input: string, amount?: number): string;
1003
1003
  declare function isQuicksightSessionExpiredEvent(event: QuicksightEvent): boolean;
1004
1004
  declare function dispatchQuicksightEvent(event: QuicksightEvent, outputs: QuicksightEventOutputs): void;
1005
1005
 
1006
- export { AddFavoritesComponent, AddFavoritesService, BreadCrumbComponent, ColumnComponent, ColumnGroupComponent, DashboardQsComponent, DashboardQsInteractiveComponent, EchartComponent, EchartService, ElementService, FormatAmountPipe, FormatCellPipe, OrderConstants, PageElementService, PageInformation, QUICKSIGHT_AUTH_ERROR_CODES, QuicksightEventName, RequestCacheService, RowResumenComponent, SearchComponent, SearchInputEnum, Shared, SharedService, SkeletonTableComponent, SortingComponent, TableComponent, TableFetchComponent, TitleComponent, TruncatePipe, darkenColor, dispatchQuicksightEvent, isQuicksightSessionExpiredEvent };
1006
+ export { AddFavoritesComponent, AddFavoritesService, BreadCrumbComponent, ColumnComponent, ColumnGroupComponent, DashboardQsComponent, DashboardQsInteractiveComponent, EchartComponent, EchartService, ElementHTTPService, ElementService, FormatAmountPipe, FormatCellPipe, OrderConstants, PageInformation, QUICKSIGHT_AUTH_ERROR_CODES, QuicksightEventName, RequestCacheService, RowResumenComponent, SearchComponent, SearchInputEnum, Shared, SharedService, SkeletonTableComponent, SortingComponent, TableComponent, TableFetchComponent, TitleComponent, TruncatePipe, darkenColor, dispatchQuicksightEvent, isQuicksightSessionExpiredEvent };
1007
1007
  export type { CascadeFilterModel, ElementResponse, EmbedDashboardCommand, EmbedVisualCommand, EmbedVisualItem, EmbedVisualUrlResponse, EmbedWithoutVisualCommand, QueryParametersModel, QuicksightEmbedOptions, QuicksightEvent, QuicksightEventOutputs, QuicksightVisualConfig, SearchFieldModel, SearchInputModel, SortFieldModel };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelica-library-project",
3
- "version": "20.0.13",
3
+ "version": "20.0.15",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0",
6
6
  "@angular/core": "^20.3.0",