@onehat/ui 0.3.198 → 0.3.199
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/package.json
CHANGED
|
@@ -865,8 +865,8 @@ function GridComponent(props) {
|
|
|
865
865
|
Repository.ons(['changePage', 'changePageSize',], deselectAll);
|
|
866
866
|
}
|
|
867
867
|
Repository.ons(['changeData', 'change'], forceUpdate);
|
|
868
|
-
|
|
869
|
-
|
|
868
|
+
Repository.on('changeFilters', onChangeFilters);
|
|
869
|
+
Repository.on('changeSorters', onChangeSorters);
|
|
870
870
|
|
|
871
871
|
|
|
872
872
|
applySelectorSelected();
|
|
@@ -883,8 +883,8 @@ function GridComponent(props) {
|
|
|
883
883
|
Repository.offs(['changePage', 'changePageSize',], deselectAll);
|
|
884
884
|
}
|
|
885
885
|
Repository.offs(['changeData', 'change'], forceUpdate);
|
|
886
|
-
|
|
887
|
-
|
|
886
|
+
Repository.off('changeFilters', onChangeFilters);
|
|
887
|
+
Repository.off('changeSorters', onChangeSorters);
|
|
888
888
|
};
|
|
889
889
|
}, [isInited]);
|
|
890
890
|
|