@gradio/code 0.17.0 → 0.17.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 +21 -0
- package/dist/shared/Copy.svelte +1 -1
- package/package.json +8 -8
- package/shared/Copy.svelte +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @gradio/code
|
|
2
2
|
|
|
3
|
+
## 0.17.1
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- [#12800](https://github.com/gradio-app/gradio/pull/12800) [`7a1c321`](https://github.com/gradio-app/gradio/commit/7a1c321b6546ba05a353488f5133e8262c4a8a39) - Bump svelte/kit for security reasons. Thanks @freddyaboulton!
|
|
8
|
+
- [#12779](https://github.com/gradio-app/gradio/pull/12779) [`ea2d3e9`](https://github.com/gradio-app/gradio/commit/ea2d3e985a8b42d188e551f517c5825c00790628) - Migrate Audio + Upload + Atoms to Svelte 5. Thanks @dawoodkhan82!
|
|
9
|
+
|
|
10
|
+
### Dependency updates
|
|
11
|
+
|
|
12
|
+
- @gradio/statustracker@0.12.2
|
|
13
|
+
- @gradio/atoms@0.20.1
|
|
14
|
+
- @gradio/utils@0.11.2
|
|
15
|
+
- @gradio/icons@0.15.1
|
|
16
|
+
- @gradio/upload@0.17.4
|
|
17
|
+
|
|
18
|
+
## 0.17.0
|
|
19
|
+
|
|
20
|
+
### Dependency updates
|
|
21
|
+
|
|
22
|
+
- @gradio/utils@0.11.1
|
|
23
|
+
|
|
3
24
|
## 0.17.0
|
|
4
25
|
|
|
5
26
|
### Features
|
package/dist/shared/Copy.svelte
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradio/code",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.1",
|
|
4
4
|
"description": "Gradio UI packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"cm6-theme-basic-dark": "^0.2.0",
|
|
28
28
|
"cm6-theme-basic-light": "^0.2.0",
|
|
29
29
|
"codemirror": "^6.0.2",
|
|
30
|
-
"@gradio/atoms": "^0.20.
|
|
31
|
-
"@gradio/
|
|
32
|
-
"@gradio/
|
|
33
|
-
"@gradio/
|
|
34
|
-
"@gradio/utils": "^0.11.
|
|
30
|
+
"@gradio/atoms": "^0.20.1",
|
|
31
|
+
"@gradio/statustracker": "^0.12.2",
|
|
32
|
+
"@gradio/icons": "^0.15.1",
|
|
33
|
+
"@gradio/upload": "^0.17.4",
|
|
34
|
+
"@gradio/utils": "^0.11.2"
|
|
35
35
|
},
|
|
36
36
|
"main_changeset": true,
|
|
37
37
|
"main": "./Index.svelte",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"./package.json": "./package.json"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@gradio/preview": "^0.15.
|
|
54
|
+
"@gradio/preview": "^0.15.2"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"svelte": "^5.
|
|
57
|
+
"svelte": "^5.48.0"
|
|
58
58
|
},
|
|
59
59
|
"repository": {
|
|
60
60
|
"type": "git",
|
package/shared/Copy.svelte
CHANGED