ods-component-lib 1.17.135 → 1.17.136
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 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -0
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -1340,11 +1340,13 @@ function grid(props, dataGridRef) {
|
|
|
1340
1340
|
dataSource: props.dataSource,
|
|
1341
1341
|
keyExpr: props.keyExpr,
|
|
1342
1342
|
allowColumnResizing: true,
|
|
1343
|
+
columnResizingMode: "widget",
|
|
1343
1344
|
onContentReady: props.onContentReady,
|
|
1344
1345
|
onRowInserted: props.onRowInserted,
|
|
1345
1346
|
onRowUpdated: props.onRowUpdated,
|
|
1346
1347
|
onRowRemoved: props.onRowRemoved,
|
|
1347
1348
|
onSaving: props.onSaving,
|
|
1349
|
+
allowColumnReordering: true,
|
|
1348
1350
|
showRowLines: true,
|
|
1349
1351
|
showBorders: true,
|
|
1350
1352
|
columnAutoWidth: props.columnAutoWidth == undefined ? false : props.columnAutoWidth,
|