geonodes-web-render 0.3.16 → 0.3.18
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/embed.css +1 -1
- package/dist/embed.js +520 -516
- package/dist/types/gn/components/GeometryNodesFlow.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* - `'hybrid'` — embedded: the wheel scrolls the host page until the user clicks
|
|
6
6
|
* the canvas to "engage"; then it zooms like the standalone app until the
|
|
7
7
|
* pointer leaves. Ctrl+wheel / trackpad-pinch zoom even while resting.
|
|
8
|
-
* - `'none'` — wheel always scrolls the page; pan via
|
|
8
|
+
* - `'none'` — wheel always scrolls the page; pan via middle-drag only.
|
|
9
9
|
*/
|
|
10
10
|
export type InteractionMode = 'always' | 'hybrid' | 'none';
|
|
11
11
|
export declare function GeometryNodesFlow(props: {
|
package/package.json
CHANGED