profoundjs 6.1.0 → 6.3.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.
- package/htdocs/profoundui/proddata/css/logic.css +21 -2
- package/htdocs/profoundui/proddata/css/profoundui.css +16 -0
- package/htdocs/profoundui/proddata/js/designer.js +3893 -3813
- package/htdocs/profoundui/proddata/js/key_management.js +15 -21
- package/htdocs/profoundui/proddata/js/rich-display-react-component.js +42 -42
- package/htdocs/profoundui/proddata/js/rich-display-vue-component.js +27 -27
- package/htdocs/profoundui/proddata/js/runtime.js +1493 -1489
- package/htdocs/profoundui/proddata/js/soapclient.js +388 -395
- package/index.js +4 -4
- package/package.json +9 -1
- package/profound.jse +1 -1
- package/setup/call.js +1 -1
- package/setup/completeInstall.js +26 -56
- package/setup/convertStartJS.js +40 -30
- package/setup/encrypt_client_file.js +4 -0
- package/setup/install.js +1 -1
- package/setup/install_utils.js +15 -30
- package/setup/lic_client.js +9 -0
- package/setup/modules/papisamples/.noderun/settings.json +5 -0
- package/setup/modules/papisamples/APISample.api.json +313 -0
- package/setup/modules/papisamples/APISample.js +55 -0
- package/setup/modules/papisamples/APISample.json +751 -0
- package/setup/modules/papisamples/README.md +17 -0
- package/setup/modules/papisamples/hobbyshop.csv +6 -0
- package/setup/modules/papisamples/readCSVFile.js +136 -0
- package/setup/modules/puiscreens.json +6 -5
- package/setup/pjsdist.savf +0 -0
- package/setup/removeExtraComponents.js +4 -6
- package/setup/setup.js +87 -59
- package/views/cloud.css +19 -6
- package/views/key.ejs +32 -2
package/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference path="./profoundjs.d.ts" />
|
|
2
2
|
|
|
3
3
|
const fs = require("fs");
|
|
4
|
-
const path = require(
|
|
4
|
+
const path = require("path");
|
|
5
5
|
|
|
6
6
|
var loaded = false;
|
|
7
7
|
var exists = false;
|
|
@@ -33,7 +33,7 @@ else {
|
|
|
33
33
|
filename = module.constructor._originalResolveFilename(request, paths);
|
|
34
34
|
}
|
|
35
35
|
return filename;
|
|
36
|
-
}
|
|
36
|
+
};
|
|
37
37
|
var jse = JSON.parse(fs.readFileSync(__dirname + "/profound.jse", "utf8"));
|
|
38
38
|
process.require = require;
|
|
39
39
|
var loader = new require("pjsloader")();
|
|
@@ -44,7 +44,7 @@ else {
|
|
|
44
44
|
while (name.includes(path.sep)) name = name.replace(path.sep, "/");
|
|
45
45
|
}
|
|
46
46
|
return module._compile(loader.Load(jse[name]), filename);
|
|
47
|
-
}
|
|
47
|
+
};
|
|
48
48
|
|
|
49
49
|
// Require any of the children, but only the 1st time
|
|
50
50
|
if (!loaded) {
|
|
@@ -56,7 +56,7 @@ else {
|
|
|
56
56
|
require(x);
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
|
-
profound.utils.requireDirs("plugins", profound.dir, profound.utils.addPlugin);
|
|
59
|
+
profound.utils.requireDirs("plugins", profound.dir, profound.utils.addPlugin); // load custom plugins
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
62
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "profoundjs",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0",
|
|
4
4
|
"min-profoundui-version": "6.20.0",
|
|
5
5
|
"description": "Profound.js Framework and Server",
|
|
6
6
|
"keywords": [
|
|
@@ -51,9 +51,11 @@
|
|
|
51
51
|
"binary-search-bounds": "^2.0.4",
|
|
52
52
|
"bitwise": "^2.0.4",
|
|
53
53
|
"body-parser": "^1.19.0",
|
|
54
|
+
"body-parser-xml": "^2.0.3",
|
|
54
55
|
"callsite": "^1.0.0",
|
|
55
56
|
"cardinal": "^2.1.1",
|
|
56
57
|
"chokidar": "^3.4.0",
|
|
58
|
+
"columnify": "^1.6.0",
|
|
57
59
|
"compare-versions": "^3.5.1",
|
|
58
60
|
"compression": "^1.7.4",
|
|
59
61
|
"cookie-parser": "^1.4.4",
|
|
@@ -87,9 +89,13 @@
|
|
|
87
89
|
"minimist": "^1.2.5",
|
|
88
90
|
"moment": "^2.26.0",
|
|
89
91
|
"morgan": "^1.9.1",
|
|
92
|
+
"mssql": "^6.4.1",
|
|
90
93
|
"multer": "^1.4.5-lts.1",
|
|
94
|
+
"mysql": "^2.17.1",
|
|
91
95
|
"needle": "^3.1.0",
|
|
96
|
+
"nocache": "^3.0.4",
|
|
92
97
|
"node-machine-id": "^1.1.12",
|
|
98
|
+
"node-sql-parser": "^4.6.6",
|
|
93
99
|
"p-iteration": "^1.1.8",
|
|
94
100
|
"pdfmake": "^0.2.4",
|
|
95
101
|
"pjsloader": "^1.12.0",
|
|
@@ -102,6 +108,7 @@
|
|
|
102
108
|
"randomatic": "^3.1.1",
|
|
103
109
|
"request": "^2.88.0",
|
|
104
110
|
"semver": "^7.3.8",
|
|
111
|
+
"soap": "^0.45.0",
|
|
105
112
|
"ssh2": "^1.11.0",
|
|
106
113
|
"ssh2-sftp-client": "^8.1.0",
|
|
107
114
|
"stat-mode": "^1.0.0",
|
|
@@ -119,6 +126,7 @@
|
|
|
119
126
|
},
|
|
120
127
|
"scripts": {
|
|
121
128
|
"postinstall": "node setup/install.js",
|
|
129
|
+
"lint": "eslint",
|
|
122
130
|
"setup": "node setup/setup.js",
|
|
123
131
|
"completeInstall": "node setup/completeInstall.js"
|
|
124
132
|
},
|