profoundjs 6.2.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 +3816 -3806
- package/htdocs/profoundui/proddata/js/key_management.js +3 -3
- package/htdocs/profoundui/proddata/js/rich-display-react-component.js +5 -5
- package/htdocs/profoundui/proddata/js/rich-display-vue-component.js +3 -3
- package/htdocs/profoundui/proddata/js/runtime.js +1231 -1228
- package/htdocs/profoundui/proddata/js/soapclient.js +22 -22
- package/index.js +4 -4
- package/package.json +2 -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 +1 -1
- 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/pjsdist.savf +0 -0
- package/setup/removeExtraComponents.js +4 -6
- package/setup/setup.js +32 -14
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
function init
|
|
9
|
+
function init() {
|
|
10
10
|
if (LOADMSG != "") {
|
|
11
11
|
// For IE8 running in compatability view or IE7 mode,
|
|
12
12
|
// the main background image disappears when alert is run
|
|
13
13
|
// directly onload.
|
|
14
14
|
|
|
15
|
-
setTimeout(function
|
|
15
|
+
setTimeout(function() {
|
|
16
16
|
alert(LOADMSG);
|
|
17
17
|
if (REDIRECT) {
|
|
18
18
|
location.href = "/profoundui/welcome";
|
|
@@ -24,7 +24,7 @@ function init () {
|
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
function requestKey
|
|
27
|
+
function requestKey() {
|
|
28
28
|
var url = "https://www.profoundlogic.com/activation?";
|
|
29
29
|
|
|
30
30
|
url += "prod=profoundui" +
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
|
|
2
2
|
class RichDisplay extends React.Component {
|
|
3
|
-
constructor
|
|
3
|
+
constructor(props) {
|
|
4
4
|
super(props);
|
|
5
5
|
this.div = React.createRef();
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
renderRichDisplay
|
|
8
|
+
renderRichDisplay() {
|
|
9
9
|
var div = this.div.current;
|
|
10
10
|
var config = {
|
|
11
11
|
"container": div,
|
|
@@ -19,15 +19,15 @@ class RichDisplay extends React.Component {
|
|
|
19
19
|
pui.show(config);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
componentDidMount
|
|
22
|
+
componentDidMount() {
|
|
23
23
|
this.renderRichDisplay();
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
componentDidUpdate
|
|
26
|
+
componentDidUpdate() {
|
|
27
27
|
this.renderRichDisplay();
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
render
|
|
30
|
+
render() {
|
|
31
31
|
var css = {
|
|
32
32
|
position: "relative"
|
|
33
33
|
};
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
Vue.component("rich-display", {
|
|
3
3
|
props: ["path", "screen", "data", "className"],
|
|
4
4
|
template: '<div style="position: relative;"></div>',
|
|
5
|
-
mounted
|
|
5
|
+
mounted() {
|
|
6
6
|
this.renderRichDisplay();
|
|
7
7
|
},
|
|
8
|
-
updated
|
|
8
|
+
updated() {
|
|
9
9
|
this.renderRichDisplay();
|
|
10
10
|
},
|
|
11
11
|
methods: {
|
|
12
|
-
renderRichDisplay
|
|
12
|
+
renderRichDisplay() {
|
|
13
13
|
var div = this.$el;
|
|
14
14
|
var config = {
|
|
15
15
|
"container": div,
|