ods-component-lib 1.17.98 → 1.17.100

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 CHANGED
@@ -1288,9 +1288,9 @@ function grid(props, dataGridRef) {
1288
1288
  allowColumnReordering: true,
1289
1289
  showRowLines: true,
1290
1290
  showBorders: true,
1291
- columnAutoWidth: false,
1291
+ columnAutoWidth: props.columnAutoWidth == undefined ? false : props.columnAutoWidth,
1292
1292
  focusedRowEnabled: false,
1293
- wordWrapEnabled: false,
1293
+ wordWrapEnabled: props.wordWrapEnabled == undefined ? false : props.wordWrapEnabled,
1294
1294
  noDataText: props.noDataLanguage == undefined ? "No Data" : props.noDataLanguage,
1295
1295
  onEditCanceling: props.onEditCanceling,
1296
1296
  onExporting: onExporting,