@gradio/dataframe 0.11.0 → 0.11.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 +18 -0
- package/dist/shared/Table.svelte +0 -2
- package/package.json +7 -7
- package/shared/Table.svelte +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @gradio/dataframe
|
|
2
2
|
|
|
3
|
+
## 0.11.2
|
|
4
|
+
|
|
5
|
+
### Dependency updates
|
|
6
|
+
|
|
7
|
+
- @gradio/upload@0.13.1
|
|
8
|
+
- @gradio/button@0.3.1
|
|
9
|
+
|
|
10
|
+
## 0.11.1
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- [#9614](https://github.com/gradio-app/gradio/pull/9614) [`5d98550`](https://github.com/gradio-app/gradio/commit/5d985509b4b71aa4aa6b28acc38fe83c278dbbfa) - Fix `retry` and `undo` reactivity in gr.Chatbot. Thanks @hannahblair!
|
|
15
|
+
|
|
16
|
+
### Dependency updates
|
|
17
|
+
|
|
18
|
+
- @gradio/statustracker@0.8.1
|
|
19
|
+
- @gradio/markdown@0.10.1
|
|
20
|
+
|
|
3
21
|
## 0.11.0
|
|
4
22
|
|
|
5
23
|
### Features
|
package/dist/shared/Table.svelte
CHANGED
|
@@ -800,7 +800,6 @@ function toggle_header_menu(event, col) {
|
|
|
800
800
|
{i18n}
|
|
801
801
|
x={active_cell_menu.x}
|
|
802
802
|
y={active_cell_menu.y}
|
|
803
|
-
col={active_cell_menu.col}
|
|
804
803
|
row={active_cell_menu?.row ?? -1}
|
|
805
804
|
on_add_row_above={() => add_row_at(active_cell_menu?.row ?? -1, "above")}
|
|
806
805
|
on_add_row_below={() => add_row_at(active_cell_menu?.row ?? -1, "below")}
|
|
@@ -814,7 +813,6 @@ function toggle_header_menu(event, col) {
|
|
|
814
813
|
{i18n}
|
|
815
814
|
x={active_header_menu.x}
|
|
816
815
|
y={active_header_menu.y}
|
|
817
|
-
col={active_header_menu.col}
|
|
818
816
|
row={-1}
|
|
819
817
|
on_add_column_left={() => add_col_at(active_header_menu?.col ?? -1, "left")}
|
|
820
818
|
on_add_column_right={() =>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradio/dataframe",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
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/button": "^0.3.1",
|
|
20
21
|
"@gradio/atoms": "^0.9.0",
|
|
21
|
-
"@gradio/markdown": "^0.10.
|
|
22
|
-
"@gradio/
|
|
23
|
-
"@gradio/
|
|
24
|
-
"@gradio/upload": "^0.13.
|
|
25
|
-
"@gradio/utils": "^0.7.0"
|
|
26
|
-
"@gradio/client": "^1.6.0"
|
|
22
|
+
"@gradio/markdown": "^0.10.1",
|
|
23
|
+
"@gradio/statustracker": "^0.8.1",
|
|
24
|
+
"@gradio/client": "^1.6.0",
|
|
25
|
+
"@gradio/upload": "^0.13.1",
|
|
26
|
+
"@gradio/utils": "^0.7.0"
|
|
27
27
|
},
|
|
28
28
|
"exports": {
|
|
29
29
|
".": {
|
package/shared/Table.svelte
CHANGED
|
@@ -991,7 +991,6 @@
|
|
|
991
991
|
{i18n}
|
|
992
992
|
x={active_cell_menu.x}
|
|
993
993
|
y={active_cell_menu.y}
|
|
994
|
-
col={active_cell_menu.col}
|
|
995
994
|
row={active_cell_menu?.row ?? -1}
|
|
996
995
|
on_add_row_above={() => add_row_at(active_cell_menu?.row ?? -1, "above")}
|
|
997
996
|
on_add_row_below={() => add_row_at(active_cell_menu?.row ?? -1, "below")}
|
|
@@ -1005,7 +1004,6 @@
|
|
|
1005
1004
|
{i18n}
|
|
1006
1005
|
x={active_header_menu.x}
|
|
1007
1006
|
y={active_header_menu.y}
|
|
1008
|
-
col={active_header_menu.col}
|
|
1009
1007
|
row={-1}
|
|
1010
1008
|
on_add_column_left={() => add_col_at(active_header_menu?.col ?? -1, "left")}
|
|
1011
1009
|
on_add_column_right={() =>
|