react-crud-mobile 1.3.100 → 1.3.101
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/elements/core/UIStatusBar.d.ts +2 -0
- package/dist/react-crud-mobile.cjs.development.js +9 -8
- 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 +9 -8
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/SafeView.tsx +2 -2
- package/src/elements/core/UIModal.tsx +2 -2
- package/src/elements/core/UIStatusBar.tsx +5 -0
|
@@ -1336,6 +1336,13 @@ function UIToast() {
|
|
|
1336
1336
|
});
|
|
1337
1337
|
}
|
|
1338
1338
|
|
|
1339
|
+
function UIStatusBar() {
|
|
1340
|
+
return /*#__PURE__*/jsxRuntime.jsx(expoStatusBar.StatusBar, {
|
|
1341
|
+
style: "dark",
|
|
1342
|
+
backgroundColor: "#f5f5f5"
|
|
1343
|
+
});
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1339
1346
|
var _excluded = ["scope", "open", "dialog"];
|
|
1340
1347
|
function UIModal(_ref) {
|
|
1341
1348
|
var _theme$styles, _scope$currentDialog2, _main$dialog;
|
|
@@ -1408,10 +1415,7 @@ function UIModal(_ref) {
|
|
|
1408
1415
|
transparent: true,
|
|
1409
1416
|
visible: modalVisible,
|
|
1410
1417
|
onRequestClose: onClose,
|
|
1411
|
-
children: [/*#__PURE__*/jsxRuntime.jsx(
|
|
1412
|
-
style: "dark",
|
|
1413
|
-
backgroundColor: "#FFFFFF"
|
|
1414
|
-
}), /*#__PURE__*/jsxRuntime.jsx(reactNative.SafeAreaView, {
|
|
1418
|
+
children: [/*#__PURE__*/jsxRuntime.jsx(UIStatusBar, {}), /*#__PURE__*/jsxRuntime.jsx(reactNative.SafeAreaView, {
|
|
1415
1419
|
style: style('modalTop')
|
|
1416
1420
|
}), /*#__PURE__*/jsxRuntime.jsxs(reactNative.SafeAreaView, {
|
|
1417
1421
|
style: style('modalSafe'),
|
|
@@ -2309,10 +2313,7 @@ function SafeView(props) {
|
|
|
2309
2313
|
}
|
|
2310
2314
|
};
|
|
2311
2315
|
return /*#__PURE__*/jsxRuntime.jsxs(reactNativeSafeAreaContext.SafeAreaProvider, {
|
|
2312
|
-
children: [/*#__PURE__*/jsxRuntime.jsx(
|
|
2313
|
-
style: "dark",
|
|
2314
|
-
backgroundColor: "#FFFFFF"
|
|
2315
|
-
}), /*#__PURE__*/jsxRuntime.jsx(reactNativeSafeAreaContext.SafeAreaView, {
|
|
2316
|
+
children: [/*#__PURE__*/jsxRuntime.jsx(UIStatusBar, {}), /*#__PURE__*/jsxRuntime.jsx(reactNativeSafeAreaContext.SafeAreaView, {
|
|
2316
2317
|
style: _extends({
|
|
2317
2318
|
backgroundColor: (_theme$colors = theme.colors) == null ? void 0 : _theme$colors.theme
|
|
2318
2319
|
}, props.viewStyle, {
|