@gradio/dataframe 0.17.16 → 0.17.17
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 +16 -0
- package/dist/shared/EditableCell.svelte +0 -2
- package/dist/shared/EditableCell.svelte.d.ts +0 -1
- package/dist/shared/Table.svelte +0 -4
- package/dist/shared/TableCell.svelte +0 -2
- package/dist/shared/TableCell.svelte.d.ts +0 -1
- package/dist/shared/TableHeader.svelte +0 -2
- package/dist/shared/TableHeader.svelte.d.ts +0 -1
- package/package.json +8 -8
- package/shared/EditableCell.svelte +0 -2
- package/shared/Table.svelte +0 -4
- package/shared/TableCell.svelte +0 -2
- package/shared/TableHeader.svelte +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @gradio/dataframe
|
|
2
2
|
|
|
3
|
+
## 0.17.17
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- [#11387](https://github.com/gradio-app/gradio/pull/11387) [`8245afc`](https://github.com/gradio-app/gradio/commit/8245afc669501e1e5f0d619f452455f68a3b7667) - Define root URL in frontend. Thanks @aliabid94!
|
|
8
|
+
|
|
9
|
+
### Dependency updates
|
|
10
|
+
|
|
11
|
+
- @gradio/statustracker@0.10.13
|
|
12
|
+
- @gradio/markdown-code@0.4.4
|
|
13
|
+
- @gradio/atoms@0.16.2
|
|
14
|
+
- @gradio/client@1.15.3
|
|
15
|
+
- @gradio/upload@0.16.8
|
|
16
|
+
- @gradio/checkbox@0.4.24
|
|
17
|
+
- @gradio/button@0.5.4
|
|
18
|
+
|
|
3
19
|
## 0.17.16
|
|
4
20
|
|
|
5
21
|
### Fixes
|
|
@@ -12,7 +12,6 @@ export let latex_delimiters;
|
|
|
12
12
|
export let line_breaks = true;
|
|
13
13
|
export let editable = true;
|
|
14
14
|
export let is_static = false;
|
|
15
|
-
export let root;
|
|
16
15
|
export let max_chars = null;
|
|
17
16
|
export let components = {};
|
|
18
17
|
export let i18n;
|
|
@@ -143,7 +142,6 @@ function handle_bool_change(new_value) {
|
|
|
143
142
|
{latex_delimiters}
|
|
144
143
|
{line_breaks}
|
|
145
144
|
chatbot={false}
|
|
146
|
-
{root}
|
|
147
145
|
/>
|
|
148
146
|
{:else}
|
|
149
147
|
{display_text}
|
|
@@ -16,7 +16,6 @@ declare const __propDef: {
|
|
|
16
16
|
line_breaks?: boolean | undefined;
|
|
17
17
|
editable?: boolean | undefined;
|
|
18
18
|
is_static?: boolean | undefined;
|
|
19
|
-
root: string;
|
|
20
19
|
max_chars?: (number | null) | undefined;
|
|
21
20
|
components?: Record<string, any> | undefined;
|
|
22
21
|
i18n: I18nFormatter;
|
package/dist/shared/Table.svelte
CHANGED
|
@@ -659,7 +659,6 @@ function get_cell_display_value(row, col) {
|
|
|
659
659
|
{latex_delimiters}
|
|
660
660
|
{line_breaks}
|
|
661
661
|
{max_chars}
|
|
662
|
-
{root}
|
|
663
662
|
{editable}
|
|
664
663
|
is_static={static_columns.includes(i)}
|
|
665
664
|
{i18n}
|
|
@@ -684,7 +683,6 @@ function get_cell_display_value(row, col) {
|
|
|
684
683
|
datatype={Array.isArray(datatype) ? datatype[j] : datatype}
|
|
685
684
|
edit={false}
|
|
686
685
|
el={null}
|
|
687
|
-
{root}
|
|
688
686
|
{editable}
|
|
689
687
|
{i18n}
|
|
690
688
|
show_selection_buttons={selected_cells.length === 1 &&
|
|
@@ -765,7 +763,6 @@ function get_cell_display_value(row, col) {
|
|
|
765
763
|
{latex_delimiters}
|
|
766
764
|
{line_breaks}
|
|
767
765
|
{max_chars}
|
|
768
|
-
{root}
|
|
769
766
|
{editable}
|
|
770
767
|
is_static={static_columns.includes(i)}
|
|
771
768
|
{i18n}
|
|
@@ -803,7 +800,6 @@ function get_cell_display_value(row, col) {
|
|
|
803
800
|
datatype={Array.isArray(datatype) ? datatype[j] : datatype}
|
|
804
801
|
{editing}
|
|
805
802
|
{max_chars}
|
|
806
|
-
{root}
|
|
807
803
|
{editable}
|
|
808
804
|
is_static={static_columns.includes(j)}
|
|
809
805
|
{i18n}
|
|
@@ -20,7 +20,6 @@ export let line_breaks;
|
|
|
20
20
|
export let datatype;
|
|
21
21
|
export let editing;
|
|
22
22
|
export let max_chars;
|
|
23
|
-
export let root;
|
|
24
23
|
export let editable;
|
|
25
24
|
export let is_static = false;
|
|
26
25
|
export let i18n;
|
|
@@ -101,7 +100,6 @@ $:
|
|
|
101
100
|
}
|
|
102
101
|
}}
|
|
103
102
|
on:blur={handle_blur}
|
|
104
|
-
{root}
|
|
105
103
|
{max_chars}
|
|
106
104
|
{i18n}
|
|
107
105
|
{components}
|
|
@@ -18,7 +18,6 @@ export let sort_columns = [];
|
|
|
18
18
|
export let latex_delimiters;
|
|
19
19
|
export let line_breaks;
|
|
20
20
|
export let max_chars;
|
|
21
|
-
export let root;
|
|
22
21
|
export let editable;
|
|
23
22
|
export let i18n;
|
|
24
23
|
export let el;
|
|
@@ -92,7 +91,6 @@ function get_header_position(col_index) {
|
|
|
92
91
|
}
|
|
93
92
|
}}
|
|
94
93
|
header
|
|
95
|
-
{root}
|
|
96
94
|
{editable}
|
|
97
95
|
{is_static}
|
|
98
96
|
{i18n}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradio/dataframe",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.17",
|
|
4
4
|
"description": "Gradio UI packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "",
|
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
"dompurify": "^3.0.3",
|
|
18
18
|
"katex": "^0.16.7",
|
|
19
19
|
"marked": "^12.0.0",
|
|
20
|
-
"@gradio/atoms": "^0.16.
|
|
21
|
-
"@gradio/
|
|
20
|
+
"@gradio/atoms": "^0.16.2",
|
|
21
|
+
"@gradio/checkbox": "^0.4.24",
|
|
22
|
+
"@gradio/button": "^0.5.4",
|
|
22
23
|
"@gradio/icons": "^0.12.0",
|
|
23
|
-
"@gradio/
|
|
24
|
-
"@gradio/
|
|
25
|
-
"@gradio/upload": "^0.16.
|
|
26
|
-
"@gradio/
|
|
27
|
-
"@gradio/client": "^1.15.2",
|
|
24
|
+
"@gradio/markdown-code": "^0.4.4",
|
|
25
|
+
"@gradio/statustracker": "^0.10.13",
|
|
26
|
+
"@gradio/upload": "^0.16.8",
|
|
27
|
+
"@gradio/client": "^1.15.3",
|
|
28
28
|
"@gradio/utils": "^0.10.2"
|
|
29
29
|
},
|
|
30
30
|
"exports": {
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
export let line_breaks = true;
|
|
27
27
|
export let editable = true;
|
|
28
28
|
export let is_static = false;
|
|
29
|
-
export let root: string;
|
|
30
29
|
export let max_chars: number | null = null;
|
|
31
30
|
export let components: Record<string, any> = {};
|
|
32
31
|
export let i18n: I18nFormatter;
|
|
@@ -178,7 +177,6 @@
|
|
|
178
177
|
{latex_delimiters}
|
|
179
178
|
{line_breaks}
|
|
180
179
|
chatbot={false}
|
|
181
|
-
{root}
|
|
182
180
|
/>
|
|
183
181
|
{:else}
|
|
184
182
|
{display_text}
|
package/shared/Table.svelte
CHANGED
|
@@ -805,7 +805,6 @@
|
|
|
805
805
|
{latex_delimiters}
|
|
806
806
|
{line_breaks}
|
|
807
807
|
{max_chars}
|
|
808
|
-
{root}
|
|
809
808
|
{editable}
|
|
810
809
|
is_static={static_columns.includes(i)}
|
|
811
810
|
{i18n}
|
|
@@ -830,7 +829,6 @@
|
|
|
830
829
|
datatype={Array.isArray(datatype) ? datatype[j] : datatype}
|
|
831
830
|
edit={false}
|
|
832
831
|
el={null}
|
|
833
|
-
{root}
|
|
834
832
|
{editable}
|
|
835
833
|
{i18n}
|
|
836
834
|
show_selection_buttons={selected_cells.length === 1 &&
|
|
@@ -911,7 +909,6 @@
|
|
|
911
909
|
{latex_delimiters}
|
|
912
910
|
{line_breaks}
|
|
913
911
|
{max_chars}
|
|
914
|
-
{root}
|
|
915
912
|
{editable}
|
|
916
913
|
is_static={static_columns.includes(i)}
|
|
917
914
|
{i18n}
|
|
@@ -949,7 +946,6 @@
|
|
|
949
946
|
datatype={Array.isArray(datatype) ? datatype[j] : datatype}
|
|
950
947
|
{editing}
|
|
951
948
|
{max_chars}
|
|
952
|
-
{root}
|
|
953
949
|
{editable}
|
|
954
950
|
is_static={static_columns.includes(j)}
|
|
955
951
|
{i18n}
|
package/shared/TableCell.svelte
CHANGED
|
@@ -53,7 +53,6 @@
|
|
|
53
53
|
export let datatype: Datatype;
|
|
54
54
|
export let editing: [number, number] | false;
|
|
55
55
|
export let max_chars: number | undefined;
|
|
56
|
-
export let root: string;
|
|
57
56
|
export let editable: boolean;
|
|
58
57
|
export let is_static = false;
|
|
59
58
|
export let i18n: I18nFormatter;
|
|
@@ -139,7 +138,6 @@
|
|
|
139
138
|
}
|
|
140
139
|
}}
|
|
141
140
|
on:blur={handle_blur}
|
|
142
|
-
{root}
|
|
143
141
|
{max_chars}
|
|
144
142
|
{i18n}
|
|
145
143
|
{components}
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
}[];
|
|
27
27
|
export let line_breaks: boolean;
|
|
28
28
|
export let max_chars: number | undefined;
|
|
29
|
-
export let root: string;
|
|
30
29
|
export let editable: boolean;
|
|
31
30
|
export let i18n: I18nFormatter;
|
|
32
31
|
export let el: HTMLInputElement | null;
|
|
@@ -105,7 +104,6 @@
|
|
|
105
104
|
}
|
|
106
105
|
}}
|
|
107
106
|
header
|
|
108
|
-
{root}
|
|
109
107
|
{editable}
|
|
110
108
|
{is_static}
|
|
111
109
|
{i18n}
|