babylonjs-gui-editor 7.21.5 → 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.
@@ -3746,6 +3746,7 @@ declare module BABYLON {
3746
3746
  declare module BABYLON.GuiEditor.SharedUIComponents {
3747
3747
  interface INumericInputComponentProps {
3748
3748
  label: string;
3749
+ labelTooltip?: string;
3749
3750
  value: number;
3750
3751
  step?: number;
3751
3752
  onChange: (value: number) => void;
@@ -3824,6 +3824,7 @@ import * as React from "react";
3824
3824
  import { LockObject } from "babylonjs-gui-editor/tabs/propertyGrids/lockObject";
3825
3825
  interface INumericInputComponentProps {
3826
3826
  label: string;
3827
+ labelTooltip?: string;
3827
3828
  value: number;
3828
3829
  step?: number;
3829
3830
  onChange: (value: number) => void;
@@ -8325,6 +8326,7 @@ declare module BABYLON {
8325
8326
  declare module BABYLON.GuiEditor.SharedUIComponents {
8326
8327
  interface INumericInputComponentProps {
8327
8328
  label: string;
8329
+ labelTooltip?: string;
8328
8330
  value: number;
8329
8331
  step?: number;
8330
8332
  onChange: (value: number) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui-editor",
3
- "version": "7.21.5",
3
+ "version": "7.22.1",
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.21.5",
18
- "babylonjs-gui": "^7.21.5"
17
+ "babylonjs": "^7.22.1",
18
+ "babylonjs-gui": "^7.22.1"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@dev/build-tools": "1.0.0",