babylonjs-gui-editor 7.22.0 → 7.22.2
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;
|
|
@@ -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;
|
|
@@ -7287,6 +7289,7 @@ declare module BABYLON {
|
|
|
7287
7289
|
declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
7288
7290
|
interface INumericInputProps {
|
|
7289
7291
|
label: string;
|
|
7292
|
+
labelTooltip?: string;
|
|
7290
7293
|
value: number;
|
|
7291
7294
|
step?: number;
|
|
7292
7295
|
onChange: (value: number) => void;
|
|
@@ -8325,6 +8328,7 @@ declare module BABYLON {
|
|
|
8325
8328
|
declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
8326
8329
|
interface INumericInputComponentProps {
|
|
8327
8330
|
label: string;
|
|
8331
|
+
labelTooltip?: string;
|
|
8328
8332
|
value: number;
|
|
8329
8333
|
step?: number;
|
|
8330
8334
|
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.2",
|
|
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.2",
|
|
18
|
+
"babylonjs-gui": "^7.22.2"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@dev/build-tools": "1.0.0",
|