react-crud-mobile 1.3.150 → 1.3.152
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 +2 -4
- 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 +2 -4
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIModal.tsx +2 -6
package/package.json
CHANGED
|
@@ -34,7 +34,7 @@ export default function UIModal({
|
|
|
34
34
|
}: UIModalType) {
|
|
35
35
|
let [modalVisible, setModalVisible] = useState(open === true);
|
|
36
36
|
let [index, setIndex] = useState(0);
|
|
37
|
-
//
|
|
37
|
+
//v1
|
|
38
38
|
|
|
39
39
|
const label = scope.getLabel();
|
|
40
40
|
const theme = scope.getTheme();
|
|
@@ -143,11 +143,7 @@ export default function UIModal({
|
|
|
143
143
|
const ModalInner = () => {
|
|
144
144
|
if (original.transient) {
|
|
145
145
|
return (
|
|
146
|
-
<View
|
|
147
|
-
style={{
|
|
148
|
-
flex: 1,
|
|
149
|
-
}}
|
|
150
|
-
>
|
|
146
|
+
<View style={style('modalSafe')}>
|
|
151
147
|
<Content />
|
|
152
148
|
</View>
|
|
153
149
|
);
|