@babylonjs/accessibility 9.0.0 → 9.1.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/accessibility",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.1.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": "9.
|
|
28
|
-
"@babylonjs/gui": "9.
|
|
27
|
+
"@babylonjs/core": "9.1.0",
|
|
28
|
+
"@babylonjs/gui": "9.1.0",
|
|
29
29
|
"@tools/accessibility": "1.0.0",
|
|
30
30
|
"react": "^18.2.0",
|
|
31
31
|
"react-dom": "^18.2.0"
|
package/readme.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
-
Accessibility es6
|
|
2
|
-
|
|
3
1
|
# Babylon.js Accessibility
|
|
4
2
|
|
|
5
|
-
This package
|
|
3
|
+
This package provides accessibility support for Babylon.js scenes. It contains an HTML twin renderer that generates HTML twins of scene objects, making 3D content compatible with screen readers and keyboard navigation.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
To install using npm:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @babylonjs/core @babylonjs/accessibility
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
For more information, see the [Babylon.js documentation](https://doc.babylonjs.com).
|