@fto-consult/expo-ui 2.26.10 → 2.26.11

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": "2.26.10",
3
+ "version": "2.26.11",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -2696,7 +2696,7 @@ export default class CommonDatagridComponent extends AppComponent {
2696
2696
  return "none";
2697
2697
  }
2698
2698
  if(this.enablePointerEventsRef.current) return true;
2699
- return this.isLoading()? "none":"auto";
2699
+ return this.isLoading()? "none":"box-none";
2700
2700
  }
2701
2701
  updateLayout(p){
2702
2702
  this.measureLayout(state=>{
@@ -1,8 +1,8 @@
1
- import {isIos} from "$cplatform";
1
+ import {isIos,isAndroid,isNativeMobile,isTouchDevice} from "$cplatform";
2
2
  import {KeyboardAvoidingView,StyleSheet} from 'react-native';
3
3
 
4
4
  export default function KeyboardAvoidingViewComponent({ children,...rest }){
5
- return isIos() ? (
5
+ return isNativeMobile() || isTouchDevice() ? (
6
6
  <KeyboardAvoidingView
7
7
  style={styles.wrapper}
8
8
  behavior="padding"
@@ -224,7 +224,7 @@ const TableComponent = React.forwardRef(({containerProps,renderListContent,child
224
224
  }
225
225
  }
226
226
  }
227
- return <View testID= {testID+"_Container"} {...containerProps} style={[styles.container,{alignItems:'stretch'},containerProps.style]}>
227
+ return <View testID= {testID+"_Container"} pointerEvents='box-none' {...containerProps} style={[styles.container,{alignItems:'stretch'},containerProps.style]}>
228
228
  <RNView style={[cStyle]} testID={testID+"_Headers_ScrollViewContainer"}>
229
229
  <ScrollView
230
230
  testID={testID+"_HeaderScrollView"}