@gradio/model3d 0.11.1 → 0.12.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 CHANGED
@@ -1,5 +1,29 @@
1
1
  # @gradio/model3d
2
2
 
3
+ ## 0.12.0
4
+
5
+ ### Features
6
+
7
+ - [#8975](https://github.com/gradio-app/gradio/pull/8975) [`3feea64`](https://github.com/gradio-app/gradio/commit/3feea64a65688d710184604bb44636d513bcc36a) - Prevent overflow in Model3D. Thanks @hannahblair!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/atoms@0.7.9
12
+ - @gradio/statustracker@0.7.4
13
+ - @gradio/client@1.5.0
14
+ - @gradio/icons@0.7.0
15
+ - @gradio/upload@0.12.2
16
+
17
+ ## 0.11.2
18
+
19
+ ### Dependency updates
20
+
21
+ - @gradio/atoms@0.7.8
22
+ - @gradio/icons@0.6.1
23
+ - @gradio/utils@0.5.2
24
+ - @gradio/statustracker@0.7.3
25
+ - @gradio/upload@0.12.1
26
+
3
27
  ## 0.11.1
4
28
 
5
29
  ### Dependency updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/model3d",
3
- "version": "0.11.1",
3
+ "version": "0.12.0",
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.7",
16
- "@gradio/client": "^1.4.0",
17
- "@gradio/icons": "^0.6.0",
18
- "@gradio/statustracker": "^0.7.2",
19
- "@gradio/upload": "^0.12.0",
20
- "@gradio/utils": "^0.5.1",
15
+ "@gradio/atoms": "^0.7.9",
16
+ "@gradio/client": "^1.5.0",
17
+ "@gradio/statustracker": "^0.7.4",
18
+ "@gradio/icons": "^0.7.0",
19
+ "@gradio/utils": "^0.5.2",
20
+ "@gradio/upload": "^0.12.2",
21
21
  "@gradio/wasm": "^0.12.0"
22
22
  },
23
23
  "devDependencies": {
24
- "@gradio/preview": "^0.10.1"
24
+ "@gradio/preview": "^0.10.2"
25
25
  },
26
26
  "main_changeset": true,
27
27
  "main": "./Index.svelte",
@@ -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) {