@fto-consult/expo-ui 8.63.0 → 8.63.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": "8.63.0",
3
+ "version": "8.63.1",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "react-native-paper-doc": "https://github.com/callstack/react-native-paper/tree/main/docs/docs/guides",
6
6
  "scripts": {
@@ -964,7 +964,7 @@ export default class Field extends AppComponent {
964
964
  rest.contentContainerProps.pointerEvents = defaultStr(rest.contentContainerProps.pointerEvents,"auto");
965
965
  }
966
966
  if(!isFilter && this.canRenderInlineIndicator()){
967
- const canRenderHashtag = format === 'hashtag' && (!isNonNullString(_type) || _type ==='text');
967
+ const canRenderHashtag = format === 'hashtag' && isEditable && (!isNonNullString(_type) || _type ==='text');
968
968
  const renderRigth = (props)=>{
969
969
  let right = null;
970
970
  let cRight = typeof customRight ==='function'? customRight(props) : customRight;