@gradio/model3d 0.4.14 → 0.5.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/CHANGELOG.md +15 -1
- package/package.json +6 -6
- package/shared/Model3DUpload.svelte +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# @gradio/model3d
|
2
2
|
|
3
|
+
## 0.5.0
|
4
|
+
|
5
|
+
### Features
|
6
|
+
|
7
|
+
- [#7049](https://github.com/gradio-app/gradio/pull/7049) [`1718c4a`](https://github.com/gradio-app/gradio/commit/1718c4aeb23a88ef02b17b30a1d1cb72e413e04a) - add STL 3D model support. Thanks [@Mon-ius](https://github.com/Mon-ius)!
|
8
|
+
|
9
|
+
## 0.4.15
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- Updated dependencies [[`3c3cf86`](https://github.com/gradio-app/gradio/commit/3c3cf8618a8cad1ef66a7f96664923d2c9f5e0e2), [`3f139c7`](https://github.com/gradio-app/gradio/commit/3f139c7c995f749562bb007d2a567bb167669de9)]:
|
14
|
+
- @gradio/client@0.10.1
|
15
|
+
- @gradio/upload@0.6.1
|
16
|
+
|
3
17
|
## 0.4.14
|
4
18
|
|
5
19
|
### Patch Changes
|
@@ -261,4 +275,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
|
|
261
275
|
|
262
276
|
- Updated dependencies []:
|
263
277
|
- @gradio/atoms@0.0.2
|
264
|
-
- @gradio/upload@0.0.2
|
278
|
+
- @gradio/upload@0.0.2
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/model3d",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.5.0",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
@@ -11,12 +11,12 @@
|
|
11
11
|
"babylonjs": "^4.2.1",
|
12
12
|
"babylonjs-loaders": "^4.2.1",
|
13
13
|
"dequal": "^2.0.2",
|
14
|
-
"@gradio/atoms": "^0.
|
15
|
-
"@gradio/client": "^0.10.
|
16
|
-
"@gradio/statustracker": "^0.4.3",
|
14
|
+
"@gradio/atoms": "^0.5.0",
|
15
|
+
"@gradio/client": "^0.10.1",
|
17
16
|
"@gradio/icons": "^0.3.2",
|
18
|
-
"@gradio/
|
19
|
-
"@gradio/utils": "^0.2.
|
17
|
+
"@gradio/statustracker": "^0.4.4",
|
18
|
+
"@gradio/utils": "^0.2.1",
|
19
|
+
"@gradio/upload": "^0.7.0"
|
20
20
|
},
|
21
21
|
"main_changeset": true,
|
22
22
|
"main": "./Index.svelte",
|