intelica-library-components 1.1.149 → 1.1.150
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
|
@@ -1827,6 +1827,7 @@ declare class DashboardQsComponent {
|
|
|
1827
1827
|
containers: QueryList<ElementRef>;
|
|
1828
1828
|
private readonly routeData;
|
|
1829
1829
|
readonly dashboardId: i0.Signal<string | undefined>;
|
|
1830
|
+
readonly parameters: i0.Signal<Record<string, string[]> | undefined>;
|
|
1830
1831
|
readonly height: i0.Signal<string>;
|
|
1831
1832
|
readonly isLoading: i0.WritableSignal<boolean>;
|
|
1832
1833
|
private readonly viewReady;
|
|
@@ -2714,6 +2715,11 @@ interface EmbedVisualUrlResponse {
|
|
|
2714
2715
|
visual: EmbedVisualItem;
|
|
2715
2716
|
}
|
|
2716
2717
|
|
|
2718
|
+
interface EmbedDashboardCommand {
|
|
2719
|
+
dashboardId: string;
|
|
2720
|
+
parameters: Record<string, string[]> | undefined;
|
|
2721
|
+
}
|
|
2722
|
+
|
|
2717
2723
|
interface QuicksightVisualConfig {
|
|
2718
2724
|
visualId: string;
|
|
2719
2725
|
container: ElementRef;
|
|
@@ -2722,16 +2728,16 @@ declare class Shared {
|
|
|
2722
2728
|
private readonly http;
|
|
2723
2729
|
private readonly configService;
|
|
2724
2730
|
private readonly path;
|
|
2725
|
-
getEmbedUrl(
|
|
2731
|
+
getEmbedUrl(command: EmbedDashboardCommand): rxjs.Observable<{
|
|
2726
2732
|
embedUrl: string;
|
|
2727
2733
|
}>;
|
|
2728
|
-
getEmbedVisualUrl(
|
|
2729
|
-
getEmbedVisualUrlsAnonymous(
|
|
2734
|
+
getEmbedVisualUrl(command: EmbedVisualCommand): rxjs.Observable<EmbedVisualUrlResponse>;
|
|
2735
|
+
getEmbedVisualUrlsAnonymous(command: EmbedVisualCommand): rxjs.Observable<EmbedVisualUrlResponse>;
|
|
2730
2736
|
createEmbedContext(embedUrl: string, container: HTMLElement, options?: {
|
|
2731
2737
|
height?: string;
|
|
2732
2738
|
width?: string;
|
|
2733
2739
|
}): Promise<void>;
|
|
2734
|
-
embedDashboard(
|
|
2740
|
+
embedDashboard(command: EmbedDashboardCommand, container: HTMLElement, options?: {
|
|
2735
2741
|
height?: string;
|
|
2736
2742
|
width?: string;
|
|
2737
2743
|
}): Promise<void>;
|
|
@@ -2739,7 +2745,7 @@ declare class Shared {
|
|
|
2739
2745
|
height?: string;
|
|
2740
2746
|
width?: string;
|
|
2741
2747
|
}): Promise<void>;
|
|
2742
|
-
embedSequentialVisuals(
|
|
2748
|
+
embedSequentialVisuals(command: EmbedVisualCommand, configs: QuicksightVisualConfig[], onVisualLoaded?: (visualId: string) => void): Promise<void>;
|
|
2743
2749
|
static ɵfac: i0.ɵɵFactoryDeclaration<Shared, never>;
|
|
2744
2750
|
static ɵprov: i0.ɵɵInjectableDeclaration<Shared>;
|
|
2745
2751
|
}
|