@boomi/embedkit 1.2.15 → 1.2.17
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/dist/index.cjs +73 -65
- package/dist/index.d.ts +7 -0
- package/dist/index.js +1217 -1204
- package/dist/index.umd.cjs +92 -84
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -718,6 +718,13 @@ export declare function RenderComponent<T extends ComponentName>({ component, pr
|
|
|
718
718
|
hostId?: string;
|
|
719
719
|
componentKey?: string;
|
|
720
720
|
}): void;
|
|
721
|
+
export declare const Components: {
|
|
722
|
+
readonly Integrations: import("react").FC<IntegrationsProps>;
|
|
723
|
+
};
|
|
724
|
+
export type KnownComponent = keyof typeof Components;
|
|
725
|
+
export type ComponentPropsMap = {
|
|
726
|
+
[K in KnownComponent]: React$1.ComponentProps<typeof Components[K]>;
|
|
727
|
+
};
|
|
721
728
|
|
|
722
729
|
export {
|
|
723
730
|
BoomiPlugin as default,
|