react-crud-mobile 1.0.813 → 1.0.815
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/react-crud-mobile.cjs.development.js +3 -2
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +3 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIButton.tsx +1 -1
- package/src/elements/core/UIModal.tsx +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ import { ChildType, Utils } from 'react-crud-utils';
|
|
|
3
3
|
import { Text, TouchableHighlight, View } from 'react-native';
|
|
4
4
|
|
|
5
5
|
const BUTTONS_SIZE: any = { small: { minWidth: 30, height: 30 } };
|
|
6
|
-
const ICONS_SIZE: any = { small: { fontSize:
|
|
6
|
+
const ICONS_SIZE: any = { small: { fontSize: 16 } };
|
|
7
7
|
|
|
8
8
|
export default function UIButton(props: ChildType) {
|
|
9
9
|
let scope = props.scope;
|
|
@@ -145,7 +145,7 @@ export default function UIModal(props: ChildType) {
|
|
|
145
145
|
)}
|
|
146
146
|
</View>
|
|
147
147
|
<ScrollView
|
|
148
|
-
contentContainerStyle={{ flexGrow: 1 }}
|
|
148
|
+
contentContainerStyle={{ flexGrow: 1, maxHeight: '70%' }}
|
|
149
149
|
style={style('modalContent')}
|
|
150
150
|
>
|
|
151
151
|
<View style={{ flex: 1 }}>
|