@gradio/dataset 0.1.37 → 0.1.39

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.1.39
4
+
5
+ ### Fixes
6
+
7
+ - [#8364](https://github.com/gradio-app/gradio/pull/8364) [`6a1b58c`](https://github.com/gradio-app/gradio/commit/6a1b58cf3e4796ccb695db5baae190c894b30df0) - Add `--table-text-color` var to fix body text in `Examples`. Thanks @hannahblair!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/client@0.20.0
12
+ - @gradio/upload@0.10.6
13
+
14
+ ## 0.1.38
15
+
16
+ ### Dependency updates
17
+
18
+ - @gradio/utils@0.4.2
19
+ - @gradio/atoms@0.7.4
20
+ - @gradio/upload@0.10.5
21
+ - @gradio/client@0.19.4
22
+
3
23
  ## 0.1.37
4
24
 
5
25
  ### Dependency updates
package/Index.svelte CHANGED
@@ -279,6 +279,7 @@
279
279
  table-layout: auto;
280
280
  overflow-x: auto;
281
281
  line-height: var(--line-sm);
282
+ color: var(--table-text-color);
282
283
  }
283
284
  table {
284
285
  width: var(--size-full);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/dataset",
3
- "version": "0.1.37",
3
+ "version": "0.1.39",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -12,10 +12,10 @@
12
12
  "./package.json": "./package.json"
13
13
  },
14
14
  "dependencies": {
15
- "@gradio/atoms": "^0.7.3",
16
- "@gradio/utils": "^0.4.1",
17
- "@gradio/client": "^0.19.3",
18
- "@gradio/upload": "^0.10.4"
15
+ "@gradio/client": "^0.20.0",
16
+ "@gradio/utils": "^0.4.2",
17
+ "@gradio/upload": "^0.10.6",
18
+ "@gradio/atoms": "^0.7.4"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@gradio/preview": "^0.9.0"