intelica-library-components 1.1.150 → 1.1.152
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
|
@@ -2703,6 +2703,11 @@ interface EmbedVisualCommand {
|
|
|
2703
2703
|
visualId: string;
|
|
2704
2704
|
parameters: Record<string, string[]>;
|
|
2705
2705
|
}
|
|
2706
|
+
interface EmbedWithoutVisualCommand {
|
|
2707
|
+
dashboardId: string;
|
|
2708
|
+
sheetId: string;
|
|
2709
|
+
parameters: Record<string, string[]>;
|
|
2710
|
+
}
|
|
2706
2711
|
|
|
2707
2712
|
interface EmbedVisualItem {
|
|
2708
2713
|
visualId: string;
|
|
@@ -2745,7 +2750,7 @@ declare class Shared {
|
|
|
2745
2750
|
height?: string;
|
|
2746
2751
|
width?: string;
|
|
2747
2752
|
}): Promise<void>;
|
|
2748
|
-
embedSequentialVisuals(command:
|
|
2753
|
+
embedSequentialVisuals(command: EmbedWithoutVisualCommand, configs: QuicksightVisualConfig[], onVisualLoaded?: (visualId: string) => void): Promise<void>;
|
|
2749
2754
|
static ɵfac: i0.ɵɵFactoryDeclaration<Shared, never>;
|
|
2750
2755
|
static ɵprov: i0.ɵɵInjectableDeclaration<Shared>;
|
|
2751
2756
|
}
|