@gradio/code 0.8.1 → 0.9.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,30 @@
1
1
  # @gradio/code
2
2
 
3
+ ## 0.9.0
4
+
5
+ ### Features
6
+
7
+ - [#9013](https://github.com/gradio-app/gradio/pull/9013) [`5350f1f`](https://github.com/gradio-app/gradio/commit/5350f1feb20cb7458d188403f319c5087052f695) - Add copy all messages button to chatbot. Thanks @hannahblair!
8
+ - [#9118](https://github.com/gradio-app/gradio/pull/9118) [`e1c404d`](https://github.com/gradio-app/gradio/commit/e1c404da1143fb52b659d03e028bdba1badf443d) - setup npm-previews of all packages. Thanks @pngwn!
9
+
10
+ ### Dependency updates
11
+
12
+ - @gradio/utils@0.6.0
13
+ - @gradio/upload@0.12.3
14
+ - @gradio/atoms@0.8.0
15
+ - @gradio/statustracker@0.7.5
16
+ - @gradio/wasm@0.13.0
17
+ - @gradio/icons@0.7.1
18
+
19
+ ## 0.8.2
20
+
21
+ ### Dependency updates
22
+
23
+ - @gradio/atoms@0.7.9
24
+ - @gradio/statustracker@0.7.4
25
+ - @gradio/icons@0.7.0
26
+ - @gradio/upload@0.12.2
27
+
3
28
  ## 0.8.1
4
29
 
5
30
  ### Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/code",
3
- "version": "0.8.1",
3
+ "version": "0.9.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.8",
31
- "@gradio/icons": "^0.6.1",
32
- "@gradio/upload": "^0.12.1",
33
- "@gradio/statustracker": "^0.7.3",
34
- "@gradio/wasm": "^0.12.0",
35
- "@gradio/utils": "^0.5.2"
30
+ "@gradio/atoms": "^0.8.0",
31
+ "@gradio/icons": "^0.7.1",
32
+ "@gradio/statustracker": "^0.7.5",
33
+ "@gradio/upload": "^0.12.3",
34
+ "@gradio/wasm": "^0.13.0",
35
+ "@gradio/utils": "^0.6.0"
36
36
  },
37
37
  "main_changeset": true,
38
38
  "main": "./Index.svelte",
@@ -42,6 +42,11 @@
42
42
  "./package.json": "./package.json"
43
43
  },
44
44
  "devDependencies": {
45
- "@gradio/preview": "^0.10.2"
45
+ "@gradio/preview": "^0.11.0"
46
+ },
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "git+https://github.com/gradio-app/gradio.git",
50
+ "directory": "js/code"
46
51
  }
47
52
  }
@@ -29,9 +29,9 @@
29
29
 
30
30
  <button
31
31
  on:click={handle_copy}
32
- title="copy"
32
+ title="Copy message"
33
33
  class:copied
34
- aria-label={copied ? "Value copied" : "Copy value"}
34
+ aria-label={copied ? "Message copied" : "Copy Message"}
35
35
  >
36
36
  {#if !copied}
37
37
  <Copy />