@fto-consult/expo-ui 6.4.3 → 6.4.4

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.4.3",
3
+ "version": "6.4.4",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -254,7 +254,7 @@ const ButtonComponent = React.forwardRef((prs,ref) => {
254
254
  >
255
255
  <View testID={testID+"_Content"} {...contentProps} style={[styles.content, contentStyle,noPadding && theme.styles.noPadding,noMargin && theme.styles.noMargin]}>
256
256
  {React.isValidElement(left)? left : typeof left =='function' ?left(leftRProps):null}
257
- {icon && isLoading !== true && false ? (
257
+ {icon && isLoading !== true ? (
258
258
  <View style={[iconStyle,{color:textColor},iconProps.style]} testID={testID+"_IconContainer"}>
259
259
  {React.isValidElement(icon)?icon : <Icon
260
260
  testID={testID+"_Icon"}