backend-plus 1.18.12 → 1.19.0

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.
@@ -1686,7 +1686,7 @@ myOwn.dialogDownload = function dialogDownload(grid){
1686
1686
  wb.Sheets[sheet1name]=ws;
1687
1687
  exportFileInformationWs["!ref"]="A1:F100";
1688
1688
  wb.Sheets[sheet2name]=exportFileInformationWs;
1689
- var wbFile = XLSX.write(wb, {bookType:'xlsx', bookSST:false, type: 'binary'});
1689
+ var wbFile = XLSX.write(wb, {bookType:'xlsx', bookSST:false, type: 'binary', cellDates:true});
1690
1690
  var blob = new Blob([s2ab(wbFile)],{type:"application/octet-stream"});
1691
1691
  mainDiv.setAttribute("current-state", "ready");
1692
1692
  var url = URL.createObjectURL(blob);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "backend-plus",
3
3
  "description": "Backend for typed controls",
4
- "version": "1.18.12",
4
+ "version": "1.19.0",
5
5
  "author": "Codenautas <codenautas@googlegroups.com>",
6
6
  "license": "MIT",
7
7
  "repository": "codenautas/backend-plus",
@@ -31,7 +31,7 @@
31
31
  "@upgraded/locate-path": "^6.0.0-alfa.1",
32
32
  "ajax-best-promise": "^0.4.0",
33
33
  "backend-skins": "^0.1.15",
34
- "best-globals": "^1.1.0",
34
+ "best-globals": "^1.1.2",
35
35
  "big.js": "^6.2.1",
36
36
  "body-parser": "^1.20.2",
37
37
  "cast-error": "^0.1.0",
@@ -51,25 +51,25 @@
51
51
  "like-ar": "^0.3.9",
52
52
  "login-plus": "^1.7.1",
53
53
  "memorystore": "^1.6.7",
54
- "mini-tools": "^1.12.0",
54
+ "mini-tools": "^1.12.1",
55
55
  "moment": "^2.29.4",
56
56
  "multiparty": "^4.2.3",
57
- "nodemailer": "^6.9.2",
57
+ "nodemailer": "^6.9.3",
58
58
  "numeral": "^2.0.6",
59
- "pg-promise-strict": "^1.3.2",
59
+ "pg-promise-strict": "^1.3.3",
60
60
  "pikaday": "^1.8.2",
61
61
  "pug": "^3.0.2",
62
62
  "read-yaml-promise": "^1.0.2",
63
63
  "regexplicit": "^0.1.3",
64
64
  "require-bro": "^0.3.1",
65
65
  "self-explain": "^0.10.22",
66
- "serve-content": "^0.3.18",
66
+ "serve-content": "^0.3.19",
67
67
  "session-file-store": "^1.5.0",
68
68
  "sql-tools": "^0.1.2",
69
69
  "stack-trace": "^0.0.10",
70
70
  "stylus": "0.59.0",
71
- "type-store": "^0.3.1",
72
- "typed-controls": "^0.11.0",
71
+ "type-store": "^0.4.0",
72
+ "typed-controls": "^0.12.0",
73
73
  "xlsx": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz"
74
74
  },
75
75
  "devDependencies": {
@@ -98,7 +98,7 @@
98
98
  "kill-9": "~0.4.3",
99
99
  "mocha": "^10.2.0",
100
100
  "nyc": "^15.1.0",
101
- "puppeteer": "^20.4.0",
101
+ "puppeteer": "^20.5.0",
102
102
  "sinon": "^15.1.0",
103
103
  "supertest": "^6.3.3",
104
104
  "types.d.ts": "~0.6.14",
@@ -586,7 +586,7 @@ function noChange(x){ return x; }
586
586
 
587
587
  myAjax.UriSearchToObjectParams={
588
588
  i :{ showInMenu:true , encode:function(value,menu){ return menu.name?(menu.parents||[]).concat(menu.name).join(','):value }},
589
- fc :{ encode:function(x){ return JSON.stringify(x); }, U:function(x){ return JSON.parse(x)} },
589
+ fc :{ encode:function(x){ return json4all.toUrl(x); }, decode:function(x){ return json4all.parse(x)} },
590
590
  ff :{ encode:function(x){ return json4all.toUrl(x); }, decode:function(x){ return json4all.parse(x)} },
591
591
  up :{ encode:function(x){ return json4all.toUrl(x); }, decode:function(x){ return json4all.parse(x)} },
592
592
  pf :{ encode:function(x){ return JSON.stringify(x); }, decode:function(x){ return JSON.parse(x)} },
@@ -599,7 +599,7 @@ myAjax.UriSearchToObjectParams={
599
599
  parents :{ hide:true },
600
600
  button :{ hide:true },
601
601
  fixedFields :{ varName:'ff' , encode:function(pairs){ return json4all.toUrl(likeAr.toPlainObject(pairs, 'fieldName')); }},
602
- detailing :{ encode:function(x){ return JSON.toUrl(x); }, decode:function(x){ return JSON.parse(x)} },
602
+ detailing :{ encode:function(x){ return json4all.toUrl(x); }, decode:function(x){ return json4all.parse(x)} },
603
603
  }
604
604
 
605
605
  myAjax.UriSearchToObject = function UriSearchToObject(locationSearch){