@gradio/model3d 0.10.0 → 0.10.2

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,27 @@
1
1
  # @gradio/model3d
2
2
 
3
+ ## 0.10.2
4
+
5
+ ### Dependency updates
6
+
7
+ - @gradio/statustracker@0.5.3
8
+ - @gradio/client@0.19.1
9
+ - @gradio/upload@0.10.2
10
+
11
+ ## 0.10.1
12
+
13
+ ### Fixes
14
+
15
+ - [#8252](https://github.com/gradio-app/gradio/pull/8252) [`22df61a`](https://github.com/gradio-app/gradio/commit/22df61a26adf8023f6dd49c051979990e8d3879a) - Client node fix. Thanks @pngwn!
16
+
17
+ ### Dependency updates
18
+
19
+ - @gradio/atoms@0.7.3
20
+ - @gradio/statustracker@0.5.2
21
+ - @gradio/client@0.19.0
22
+ - @gradio/icons@0.4.1
23
+ - @gradio/upload@0.10.1
24
+
3
25
  ## 0.10.0
4
26
 
5
27
  ### Features
package/Index.svelte CHANGED
@@ -128,7 +128,7 @@
128
128
  i18n={gradio.i18n}
129
129
  max_file_size={gradio.max_file_size}
130
130
  upload={gradio.client.upload}
131
- stream_handler={gradio.client.stream_factory}
131
+ stream_handler={gradio.client.stream}
132
132
  >
133
133
  <UploadText i18n={gradio.i18n} type="file" />
134
134
  </Model3DUpload>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/model3d",
3
- "version": "0.10.0",
3
+ "version": "0.10.2",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -12,13 +12,13 @@
12
12
  "babylonjs-loaders": "^4.2.1",
13
13
  "dequal": "^2.0.2",
14
14
  "gsplat": "^1.0.5",
15
- "@gradio/atoms": "^0.7.2",
16
- "@gradio/client": "^0.18.0",
17
- "@gradio/icons": "^0.4.0",
18
- "@gradio/statustracker": "^0.5.1",
15
+ "@gradio/atoms": "^0.7.3",
16
+ "@gradio/icons": "^0.4.1",
17
+ "@gradio/client": "^0.19.1",
18
+ "@gradio/statustracker": "^0.5.3",
19
+ "@gradio/upload": "^0.10.2",
19
20
  "@gradio/utils": "^0.4.1",
20
- "@gradio/wasm": "^0.10.1",
21
- "@gradio/upload": "^0.10.0"
21
+ "@gradio/wasm": "^0.10.1"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@gradio/preview": "^0.9.0"
@@ -25,7 +25,7 @@
25
25
  null
26
26
  ];
27
27
  export let upload: Client["upload"];
28
- export let stream_handler: Client["stream_factory"];
28
+ export let stream_handler: Client["stream"];
29
29
 
30
30
  async function handle_upload({
31
31
  detail