@babylonjs/accessibility 7.28.0 → 7.30.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.
@@ -12,6 +12,7 @@ export * from "@babylonjs/accessibility/HtmlTwin/htmlTwinRenderer";
12
12
 
13
13
  }
14
14
  declare module "@babylonjs/accessibility/HtmlTwin/htmlTwinSceneTree" {
15
+ /// <reference types="react" />
15
16
  import { Scene } from "@babylonjs/core/scene";
16
17
  import { IHTMLTwinRendererOptions } from "@babylonjs/accessibility/HtmlTwin/htmlTwinRenderer";
17
18
  /**
@@ -22,7 +23,7 @@ import { IHTMLTwinRendererOptions } from "@babylonjs/accessibility/HtmlTwin/html
22
23
  export function HTMLTwinSceneTree(props: {
23
24
  scene: Scene;
24
25
  options: IHTMLTwinRendererOptions;
25
-
26
+ }): JSX.Element;
26
27
 
27
28
  }
28
29
  declare module "@babylonjs/accessibility/HtmlTwin/htmlTwinSceneContext" {
@@ -103,6 +104,7 @@ export class HTMLTwinNodeItem extends HTMLTwinItem {
103
104
 
104
105
  }
105
106
  declare module "@babylonjs/accessibility/HtmlTwin/htmlTwinItemAdapter" {
107
+ /// <reference types="react" />
106
108
  import { AccessibilityEntity } from "@babylonjs/accessibility/HtmlTwin/htmlTwinItem";
107
109
  import { Scene } from "@babylonjs/core/scene";
108
110
  import { IHTMLTwinRendererOptions } from "@babylonjs/accessibility/HtmlTwin/htmlTwinRenderer";
@@ -116,7 +118,7 @@ export function HTMLTwinItemAdapter(props: {
116
118
  node: AccessibilityEntity;
117
119
  scene: Scene;
118
120
  options: IHTMLTwinRendererOptions;
119
-
121
+ }): JSX.Element | null;
120
122
 
121
123
  }
122
124
  declare module "@babylonjs/accessibility/HtmlTwin/htmlTwinItem" {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/accessibility",
3
- "version": "7.28.0",
3
+ "version": "7.30.0",
4
4
  "main": "dist/babylon.accessibility.max.js",
5
5
  "module": "dist/babylon.accessibility.max.js",
6
6
  "esnext": "dist/babylon.accessibility.max.js",
@@ -24,8 +24,8 @@
24
24
  "@types/react-dom": ">=16.0.9"
25
25
  },
26
26
  "devDependencies": {
27
- "@babylonjs/core": "^7.28.0",
28
- "@babylonjs/gui": "^7.28.0",
27
+ "@babylonjs/core": "^7.30.0",
28
+ "@babylonjs/gui": "^7.30.0",
29
29
  "react": "^17.0.2",
30
30
  "react-dom": "^17.0.2"
31
31
  },