geonodes-web-render 0.3.23 → 0.3.24
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/README.md +5 -1
- package/dist/embed.js +609 -610
- package/dist/types/embed.d.ts +3 -0
- package/dist/types/gn/components/GeometryNodesFlow.d.ts +3 -0
- package/package.json +1 -1
package/dist/types/embed.d.ts
CHANGED
|
@@ -3,6 +3,9 @@ export type GraphViewEmbedOptions = {
|
|
|
3
3
|
payload: string;
|
|
4
4
|
/** Called when user requests close (e.g. modal close button). Use to unmount. */
|
|
5
5
|
onClose?: () => void;
|
|
6
|
+
/** When false, hide the "Copy TreeClipper Magic String" button and disable the
|
|
7
|
+
* right-click copy action. Default true. */
|
|
8
|
+
showCopyButton?: boolean;
|
|
6
9
|
};
|
|
7
10
|
export declare function GraphView(props: GraphViewEmbedOptions): import("react").JSX.Element;
|
|
8
11
|
/**
|
|
@@ -20,4 +20,7 @@ export declare function GeometryNodesFlow(props: {
|
|
|
20
20
|
/** How the wheel is captured. Default `'always'` (standalone). Use `'hybrid'`
|
|
21
21
|
* in an embed so the wheel scrolls the host page until the canvas is clicked. */
|
|
22
22
|
interaction?: InteractionMode;
|
|
23
|
+
/** When false, disable copying to a Tree Clipper magic string (hides the
|
|
24
|
+
* right-click "copy" context menu). Default true. */
|
|
25
|
+
allowCopy?: boolean;
|
|
23
26
|
}): import("react").JSX.Element;
|
package/package.json
CHANGED