@gradio/code 0.16.0-dev.3 → 0.16.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/code
2
+ ## 0.16.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) - Fix various event issues
8
+ - [#11908](https://github.com/gradio-app/gradio/pull/11908) [`029034f`](https://github.com/gradio-app/gradio/commit/029034f7853ea018d110efe9b7e2ef7d1407091c) - Add back default values for labels
9
+ - [#12438](https://github.com/gradio-app/gradio/pull/12438) [`25ffc03`](https://github.com/gradio-app/gradio/commit/25ffc0398f8feb43d817c02b2ab970c16de6d797) - Svelte5 migration and bugfix
10
+
11
+ ### Dependencies
12
+
13
+ - @gradio/atoms@0.19.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.16.0-dev.3
4
20
 
package/Index.svelte CHANGED
@@ -51,7 +51,7 @@
51
51
  autoscroll={gradio.shared.autoscroll}
52
52
  i18n={gradio.i18n}
53
53
  {...gradio.shared.loading_status}
54
- on:clear_status={() =>
54
+ on_clear_status={() =>
55
55
  gradio.dispatch("clear_status", gradio.shared.loading_status)}
56
56
  />
57
57
 
package/dist/Index.svelte CHANGED
@@ -51,7 +51,7 @@
51
51
  autoscroll={gradio.shared.autoscroll}
52
52
  i18n={gradio.i18n}
53
53
  {...gradio.shared.loading_status}
54
- on:clear_status={() =>
54
+ on_clear_status={() =>
55
55
  gradio.dispatch("clear_status", gradio.shared.loading_status)}
56
56
  />
57
57
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/code",
3
- "version": "0.16.0-dev.3",
3
+ "version": "0.16.0",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -27,11 +27,11 @@
27
27
  "cm6-theme-basic-dark": "^0.2.0",
28
28
  "cm6-theme-basic-light": "^0.2.0",
29
29
  "codemirror": "^6.0.2",
30
- "@gradio/atoms": "^0.19.0-dev.1",
31
- "@gradio/statustracker": "^0.12.0-dev.1",
32
- "@gradio/upload": "^0.17.2-dev.2",
33
- "@gradio/icons": "^0.15.0-dev.0",
34
- "@gradio/utils": "^0.10.3-dev.0"
30
+ "@gradio/statustracker": "^0.12.0",
31
+ "@gradio/utils": "^0.10.3",
32
+ "@gradio/upload": "^0.17.2",
33
+ "@gradio/atoms": "^0.19.0",
34
+ "@gradio/icons": "^0.15.0"
35
35
  },
36
36
  "main_changeset": true,
37
37
  "main": "./Index.svelte",
@@ -51,7 +51,7 @@
51
51
  "./package.json": "./package.json"
52
52
  },
53
53
  "devDependencies": {
54
- "@gradio/preview": "^0.15.0-dev.0"
54
+ "@gradio/preview": "^0.15.0"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "svelte": "^5.43.4"