profoundjs 7.5.0 → 7.6.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 (55) hide show
  1. package/LICENSE.txt +27 -25
  2. package/htdocs/jszip/FileSaver.min.js +2 -2
  3. package/htdocs/profoundui/proddata/css/atrium.css +201 -201
  4. package/htdocs/profoundui/proddata/css/designer_respeditor.css +91 -91
  5. package/htdocs/profoundui/proddata/css/ipademulator.css +38 -38
  6. package/htdocs/profoundui/proddata/css/iphoneemulator.css +29 -29
  7. package/htdocs/profoundui/proddata/css/jumpstart.css +442 -442
  8. package/htdocs/profoundui/proddata/css/key_management.css +122 -122
  9. package/htdocs/profoundui/proddata/css/logic.css +1669 -1669
  10. package/htdocs/profoundui/proddata/css/markdown.css +754 -754
  11. package/htdocs/profoundui/proddata/css/profoundai.css +42 -0
  12. package/htdocs/profoundui/proddata/css/puisplash.css +186 -186
  13. package/htdocs/profoundui/proddata/css/qtips.css +32 -32
  14. package/htdocs/profoundui/proddata/html/genieframe.html +25 -25
  15. package/htdocs/profoundui/proddata/js/designer.js +3794 -3782
  16. package/htdocs/profoundui/proddata/js/key_management.js +34 -34
  17. package/htdocs/profoundui/proddata/js/profoundai.js +26 -0
  18. package/htdocs/profoundui/proddata/js/rich-display-react-component.js +45 -45
  19. package/htdocs/profoundui/proddata/js/rich-display-vue-component.js +28 -28
  20. package/htdocs/profoundui/proddata/js/runtime.js +1404 -1401
  21. package/htdocs/profoundui/proddata/js/soapclient.js +419 -419
  22. package/htdocs/profoundui/proddata/typings/profoundjs.d.ts +881 -881
  23. package/htdocs/profoundui/proddata/typings/profoundui.d.ts +388 -388
  24. package/htdocs/profoundui/userdata/atrium themes/css/xtheme-gray.css +414 -414
  25. package/htdocs/profoundui/userdata/atrium themes/css/xtheme-olive.css +623 -623
  26. package/htdocs/profoundui/userdata/atrium themes/css/xtheme-slate.css +672 -672
  27. package/htdocs/profoundui/userdata/atrium themes/css/xtheme-steel.css +10437 -10437
  28. package/htdocs/profoundui/userdata/css/atrium_banner.css +13 -13
  29. package/htdocs/profoundui/userdata/css/atrium_home.css +37 -37
  30. package/htdocs/profoundui/userdata/custom/themes/enhanced.js +104 -104
  31. package/htdocs/profoundui/userdata/custom/themes/hybrid.js +109 -109
  32. package/htdocs/profoundui/userdata/custom/themes/standard.js +68 -68
  33. package/htdocs/profoundui/userdata/custom/widgets/googlemaps.js +139 -139
  34. package/htdocs/profoundui/userdata/custom/widgets/listbox.js +37 -37
  35. package/htdocs/profoundui/userdata/custom/widgets/panel.js +74 -74
  36. package/htdocs/profoundui/userdata/custom/widgets/styled_button.js +71 -71
  37. package/htdocs/profoundui/userdata/custom/widgets/tabpanel.js +61 -61
  38. package/htdocs/profoundui/userdata/genie skins/Classic/Classic.css +562 -562
  39. package/htdocs/profoundui/userdata/genie skins/Classic/custom.js +3 -3
  40. package/htdocs/profoundui/userdata/genie skins/Gradient/Gradient.css +616 -616
  41. package/htdocs/profoundui/userdata/genie skins/Gradient/adjusted columns custom.js +83 -83
  42. package/htdocs/profoundui/userdata/genie skins/Gradient/custom.js +83 -83
  43. package/htdocs/profoundui/userdata/genie skins/Hybrid/Hybrid.css +616 -616
  44. package/htdocs/profoundui/userdata/genie skins/Hybrid/custom.js +330 -330
  45. package/htdocs/profoundui/userdata/genie skins/Plain/Plain.css +546 -546
  46. package/htdocs/profoundui/userdata/genie skins/Plain/custom.js +6 -6
  47. package/htdocs/profoundui/userdata/genie skins/Skyline/Skyline.css +753 -753
  48. package/htdocs/profoundui/userdata/genie skins/Skyline/adjusted columns custom.js +97 -97
  49. package/htdocs/profoundui/userdata/genie skins/Skyline/custom.js +97 -97
  50. package/htdocs/profoundui/userdata/genie skins/Tablet/Tablet.css +743 -743
  51. package/htdocs/profoundui/userdata/genie skins/Tablet/custom.js +153 -153
  52. package/htdocs/profoundui/userdata/samples/ordentry/OrdEntry.js +92 -92
  53. package/package.json +2 -2
  54. package/profound.jse +1 -1
  55. package/setup/pjsdist.savf +0 -0
