@babylonjs/gui-editor 9.5.1 → 9.6.0
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.
|
@@ -2600,8 +2600,9 @@ export class GraphNode {
|
|
|
2600
2600
|
* Shows a validation badge on the node header.
|
|
2601
2601
|
* @param severity - "error" | "warning" | null. Pass null to hide the badge.
|
|
2602
2602
|
* @param tooltip - tooltip text shown on hover.
|
|
2603
|
+
* @param onClick - optional callback invoked when the badge is clicked.
|
|
2603
2604
|
*/
|
|
2604
|
-
setValidationState(severity: "error" | "warning" | null, tooltip?: string): void;
|
|
2605
|
+
setValidationState(severity: "error" | "warning" | null, tooltip?: string, onClick?: () => void): void;
|
|
2605
2606
|
/**
|
|
2606
2607
|
* Shows or hides a breakpoint indicator on the node.
|
|
2607
2608
|
* @param active - true to show the red breakpoint dot, false to hide.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/gui-editor",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.6.0",
|
|
4
4
|
"main": "dist/babylon.guiEditor.js",
|
|
5
5
|
"module": "dist/babylon.guiEditor.js",
|
|
6
6
|
"esnext": "dist/babylon.guiEditor.js",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"@types/react-dom": ">=16.0.9"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@babylonjs/core": "9.
|
|
28
|
-
"@babylonjs/gui": "9.
|
|
27
|
+
"@babylonjs/core": "9.6.0",
|
|
28
|
+
"@babylonjs/gui": "9.6.0",
|
|
29
29
|
"@tools/gui-editor": "1.0.0",
|
|
30
30
|
"react": "^18.2.0",
|
|
31
31
|
"react-dom": "^18.2.0"
|