ods-component-lib 1.17.170 → 1.17.171
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
|
@@ -1350,6 +1350,9 @@ function grid(props, dataGridRef) {
|
|
|
1350
1350
|
onEditCanceling: props.onEditCanceling,
|
|
1351
1351
|
onExporting: onExporting,
|
|
1352
1352
|
filterSyncEnabled: true,
|
|
1353
|
+
scrolling: {
|
|
1354
|
+
useNative: props.scrolUseNative == undefined ? false : props.scrolUseNative
|
|
1355
|
+
},
|
|
1353
1356
|
height: props.height == undefined ? window.innerHeight - 164 : props.height,
|
|
1354
1357
|
repaintChangesOnly: true,
|
|
1355
1358
|
remoteOperations: false,
|
|
@@ -1415,8 +1418,7 @@ function grid(props, dataGridRef) {
|
|
|
1415
1418
|
mode: props.scroll.mode,
|
|
1416
1419
|
showScrollbar: props.scroll.showScrollbar,
|
|
1417
1420
|
scrollByContent: props.scroll.scrollByContent,
|
|
1418
|
-
scrollByThumb: props.scroll.scrollByThumb
|
|
1419
|
-
useNative: props.scrolUseNative == undefined ? false : props.scrolUseNative
|
|
1421
|
+
scrollByThumb: props.scroll.scrollByThumb
|
|
1420
1422
|
}), props.exportEnable === true && React__default.createElement(dataGrid.Export, {
|
|
1421
1423
|
enabled: true,
|
|
1422
1424
|
allowExportSelectedData: true,
|