intelica-library-components 1.1.149 → 1.1.151
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;
|
|
@@ -2702,6 +2703,11 @@ interface EmbedVisualCommand {
|
|
|
2702
2703
|
visualId: string;
|
|
2703
2704
|
parameters: Record<string, string[]>;
|
|
2704
2705
|
}
|
|
2706
|
+
interface EmbedWithoutVisualCommand {
|
|
2707
|
+
dashboardId: string;
|
|
2708
|
+
sheetId: string;
|
|
2709
|
+
parameters: Record<string, string[]>;
|
|
2710
|
+
}
|
|
2705
2711
|
|
|
2706
2712
|
interface EmbedVisualItem {
|
|
2707
2713
|
visualId: string;
|
|
@@ -2714,6 +2720,11 @@ interface EmbedVisualUrlResponse {
|
|
|
2714
2720
|
visual: EmbedVisualItem;
|
|
2715
2721
|
}
|
|
2716
2722
|
|
|
2723
|
+
interface EmbedDashboardCommand {
|
|
2724
|
+
dashboardId: string;
|
|
2725
|
+
parameters: Record<string, string[]> | undefined;
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2717
2728
|
interface QuicksightVisualConfig {
|
|
2718
2729
|
visualId: string;
|
|
2719
2730
|
container: ElementRef;
|
|
@@ -2722,16 +2733,16 @@ declare class Shared {
|
|
|
2722
2733
|
private readonly http;
|
|
2723
2734
|
private readonly configService;
|
|
2724
2735
|
private readonly path;
|
|
2725
|
-
getEmbedUrl(
|
|
2736
|
+
getEmbedUrl(command: EmbedDashboardCommand): rxjs.Observable<{
|
|
2726
2737
|
embedUrl: string;
|
|
2727
2738
|
}>;
|
|
2728
|
-
getEmbedVisualUrl(
|
|
2729
|
-
getEmbedVisualUrlsAnonymous(
|
|
2739
|
+
getEmbedVisualUrl(command: EmbedVisualCommand): rxjs.Observable<EmbedVisualUrlResponse>;
|
|
2740
|
+
getEmbedVisualUrlsAnonymous(command: EmbedVisualCommand): rxjs.Observable<EmbedVisualUrlResponse>;
|
|
2730
2741
|
createEmbedContext(embedUrl: string, container: HTMLElement, options?: {
|
|
2731
2742
|
height?: string;
|
|
2732
2743
|
width?: string;
|
|
2733
2744
|
}): Promise<void>;
|
|
2734
|
-
embedDashboard(
|
|
2745
|
+
embedDashboard(command: EmbedDashboardCommand, container: HTMLElement, options?: {
|
|
2735
2746
|
height?: string;
|
|
2736
2747
|
width?: string;
|
|
2737
2748
|
}): Promise<void>;
|
|
@@ -2739,7 +2750,7 @@ declare class Shared {
|
|
|
2739
2750
|
height?: string;
|
|
2740
2751
|
width?: string;
|
|
2741
2752
|
}): Promise<void>;
|
|
2742
|
-
embedSequentialVisuals(
|
|
2753
|
+
embedSequentialVisuals(command: EmbedWithoutVisualCommand, configs: QuicksightVisualConfig[], onVisualLoaded?: (visualId: string) => void): Promise<void>;
|
|
2743
2754
|
static ɵfac: i0.ɵɵFactoryDeclaration<Shared, never>;
|
|
2744
2755
|
static ɵprov: i0.ɵɵInjectableDeclaration<Shared>;
|
|
2745
2756
|
}
|