react-crud-mobile 1.3.98 → 1.3.100
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 +8 -3
- 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 +8 -3
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +3 -2
- package/src/elements/core/SafeView.tsx +2 -3
- package/src/elements/core/UIModal.tsx +2 -0
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.3.
|
|
2
|
+
"version": "1.3.100",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"description": "Uma biblioteca de componentes para React Native",
|
|
5
5
|
"main": "dist/index.js",
|
|
@@ -44,8 +44,9 @@
|
|
|
44
44
|
"@react-native-community/slider": "^5.0.1",
|
|
45
45
|
"@react-native-vector-icons/ionicons": "^7.4.0",
|
|
46
46
|
"@react-native-vector-icons/material-icons": "^0.0.1",
|
|
47
|
+
"expo-status-bar": "^2.2.3",
|
|
47
48
|
"react": "19.0.0",
|
|
48
|
-
"react-crud-utils": "^0.1.
|
|
49
|
+
"react-crud-utils": "^0.1.379",
|
|
49
50
|
"react-dom": "19.0.0",
|
|
50
51
|
"react-native": "0.79.2",
|
|
51
52
|
"react-native-draggable-flatlist": "^4.0.3",
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
Keyboard,
|
|
3
3
|
KeyboardAvoidingView,
|
|
4
4
|
Platform,
|
|
5
|
-
StatusBar,
|
|
6
5
|
StyleProp,
|
|
7
6
|
TouchableWithoutFeedback,
|
|
8
7
|
ViewStyle,
|
|
@@ -12,7 +11,7 @@ import {
|
|
|
12
11
|
SafeAreaView as SafeAreaContextView,
|
|
13
12
|
} from 'react-native-safe-area-context';
|
|
14
13
|
import { ThemeUtils, useTheme, Utils } from 'react-crud-utils';
|
|
15
|
-
import {
|
|
14
|
+
import { StatusBar } from 'expo-status-bar';
|
|
16
15
|
|
|
17
16
|
interface SafeViewType {
|
|
18
17
|
safeStyle?: StyleProp<ViewStyle> | any;
|
|
@@ -35,7 +34,7 @@ export default function SafeView(props: SafeViewType) {
|
|
|
35
34
|
|
|
36
35
|
return (
|
|
37
36
|
<SafeAreaProvider>
|
|
38
|
-
<StatusBar
|
|
37
|
+
<StatusBar style="dark" backgroundColor="#FFFFFF" />
|
|
39
38
|
<SafeAreaContextView
|
|
40
39
|
style={{
|
|
41
40
|
backgroundColor: theme.colors?.theme,
|
|
@@ -19,6 +19,7 @@ import {
|
|
|
19
19
|
import UIChildren from '../UIChildren';
|
|
20
20
|
import Ionicons from '@expo/vector-icons/Ionicons';
|
|
21
21
|
import UIToast from './UIToast';
|
|
22
|
+
import { StatusBar } from 'expo-status-bar';
|
|
22
23
|
|
|
23
24
|
interface UIModalType extends ChildType {
|
|
24
25
|
open?: boolean;
|
|
@@ -102,6 +103,7 @@ export default function UIModal({
|
|
|
102
103
|
visible={modalVisible}
|
|
103
104
|
onRequestClose={onClose}
|
|
104
105
|
>
|
|
106
|
+
<StatusBar style="dark" backgroundColor="#FFFFFF" />
|
|
105
107
|
<SafeAreaView style={style('modalTop')} />
|
|
106
108
|
<SafeAreaView style={style('modalSafe')}>
|
|
107
109
|
<View style={scope.getStyle('header', headerStyle)}>
|