@gradio/dataframe 0.3.1 → 0.3.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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @gradio/dataframe
2
2
 
3
+ ## 0.3.3
4
+
5
+ ### Fixes
6
+
7
+ - [#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)!
8
+
9
+ ## 0.3.2
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [[`aaa55ce85`](https://github.com/gradio-app/gradio/commit/aaa55ce85e12f95aba9299445e9c5e59824da18e)]:
14
+ - @gradio/upload@0.3.2
15
+ - @gradio/button@0.2.2
16
+
3
17
  ## 0.3.1
4
18
 
5
19
  ### Patch Changes
@@ -166,4 +180,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
166
180
 
167
181
  - Updated dependencies [[`667875b2`](https://github.com/gradio-app/gradio/commit/667875b2441753e74d25bd9d3c8adedd8ede11cd), [`37caa2e0`](https://github.com/gradio-app/gradio/commit/37caa2e0fe95d6cab8beb174580fb557904f137f)]:
168
182
  - @gradio/upload@0.0.3
169
- - @gradio/button@0.1.0
183
+ - @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={(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.1",
3
+ "version": "0.3.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": "^7.0.0",
20
- "@gradio/atoms": "^0.2.0",
21
- "@gradio/button": "^0.2.1",
22
20
  "@gradio/markdown": "^0.3.0",
23
21
  "@gradio/statustracker": "^0.3.0",
24
- "@gradio/upload": "^0.3.1",
25
- "@gradio/utils": "^0.2.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"
26
26
  },
27
27
  "exports": {
28
28
  ".": "./Index.svelte",
@@ -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;