@fto-consult/expo-ui 6.58.0 → 6.58.1

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.58.0",
3
+ "version": "6.58.1",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "main",
6
6
  "scripts": {
@@ -9,7 +9,7 @@ import PropTypes from "prop-types";
9
9
  import stableHash from "stable-hash";
10
10
  import {defaultNumber,isNumber} from "$cutils";
11
11
 
12
- const styles = StyleSheet.create({container: { flex: 1 }});
12
+ const styles = StyleSheet.create({container: { flex: 1,pointerEvents:"box-none" }});
13
13
 
14
14
  const AutoResizerComponent = React.forwardRef((props,ref) =>{
15
15
  const {
@@ -80,7 +80,6 @@ const AutoResizerComponent = React.forwardRef((props,ref) =>{
80
80
  {...viewProps}
81
81
  ref={React.useMergeRefs(innerRef,ref)}
82
82
  onLayout={onLayout}
83
- pointerEvents="box-none"
84
83
  style={[styles.container, viewProps.style]}
85
84
  >
86
85
  {canRender() && children({...result,left:result.x,top:result.y}) || null}
@@ -124,8 +124,7 @@ const CheckboxComponent = React.forwardRef((props,ref)=>{
124
124
  testID = {testID}
125
125
  disabled = {disabled}
126
126
  readOnly = {!isEditable}
127
- pointerEvents = {pointerEvents}
128
- style = {[styles.checkbox,style]}
127
+ style = {[styles.checkbox,style,{pointerEvents}]}
129
128
  position = {position}
130
129
  status = {status}
131
130
  color = {cColor}