@gradio/tabs 0.1.0-beta.6 → 0.1.0-beta.8

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +20 -3
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -1,11 +1,28 @@
1
1
  # @gradio/tabs
2
2
 
3
+ ## 0.1.0-beta.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`667802a6c`](https://github.com/gradio-app/gradio/commit/667802a6cdbfb2ce454a3be5a78e0990b194548a)]:
8
+ - @gradio/utils@0.2.0-beta.6
9
+
10
+ ## 0.1.0-beta.7
11
+
12
+ ### Features
13
+
14
+ - [#6016](https://github.com/gradio-app/gradio/pull/6016) [`83e947676`](https://github.com/gradio-app/gradio/commit/83e947676d327ca2ab6ae2a2d710c78961c771a0) - Format js in v4 branch. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
15
+
16
+ ### Fixes
17
+
18
+ - [#6046](https://github.com/gradio-app/gradio/pull/6046) [`dbb7de5e0`](https://github.com/gradio-app/gradio/commit/dbb7de5e02c53fee05889d696d764d212cb96c74) - fix tests. Thanks [@pngwn](https://github.com/pngwn)!
19
+
3
20
  ## 0.1.0-beta.6
4
21
 
5
22
  ### Features
6
23
 
7
- - [#5960](https://github.com/gradio-app/gradio/pull/5960) [`319c30f3f`](https://github.com/gradio-app/gradio/commit/319c30f3fccf23bfe1da6c9b132a6a99d59652f7) - rererefactor frontend files. Thanks [@pngwn](https://github.com/pngwn)!
8
- - [#5938](https://github.com/gradio-app/gradio/pull/5938) [`13ed8a485`](https://github.com/gradio-app/gradio/commit/13ed8a485d5e31d7d75af87fe8654b661edcca93) - V4: Use beta release versions for '@gradio' packages. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
24
+ - [#5960](https://github.com/gradio-app/gradio/pull/5960) [`319c30f3f`](https://github.com/gradio-app/gradio/commit/319c30f3fccf23bfe1da6c9b132a6a99d59652f7) - rererefactor frontend files. Thanks [@pngwn](https://github.com/pngwn)!
25
+ - [#5938](https://github.com/gradio-app/gradio/pull/5938) [`13ed8a485`](https://github.com/gradio-app/gradio/commit/13ed8a485d5e31d7d75af87fe8654b661edcca93) - V4: Use beta release versions for '@gradio' packages. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
9
26
 
10
27
  ## 0.0.7
11
28
 
@@ -60,4 +77,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
60
77
  ### Patch Changes
61
78
 
62
79
  - Updated dependencies []:
63
- - @gradio/utils@0.0.2
80
+ - @gradio/utils@0.0.2
package/package.json CHANGED
@@ -1,17 +1,18 @@
1
1
  {
2
2
  "name": "@gradio/tabs",
3
- "version": "0.1.0-beta.6",
3
+ "version": "0.1.0-beta.8",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
7
7
  "license": "ISC",
8
8
  "private": false,
9
9
  "main_changeset": true,
10
+ "main": "Index.svelte",
10
11
  "exports": {
11
12
  ".": "./Index.svelte",
12
13
  "./package.json": "./package.json"
13
14
  },
14
15
  "dependencies": {
15
- "@gradio/utils": "^0.2.0-beta.4"
16
+ "@gradio/utils": "^0.2.0-beta.6"
16
17
  }
17
18
  }