@gradio/dataframe 0.3.2 → 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,17 @@
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
+
9
+ ## 0.3.3
10
+
11
+ ### Fixes
12
+
13
+ - [#6290](https://github.com/gradio-app/gradio/pull/6290) [`e8216be94`](https://github.com/gradio-app/gradio/commit/e8216be948f76ce064595183d11e9148badf9421) - ensure `gr.Dataframe` updates as expected. Thanks [@pngwn](https://github.com/pngwn)!
14
+
3
15
  ## 0.3.2
4
16
 
5
17
  ### Patch Changes
@@ -174,4 +186,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
174
186
 
175
187
  - Updated dependencies [[`667875b2`](https://github.com/gradio-app/gradio/commit/667875b2441753e74d25bd9d3c8adedd8ede11cd), [`37caa2e0`](https://github.com/gradio-app/gradio/commit/37caa2e0fe95d6cab8beb174580fb557904f137f)]:
176
188
  - @gradio/upload@0.0.3
177
- - @gradio/button@0.1.0
189
+ - @gradio/button@0.1.0
package/Index.svelte CHANGED
@@ -99,6 +99,7 @@
99
99
  {col_count}
100
100
  {value}
101
101
  {headers}
102
+ on:change={interactive ? (e) => (value = e.detail) : () => {}}
102
103
  on:select={(e) => gradio.dispatch("select", e.detail)}
103
104
  {wrap}
104
105
  {datatype}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/dataframe",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -17,11 +17,11 @@
17
17
  "dompurify": "^3.0.3",
18
18
  "katex": "^0.16.7",
19
19
  "marked": "^7.0.0",
20
- "@gradio/atoms": "^0.2.0",
21
- "@gradio/button": "^0.2.2",
22
- "@gradio/markdown": "^0.3.0",
23
- "@gradio/statustracker": "^0.3.0",
24
- "@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
25
  "@gradio/utils": "^0.2.0"
26
26
  },
27
27
  "exports": {
@@ -44,7 +44,7 @@
44
44
 
45
45
  function handle_blur({
46
46
  currentTarget
47
- }: {
47
+ }: Event & {
48
48
  currentTarget: HTMLInputElement;
49
49
  }): void {
50
50
  value = currentTarget.value;