@gradio/image 0.20.3 → 0.21.0

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,23 @@
1
1
  # @gradio/image
2
2
 
3
+ ## 0.21.0
4
+
5
+ ### Features
6
+
7
+ - [#10478](https://github.com/gradio-app/gradio/pull/10478) [`afb96c6`](https://github.com/gradio-app/gradio/commit/afb96c64451e5a282bfee89445d831d1c87f9746) - Improve dataframe's upload accessibility. Thanks @hannahblair!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/client@1.11.0
12
+ - @gradio/upload@0.15.0
13
+
14
+ ## 0.20.4
15
+
16
+ ### Dependency updates
17
+
18
+ - @gradio/upload@0.14.8
19
+ - @gradio/wasm@0.17.2
20
+
3
21
  ## 0.20.3
4
22
 
5
23
  ### Dependency updates
@@ -140,6 +140,7 @@ let image_container;
140
140
  disable_click={!sources.includes("upload") || value !== null}
141
141
  {upload}
142
142
  {stream_handler}
143
+ aria_label={i18n("image.drop_to_upload")}
143
144
  >
144
145
  {#if value === null}
145
146
  <slot />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/image",
3
- "version": "0.20.3",
3
+ "version": "0.21.0",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -12,11 +12,11 @@
12
12
  "resize-observer-polyfill": "^1.5.1",
13
13
  "@gradio/atoms": "^0.13.1",
14
14
  "@gradio/icons": "^0.10.0",
15
- "@gradio/client": "^1.10.0",
15
+ "@gradio/client": "^1.11.0",
16
16
  "@gradio/statustracker": "^0.10.2",
17
17
  "@gradio/utils": "^0.10.0",
18
- "@gradio/upload": "^0.14.7",
19
- "@gradio/wasm": "^0.17.1"
18
+ "@gradio/wasm": "^0.17.2",
19
+ "@gradio/upload": "^0.15.0"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@gradio/preview": "^0.13.0"
@@ -173,6 +173,7 @@
173
173
  disable_click={!sources.includes("upload") || value !== null}
174
174
  {upload}
175
175
  {stream_handler}
176
+ aria_label={i18n("image.drop_to_upload")}
176
177
  >
177
178
  {#if value === null}
178
179
  <slot />