@gradio/dataset 0.2.5 → 0.3.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 +66 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
@@ -1,11 +1,76 @@
|
|
1
1
|
# @gradio/dataset
|
2
2
|
|
3
|
-
## 0.
|
3
|
+
## 0.3.1
|
4
|
+
|
5
|
+
### Dependency updates
|
6
|
+
|
7
|
+
- @gradio/textbox@0.7.1
|
8
|
+
|
9
|
+
## 0.2.5-beta.7
|
10
|
+
|
11
|
+
### Dependency updates
|
12
|
+
|
13
|
+
- @gradio/upload@0.13.0-beta.7
|
14
|
+
- @gradio/atoms@0.9.0-beta.5
|
15
|
+
- @gradio/textbox@0.7.0-beta.5
|
16
|
+
|
17
|
+
## 0.2.5-beta.6
|
18
|
+
|
19
|
+
### Dependency updates
|
20
|
+
|
21
|
+
- @gradio/atoms@0.9.0-beta.4
|
22
|
+
- @gradio/client@1.6.0-beta.4
|
23
|
+
- @gradio/upload@0.13.0-beta.6
|
24
|
+
- @gradio/textbox@0.7.0-beta.4
|
25
|
+
|
26
|
+
## 0.2.5-beta.5
|
27
|
+
|
28
|
+
### Dependency updates
|
29
|
+
|
30
|
+
- @gradio/upload@0.13.0-beta.5
|
31
|
+
- @gradio/atoms@0.9.0-beta.3
|
32
|
+
- @gradio/textbox@0.7.0-beta.3
|
33
|
+
|
34
|
+
## 0.2.5-beta.4
|
35
|
+
|
36
|
+
### Dependency updates
|
37
|
+
|
38
|
+
- @gradio/upload@0.13.0-beta.4
|
39
|
+
- @gradio/textbox@0.7.0-beta.2
|
40
|
+
|
41
|
+
## 0.2.5-beta.3
|
42
|
+
|
43
|
+
### Dependency updates
|
44
|
+
|
45
|
+
- @gradio/upload@0.13.0-beta.3
|
46
|
+
- @gradio/client@1.6.0-beta.3
|
47
|
+
|
48
|
+
## 0.2.5-beta.2
|
49
|
+
|
50
|
+
### Dependency updates
|
51
|
+
|
52
|
+
- @gradio/atoms@0.9.0-beta.2
|
53
|
+
- @gradio/upload@0.13.0-beta.2
|
54
|
+
- @gradio/client@1.6.0-beta.2
|
55
|
+
- @gradio/utils@0.7.0-beta.2
|
56
|
+
- @gradio/textbox@0.7.0-beta.2
|
57
|
+
|
58
|
+
## 0.2.5-beta.1
|
4
59
|
|
5
60
|
### Features
|
6
61
|
|
7
62
|
- [#9187](https://github.com/gradio-app/gradio/pull/9187) [`5bf00b7`](https://github.com/gradio-app/gradio/commit/5bf00b7524ebf399b48719120a49d15bb21bd65c) - make all component SSR compatible. Thanks @pngwn!
|
8
63
|
|
64
|
+
### Dependency updates
|
65
|
+
|
66
|
+
- @gradio/atoms@0.8.1-beta.1
|
67
|
+
- @gradio/utils@0.7.0-beta.1
|
68
|
+
- @gradio/client@1.6.0-beta.1
|
69
|
+
- @gradio/upload@0.12.4-beta.1
|
70
|
+
- @gradio/textbox@0.7.0-beta.1
|
71
|
+
|
72
|
+
## 0.2.5-beta.0
|
73
|
+
|
9
74
|
### Fixes
|
10
75
|
|
11
76
|
- [#9163](https://github.com/gradio-app/gradio/pull/9163) [`2b6cbf2`](https://github.com/gradio-app/gradio/commit/2b6cbf25908e42cf027324e54ef2cc0baad11a91) - fix exports and generate types. Thanks @pngwn!
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/dataset",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.3.1",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
@@ -16,14 +16,14 @@
|
|
16
16
|
"./package.json": "./package.json"
|
17
17
|
},
|
18
18
|
"dependencies": {
|
19
|
-
"@gradio/
|
20
|
-
"@gradio/
|
21
|
-
"@gradio/
|
22
|
-
"@gradio/
|
23
|
-
"@gradio/
|
19
|
+
"@gradio/atoms": "^0.9.0",
|
20
|
+
"@gradio/client": "^1.6.0",
|
21
|
+
"@gradio/upload": "^0.13.0",
|
22
|
+
"@gradio/textbox": "^0.7.1",
|
23
|
+
"@gradio/utils": "^0.7.0"
|
24
24
|
},
|
25
25
|
"devDependencies": {
|
26
|
-
"@gradio/preview": "^0.
|
26
|
+
"@gradio/preview": "^0.12.0"
|
27
27
|
},
|
28
28
|
"peerDependencies": {
|
29
29
|
"svelte": "^4.0.0"
|