@gradio/dataframe 0.3.3 → 0.3.4

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @gradio/dataframe
2
2
 
3
+ ## 0.3.4
4
+
5
+ ### Features
6
+
7
+ - [#6318](https://github.com/gradio-app/gradio/pull/6318) [`d3b53a457`](https://github.com/gradio-app/gradio/commit/d3b53a4577ea05cd27e37ce7fec952028c18ed45) - Fix for stylized DataFrame. Thanks [@abidlabs](https://github.com/abidlabs)!
8
+
3
9
  ## 0.3.3
4
10
 
5
11
  ### Fixes
package/Index.svelte CHANGED
@@ -99,7 +99,7 @@
99
99
  {col_count}
100
100
  {value}
101
101
  {headers}
102
- on:change={(e) => (value = e.detail)}
102
+ on:change={interactive ? (e) => (value = e.detail) : () => {}}
103
103
  on:select={(e) => gradio.dispatch("select", e.detail)}
104
104
  {wrap}
105
105
  {datatype}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/dataframe",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
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": "^7.0.0",
20
- "@gradio/markdown": "^0.3.0",
21
- "@gradio/statustracker": "^0.3.0",
22
- "@gradio/atoms": "^0.2.0",
23
- "@gradio/utils": "^0.2.0",
24
- "@gradio/button": "^0.2.2",
25
- "@gradio/upload": "^0.3.2"
20
+ "@gradio/atoms": "^0.2.1",
21
+ "@gradio/button": "^0.2.3",
22
+ "@gradio/markdown": "^0.3.1",
23
+ "@gradio/statustracker": "^0.3.1",
24
+ "@gradio/upload": "^0.3.3",
25
+ "@gradio/utils": "^0.2.0"
26
26
  },
27
27
  "exports": {
28
28
  ".": "./Index.svelte",