@fto-consult/expo-ui 6.64.17 → 6.64.19
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/bin/create-app/App.js +4 -0
- package/bin/create-app/src/components/Logo/index.js +1 -1
- package/bin/create-app/src/navigation/drawerSections.js +1 -1
- package/package.json +1 -1
- package/src/components/Datagrid/Common/utils.js +1 -1
- package/src/layouts/Screen/Screen.js +1 -1
- package/src/print/utils.js +0 -1840
package/bin/create-app/App.js
CHANGED
@@ -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 {
|
package/package.json
CHANGED
@@ -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 "$
|
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 "$
|
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}){
|