@gradio/dataset 0.4.0 → 0.4.2

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,25 @@
1
1
  # @gradio/dataset
2
2
 
3
+ ## 0.4.2
4
+
5
+ ### Fixes
6
+
7
+ - [#10369](https://github.com/gradio-app/gradio/pull/10369) [`eb85edf`](https://github.com/gradio-app/gradio/commit/eb85edf4b27b33038c0923387d6d1a6f57a73980) - Quick fix: 0 is ignored Slider/Number issue. Thanks @dawoodkhan82!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/upload@0.14.6
12
+ - @gradio/textbox@0.10.2
13
+
14
+ ## 0.4.1
15
+
16
+ ### Dependency updates
17
+
18
+ - @gradio/atoms@0.13.1
19
+ - @gradio/client@1.10.0
20
+ - @gradio/upload@0.14.5
21
+ - @gradio/textbox@0.10.1
22
+
3
23
  ## 0.4.0
4
24
 
5
25
  ### Features
package/Index.svelte CHANGED
@@ -152,7 +152,7 @@
152
152
  {#if gallery}
153
153
  <div class="gallery">
154
154
  {#each selected_samples as sample_row, i}
155
- {#if sample_row[0]}
155
+ {#if sample_row[0] != null}
156
156
  <button
157
157
  class="gallery-item"
158
158
  on:click={() => {
package/dist/Index.svelte CHANGED
@@ -119,7 +119,7 @@ $:
119
119
  {#if gallery}
120
120
  <div class="gallery">
121
121
  {#each selected_samples as sample_row, i}
122
- {#if sample_row[0]}
122
+ {#if sample_row[0] != null}
123
123
  <button
124
124
  class="gallery-item"
125
125
  on:click={() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/dataset",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -16,11 +16,11 @@
16
16
  "./package.json": "./package.json"
17
17
  },
18
18
  "dependencies": {
19
- "@gradio/atoms": "^0.13.0",
20
- "@gradio/client": "^1.9.0",
19
+ "@gradio/atoms": "^0.13.1",
21
20
  "@gradio/utils": "^0.10.0",
22
- "@gradio/upload": "^0.14.4",
23
- "@gradio/textbox": "^0.10.0"
21
+ "@gradio/textbox": "^0.10.2",
22
+ "@gradio/client": "^1.10.0",
23
+ "@gradio/upload": "^0.14.6"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@gradio/preview": "^0.13.0"