@babylonjs/gui-editor 7.22.0 → 7.22.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -2945,6 +2945,7 @@ import * as React from "react";
2945
2945
  import { LockObject } from "@babylonjs/gui-editor/tabs/propertyGrids/lockObject";
2946
2946
  interface INumericInputProps {
2947
2947
  label: string;
2948
+ labelTooltip?: string;
2948
2949
  value: number;
2949
2950
  step?: number;
2950
2951
  onChange: (value: number) => void;
@@ -3824,6 +3825,7 @@ import * as React from "react";
3824
3825
  import { LockObject } from "@babylonjs/gui-editor/tabs/propertyGrids/lockObject";
3825
3826
  interface INumericInputComponentProps {
3826
3827
  label: string;
3828
+ labelTooltip?: string;
3827
3829
  value: number;
3828
3830
  step?: number;
3829
3831
  onChange: (value: number) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/gui-editor",
3
- "version": "7.22.0",
3
+ "version": "7.22.2",
4
4
  "main": "dist/babylon.guiEditor.max.js",
5
5
  "module": "dist/babylon.guiEditor.max.js",
6
6
  "esnext": "dist/babylon.guiEditor.max.js",
@@ -24,8 +24,8 @@
24
24
  "@types/react-dom": ">=16.0.9"
25
25
  },
26
26
  "devDependencies": {
27
- "@babylonjs/core": "^7.22.0",
28
- "@babylonjs/gui": "^7.22.0",
27
+ "@babylonjs/core": "^7.22.2",
28
+ "@babylonjs/gui": "^7.22.2",
29
29
  "react": "^17.0.2",
30
30
  "react-dom": "^17.0.2"
31
31
  },