ods-component-lib 1.17.32 → 1.17.34
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/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1239,7 +1239,8 @@ function grid(props, dataGridRef) {
|
|
|
1239
1239
|
style: {
|
|
1240
1240
|
width: "100%",
|
|
1241
1241
|
overflowX: 'hidden',
|
|
1242
|
-
overflowY: "hidden"
|
|
1242
|
+
overflowY: "hidden",
|
|
1243
|
+
marginTop: "10px"
|
|
1243
1244
|
}
|
|
1244
1245
|
}, React__default.createElement(dataGrid.DataGrid, {
|
|
1245
1246
|
dataSource: props.dataSource,
|
|
@@ -1362,7 +1363,8 @@ function grid(props, dataGridRef) {
|
|
|
1362
1363
|
dataField: "Actions",
|
|
1363
1364
|
caption: "Actions",
|
|
1364
1365
|
type: "buttons",
|
|
1365
|
-
width: 110
|
|
1366
|
+
width: 110,
|
|
1367
|
+
showInColumnChooser: false
|
|
1366
1368
|
}, props.edit.allowUpdating && React__default.createElement(dataGrid.Button, {
|
|
1367
1369
|
hint: "Edit",
|
|
1368
1370
|
visible: true,
|