@visns-studio/visns-components 2.2.2 → 2.2.4
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.
|
@@ -696,6 +696,10 @@ const DataGrid = forwardRef(
|
|
|
696
696
|
column.maxWidth && column.maxWidth > 0
|
|
697
697
|
? column.maxWidth
|
|
698
698
|
: undefined,
|
|
699
|
+
textVerticalAlign: 'top',
|
|
700
|
+
style: {
|
|
701
|
+
margin: '0px',
|
|
702
|
+
},
|
|
699
703
|
};
|
|
700
704
|
|
|
701
705
|
switch (column.type) {
|
|
@@ -1596,6 +1600,7 @@ const DataGrid = forwardRef(
|
|
|
1596
1600
|
header: 'Action',
|
|
1597
1601
|
defaultWidth: 100,
|
|
1598
1602
|
textAlign: 'center',
|
|
1603
|
+
textVerticalAlign: 'top',
|
|
1599
1604
|
render: ({ data }) => {
|
|
1600
1605
|
return (
|
|
1601
1606
|
<div className="tdactions">
|
package/package.json
CHANGED