formica-ui-lib 1.0.308 → 1.0.310

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.
@@ -0,0 +1,11 @@
1
+ import type { Ref } from "react";
2
+ export type Interactive3DViewerProps = {
3
+ /** Validated embed URL supplied by the consuming application. */
4
+ embedUrl: string;
5
+ /** Accessible description of the iframe content. */
6
+ title: string;
7
+ /** Viewer height in pixels. Defaults to 500. */
8
+ height?: number;
9
+ /** Gives the consuming application access to initialize a viewer SDK. */
10
+ iframeRef?: Ref<HTMLIFrameElement>;
11
+ };