@gradio/dataframe 0.11.1 → 0.11.3
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 +22 -0
- package/dist/shared/Table.svelte +2 -0
- package/package.json +7 -7
- package/shared/Table.svelte +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @gradio/dataframe
|
|
2
2
|
|
|
3
|
+
## 0.11.3
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- [#9709](https://github.com/gradio-app/gradio/pull/9709) [`31418ef`](https://github.com/gradio-app/gradio/commit/31418ef388a2dc524069ee230c2735a4beaf55f1) - fix table type check. Thanks @hannahblair!
|
|
8
|
+
|
|
9
|
+
### Dependency updates
|
|
10
|
+
|
|
11
|
+
- @gradio/markdown@0.10.2
|
|
12
|
+
- @gradio/atoms@0.9.1
|
|
13
|
+
- @gradio/statustracker@0.9.0
|
|
14
|
+
- @gradio/client@1.7.0
|
|
15
|
+
- @gradio/upload@0.13.2
|
|
16
|
+
- @gradio/button@0.3.2
|
|
17
|
+
|
|
18
|
+
## 0.11.2
|
|
19
|
+
|
|
20
|
+
### Dependency updates
|
|
21
|
+
|
|
22
|
+
- @gradio/upload@0.13.1
|
|
23
|
+
- @gradio/button@0.3.1
|
|
24
|
+
|
|
3
25
|
## 0.11.1
|
|
4
26
|
|
|
5
27
|
### Features
|
package/dist/shared/Table.svelte
CHANGED
|
@@ -814,6 +814,8 @@ function toggle_header_menu(event, col) {
|
|
|
814
814
|
x={active_header_menu.x}
|
|
815
815
|
y={active_header_menu.y}
|
|
816
816
|
row={-1}
|
|
817
|
+
on_add_row_above={() => add_row_at(active_cell_menu?.row ?? -1, "above")}
|
|
818
|
+
on_add_row_below={() => add_row_at(active_cell_menu?.row ?? -1, "below")}
|
|
817
819
|
on_add_column_left={() => add_col_at(active_header_menu?.col ?? -1, "left")}
|
|
818
820
|
on_add_column_right={() =>
|
|
819
821
|
add_col_at(active_header_menu?.col ?? -1, "right")}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradio/dataframe",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.3",
|
|
4
4
|
"description": "Gradio UI packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "",
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"dompurify": "^3.0.3",
|
|
18
18
|
"katex": "^0.16.7",
|
|
19
19
|
"marked": "^12.0.0",
|
|
20
|
-
"@gradio/atoms": "^0.9.
|
|
21
|
-
"@gradio/button": "^0.3.
|
|
22
|
-
"@gradio/client": "^1.
|
|
23
|
-
"@gradio/markdown": "^0.10.
|
|
24
|
-
"@gradio/
|
|
25
|
-
"@gradio/
|
|
20
|
+
"@gradio/atoms": "^0.9.1",
|
|
21
|
+
"@gradio/button": "^0.3.2",
|
|
22
|
+
"@gradio/client": "^1.7.0",
|
|
23
|
+
"@gradio/markdown": "^0.10.2",
|
|
24
|
+
"@gradio/upload": "^0.13.2",
|
|
25
|
+
"@gradio/statustracker": "^0.9.0",
|
|
26
26
|
"@gradio/utils": "^0.7.0"
|
|
27
27
|
},
|
|
28
28
|
"exports": {
|
package/shared/Table.svelte
CHANGED
|
@@ -1005,6 +1005,8 @@
|
|
|
1005
1005
|
x={active_header_menu.x}
|
|
1006
1006
|
y={active_header_menu.y}
|
|
1007
1007
|
row={-1}
|
|
1008
|
+
on_add_row_above={() => add_row_at(active_cell_menu?.row ?? -1, "above")}
|
|
1009
|
+
on_add_row_below={() => add_row_at(active_cell_menu?.row ?? -1, "below")}
|
|
1008
1010
|
on_add_column_left={() => add_col_at(active_header_menu?.col ?? -1, "left")}
|
|
1009
1011
|
on_add_column_right={() =>
|
|
1010
1012
|
add_col_at(active_header_menu?.col ?? -1, "right")}
|