ods-component-lib 1.18.57 → 1.18.59
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 +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -16374,7 +16374,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
|
|
|
16374
16374
|
}
|
|
16375
16375
|
}, [props.columns]);
|
|
16376
16376
|
useEffect(function () {
|
|
16377
|
-
if (Array.isArray(props.dataSource)
|
|
16377
|
+
if (Array.isArray(props.dataSource)) {
|
|
16378
16378
|
setData(props.dataSource);
|
|
16379
16379
|
}
|
|
16380
16380
|
}, [props.dataSource]);
|
|
@@ -16696,7 +16696,8 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
|
|
|
16696
16696
|
onSaving: props.onSaving,
|
|
16697
16697
|
onEditCanceling: props.onEditCanceling,
|
|
16698
16698
|
onContentReady: handleContentReady,
|
|
16699
|
-
onFilterValueChange: onFilterValueChange
|
|
16699
|
+
onFilterValueChange: onFilterValueChange,
|
|
16700
|
+
onOptionChanged: props.onOptionChanged
|
|
16700
16701
|
}, columns.current.map(function (col) {
|
|
16701
16702
|
return React.createElement(Column, Object.assign({
|
|
16702
16703
|
key: col.dataField
|