@gradio/dataset 0.5.0 → 0.5.2

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,4 +1,48 @@
1
1
  # @gradio/dataset
2
+
3
+ ## 0.5.2
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
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/atoms@0.20.1
12
+ - @gradio/utils@0.11.2
13
+ - @gradio/upload@0.17.4
14
+ - @gradio/client@2.0.3
15
+ - @gradio/textbox@0.13.2
16
+
17
+ ## 0.5.1
18
+
19
+ ### Dependency updates
20
+
21
+ - @gradio/utils@0.11.1
22
+ - @gradio/client@2.0.2
23
+
24
+ ## 0.5.1
25
+
26
+ ### Dependency updates
27
+
28
+ - @gradio/atoms@0.20.0
29
+ - @gradio/utils@0.11.0
30
+ - @gradio/client@2.0.1
31
+ - @gradio/upload@0.17.3
32
+ - @gradio/textbox@0.13.0
33
+
34
+ ## 0.5.0
35
+
36
+ ### Dependency updates
37
+
38
+ - @gradio/textbox@0.12.1
39
+
40
+ ## 0.5.0
41
+
42
+ ### Dependency updates
43
+
44
+ - @gradio/utils@0.10.4
45
+
2
46
  ## 0.5.0
3
47
 
4
48
  ### 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
- console.log("+++++++++++++++++++++++++++++++++++++");
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")
@@ -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
- console.log("+++++++++++++++++++++++++++++++++++++");
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.0",
3
+ "version": "0.5.2",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -16,17 +16,17 @@
16
16
  "./package.json": "./package.json"
17
17
  },
18
18
  "dependencies": {
19
- "@gradio/atoms": "^0.19.0",
20
- "@gradio/client": "^2.0.0",
21
- "@gradio/utils": "^0.10.3",
22
- "@gradio/upload": "^0.17.2",
23
- "@gradio/textbox": "^0.12.0"
19
+ "@gradio/atoms": "^0.20.1",
20
+ "@gradio/textbox": "^0.13.2",
21
+ "@gradio/client": "^2.0.3",
22
+ "@gradio/utils": "^0.11.2",
23
+ "@gradio/upload": "^0.17.4"
24
24
  },
25
25
  "devDependencies": {
26
- "@gradio/preview": "^0.15.0"
26
+ "@gradio/preview": "^0.15.2"
27
27
  },
28
28
  "peerDependencies": {
29
- "svelte": "^5.43.4"
29
+ "svelte": "^5.48.0"
30
30
  },
31
31
  "repository": {
32
32
  "type": "git",