ods-component-lib 1.18.13 → 1.18.14
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 +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -17413,7 +17413,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
|
|
|
17413
17413
|
}
|
|
17414
17414
|
};
|
|
17415
17415
|
}, [data.length]);
|
|
17416
|
-
return React.createElement(React.Fragment, null, React.createElement(DataGrid$1,
|
|
17416
|
+
return React.createElement(React.Fragment, null, React.createElement(DataGrid$1, {
|
|
17417
17417
|
keyExpr: props.keyExpr,
|
|
17418
17418
|
dataSource: props.isServerSide ? data : props.dataSource,
|
|
17419
17419
|
showBorders: true,
|
|
@@ -17442,8 +17442,12 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
|
|
|
17442
17442
|
wordWrapEnabled: props.wordWrapEnabled ? props.wordWrapEnabled : false,
|
|
17443
17443
|
columnFixing: {
|
|
17444
17444
|
enabled: true
|
|
17445
|
-
}
|
|
17446
|
-
|
|
17445
|
+
},
|
|
17446
|
+
selectedRowKeys: props.selectedRowKeys,
|
|
17447
|
+
onSelectionChanged: props.onSelectionChanged,
|
|
17448
|
+
noDataText: props.noDataText,
|
|
17449
|
+
onSaved: props.onSaved
|
|
17450
|
+
}, columns.map(function (col) {
|
|
17447
17451
|
return React.createElement(Column, Object.assign({
|
|
17448
17452
|
key: col.dataField
|
|
17449
17453
|
}, col, {
|