@gradio/model3d 0.3.0-beta.8 → 0.3.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 +11 -0
- package/Index.svelte +2 -2
- package/package.json +7 -7
- package/shared/Model3D.svelte +1 -1
- package/shared/Model3DUpload.svelte +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# @gradio/model3d
|
2
2
|
|
3
|
+
## 0.3.0
|
4
|
+
|
5
|
+
### Features
|
6
|
+
|
7
|
+
- [#5498](https://github.com/gradio-app/gradio/pull/5498) [`287fe6782`](https://github.com/gradio-app/gradio/commit/287fe6782825479513e79a5cf0ba0fbfe51443d7) - fix circular dependency with client + upload. Thanks [@pngwn](https://github.com/pngwn)!
|
8
|
+
- [#5498](https://github.com/gradio-app/gradio/pull/5498) [`287fe6782`](https://github.com/gradio-app/gradio/commit/287fe6782825479513e79a5cf0ba0fbfe51443d7) - Clean root url. Thanks [@pngwn](https://github.com/pngwn)!
|
9
|
+
- [#5498](https://github.com/gradio-app/gradio/pull/5498) [`287fe6782`](https://github.com/gradio-app/gradio/commit/287fe6782825479513e79a5cf0ba0fbfe51443d7) - Image v4. Thanks [@pngwn](https://github.com/pngwn)!
|
10
|
+
- [#5498](https://github.com/gradio-app/gradio/pull/5498) [`287fe6782`](https://github.com/gradio-app/gradio/commit/287fe6782825479513e79a5cf0ba0fbfe51443d7) - Publish all components to npm. Thanks [@pngwn](https://github.com/pngwn)!
|
11
|
+
- [#5498](https://github.com/gradio-app/gradio/pull/5498) [`287fe6782`](https://github.com/gradio-app/gradio/commit/287fe6782825479513e79a5cf0ba0fbfe51443d7) - Custom components. Thanks [@pngwn](https://github.com/pngwn)!
|
12
|
+
- [#6171](https://github.com/gradio-app/gradio/pull/6171) [`28322422c`](https://github.com/gradio-app/gradio/commit/28322422cb9d8d3e471e439ad602959662e79312) - strip dangling svelte imports. Thanks [@pngwn](https://github.com/pngwn)!
|
13
|
+
|
3
14
|
## 0.3.0-beta.8
|
4
15
|
|
5
16
|
### Features
|
package/Index.svelte
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
export let visible = true;
|
21
21
|
export let value: null | FileData = null;
|
22
22
|
export let root: string;
|
23
|
-
export let
|
23
|
+
export let proxy_url: null | string;
|
24
24
|
export let clear_color: [number, number, number, number];
|
25
25
|
export let loading_status: LoadingStatus;
|
26
26
|
export let label: string;
|
@@ -41,7 +41,7 @@
|
|
41
41
|
export let interactive: boolean;
|
42
42
|
|
43
43
|
let _value: null | FileData;
|
44
|
-
$: _value = normalise_file(value, root,
|
44
|
+
$: _value = normalise_file(value, root, proxy_url);
|
45
45
|
|
46
46
|
let dragging = false;
|
47
47
|
</script>
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/model3d",
|
3
|
-
"version": "0.3.0
|
3
|
+
"version": "0.3.0",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
@@ -10,12 +10,12 @@
|
|
10
10
|
"@types/babylon": "^6.16.6",
|
11
11
|
"babylonjs": "^4.2.1",
|
12
12
|
"babylonjs-loaders": "^4.2.1",
|
13
|
-
"@gradio/atoms": "^0.2.0
|
14
|
-
"@gradio/client": "^0.7.0
|
15
|
-
"@gradio/icons": "^0.2.0
|
16
|
-
"@gradio/statustracker": "^0.3.0
|
17
|
-
"@gradio/upload": "^0.3.0
|
18
|
-
"@gradio/utils": "^0.2.0
|
13
|
+
"@gradio/atoms": "^0.2.0",
|
14
|
+
"@gradio/client": "^0.7.0",
|
15
|
+
"@gradio/icons": "^0.2.0",
|
16
|
+
"@gradio/statustracker": "^0.3.0",
|
17
|
+
"@gradio/upload": "^0.3.0",
|
18
|
+
"@gradio/utils": "^0.2.0"
|
19
19
|
},
|
20
20
|
"main_changeset": true,
|
21
21
|
"main": "./Index.svelte",
|
package/shared/Model3D.svelte
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
import { onMount } from "svelte";
|
7
7
|
import * as BABYLON from "babylonjs";
|
8
8
|
import * as BABYLON_LOADERS from "babylonjs-loaders";
|
9
|
-
import type { I18nFormatter } from "
|
9
|
+
import type { I18nFormatter } from "@gradio/utils";
|
10
10
|
|
11
11
|
export let value: FileData | null;
|
12
12
|
export let clear_color: [number, number, number, number] = [0, 0, 0, 0];
|