@gradio/model3d 0.14.8 → 0.14.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @gradio/model3d
2
2
 
3
+ ## 0.14.10
4
+
5
+ ### Dependency updates
6
+
7
+ - @gradio/statustracker@0.10.9
8
+ - @gradio/atoms@0.15.2
9
+ - @gradio/client@1.14.2
10
+ - @gradio/utils@0.10.2
11
+ - @gradio/upload@0.16.2
12
+
13
+ ## 0.14.9
14
+
15
+ ### Fixes
16
+
17
+ - [#10993](https://github.com/gradio-app/gradio/pull/10993) [`1918baa`](https://github.com/gradio-app/gradio/commit/1918baa178066dc94a8e1a559d4d62a52a3d8db4) - Update babylon.js and ensure the Model3D component autoplays on load. Thanks @CedricGuillemet!
18
+
19
+ ### Dependency updates
20
+
21
+ - @gradio/upload@0.16.1
22
+ - @gradio/atoms@0.15.1
23
+ - @gradio/statustracker@0.10.8
24
+ - @gradio/icons@0.12.0
25
+
3
26
  ## 0.14.8
4
27
 
5
28
  ### Dependency updates
@@ -35,6 +35,7 @@ onMount(() => {
35
35
  BABYLON_VIEWER.createViewerForCanvas(canvas, {
36
36
  clearColor: clear_color,
37
37
  useRightHandedSystem: true,
38
+ animationAutoPlay: true,
38
39
  cameraAutoOrbit: { enabled: false },
39
40
  onInitialized: (details) => {
40
41
  viewerDetails = details;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/model3d",
3
- "version": "0.14.8",
3
+ "version": "0.14.10",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -8,16 +8,18 @@
8
8
  "private": false,
9
9
  "dependencies": {
10
10
  "@types/babylon": "^6.16.6",
11
- "@babylonjs/viewer": "^7.54.0",
11
+ "@babylonjs/viewer": "^8.2.0",
12
+ "@babylonjs/core": "^8.2.0",
13
+ "@babylonjs/loaders": "^8.2.0",
12
14
  "dequal": "^2.0.2",
13
15
  "gsplat": "^1.0.5",
14
- "@gradio/atoms": "^0.15.0",
15
- "@gradio/client": "^1.14.1",
16
- "@gradio/icons": "^0.11.0",
17
- "@gradio/statustracker": "^0.10.7",
18
- "@gradio/upload": "^0.16.0",
19
- "@gradio/wasm": "^0.18.1",
20
- "@gradio/utils": "^0.10.1"
16
+ "@gradio/atoms": "^0.15.2",
17
+ "@gradio/client": "^1.14.2",
18
+ "@gradio/statustracker": "^0.10.9",
19
+ "@gradio/upload": "^0.16.2",
20
+ "@gradio/icons": "^0.12.0",
21
+ "@gradio/utils": "^0.10.2",
22
+ "@gradio/wasm": "^0.18.1"
21
23
  },
22
24
  "devDependencies": {
23
25
  "@gradio/preview": "^0.13.0"
@@ -53,6 +53,7 @@
53
53
  BABYLON_VIEWER.createViewerForCanvas(canvas, {
54
54
  clearColor: clear_color,
55
55
  useRightHandedSystem: true,
56
+ animationAutoPlay: true,
56
57
  cameraAutoOrbit: { enabled: false },
57
58
  onInitialized: (details: any) => {
58
59
  viewerDetails = details;