@gradio/image 0.24.0-dev.2 → 0.24.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,4 +1,20 @@
1
1
  # @gradio/image
2
+ ## 0.24.0
3
+
4
+ ### Features
5
+
6
+ - [#11908](https://github.com/gradio-app/gradio/pull/11908) [`029034f`](https://github.com/gradio-app/gradio/commit/029034f7853ea018d110efe9b7e2ef7d1407091c) - Clear Error statuses
7
+ - [#11908](https://github.com/gradio-app/gradio/pull/11908) [`029034f`](https://github.com/gradio-app/gradio/commit/029034f7853ea018d110efe9b7e2ef7d1407091c) - Improve audio player UI in gr.Chatbot
8
+ - [#12438](https://github.com/gradio-app/gradio/pull/12438) [`25ffc03`](https://github.com/gradio-app/gradio/commit/25ffc0398f8feb43d817c02b2ab970c16de6d797) - Svelte5 migration and bugfix
9
+
10
+ ### Dependencies
11
+
12
+ - @gradio/atoms@0.19.0
13
+ - @gradio/client@2.0.0
14
+ - @gradio/icons@0.15.0
15
+ - @gradio/statustracker@0.12.0
16
+ - @gradio/upload@0.17.2
17
+ - @gradio/utils@0.10.3
2
18
 
3
19
  ## 0.24.0-dev.2
4
20
 
package/Index.svelte CHANGED
@@ -102,6 +102,8 @@
102
102
  autoscroll={gradio.shared.autoscroll}
103
103
  i18n={gradio.i18n}
104
104
  {...gradio.shared.loading_status}
105
+ on_clear_status={() =>
106
+ gradio.dispatch("clear_status", gradio.shared.loading_status)}
105
107
  />
106
108
  <StaticImage
107
109
  on:select={({ detail }) => gradio.dispatch("select", detail)}
@@ -144,7 +146,7 @@
144
146
  autoscroll={gradio.shared.autoscroll}
145
147
  i18n={gradio.i18n}
146
148
  {...gradio.shared.loading_status}
147
- on:clear_status={() =>
149
+ on_clear_status={() =>
148
150
  gradio.dispatch("clear_status", gradio.shared.loading_status)}
149
151
  />
150
152
  {/if}
package/dist/Index.svelte CHANGED
@@ -102,6 +102,8 @@
102
102
  autoscroll={gradio.shared.autoscroll}
103
103
  i18n={gradio.i18n}
104
104
  {...gradio.shared.loading_status}
105
+ on_clear_status={() =>
106
+ gradio.dispatch("clear_status", gradio.shared.loading_status)}
105
107
  />
106
108
  <StaticImage
107
109
  on:select={({ detail }) => gradio.dispatch("select", detail)}
@@ -144,7 +146,7 @@
144
146
  autoscroll={gradio.shared.autoscroll}
145
147
  i18n={gradio.i18n}
146
148
  {...gradio.shared.loading_status}
147
- on:clear_status={() =>
149
+ on_clear_status={() =>
148
150
  gradio.dispatch("clear_status", gradio.shared.loading_status)}
149
151
  />
150
152
  {/if}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/image",
3
- "version": "0.24.0-dev.2",
3
+ "version": "0.24.0",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -10,15 +10,15 @@
10
10
  "cropperjs": "^2.0.1",
11
11
  "lazy-brush": "^2.0.2",
12
12
  "resize-observer-polyfill": "^1.5.1",
13
- "@gradio/atoms": "^0.19.0-dev.1",
14
- "@gradio/client": "^2.0.0-dev.2",
15
- "@gradio/statustracker": "^0.12.0-dev.1",
16
- "@gradio/upload": "^0.17.2-dev.2",
17
- "@gradio/utils": "^0.10.3-dev.0",
18
- "@gradio/icons": "^0.15.0-dev.0"
13
+ "@gradio/atoms": "^0.19.0",
14
+ "@gradio/client": "^2.0.0",
15
+ "@gradio/icons": "^0.15.0",
16
+ "@gradio/upload": "^0.17.2",
17
+ "@gradio/utils": "^0.10.3",
18
+ "@gradio/statustracker": "^0.12.0"
19
19
  },
20
20
  "devDependencies": {
21
- "@gradio/preview": "^0.15.0-dev.0"
21
+ "@gradio/preview": "^0.15.0"
22
22
  },
23
23
  "main_changeset": true,
24
24
  "main": "./Index.svelte",