@gradio/dataset 0.1.30 → 0.1.31

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/dataset
2
2
 
3
+ ## 0.1.31
4
+
5
+ ### Fixes
6
+
7
+ - [#8028](https://github.com/gradio-app/gradio/pull/8028) [`6fafce0`](https://github.com/gradio-app/gradio/commit/6fafce06704ab8f2cd5fe6fbdb58b842e144e44d) - ensure maps are correctly shallow cloned when updating state. Thanks @pngwn!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/utils@0.3.2
12
+ - @gradio/client@0.16.0
13
+ - @gradio/upload@0.8.5
14
+ - @gradio/atoms@0.7.0
15
+
3
16
  ## 0.1.30
4
17
 
5
18
  ### Dependency updates
package/Index.svelte CHANGED
@@ -100,7 +100,7 @@
100
100
  );
101
101
  }
102
102
 
103
- $: get_component_meta(selected_samples);
103
+ $: component_map, get_component_meta(selected_samples);
104
104
  </script>
105
105
 
106
106
  <Block
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/dataset",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -12,9 +12,9 @@
12
12
  "./package.json": "./package.json"
13
13
  },
14
14
  "dependencies": {
15
- "@gradio/atoms": "^0.6.2",
16
- "@gradio/client": "^0.15.1",
17
- "@gradio/upload": "^0.8.4",
18
- "@gradio/utils": "^0.3.1"
15
+ "@gradio/atoms": "^0.7.0",
16
+ "@gradio/utils": "^0.3.2",
17
+ "@gradio/upload": "^0.8.5",
18
+ "@gradio/client": "^0.16.0"
19
19
  }
20
20
  }