@babylonjs/node-editor 9.3.3 → 9.3.4

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.
@@ -4321,44 +4321,6 @@ declare module "@babylonjs/node-editor/modularTool/misc/assert" {
4321
4321
  */
4322
4322
  export function Assert(value: unknown): asserts value;
4323
4323
 
4324
- }
4325
- declare module "@babylonjs/node-editor/modularTool/hooks/useResizeHandle" {
4326
- export type GrowDirection = "end" | "start" | "up" | "down";
4327
- export type UseResizeHandleParams = {
4328
- /**
4329
- * The direction in which the element is considered growing in size ('end', 'start', 'up', or 'down').
4330
- */
4331
- growDirection: GrowDirection;
4332
- /**
4333
- * The name of the CSS variable that will be set on the wrapper element to reflect the current size of the element.
4334
- */
4335
- variableName: string;
4336
- /**
4337
- * A callback that will be called when the element is resized.
4338
- *
4339
- * @remarks The passed function should be memoized for better performance.
4340
- */
4341
- onChange?: (value: number) => void;
4342
- /**
4343
- * The minimum change allowed (e.g. the smallest negative number allowed).
4344
- */
4345
- minValue?: number;
4346
- /**
4347
- * The maximum change allowed (e.g. the largest positive number allowed).
4348
- */
4349
- maxValue?: number;
4350
- };
4351
- /**
4352
- * A custom hook that helps with element resizing.
4353
- * @param params The parameters for the resize handle.
4354
- * @returns An object containing refs and a function to set the value.
4355
- */
4356
- export function useResizeHandle(params: UseResizeHandleParams): {
4357
- elementRef: import("react").Dispatch<import("react").SetStateAction<HTMLElement | null>>;
4358
- handleRef: import("react").Dispatch<import("react").SetStateAction<HTMLElement | null>>;
4359
- setValue: (value: number) => void;
4360
- };
4361
-
4362
4324
  }
4363
4325
  declare module "@babylonjs/node-editor/modularTool/hooks/themeHooks" {
4364
4326
  import { ThemeMode } from "@babylonjs/node-editor/modularTool/services/themeService";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/node-editor",
3
- "version": "9.3.3",
3
+ "version": "9.3.4",
4
4
  "main": "dist/babylon.nodeEditor.js",
5
5
  "module": "dist/babylon.nodeEditor.js",
6
6
  "esnext": "dist/babylon.nodeEditor.js",
@@ -23,7 +23,7 @@
23
23
  "@types/react-dom": ">=16.0.9"
24
24
  },
25
25
  "devDependencies": {
26
- "@babylonjs/core": "9.3.3",
26
+ "@babylonjs/core": "9.3.4",
27
27
  "@tools/node-editor": "1.0.0",
28
28
  "react": "^18.2.0",
29
29
  "react-dom": "^18.2.0"