@fto-consult/expo-ui 6.24.1 → 6.24.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "6.24.1",
3
+ "version": "6.24.2",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -198,14 +198,14 @@ const DialogComponent = React.forwardRef((props,ref)=>{
198
198
  testID = {testID}
199
199
  contentContainerProps = {contentContainerProps}
200
200
  >
201
- <KeyboardAvoidingView
202
- isPreloader={isPreloader}
203
- testID = {testID+"_Overlay_KeyboardAvoidingView"}
201
+ <Surface
202
+ testID = {testID+"_Overlay"}
204
203
  ref={overlayRef}
205
204
  {...overlayProps}
206
205
  style={[styles.overlay,isAlert && styles.overlayAlert,{backgroundColor},overlayProps.style,fullScreenStyle]}
207
- >
208
- {(!isAlert && (actions || title || subtitle)) ? <AppBarDialog
206
+ >
207
+ <KeyboardAvoidingView>
208
+ {(!isAlert && (actions || title || subtitle)) ? <AppBarDialog
209
209
  actionsProps = {actionsProps}
210
210
  testID = {testID+"_AppBar"}
211
211
  {...appBarProps}
@@ -271,6 +271,7 @@ const DialogComponent = React.forwardRef((props,ref)=>{
271
271
  children = {footer}
272
272
  /> : null}
273
273
  </KeyboardAvoidingView>
274
+ </Surface>
274
275
  </ModalComponent>
275
276
  </Portal>
276
277
  });