@gradio/dataset 0.5.0-dev.3 → 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 +37 -0
- package/Dataset.svelte +1 -7
- package/dist/Dataset.svelte +1 -7
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @gradio/dataset
|
|
2
2
|
|
|
3
|
+
## 0.5.1
|
|
4
|
+
|
|
5
|
+
### Dependency updates
|
|
6
|
+
|
|
7
|
+
- @gradio/atoms@0.20.0
|
|
8
|
+
- @gradio/utils@0.11.0
|
|
9
|
+
- @gradio/client@2.0.1
|
|
10
|
+
- @gradio/upload@0.17.3
|
|
11
|
+
- @gradio/textbox@0.13.0
|
|
12
|
+
|
|
13
|
+
## 0.5.0
|
|
14
|
+
|
|
15
|
+
### Dependency updates
|
|
16
|
+
|
|
17
|
+
- @gradio/textbox@0.12.1
|
|
18
|
+
|
|
19
|
+
## 0.5.0
|
|
20
|
+
|
|
21
|
+
### Dependency updates
|
|
22
|
+
|
|
23
|
+
- @gradio/utils@0.10.4
|
|
24
|
+
|
|
25
|
+
## 0.5.0
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
- [#11908](https://github.com/gradio-app/gradio/pull/11908) [`029034f`](https://github.com/gradio-app/gradio/commit/029034f7853ea018d110efe9b7e2ef7d1407091c) - Fix Reload Mode in 6.0
|
|
30
|
+
- [#12438](https://github.com/gradio-app/gradio/pull/12438) [`25ffc03`](https://github.com/gradio-app/gradio/commit/25ffc0398f8feb43d817c02b2ab970c16de6d797) - Svelte5 migration and bugfix
|
|
31
|
+
|
|
32
|
+
### Dependencies
|
|
33
|
+
|
|
34
|
+
- @gradio/atoms@0.19.0
|
|
35
|
+
- @gradio/client@2.0.0
|
|
36
|
+
- @gradio/utils@0.10.3
|
|
37
|
+
- @gradio/upload@0.17.2
|
|
38
|
+
- @gradio/textbox@0.12.0
|
|
39
|
+
|
|
3
40
|
## 0.5.0-dev.3
|
|
4
41
|
|
|
5
42
|
### Features
|
package/Dataset.svelte
CHANGED
|
@@ -97,12 +97,7 @@
|
|
|
97
97
|
selected_samples_json: string
|
|
98
98
|
): Promise<void> {
|
|
99
99
|
const _selected_samples: any[][] = JSON.parse(selected_samples_json);
|
|
100
|
-
|
|
101
|
-
console.log(
|
|
102
|
-
"Getting component meta for samples:",
|
|
103
|
-
_selected_samples,
|
|
104
|
-
components
|
|
105
|
-
);
|
|
100
|
+
|
|
106
101
|
// @ts-ignore
|
|
107
102
|
component_meta = await Promise.all(
|
|
108
103
|
_selected_samples &&
|
|
@@ -110,7 +105,6 @@
|
|
|
110
105
|
async (sample_row) =>
|
|
111
106
|
await Promise.all(
|
|
112
107
|
sample_row.map(async (sample_cell, j) => {
|
|
113
|
-
console.log("Loading component:", components[j]);
|
|
114
108
|
return {
|
|
115
109
|
value: sample_cell,
|
|
116
110
|
component: load_component(components[j], "example")
|
package/dist/Dataset.svelte
CHANGED
|
@@ -97,12 +97,7 @@
|
|
|
97
97
|
selected_samples_json: string
|
|
98
98
|
): Promise<void> {
|
|
99
99
|
const _selected_samples: any[][] = JSON.parse(selected_samples_json);
|
|
100
|
-
|
|
101
|
-
console.log(
|
|
102
|
-
"Getting component meta for samples:",
|
|
103
|
-
_selected_samples,
|
|
104
|
-
components
|
|
105
|
-
);
|
|
100
|
+
|
|
106
101
|
// @ts-ignore
|
|
107
102
|
component_meta = await Promise.all(
|
|
108
103
|
_selected_samples &&
|
|
@@ -110,7 +105,6 @@
|
|
|
110
105
|
async (sample_row) =>
|
|
111
106
|
await Promise.all(
|
|
112
107
|
sample_row.map(async (sample_cell, j) => {
|
|
113
|
-
console.log("Loading component:", components[j]);
|
|
114
108
|
return {
|
|
115
109
|
value: sample_cell,
|
|
116
110
|
component: load_component(components[j], "example")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradio/dataset",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.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/atoms": "^0.
|
|
20
|
-
"@gradio/
|
|
21
|
-
"@gradio/
|
|
22
|
-
"@gradio/
|
|
23
|
-
"@gradio/upload": "^0.17.
|
|
19
|
+
"@gradio/atoms": "^0.20.0",
|
|
20
|
+
"@gradio/utils": "^0.11.0",
|
|
21
|
+
"@gradio/textbox": "^0.13.0",
|
|
22
|
+
"@gradio/client": "^2.0.1",
|
|
23
|
+
"@gradio/upload": "^0.17.3"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@gradio/preview": "^0.15.
|
|
26
|
+
"@gradio/preview": "^0.15.1"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"svelte": "^5.43.4"
|