@gradio/dataframe 0.4.5 → 0.5.0
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 -1
- package/package.json +4 -4
- package/shared/EditableCell.svelte +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @gradio/dataframe
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- [#7018](https://github.com/gradio-app/gradio/pull/7018) [`ec28b4e`](https://github.com/gradio-app/gradio/commit/ec28b4e7c47a9233d9e3a725cc9fe8f9044dfa94) - Add `visible` and `interactive` params to `gr.Tab()`. Thanks [@hannahblair](https://github.com/hannahblair)!
|
|
8
|
+
|
|
9
|
+
## 0.4.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [[`793bf8f`](https://github.com/gradio-app/gradio/commit/793bf8f7b1943f265c5d016c1a0c682ee549232a), [`5d00dd3`](https://github.com/gradio-app/gradio/commit/5d00dd37ca14bbfef2ceac550b29dbe05ba8cab0)]:
|
|
14
|
+
- @gradio/upload@0.6.0
|
|
15
|
+
- @gradio/button@0.2.16
|
|
16
|
+
|
|
3
17
|
## 0.4.5
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -300,4 +314,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
|
|
|
300
314
|
|
|
301
315
|
- Updated dependencies [[`667875b2`](https://github.com/gradio-app/gradio/commit/667875b2441753e74d25bd9d3c8adedd8ede11cd), [`37caa2e0`](https://github.com/gradio-app/gradio/commit/37caa2e0fe95d6cab8beb174580fb557904f137f)]:
|
|
302
316
|
- @gradio/upload@0.0.3
|
|
303
|
-
- @gradio/button@0.1.0
|
|
317
|
+
- @gradio/button@0.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradio/dataframe",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Gradio UI packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"katex": "^0.16.7",
|
|
19
19
|
"marked": "^11.0.0",
|
|
20
20
|
"@gradio/atoms": "^0.4.1",
|
|
21
|
-
"@gradio/
|
|
21
|
+
"@gradio/button": "^0.2.17",
|
|
22
22
|
"@gradio/statustracker": "^0.4.3",
|
|
23
|
-
"@gradio/
|
|
24
|
-
"@gradio/upload": "^0.
|
|
23
|
+
"@gradio/markdown": "^0.6.0",
|
|
24
|
+
"@gradio/upload": "^0.6.1",
|
|
25
25
|
"@gradio/utils": "^0.2.0"
|
|
26
26
|
},
|
|
27
27
|
"exports": {
|