profoundjs 6.2.0 → 6.4.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.
Files changed (33) hide show
  1. package/htdocs/fusionchartsxt/js/maps/fusioncharts.india.js +2 -1
  2. package/htdocs/fusionchartsxt/js/maps/fusioncharts.jammuandkashmir.js +8 -2
  3. package/htdocs/fusionchartsxt/js/maps/fusioncharts.ladakh.js +238 -0
  4. package/htdocs/fusionchartsxt/js/pui-fusioncharts.js +368 -53
  5. package/htdocs/profoundui/proddata/css/logic.css +21 -2
  6. package/htdocs/profoundui/proddata/css/profoundui.css +16 -0
  7. package/htdocs/profoundui/proddata/js/designer.js +3862 -3846
  8. package/htdocs/profoundui/proddata/js/key_management.js +3 -3
  9. package/htdocs/profoundui/proddata/js/rich-display-react-component.js +5 -5
  10. package/htdocs/profoundui/proddata/js/rich-display-vue-component.js +3 -3
  11. package/htdocs/profoundui/proddata/js/runtime.js +1234 -1230
  12. package/htdocs/profoundui/proddata/js/soapclient.js +22 -22
  13. package/index.js +4 -4
  14. package/package.json +2 -1
  15. package/profound.jse +1 -1
  16. package/setup/call.js +1 -1
  17. package/setup/completeInstall.js +51 -56
  18. package/setup/convertStartJS.js +40 -30
  19. package/setup/encrypt_client_file.js +4 -0
  20. package/setup/install.js +1 -1
  21. package/setup/install_utils.js +44 -30
  22. package/setup/lic_client.js +1 -1
  23. package/setup/modules/papisamples/.noderun/settings.json +5 -0
  24. package/setup/modules/papisamples/APISample.api.json +313 -0
  25. package/setup/modules/papisamples/APISample.js +55 -0
  26. package/setup/modules/papisamples/APISample.json +751 -0
  27. package/setup/modules/papisamples/README.md +17 -0
  28. package/setup/modules/papisamples/hobbyshop.csv +6 -0
  29. package/setup/modules/papisamples/readCSVFile.js +136 -0
  30. package/setup/pjsdist.savf +0 -0
  31. package/setup/plugins/mathoperation.js +84 -0
  32. package/setup/removeExtraComponents.js +4 -6
  33. package/setup/setup.js +50 -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 (props) {
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,