@gradio/code 0.7.0 → 0.8.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,18 @@
1
1
  # @gradio/code
2
2
 
3
+ ## 0.8.0
4
+
5
+ ### Features
6
+
7
+ - [#8804](https://github.com/gradio-app/gradio/pull/8804) [`1d09925`](https://github.com/gradio-app/gradio/commit/1d09925469a5f96e8d3a972a28841903fa1c7265) - Fix Lite's <Playground />. Thanks @whitphx!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/wasm@0.12.0
12
+ - @gradio/statustracker@0.7.2
13
+ - @gradio/upload@0.12.0
14
+ - @gradio/atoms@0.7.7
15
+
3
16
  ## 0.7.0
4
17
 
5
18
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/code",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -27,12 +27,12 @@
27
27
  "cm6-theme-basic-dark": "^0.2.0",
28
28
  "cm6-theme-basic-light": "^0.2.0",
29
29
  "codemirror": "^6.0.1",
30
- "@gradio/atoms": "^0.7.6",
30
+ "@gradio/atoms": "^0.7.7",
31
+ "@gradio/statustracker": "^0.7.2",
31
32
  "@gradio/icons": "^0.6.0",
32
- "@gradio/statustracker": "^0.7.1",
33
33
  "@gradio/utils": "^0.5.1",
34
- "@gradio/wasm": "^0.11.0",
35
- "@gradio/upload": "^0.11.5"
34
+ "@gradio/wasm": "^0.12.0",
35
+ "@gradio/upload": "^0.12.0"
36
36
  },
37
37
  "main_changeset": true,
38
38
  "main": "./Index.svelte",
@@ -41,7 +41,7 @@
41
41
  lang_extension = ext;
42
42
  }
43
43
 
44
- $: reconfigure(), lang_extension;
44
+ $: reconfigure(), lang_extension, readonly;
45
45
  $: set_doc(value);
46
46
  $: update_lines();
47
47