@gradio/tabs 0.5.5 → 0.5.6

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,15 @@
1
1
  # @gradio/tabs
2
2
 
3
+ ## 0.5.6
4
+
5
+ ### Fixes
6
+
7
+ - [#12846](https://github.com/gradio-app/gradio/pull/12846) [`226daba`](https://github.com/gradio-app/gradio/commit/226daba5f65257244efc7c310500ea5366b20a87) - Fix bug where children of accordions dont get rendered when they are opened programmatically. Thanks @freddyaboulton!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/utils@0.11.3
12
+
3
13
  ## 0.5.5
4
14
 
5
15
  ### Fixes
package/Index.svelte CHANGED
@@ -15,7 +15,6 @@
15
15
  $effect(() => {
16
16
  if (gradio.props.selected) {
17
17
  untrack(() => {
18
- console.log("Here");
19
18
  const i = gradio.props.initial_tabs.findIndex(
20
19
  (t) => t.id === gradio.props.selected
21
20
  );
package/dist/Index.svelte CHANGED
@@ -15,7 +15,6 @@
15
15
  $effect(() => {
16
16
  if (gradio.props.selected) {
17
17
  untrack(() => {
18
- console.log("Here");
19
18
  const i = gradio.props.initial_tabs.findIndex(
20
19
  (t) => t.id === gradio.props.selected
21
20
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/tabs",
3
- "version": "0.5.5",
3
+ "version": "0.5.6",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -17,7 +17,7 @@
17
17
  "./package.json": "./package.json"
18
18
  },
19
19
  "dependencies": {
20
- "@gradio/utils": "^0.11.2"
20
+ "@gradio/utils": "^0.11.3"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@gradio/preview": "^0.15.2"