@gradio/model3d 0.11.2 → 0.12.1

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,35 @@
1
1
  # @gradio/model3d
2
2
 
3
+ ## 0.12.1
4
+
5
+ ### Features
6
+
7
+ - [#9118](https://github.com/gradio-app/gradio/pull/9118) [`e1c404d`](https://github.com/gradio-app/gradio/commit/e1c404da1143fb52b659d03e028bdba1badf443d) - setup npm-previews of all packages. Thanks @pngwn!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/utils@0.6.0
12
+ - @gradio/upload@0.12.3
13
+ - @gradio/atoms@0.8.0
14
+ - @gradio/client@1.5.1
15
+ - @gradio/statustracker@0.7.5
16
+ - @gradio/wasm@0.13.0
17
+ - @gradio/icons@0.7.1
18
+
19
+ ## 0.12.0
20
+
21
+ ### Features
22
+
23
+ - [#8975](https://github.com/gradio-app/gradio/pull/8975) [`3feea64`](https://github.com/gradio-app/gradio/commit/3feea64a65688d710184604bb44636d513bcc36a) - Prevent overflow in Model3D. Thanks @hannahblair!
24
+
25
+ ### Dependency updates
26
+
27
+ - @gradio/atoms@0.7.9
28
+ - @gradio/statustracker@0.7.4
29
+ - @gradio/client@1.5.0
30
+ - @gradio/icons@0.7.0
31
+ - @gradio/upload@0.12.2
32
+
3
33
  ## 0.11.2
4
34
 
5
35
  ### Dependency updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/model3d",
3
- "version": "0.11.2",
3
+ "version": "0.12.1",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -12,16 +12,16 @@
12
12
  "babylonjs-loaders": "^4.2.1",
13
13
  "dequal": "^2.0.2",
14
14
  "gsplat": "^1.0.5",
15
- "@gradio/atoms": "^0.7.8",
16
- "@gradio/client": "^1.4.0",
17
- "@gradio/statustracker": "^0.7.3",
18
- "@gradio/upload": "^0.12.1",
19
- "@gradio/utils": "^0.5.2",
20
- "@gradio/wasm": "^0.12.0",
21
- "@gradio/icons": "^0.6.1"
15
+ "@gradio/atoms": "^0.8.0",
16
+ "@gradio/client": "^1.5.1",
17
+ "@gradio/icons": "^0.7.1",
18
+ "@gradio/upload": "^0.12.3",
19
+ "@gradio/statustracker": "^0.7.5",
20
+ "@gradio/utils": "^0.6.0",
21
+ "@gradio/wasm": "^0.13.0"
22
22
  },
23
23
  "devDependencies": {
24
- "@gradio/preview": "^0.10.2"
24
+ "@gradio/preview": "^0.11.0"
25
25
  },
26
26
  "main_changeset": true,
27
27
  "main": "./Index.svelte",
@@ -29,5 +29,10 @@
29
29
  ".": "./Index.svelte",
30
30
  "./example": "./Example.svelte",
31
31
  "./package.json": "./package.json"
32
+ },
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "git+https://github.com/gradio-app/gradio.git",
36
+ "directory": "js/model3D"
32
37
  }
33
38
  }
@@ -118,6 +118,8 @@
118
118
  position: relative;
119
119
  width: var(--size-full);
120
120
  height: var(--size-full);
121
+ border-radius: var(--block-radius);
122
+ overflow: hidden;
121
123
  }
122
124
  .model3D :global(canvas) {
123
125
  width: var(--size-full);
@@ -140,6 +140,8 @@
140
140
  align-items: center;
141
141
  width: var(--size-full);
142
142
  height: var(--size-full);
143
+ border-radius: var(--block-radius);
144
+ overflow: hidden;
143
145
  }
144
146
 
145
147
  .input-model :global(canvas) {