@fto-consult/expo-ui 6.32.5 → 6.32.7

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/babel.config.js CHANGED
@@ -51,7 +51,7 @@ module.exports = function(api,opts) {
51
51
  //generating appex js file
52
52
  const eAppex = $ecomponents && path.resolve($ecomponents,"Chart","appexChart");
53
53
  if(eAppex && fs.existsSync(eAppex)){
54
- const appexPathHtml = path.resolve(eAppex,"index.html");
54
+ const appexPathHtml = path.resolve(eAppex,"appexChart.html");
55
55
  const appexDistPath = path.resolve(nodeModulesPath,"apexcharts","dist","apexcharts.min.js");
56
56
  if(fs.existsSync(appexDistPath)){
57
57
  const jsContent = fs.readFileSync(appexDistPath, 'utf8')
package/bin/create-app.js CHANGED
@@ -35,6 +35,8 @@ module.exports = function(parsedArgs,{projectRoot:root}){
35
35
  start : "npx expo start -c",
36
36
  "serve-web" : "npx serve web-build --single",
37
37
  "build-web" : "npx expo export:web",
38
+ "build-android" : "npx eas build --platform android",
39
+ "build-ios" : "eas build --platform ios",
38
40
  },
39
41
  "dependencies" : {
40
42
  [euModule] : "latest",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "6.32.5",
3
+ "version": "6.32.7",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -2943,7 +2943,6 @@ export default class CommonDatagridComponent extends AppComponent {
2943
2943
  if(this.canShowFooters() && isObj(this.sectionListHeaderFooters[key])){
2944
2944
  const {visibleColumnsNames,widths} = defaultObj(this.preparedColumns);
2945
2945
  if(isObj(visibleColumnsNames) &&isObj(widths)){
2946
- cells = [];
2947
2946
  const footers = this.sectionListHeaderFooters[key];
2948
2947
  Object.map(visibleColumnsNames,(v,column)=>{
2949
2948
  if(!v || !column) {