@gradio/code 0.5.0 → 0.5.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 +14 -4
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
@@ -1,20 +1,30 @@
|
|
1
1
|
# @gradio/code
|
2
2
|
|
3
|
+
## 0.5.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [[`065c5b1`](https://github.com/gradio-app/gradio/commit/065c5b163c4badb9d9cbd06d627fb4ba086003e7)]:
|
8
|
+
- @gradio/utils@0.3.0
|
9
|
+
- @gradio/atoms@0.5.2
|
10
|
+
- @gradio/statustracker@0.4.6
|
11
|
+
- @gradio/upload@0.7.3
|
12
|
+
|
3
13
|
## 0.5.0
|
4
14
|
|
5
15
|
### Features
|
6
16
|
|
7
|
-
- [#7328](https://github.com/gradio-app/gradio/pull/7328) [`c1a7ea7`](https://github.com/gradio-app/gradio/commit/c1a7ea7c0c294aa970624f02225717c12bcf9b58) - Add SQL Support for gr.Code.
|
17
|
+
- [#7328](https://github.com/gradio-app/gradio/pull/7328) [`c1a7ea7`](https://github.com/gradio-app/gradio/commit/c1a7ea7c0c294aa970624f02225717c12bcf9b58) - Add SQL Support for gr.Code. Thanks [@aersam](https://github.com/aersam)!
|
8
18
|
|
9
19
|
## 0.4.0
|
10
20
|
|
11
21
|
### Features
|
12
22
|
|
13
|
-
- [#7240](https://github.com/gradio-app/gradio/pull/7240) [`1893756`](https://github.com/gradio-app/gradio/commit/18937564ab8906710549d5bccc48f7188c836f38) - Small cleanups of `Code` component.
|
23
|
+
- [#7240](https://github.com/gradio-app/gradio/pull/7240) [`1893756`](https://github.com/gradio-app/gradio/commit/18937564ab8906710549d5bccc48f7188c836f38) - Small cleanups of `Code` component. Thanks [@abidlabs](https://github.com/abidlabs)!
|
14
24
|
|
15
25
|
### Fixes
|
16
26
|
|
17
|
-
- [#7192](https://github.com/gradio-app/gradio/pull/7192) [`8dd6f4b`](https://github.com/gradio-app/gradio/commit/8dd6f4bc1901792f05cd59e86df7b1dbab692739) - Handle the case where examples is `null` for all components.
|
27
|
+
- [#7192](https://github.com/gradio-app/gradio/pull/7192) [`8dd6f4b`](https://github.com/gradio-app/gradio/commit/8dd6f4bc1901792f05cd59e86df7b1dbab692739) - Handle the case where examples is `null` for all components. Thanks [@abidlabs](https://github.com/abidlabs)!
|
18
28
|
|
19
29
|
## 0.3.8
|
20
30
|
|
@@ -281,4 +291,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
|
|
281
291
|
|
282
292
|
- Updated dependencies []:
|
283
293
|
- @gradio/atoms@0.0.2
|
284
|
-
- @gradio/upload@0.0.2
|
294
|
+
- @gradio/upload@0.0.2
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/code",
|
3
|
-
"version": "0.5.
|
3
|
+
"version": "0.5.1",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
@@ -28,11 +28,11 @@
|
|
28
28
|
"cm6-theme-basic-light": "^0.2.0",
|
29
29
|
"codemirror": "^6.0.1",
|
30
30
|
"@gradio/icons": "^0.3.2",
|
31
|
-
"@gradio/
|
32
|
-
"@gradio/statustracker": "^0.4.
|
33
|
-
"@gradio/
|
34
|
-
"@gradio/
|
35
|
-
"@gradio/
|
31
|
+
"@gradio/atoms": "^0.5.2",
|
32
|
+
"@gradio/statustracker": "^0.4.6",
|
33
|
+
"@gradio/upload": "^0.7.3",
|
34
|
+
"@gradio/utils": "^0.3.0",
|
35
|
+
"@gradio/wasm": "^0.6.0"
|
36
36
|
},
|
37
37
|
"main_changeset": true,
|
38
38
|
"main": "./Index.svelte",
|