babylonjs-gui-editor 7.22.1 → 7.22.3
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.
|
@@ -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;
|
|
@@ -7288,6 +7289,7 @@ declare module BABYLON {
|
|
|
7288
7289
|
declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
7289
7290
|
interface INumericInputProps {
|
|
7290
7291
|
label: string;
|
|
7292
|
+
labelTooltip?: string;
|
|
7291
7293
|
value: number;
|
|
7292
7294
|
step?: number;
|
|
7293
7295
|
onChange: (value: number) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-gui-editor",
|
|
3
|
-
"version": "7.22.
|
|
3
|
+
"version": "7.22.3",
|
|
4
4
|
"main": "babylon.guiEditor.max.js",
|
|
5
5
|
"types": "babylon.guiEditor.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.*"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.22.
|
|
18
|
-
"babylonjs-gui": "^7.22.
|
|
17
|
+
"babylonjs": "^7.22.3",
|
|
18
|
+
"babylonjs-gui": "^7.22.3"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@dev/build-tools": "1.0.0",
|