babylonjs-node-editor 7.22.0 → 7.22.1

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.
@@ -3586,6 +3586,7 @@ declare module BABYLON.NodeEditor {
3586
3586
  declare module BABYLON.NodeEditor.SharedUIComponents {
3587
3587
  interface INumericInputComponentProps {
3588
3588
  label: string;
3589
+ labelTooltip?: string;
3589
3590
  value: number;
3590
3591
  step?: number;
3591
3592
  onChange: (value: number) => void;
@@ -3741,6 +3741,7 @@ import * as React from "react";
3741
3741
  import { LockObject } from "babylonjs-node-editor/tabs/propertyGrids/lockObject";
3742
3742
  interface INumericInputComponentProps {
3743
3743
  label: string;
3744
+ labelTooltip?: string;
3744
3745
  value: number;
3745
3746
  step?: number;
3746
3747
  onChange: (value: number) => void;
@@ -8082,6 +8083,7 @@ declare module BABYLON.NodeEditor {
8082
8083
  declare module BABYLON.NodeEditor.SharedUIComponents {
8083
8084
  interface INumericInputComponentProps {
8084
8085
  label: string;
8086
+ labelTooltip?: string;
8085
8087
  value: number;
8086
8088
  step?: number;
8087
8089
  onChange: (value: number) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-node-editor",
3
- "version": "7.22.0",
3
+ "version": "7.22.1",
4
4
  "main": "babylon.nodeEditor.js",
5
5
  "types": "babylon.nodeEditor.module.d.ts",
6
6
  "files": [
@@ -14,7 +14,7 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.*"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^7.22.0"
17
+ "babylonjs": "^7.22.1"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",