@fto-consult/expo-ui 7.4.52 → 7.4.54

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.
@@ -385,10 +385,18 @@ const ELECTRON = {
385
385
  return createPDFFile(options).then(({path:mainPath,filePathUrl,fileName})=>{
386
386
  const urlPath = path.resolve(__dirname,"pdf-viewer","viewer.html");
387
387
  if(fs.existsSync(mainPath)){
388
- options.loadURL = `file://${urlPath}?file=${decodeURIComponent(filePathUrl)}&locale=fr&fileName=${fileName}`;
389
- options.showOnLoad = true;
390
- options.devTools = true;
391
- console.log("will print url ",options.loadURL,options);
388
+ const opts = {
389
+ loadURL : `file://${urlPath}?file=${decodeURIComponent(filePathUrl)}&locale=fr&fileName=${fileName}`,
390
+ showOnLoad : true,
391
+ devTools : true,
392
+ fileName
393
+ };
394
+ ["width","height"].map((v)=>{
395
+ if(v in options){
396
+ opts[v] = options;
397
+ }
398
+ });
399
+ console.log("will print url ",opts);
392
400
  return this.createPDFWindow(options)
393
401
  }
394
402
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "7.4.52",
3
+ "version": "7.4.54",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "scripts": {
6
6
  "clear-npx-cache": "npx clear-npx-cache",