babylonjs-inspector 9.5.2 → 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.
@@ -5604,8 +5604,9 @@ declare namespace INSPECTOR.SharedUIComponents {
5604
5604
  * Shows a validation badge on the node header.
5605
5605
  * @param severity - "error" | "warning" | null. Pass null to hide the badge.
5606
5606
  * @param tooltip - tooltip text shown on hover.
5607
+ * @param onClick - optional callback invoked when the badge is clicked.
5607
5608
  */
5608
- setValidationState(severity: "error" | "warning" | null, tooltip?: string): void;
5609
+ setValidationState(severity: "error" | "warning" | null, tooltip?: string, onClick?: () => void): void;
5609
5610
  /**
5610
5611
  * Shows or hides a breakpoint indicator on the node.
5611
5612
  * @param active - true to show the red breakpoint dot, false to hide.
@@ -6559,8 +6559,9 @@ export class GraphNode {
6559
6559
  * Shows a validation badge on the node header.
6560
6560
  * @param severity - "error" | "warning" | null. Pass null to hide the badge.
6561
6561
  * @param tooltip - tooltip text shown on hover.
6562
+ * @param onClick - optional callback invoked when the badge is clicked.
6562
6563
  */
6563
- setValidationState(severity: "error" | "warning" | null, tooltip?: string): void;
6564
+ setValidationState(severity: "error" | "warning" | null, tooltip?: string, onClick?: () => void): void;
6564
6565
  /**
6565
6566
  * Shows or hides a breakpoint indicator on the node.
6566
6567
  * @param active - true to show the red breakpoint dot, false to hide.
@@ -18426,8 +18427,9 @@ declare namespace INSPECTOR.SharedUIComponents {
18426
18427
  * Shows a validation badge on the node header.
18427
18428
  * @param severity - "error" | "warning" | null. Pass null to hide the badge.
18428
18429
  * @param tooltip - tooltip text shown on hover.
18430
+ * @param onClick - optional callback invoked when the badge is clicked.
18429
18431
  */
18430
- setValidationState(severity: "error" | "warning" | null, tooltip?: string): void;
18432
+ setValidationState(severity: "error" | "warning" | null, tooltip?: string, onClick?: () => void): void;
18431
18433
  /**
18432
18434
  * Shows or hides a breakpoint indicator on the node.
18433
18435
  * @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-inspector",
3
- "version": "9.5.2",
3
+ "version": "9.6.0",
4
4
  "main": "babylon.inspector-v2.bundle.js",
5
5
  "files": [
6
6
  "babylon.inspector-v2.*",
@@ -17,13 +17,13 @@
17
17
  "clean": "rimraf dist && rimraf babylon*.* -g"
18
18
  },
19
19
  "dependencies": {
20
- "babylonjs": "9.5.2",
21
- "babylonjs-addons": "9.5.2",
22
- "babylonjs-gui": "9.5.2",
23
- "babylonjs-gui-editor": "9.5.2",
24
- "babylonjs-loaders": "9.5.2",
25
- "babylonjs-materials": "9.5.2",
26
- "babylonjs-serializers": "9.5.2"
20
+ "babylonjs": "9.6.0",
21
+ "babylonjs-addons": "9.6.0",
22
+ "babylonjs-gui": "9.6.0",
23
+ "babylonjs-gui-editor": "9.6.0",
24
+ "babylonjs-loaders": "9.6.0",
25
+ "babylonjs-materials": "9.6.0",
26
+ "babylonjs-serializers": "9.6.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@dev/build-tools": "1.0.0",