@@ -1,92 +1,92 @@
1
- /* Styles for the Visual Designer's Responsive Layout Editor's Preview Iframe.
2
- Draggable lines are more opaque than guide lines. Lines are more opaque on hover,
3
- and on hovering on a line, text should be more visible.
4
- */
5
- body {
6
- background-color:black;
7
- color:white;
8
- margin:0px;
9
- font-family: Trebuchet MS;
10
- }
11
-
12
- #_id_ { position:relative; z-index: 20; }
13
-
14
- svg {
15
- position:absolute;
16
- top:0px;
17
- left:0px;
18
- z-index: 30;
19
- /* Inline styles will override with and height when body has overflow. */
20
- width: 100%;
21
- height: 100%;
22
- }
23
-
24
- svg text {
25
- font-size:10px;
26
- fill: white;
27
- opacity: 0.50;
28
- }
29
-
30
- svg line {
31
- stroke: white;
32
- stroke-width: 2;
33
- opacity: 0.25;
34
- stroke-dasharray: 10,10;
35
- }
36
-
37
- svg line:hover, svg line.drag:hover { opacity: 1.00; }
38
-
39
- /* The text immediately after the line is associated with it. Show it when line is hovered. */
40
- svg line:hover + text, svg line.drag:hover + text {
41
- opacity: 1.00;
42
- font-size: 14px;
43
- }
44
-
45
- svg line.drag {
46
- stroke-dasharray: 30,1;
47
- stroke-width: 5;
48
- opacity: 0.5;
49
- }
50
- svg line.drag.vert { cursor: ew-resize; }
51
- svg line.drag.horz { cursor: ns-resize; }
52
-
53
- svg rect.drag {
54
- fill: white;
55
- fill-opacity: 0.15;
56
- cursor: move;
57
- }
58
-
59
- .puiresp {
60
- width: 100%;
61
- height: 100%;
62
- /*In runtime, overflow is auto. It must be visible for the Preview to work with the SVG.*/
63
- overflow: visible;
64
- }
65
- .puiresp > div {
66
- overflow: hidden;
67
- position: relative;
68
- text-align: center;
69
- }
70
-
71
- /* Also add extra colors so the preview DIVs will stand out. */
72
- #_id_ > .puiresp > div:nth-child(1n) {background-color:rgba(255,0,0, 0.50);}
73
- #_id_ > .puiresp > div:nth-child(2n) {background-color:rgba(255,170,0, 0.50);}
74
- #_id_ > .puiresp > div:nth-child(3n) {background-color:rgba(255,255,0, 0.50);}
75
- #_id_ > .puiresp > div:nth-child(4n) {background-color:rgba(165,247,0, 0.50);}
76
- #_id_ > .puiresp > div:nth-child(5n) {background-color:rgba(19,78,215, 0.50);}
77
- #_id_ > .puiresp > div:nth-child(6n) {background-color:rgba(142,10,215, 0.50);}
78
-
79
-
80
- /*Warning message for IE users.*/
81
- div.iewarn {
82
- font-size: 16px;
83
- position: absolute;
84
- top: 0px;
85
- left: 0px;
86
- z-index: 100;
87
- width: 100%;
88
- height: 100%;
89
- background: white;
90
- color: black;
91
- opacity: 0.90;
1
+ /* Styles for the Visual Designer's Responsive Layout Editor's Preview Iframe.
2
+ Draggable lines are more opaque than guide lines. Lines are more opaque on hover,
3
+ and on hovering on a line, text should be more visible.
4
+ */
5
+ body {
6
+ background-color:black;
7
+ color:white;
8
+ margin:0px;
9
+ font-family: Trebuchet MS;
10
+ }
11
+
12
+ #_id_ { position:relative; z-index: 20; }
13
+
14
+ svg {
15
+ position:absolute;
16
+ top:0px;
17
+ left:0px;
18
+ z-index: 30;
19
+ /* Inline styles will override with and height when body has overflow. */
20
+ width: 100%;
21
+ height: 100%;
22
+ }
23
+
24
+ svg text {
25
+ font-size:10px;
26
+ fill: white;
27
+ opacity: 0.50;
28
+ }
29
+
30
+ svg line {
31
+ stroke: white;
32
+ stroke-width: 2;
33
+ opacity: 0.25;
34
+ stroke-dasharray: 10,10;
35
+ }
36
+
37
+ svg line:hover, svg line.drag:hover { opacity: 1.00; }
38
+
39
+ /* The text immediately after the line is associated with it. Show it when line is hovered. */
40
+ svg line:hover + text, svg line.drag:hover + text {
41
+ opacity: 1.00;
42
+ font-size: 14px;
43
+ }
44
+
45
+ svg line.drag {
46
+ stroke-dasharray: 30,1;
47
+ stroke-width: 5;
48
+ opacity: 0.5;
49
+ }
50
+ svg line.drag.vert { cursor: ew-resize; }
51
+ svg line.drag.horz { cursor: ns-resize; }
52
+
53
+ svg rect.drag {
54
+ fill: white;
55
+ fill-opacity: 0.15;
56
+ cursor: move;
57
+ }
58
+
59
+ .puiresp {
60
+ width: 100%;
61
+ height: 100%;
62
+ /*In runtime, overflow is auto. It must be visible for the Preview to work with the SVG.*/
63
+ overflow: visible;
64
+ }
65
+ .puiresp > div {
66
+ overflow: hidden;
67
+ position: relative;
68
+ text-align: center;
69
+ }
70
+
71
+ /* Also add extra colors so the preview DIVs will stand out. */
72
+ #_id_ > .puiresp > div:nth-child(1n) {background-color:rgba(255,0,0, 0.50);}
73
+ #_id_ > .puiresp > div:nth-child(2n) {background-color:rgba(255,170,0, 0.50);}
74
+ #_id_ > .puiresp > div:nth-child(3n) {background-color:rgba(255,255,0, 0.50);}
75
+ #_id_ > .puiresp > div:nth-child(4n) {background-color:rgba(165,247,0, 0.50);}
76
+ #_id_ > .puiresp > div:nth-child(5n) {background-color:rgba(19,78,215, 0.50);}
77
+ #_id_ > .puiresp > div:nth-child(6n) {background-color:rgba(142,10,215, 0.50);}
78
+
79
+
80
+ /*Warning message for IE users.*/
81
+ div.iewarn {
82
+ font-size: 16px;
83
+ position: absolute;
84
+ top: 0px;
85
+ left: 0px;
86
+ z-index: 100;
87
+ width: 100%;
88
+ height: 100%;
89
+ background: white;
90
+ color: black;
91
+ opacity: 0.90;
92
92
  }
@@ -1,38 +1,38 @@
1
-
2
-
3
- .ipad-emulator {
4
- background-image: url('/profoundui/proddata/images/ipad/ipad_landscape.png');
5
- background-repeat: no-repeat;
6
- position: absolute;
7
- left: 0px;
8
- top: 0px;
9
- height: 852px;
10
- width: 1108px;
11
- cursor: crosshair;
12
- }
13
-
14
-
15
- .ipad-emulator #pui {
16
- position: absolute;
17
- left: 42px;
18
- top: 120px;
19
- height: 687px;
20
- width: 1022px;
21
- overflow: auto;
22
- cursor: crosshair;
23
- }
24
-
25
-
26
- .ipad-keyboard {
27
- background-image: url('/profoundui/proddata/images/ipad/ipad_keyboard_landscape.png');
28
- background-repeat: no-repeat;
29
- height: 353px;
30
- width: 1024px;
31
- position: absolute;
32
- left: 42px;
33
- top: 457px;
34
- }
35
-
36
- div.menu, div.menu td {
37
- cursor: crosshair;
38
- }
1
+
2
+
3
+ .ipad-emulator {
4
+ background-image: url('/profoundui/proddata/images/ipad/ipad_landscape.png');
5
+ background-repeat: no-repeat;
6
+ position: absolute;
7
+ left: 0px;
8
+ top: 0px;
9
+ height: 852px;
10
+ width: 1108px;
11
+ cursor: crosshair;
12
+ }
13
+
14
+
15
+ .ipad-emulator #pui {
16
+ position: absolute;
17
+ left: 42px;
18
+ top: 120px;
19
+ height: 687px;
20
+ width: 1022px;
21
+ overflow: auto;
22
+ cursor: crosshair;
23
+ }
24
+
25
+
26
+ .ipad-keyboard {
27
+ background-image: url('/profoundui/proddata/images/ipad/ipad_keyboard_landscape.png');
28
+ background-repeat: no-repeat;
29
+ height: 353px;
30
+ width: 1024px;
31
+ position: absolute;
32
+ left: 42px;
33
+ top: 457px;
34
+ }
35
+
36
+ div.menu, div.menu td {
37
+ cursor: crosshair;
38
+ }
@@ -1,29 +1,29 @@
1
-
2
-
3
- .iphone-emulator {
4
- background-image: url('/profoundui/proddata/images/iphone/iphone.jpg');
5
- background-repeat: no-repeat;
6
- position: absolute;
7
- left: 0px;
8
- top: 0px;
9
- height: 852px;
10
- width: 1108px;
11
- cursor: crosshair;
12
- }
13
-
14
-
15
- .iphone-emulator #pui {
16
- position: absolute;
17
- left: 43px;
18
- top: 196px;
19
- height: 380px;
20
- width: 318px;
21
- overflow-y: auto;
22
- overflow-x: hidden;
23
- cursor: crosshair;
24
- background-color: white;
25
- }
26
-
27
- div.menu, div.menu td {
28
- cursor: crosshair;
29
- }
1
+
2
+
3
+ .iphone-emulator {
4
+ background-image: url('/profoundui/proddata/images/iphone/iphone.jpg');
5
+ background-repeat: no-repeat;
6
+ position: absolute;
7
+ left: 0px;
8
+ top: 0px;
9
+ height: 852px;
10
+ width: 1108px;
11
+ cursor: crosshair;
12
+ }
13
+
14
+
15
+ .iphone-emulator #pui {
16
+ position: absolute;
17
+ left: 43px;
18
+ top: 196px;
19
+ height: 380px;
20
+ width: 318px;
21
+ overflow-y: auto;
22
+ overflow-x: hidden;
23
+ cursor: crosshair;
24
+ background-color: white;
25
+ }
26
+
27
+ div.menu, div.menu td {
28
+ cursor: crosshair;
29
+ }