@gradio/model3d 0.14.17 → 0.14.19

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,25 @@
1
1
  # @gradio/model3d
2
2
 
3
+ ## 0.14.19
4
+
5
+ ### Dependency updates
6
+
7
+ - @gradio/atoms@0.16.3
8
+ - @gradio/statustracker@0.10.14
9
+ - @gradio/upload@0.16.10
10
+ - @gradio/client@1.15.5
11
+
12
+ ## 0.14.18
13
+
14
+ ### Features
15
+
16
+ - [#11447](https://github.com/gradio-app/gradio/pull/11447) [`58631ef`](https://github.com/gradio-app/gradio/commit/58631efdf3e2ff805ce625b7ef63e651f01af03e) - Revert .only marker in e2e tests. Thanks @freddyaboulton!
17
+
18
+ ### Dependency updates
19
+
20
+ - @gradio/upload@0.16.9
21
+ - @gradio/client@1.15.4
22
+
3
23
  ## 0.14.17
4
24
 
5
25
  ### Dependency updates
@@ -59,7 +59,7 @@ let resolved_url;
59
59
  label={label || i18n("3D_model.3d_model")}
60
60
  />
61
61
  {#if value}
62
- <div class="model3D">
62
+ <div class="model3D" data-testid="model3d">
63
63
  <IconButtonWrapper>
64
64
  {#if !use_3dgs}
65
65
  <!-- Canvas3DGS doesn't implement the undo method (reset_camera_position) -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/model3d",
3
- "version": "0.14.17",
3
+ "version": "0.14.19",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -13,16 +13,16 @@
13
13
  "@babylonjs/loaders": "^8.2.0",
14
14
  "dequal": "^2.0.2",
15
15
  "gsplat": "^1.0.5",
16
- "@gradio/atoms": "^0.16.2",
16
+ "@gradio/atoms": "^0.16.3",
17
17
  "@gradio/icons": "^0.12.0",
18
- "@gradio/client": "^1.15.3",
19
- "@gradio/statustracker": "^0.10.13",
18
+ "@gradio/client": "^1.15.5",
19
+ "@gradio/statustracker": "^0.10.14",
20
+ "@gradio/upload": "^0.16.10",
20
21
  "@gradio/utils": "^0.10.2",
21
- "@gradio/upload": "^0.16.8",
22
22
  "@gradio/wasm": "^0.18.1"
23
23
  },
24
24
  "devDependencies": {
25
- "@gradio/preview": "^0.13.2"
25
+ "@gradio/preview": "^0.14.0"
26
26
  },
27
27
  "main_changeset": true,
28
28
  "main": "./Index.svelte",
@@ -74,7 +74,7 @@
74
74
  label={label || i18n("3D_model.3d_model")}
75
75
  />
76
76
  {#if value}
77
- <div class="model3D">
77
+ <div class="model3D" data-testid="model3d">
78
78
  <IconButtonWrapper>
79
79
  {#if !use_3dgs}
80
80
  <!-- Canvas3DGS doesn't implement the undo method (reset_camera_position) -->