gradio-pr-bot commited on
Commit
64b861d
·
verified ·
1 Parent(s): 86ee4a1

Upload folder using huggingface_hub

Browse files
6.4.0/dataframe/package.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "@gradio/dataframe",
3
- "version": "0.21.2",
4
  "description": "Gradio UI packages",
5
  "type": "module",
6
  "author": "",
 
1
  {
2
  "name": "@gradio/dataframe",
3
+ "version": "0.21.3",
4
  "description": "Gradio UI packages",
5
  "type": "module",
6
  "author": "",
6.4.0/dataframe/shared/Toolbar.svelte CHANGED
@@ -78,7 +78,7 @@
78
  <IconButton
79
  Icon={copied ? Check : Copy}
80
  label={copied ? "Copied to clipboard" : "Copy table data"}
81
- on:click={handle_copy}
82
  />
83
  {/if}
84
  {#if show_fullscreen_button}
 
78
  <IconButton
79
  Icon={copied ? Check : Copy}
80
  label={copied ? "Copied to clipboard" : "Copy table data"}
81
+ onclick={handle_copy}
82
  />
83
  {/if}
84
  {#if show_fullscreen_button}
6.4.0/dataframe/shared/icons/SortIcon.svelte CHANGED
@@ -23,7 +23,7 @@
23
  label={i18n("dataframe.sort_ascending")}
24
  Icon={SortButtonUp}
25
  highlight={direction === "asc"}
26
- on:click={(event) => {
27
  event.stopPropagation();
28
  dispatch("sort", "asc");
29
  }}
@@ -33,7 +33,7 @@
33
  label={i18n("dataframe.sort_descending")}
34
  Icon={SortButtonDown}
35
  highlight={direction === "desc"}
36
- on:click={(event) => {
37
  event.stopPropagation();
38
  dispatch("sort", "desc");
39
  }}
 
23
  label={i18n("dataframe.sort_ascending")}
24
  Icon={SortButtonUp}
25
  highlight={direction === "asc"}
26
+ onclick={(event) => {
27
  event.stopPropagation();
28
  dispatch("sort", "asc");
29
  }}
 
33
  label={i18n("dataframe.sort_descending")}
34
  Icon={SortButtonDown}
35
  highlight={direction === "desc"}
36
+ onclick={(event) => {
37
  event.stopPropagation();
38
  dispatch("sort", "desc");
39
  }}