@fto-consult/expo-ui 6.64.17 → 6.64.18

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.
@@ -37,6 +37,10 @@ export default function AppMainEntry(){
37
37
  loginPropsMutator : {},//({object})=><{object}>, la fonction permettant de muter les props du composant Login,
38
38
  authEnabled : true,//si le module d'authentification sera requis
39
39
  customFormFields : {},//custom form fields
40
+ /*** la fonction permettant de muter les props du composant TableLink, permetant de lier les tables entre elles */
41
+ tableLinkPropsMutator : (props)=>{
42
+ return props;
43
+ }
40
44
  }}
41
45
  /*** //for application initialization
42
46
  @param {
@@ -2,5 +2,5 @@ import Label from "$ecomponents/Label";
2
2
  import appConfig from "$capp/config";
3
3
 
4
4
  export default function LogoComponent(props){
5
- return <Label primary textBolx>{appConfig.name}</Label>
5
+ return <Label primary textBold>{appConfig.name}</Label>
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "6.64.17",
3
+ "version": "6.64.18",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "main",
6
6
  "scripts": {
@@ -7,7 +7,7 @@ import DateLib from "$date";
7
7
  import Image from "$ecomponents/Image";
8
8
  import React from "$react";
9
9
  import Label from "$ecomponents/Label";
10
- import TableLink from "$components/TableLink";
10
+ import TableLink from "$ecomponents/TableLink";
11
11
  import {Flag} from "$ecomponents/Countries";
12
12
  import { StyleSheet } from "react-native";
13
13
  import {isDesktopMedia} from "$dimensions";
@@ -6,7 +6,7 @@ import Container from "$cauth/Container";
6
6
  import ScreenWithoutAuthContainer from "./ScreenWithoutAuthContainer";
7
7
  import ProfilAvatar from "$elayouts/ProfilAvatar";
8
8
  import {defaultObj,defaultBool} from "$cutils";
9
- import View from "$components/View";
9
+ import View from "$ecomponents/View";
10
10
  import theme from "$theme";
11
11
 
12
12
  export default function MainScreenComponent({profilAvatarProps,withDrawer,allowDrawer,profilAvatarContainerProps,withProfilAvatarOnAppBar:cWithPorilAvatarOnAppbar,authProps,authRequired,...props}){