ods-component-lib 1.17.163 → 1.17.164
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 +2 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -4
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1354,14 +1354,14 @@ function grid(props, dataGridRef) {
|
|
|
1354
1354
|
}, React__default.createElement(dataGrid.DataGrid, {
|
|
1355
1355
|
dataSource: props.dataSource,
|
|
1356
1356
|
keyExpr: props.keyExpr,
|
|
1357
|
-
allowColumnResizing:
|
|
1357
|
+
allowColumnResizing: true,
|
|
1358
1358
|
columnResizingMode: "widget",
|
|
1359
1359
|
onContentReady: props.onContentReady,
|
|
1360
1360
|
onRowInserted: props.onRowInserted,
|
|
1361
1361
|
onRowUpdated: props.onRowUpdated,
|
|
1362
1362
|
onRowRemoved: props.onRowRemoved,
|
|
1363
1363
|
onSaving: props.onSaving,
|
|
1364
|
-
allowColumnReordering:
|
|
1364
|
+
allowColumnReordering: true,
|
|
1365
1365
|
showRowLines: true,
|
|
1366
1366
|
showBorders: true,
|
|
1367
1367
|
columnAutoWidth: props.columnAutoWidth == undefined ? false : props.columnAutoWidth,
|
|
@@ -1468,7 +1468,6 @@ function grid(props, dataGridRef) {
|
|
|
1468
1468
|
allowSorting: false,
|
|
1469
1469
|
caption: props.ColumnAction,
|
|
1470
1470
|
type: "buttons",
|
|
1471
|
-
width: 110,
|
|
1472
1471
|
showInColumnChooser: false
|
|
1473
1472
|
}, props.edit.allowUpdating && React__default.createElement(dataGrid.Button, {
|
|
1474
1473
|
hint: props.HintEdit,
|
|
@@ -1488,7 +1487,6 @@ function grid(props, dataGridRef) {
|
|
|
1488
1487
|
dataField: "Actions",
|
|
1489
1488
|
caption: "Actions",
|
|
1490
1489
|
type: "buttons",
|
|
1491
|
-
width: 110,
|
|
1492
1490
|
showInColumnChooser: false
|
|
1493
1491
|
}, React__default.createElement(React__default.Fragment, null, props.edit.allowUpdating && React__default.createElement(dataGrid.Button, {
|
|
1494
1492
|
disabled: props.actionPermission == undefined ? false : !props.actionPermission,
|