@gradio/dataframe 0.8.0 → 0.8.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 +15 -0
- package/Index.svelte +1 -1
- package/package.json +8 -8
- package/shared/Table.svelte +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @gradio/dataframe
|
|
2
2
|
|
|
3
|
+
## 0.8.1
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- [#8252](https://github.com/gradio-app/gradio/pull/8252) [`22df61a`](https://github.com/gradio-app/gradio/commit/22df61a26adf8023f6dd49c051979990e8d3879a) - Client node fix. Thanks @pngwn!
|
|
8
|
+
|
|
9
|
+
### Dependency updates
|
|
10
|
+
|
|
11
|
+
- @gradio/atoms@0.7.3
|
|
12
|
+
- @gradio/statustracker@0.5.2
|
|
13
|
+
- @gradio/markdown@0.7.2
|
|
14
|
+
- @gradio/client@0.19.0
|
|
15
|
+
- @gradio/upload@0.10.1
|
|
16
|
+
- @gradio/button@0.2.34
|
|
17
|
+
|
|
3
18
|
## 0.8.0
|
|
4
19
|
|
|
5
20
|
### Features
|
package/Index.svelte
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradio/dataframe",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Gradio UI packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "",
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
"dompurify": "^3.0.3",
|
|
18
18
|
"katex": "^0.16.7",
|
|
19
19
|
"marked": "^12.0.0",
|
|
20
|
-
"@gradio/atoms": "^0.7.
|
|
21
|
-
"@gradio/button": "^0.2.
|
|
22
|
-
"@gradio/client": "^0.
|
|
23
|
-
"@gradio/markdown": "^0.7.
|
|
24
|
-
"@gradio/
|
|
25
|
-
"@gradio/
|
|
26
|
-
"@gradio/
|
|
20
|
+
"@gradio/atoms": "^0.7.3",
|
|
21
|
+
"@gradio/button": "^0.2.34",
|
|
22
|
+
"@gradio/client": "^0.19.0",
|
|
23
|
+
"@gradio/markdown": "^0.7.2",
|
|
24
|
+
"@gradio/upload": "^0.10.1",
|
|
25
|
+
"@gradio/statustracker": "^0.5.2",
|
|
26
|
+
"@gradio/utils": "^0.4.1"
|
|
27
27
|
},
|
|
28
28
|
"exports": {
|
|
29
29
|
".": "./Index.svelte",
|
package/shared/Table.svelte
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
export let line_breaks = true;
|
|
41
41
|
export let column_widths: string[] = [];
|
|
42
42
|
export let upload: Client["upload"];
|
|
43
|
-
export let stream_handler: Client["
|
|
43
|
+
export let stream_handler: Client["stream"];
|
|
44
44
|
|
|
45
45
|
let selected: false | [number, number] = false;
|
|
46
46
|
export let display_value: string[][] | null = null;
|