@gradio/tabs 0.0.6-beta.5 → 0.1.0-beta.7

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,44 +1,34 @@
1
1
  # @gradio/tabs
2
2
 
3
- ## 0.0.6-beta.5
3
+ ## 0.1.0-beta.7
4
4
 
5
5
  ### Features
6
6
 
7
- - [#5590](https://github.com/gradio-app/gradio/pull/5590) [`d1ad1f671`](https://github.com/gradio-app/gradio/commit/d1ad1f671caef9f226eb3965f39164c256d8615c) - Attach `elem_classes` selectors to layout elements, and an id to the Tab button (for targeting via CSS/JS). Thanks [@abidlabs](https://github.com/abidlabs)!
7
+ - [#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)!
8
8
 
9
- ## 0.0.6-beta.4
9
+ ### Fixes
10
10
 
11
- ### Features
12
-
13
- - [#5648](https://github.com/gradio-app/gradio/pull/5648) [`c573e2339`](https://github.com/gradio-app/gradio/commit/c573e2339b86c85b378dc349de5e9223a3c3b04a) - Publish all components to npm. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
14
-
15
- ## 0.0.6-beta.3
16
-
17
- ### Patch Changes
11
+ - [#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)!
18
12
 
19
- - Updated dependencies [[`0b4fd5b6d`](https://github.com/gradio-app/gradio/commit/0b4fd5b6db96fc95a155e5e935e17e1ab11d1161)]:
20
- - @gradio/utils@0.2.0-beta.3
13
+ ## 0.1.0-beta.6
21
14
 
22
- ## 0.0.6-beta.2
23
-
24
- ### Patch Changes
15
+ ### Features
25
16
 
26
- - Updated dependencies [[`14fc612d8`](https://github.com/gradio-app/gradio/commit/14fc612d84bf6b1408eccd3a40fab41f25477571)]:
27
- - @gradio/utils@0.2.0-beta.2
17
+ - [#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)!
18
+ - [#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)!
28
19
 
29
- ## 0.0.6-beta.1
20
+ ## 0.0.7
30
21
 
31
22
  ### Patch Changes
32
23
 
33
24
  - Updated dependencies []:
34
- - @gradio/utils@0.2.0-beta.1
25
+ - @gradio/utils@0.1.2
35
26
 
36
- ## 0.0.6-beta.0
27
+ ## 0.0.6
37
28
 
38
- ### Patch Changes
29
+ ### Features
39
30
 
40
- - Updated dependencies [[`681f10c31`](https://github.com/gradio-app/gradio/commit/681f10c315a75cc8cd0473c9a0167961af7696db), [`1385dc688`](https://github.com/gradio-app/gradio/commit/1385dc6881f2d8ae7a41106ec21d33e2ef04d6a9)]:
41
- - @gradio/utils@0.2.0-beta.0
31
+ - [#5590](https://github.com/gradio-app/gradio/pull/5590) [`d1ad1f671`](https://github.com/gradio-app/gradio/commit/d1ad1f671caef9f226eb3965f39164c256d8615c) - Attach `elem_classes` selectors to layout elements, and an id to the Tab button (for targeting via CSS/JS). Thanks [@abidlabs](https://github.com/abidlabs)!
42
32
 
43
33
  ## 0.0.5
44
34
 
@@ -1,7 +1,11 @@
1
+ <script context="module" lang="ts">
2
+ export { TABS } from "./shared/Tabs.svelte";
3
+ </script>
4
+
1
5
  <script lang="ts">
2
6
  import type { Gradio, SelectData } from "@gradio/utils";
3
7
  import { createEventDispatcher } from "svelte";
4
- import Tabs from "./Tabs.svelte";
8
+ import Tabs from "./shared/Tabs.svelte";
5
9
 
6
10
  const dispatch = createEventDispatcher();
7
11
 
package/package.json CHANGED
@@ -1,21 +1,18 @@
1
1
  {
2
2
  "name": "@gradio/tabs",
3
- "version": "0.0.6-beta.5",
3
+ "version": "0.1.0-beta.7",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
- "main": "./static/index.ts",
7
6
  "author": "",
8
7
  "license": "ISC",
9
8
  "private": false,
10
9
  "main_changeset": true,
10
+ "main": "Index.svelte",
11
11
  "exports": {
12
- ".": "./static/index.ts",
13
- "./package.json": "./package.json",
14
- "./interactive": "./interactive/index.ts",
15
- "./static": "./static/index.ts",
16
- "./example": "./example/index.ts"
12
+ ".": "./Index.svelte",
13
+ "./package.json": "./package.json"
17
14
  },
18
15
  "dependencies": {
19
- "@gradio/utils": "^0.2.0-beta.3"
16
+ "@gradio/utils": "^0.2.0-beta.5"
20
17
  }
21
18
  }
package/static/index.ts DELETED
@@ -1,2 +0,0 @@
1
- export { default } from "./StaticTabs.svelte";
2
- export { TABS } from "./Tabs.svelte";
File without changes