ordering-ui-react-native 0.17.63-release → 0.17.64-release
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
|
@@ -693,10 +693,16 @@ const BusinessesListingUI = (props: BusinessesListingParams) => {
|
|
|
693
693
|
};
|
|
694
694
|
|
|
695
695
|
export const BusinessesListing = (props: BusinessesListingParams) => {
|
|
696
|
+
|
|
696
697
|
const BusinessesListingProps = {
|
|
697
698
|
...props,
|
|
698
699
|
isForceSearch: Platform.OS === 'ios',
|
|
699
700
|
UIComponent: BusinessesListingUI,
|
|
701
|
+
paginationSettings: {
|
|
702
|
+
initialPage: 1,
|
|
703
|
+
pageSize: 50,
|
|
704
|
+
controlType: 'infinity'
|
|
705
|
+
}
|
|
700
706
|
};
|
|
701
707
|
|
|
702
708
|
return <BusinessesListingController {...BusinessesListingProps} />;
|