@stenajs-webui/grid 17.12.1 → 17.13.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 +12 -0
- package/dist/index.es.js +3 -0
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v17.13.1 (Mon Aug 29 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Align table head left [#497](https://github.com/StenaIT/stenajs-webui/pull/497) ([@lindskogen](https://github.com/lindskogen))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Johan Lindskogen ([@lindskogen](https://github.com/lindskogen))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v17.10.1 (Thu Aug 11 2022)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/index.es.js
CHANGED
|
@@ -239,6 +239,9 @@ const TableHeadItem = React.memo(({
|
|
|
239
239
|
})]
|
|
240
240
|
}), label && /* @__PURE__ */ jsx(Heading, {
|
|
241
241
|
variant: "h6",
|
|
242
|
+
style: {
|
|
243
|
+
textAlign: "left"
|
|
244
|
+
},
|
|
242
245
|
children: label
|
|
243
246
|
}), arrow && !alignRight && /* @__PURE__ */ jsxs(Fragment, {
|
|
244
247
|
children: [/* @__PURE__ */ jsx(Space, {
|