@gradio/dataframe 0.12.2 → 0.12.3

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,20 @@
1
1
  # @gradio/dataframe
2
2
 
3
+ ## 0.12.3
4
+
5
+ ### Fixes
6
+
7
+ - [#9949](https://github.com/gradio-app/gradio/pull/9949) [`cfb62bf`](https://github.com/gradio-app/gradio/commit/cfb62bfdb52d88295f27287f788fca977e37ae6d) - Allow dataframe column content to wrap. Thanks @hannahblair!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/atoms@0.11.1
12
+ - @gradio/client@1.8.0
13
+ - @gradio/utils@0.8.0
14
+ - @gradio/button@0.3.7
15
+ - @gradio/upload@0.14.1
16
+ - @gradio/statustracker@0.9.5
17
+
3
18
  ## 0.12.2
4
19
 
5
20
  ### Fixes
@@ -1047,8 +1047,8 @@ function reset_selection() {
1047
1047
  }
1048
1048
 
1049
1049
  th .header-content {
1050
- white-space: nowrap;
1051
- overflow: hidden;
1052
- text-overflow: ellipsis;
1050
+ white-space: normal;
1051
+ overflow-wrap: break-word;
1052
+ word-break: break-word;
1053
1053
  }
1054
1054
  </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/dataframe",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -17,13 +17,13 @@
17
17
  "dompurify": "^3.0.3",
18
18
  "katex": "^0.16.7",
19
19
  "marked": "^12.0.0",
20
- "@gradio/atoms": "^0.11.0",
21
- "@gradio/button": "^0.3.6",
22
- "@gradio/client": "^1.7.1",
23
- "@gradio/statustracker": "^0.9.4",
20
+ "@gradio/atoms": "^0.11.1",
21
+ "@gradio/button": "^0.3.7",
24
22
  "@gradio/markdown-code": "^0.2.1",
25
- "@gradio/upload": "^0.14.0",
26
- "@gradio/utils": "^0.7.0"
23
+ "@gradio/statustracker": "^0.9.5",
24
+ "@gradio/client": "^1.8.0",
25
+ "@gradio/utils": "^0.8.0",
26
+ "@gradio/upload": "^0.14.1"
27
27
  },
28
28
  "exports": {
29
29
  ".": {
@@ -1241,8 +1241,8 @@
1241
1241
  }
1242
1242
 
1243
1243
  th .header-content {
1244
- white-space: nowrap;
1245
- overflow: hidden;
1246
- text-overflow: ellipsis;
1244
+ white-space: normal;
1245
+ overflow-wrap: break-word;
1246
+ word-break: break-word;
1247
1247
  }
1248
1248
  </style>