@fto-consult/expo-ui 1.1.1 → 1.1.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": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/App.js CHANGED
@@ -12,7 +12,7 @@ import DialogProvider from "$ecomponents/Dialog/Provider";
12
12
  import { DialogProvider as FormDataDialogProvider } from '$eform/FormData';
13
13
  import { SafeAreaProvider } from 'react-native-safe-area-context';
14
14
  import { PreferencesContext } from './Preferences';
15
- import {AuthProvider} from '$eauth';
15
+ import {AuthProvider} from '$cauth';
16
16
  import {PortalProvider } from '$ecomponents/Portal';
17
17
  import ErrorBoundary from "$ecomponents/ErrorBoundary";
18
18
  import ErrorBoundaryProvider from "$ecomponents/ErrorBoundary/Provider";
@@ -300,6 +300,7 @@ const TextFieldComponent = React.forwardRef((componentProps,inputRef)=>{
300
300
  ellipsizeMode : "head",
301
301
  testID : testID+"_Input",
302
302
  keyboardAppearance : theme.isDark()? 'dark': 'default',
303
+ caretHidden : false,
303
304
  ...props,
304
305
  innerRef,
305
306
  placeholder : (isFocused || isShadowMode || isNormalMode) && labelText ? "":placeholder,