profoundjs 7.22.1 → 7.24.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/designer.css +7 -3
- package/htdocs/profoundui/proddata/css/profoundai.css +75 -9
- package/htdocs/profoundui/proddata/css/profoundui.css +152 -4
- package/htdocs/profoundui/proddata/js/atrium.js +501 -509
- package/htdocs/profoundui/proddata/js/atrium_api.js +6 -6
- package/htdocs/profoundui/proddata/js/designer.js +4942 -5056
- package/htdocs/profoundui/proddata/js/genie.js +3155 -3225
- package/htdocs/profoundui/proddata/js/profoundai.js +36 -31
- package/htdocs/profoundui/proddata/js/runtime.js +1872 -1898
- package/htdocs/profoundui/proddata/js/signon.js +102 -107
- package/index.js +1 -0
- package/package.json +11 -10
- package/profound.jse +1 -1
- package/setup/call.js +2 -0
- package/setup/completeInstall.js +3 -1
- package/setup/convertStartJS.js +2 -2
- package/setup/install_info.json +1 -11
- package/setup/pjsdist.savf +0 -0
- package/setup/plugins/mathoperation.js +75 -79
- package/setup/start.js +3 -2
- package/setup/store_credentials.js +2 -0
- package/setup/store_options.js +2 -0
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
border-bottom: 1px solid #eeeeee;
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
.x-toolbar.x-toolbar.x-toolbar.x-toolbar .x-btn.x-btn-pressed,
|
|
143
|
+
.x-toolbar.x-toolbar.x-toolbar.x-toolbar .x-btn.x-btn-pressed,
|
|
144
144
|
.x-toolbar.x-toolbar.x-toolbar.x-toolbar .x-btn.x-btn-menu-active {
|
|
145
145
|
background-color: #1979CA;
|
|
146
146
|
color : white;
|
|
@@ -489,7 +489,7 @@ div.widget-sets-widget div {
|
|
|
489
489
|
|
|
490
490
|
/* In Edge, the inline style of the proxy HTML doesn't apply for some reason. So set it here. */
|
|
491
491
|
.x-dd-drag-proxy .puiresp {
|
|
492
|
-
display : grid;
|
|
492
|
+
display : grid;
|
|
493
493
|
grid-template-rows : auto;
|
|
494
494
|
grid-template-columns: repeat(4, 1fr);
|
|
495
495
|
grid-column-gap : 3px;
|
|
@@ -614,7 +614,7 @@ button.zoommenu.flatlook {
|
|
|
614
614
|
}
|
|
615
615
|
|
|
616
616
|
/* Make the container names and numbers appear in the design canvas behind widgets. */
|
|
617
|
-
div.puiresp>div[containername]::after {
|
|
617
|
+
div.puiresp>div[containername]::after {
|
|
618
618
|
opacity : 0.05;
|
|
619
619
|
font-size: 2.5em;
|
|
620
620
|
content : attr(containername);
|
|
@@ -1047,3 +1047,7 @@ iframe.rundbgapp {
|
|
|
1047
1047
|
.pai-copy-snippet-icon:hover {
|
|
1048
1048
|
background-color: #eee;
|
|
1049
1049
|
}
|
|
1050
|
+
|
|
1051
|
+
.xterm-screen div {
|
|
1052
|
+
white-space: pre !important;
|
|
1053
|
+
}
|
|
@@ -25,6 +25,26 @@
|
|
|
25
25
|
background-color: #353c49;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
+
@media (max-width: 768px) {
|
|
29
|
+
.pai-chat {
|
|
30
|
+
width: 94vw;
|
|
31
|
+
height: 85vh;
|
|
32
|
+
right: 1vw;
|
|
33
|
+
bottom: 1vh;
|
|
34
|
+
border-radius: 0;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
@media (max-width: 600px) {
|
|
39
|
+
.pai-chat {
|
|
40
|
+
width: 94vw;
|
|
41
|
+
height: 75vh;
|
|
42
|
+
right: 1vw;
|
|
43
|
+
bottom: 1vh;
|
|
44
|
+
border-radius: 0;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
28
48
|
@keyframes pai-animate-chat {
|
|
29
49
|
from {
|
|
30
50
|
transform: scale(0) translate(50%, 50%); /* Start scaled down at bottom right */
|
|
@@ -37,7 +57,7 @@
|
|
|
37
57
|
}
|
|
38
58
|
|
|
39
59
|
.pai-prompt-area {
|
|
40
|
-
margin:
|
|
60
|
+
margin: 0px auto;
|
|
41
61
|
padding: 7px;
|
|
42
62
|
padding-left: 10px;
|
|
43
63
|
border: 1px solid #999;
|
|
@@ -45,31 +65,59 @@
|
|
|
45
65
|
display: block;
|
|
46
66
|
width: 90%;
|
|
47
67
|
font-family: Arial, Helvetica, sans-serif;
|
|
48
|
-
font-size:
|
|
68
|
+
font-size: 15px;
|
|
69
|
+
box-sizing: unset;
|
|
70
|
+
line-height: normal;
|
|
71
|
+
transition: none;
|
|
49
72
|
}
|
|
50
73
|
.pai-dark .pai-prompt-area {
|
|
51
74
|
background-color: #47515f;
|
|
52
75
|
}
|
|
53
76
|
|
|
54
|
-
.pai-prompt-box {
|
|
77
|
+
.pai-prompt-area .pai-prompt-box {
|
|
55
78
|
font-family: Arial, Helvetica, sans-serif;
|
|
56
|
-
font-size:
|
|
79
|
+
font-size: 15px;
|
|
57
80
|
border: none;
|
|
58
81
|
outline: none;
|
|
59
|
-
width: calc(100% - 30px);
|
|
60
82
|
height: 21px;
|
|
61
83
|
margin-top: 5px;
|
|
62
84
|
padding: 0px;
|
|
63
85
|
resize: none;
|
|
86
|
+
box-sizing: unset;
|
|
87
|
+
line-height: normal;
|
|
88
|
+
transition: none;
|
|
89
|
+
border-color: transparent;
|
|
90
|
+
color: unset;
|
|
91
|
+
border-radius: 0px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.pai-prompt-area .pai-prompt-box {
|
|
95
|
+
width: calc(100% - 30px);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.pai-prompt-area .pai-prompt-box.pai-with-voice {
|
|
99
|
+
width: calc(100% - 66px);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@-moz-document url-prefix() {
|
|
103
|
+
.pai-prompt-area .pai-prompt-box {
|
|
104
|
+
width: calc(100% - 32px);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.pai-prompt-area .pai-prompt-box.pai-with-voice {
|
|
108
|
+
width: calc(100% - 68px);
|
|
109
|
+
}
|
|
64
110
|
}
|
|
65
111
|
|
|
66
|
-
.pai-with-voice {
|
|
67
|
-
|
|
112
|
+
.pai-prompt-area .pai-prompt-box:focus, .pai-with-voice {
|
|
113
|
+
border-color: transparent;
|
|
68
114
|
}
|
|
69
|
-
|
|
115
|
+
|
|
116
|
+
.pai-dark .pai-prompt-box, .pai-dark .pai-prompt-box:focus {
|
|
70
117
|
background-color: #47515f;
|
|
71
|
-
border-color:
|
|
118
|
+
border-color: transparent;
|
|
72
119
|
color: #fff;
|
|
120
|
+
border-radius: 0px;
|
|
73
121
|
}
|
|
74
122
|
.pai-dark .pai-prompt-box::placeholder {
|
|
75
123
|
color: #bdc7d8;
|
|
@@ -114,6 +162,12 @@
|
|
|
114
162
|
overflow-wrap: anywhere;
|
|
115
163
|
}
|
|
116
164
|
|
|
165
|
+
.pai-message-mobile{
|
|
166
|
+
font-size: 12px;
|
|
167
|
+
padding: 10px;
|
|
168
|
+
line-height: 15px;
|
|
169
|
+
}
|
|
170
|
+
|
|
117
171
|
.pai-greeting, .pai-agent-response {
|
|
118
172
|
background-color: #fff;
|
|
119
173
|
}
|
|
@@ -137,6 +191,16 @@
|
|
|
137
191
|
color: #fff;
|
|
138
192
|
}
|
|
139
193
|
|
|
194
|
+
@media (max-width: 700px) and (orientation: landscape) {
|
|
195
|
+
.pai-heading {
|
|
196
|
+
padding: 15px;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.pai-heading-landscape {
|
|
201
|
+
padding: 15px;
|
|
202
|
+
}
|
|
203
|
+
|
|
140
204
|
.pai-error {
|
|
141
205
|
background-color: pink;
|
|
142
206
|
}
|
|
@@ -207,6 +271,7 @@
|
|
|
207
271
|
color: #ccc;
|
|
208
272
|
border-radius: 6px;
|
|
209
273
|
user-select: none;
|
|
274
|
+
box-sizing: unset;
|
|
210
275
|
}
|
|
211
276
|
.pai-send-button svg {
|
|
212
277
|
fill: #ccc;
|
|
@@ -229,6 +294,7 @@
|
|
|
229
294
|
color: #ccc;
|
|
230
295
|
border-radius: 6px;
|
|
231
296
|
user-select: none;
|
|
297
|
+
box-sizing: unset;
|
|
232
298
|
}
|
|
233
299
|
.pai-voice-button svg {
|
|
234
300
|
fill: #ccc;
|
|
@@ -17801,6 +17801,11 @@ mark.pui-error-screen-highlighted-line {
|
|
|
17801
17801
|
padding: 5px;
|
|
17802
17802
|
}
|
|
17803
17803
|
|
|
17804
|
+
/* Disable transitions when resizing with mouse */
|
|
17805
|
+
.pui-auto-testing-sidebar.no-transition {
|
|
17806
|
+
transition: none !important;
|
|
17807
|
+
}
|
|
17808
|
+
|
|
17804
17809
|
.pui-auto-testing-sidebar-collapse:hover {
|
|
17805
17810
|
color: #333;
|
|
17806
17811
|
}
|
|
@@ -17963,6 +17968,11 @@ mark.pui-error-screen-highlighted-line {
|
|
|
17963
17968
|
display: none;
|
|
17964
17969
|
}
|
|
17965
17970
|
|
|
17971
|
+
/* Disable transitions when resizing with mouse */
|
|
17972
|
+
.pui-auto-testing-footer.no-transition {
|
|
17973
|
+
transition: none !important;
|
|
17974
|
+
}
|
|
17975
|
+
|
|
17966
17976
|
.pui-auto-testing-footer-collapse {
|
|
17967
17977
|
color: #777;
|
|
17968
17978
|
position: absolute;
|
|
@@ -17995,7 +18005,16 @@ mark.pui-error-screen-highlighted-line {
|
|
|
17995
18005
|
}
|
|
17996
18006
|
|
|
17997
18007
|
.pui-auto-testing-working {
|
|
18008
|
+
display: inline-block;
|
|
18009
|
+
}
|
|
18010
|
+
|
|
18011
|
+
.pui-auto-testing-working:before {
|
|
17998
18012
|
animation: pui-spin 1.25s linear infinite;
|
|
18013
|
+
display: inline-block;
|
|
18014
|
+
transform-origin: center;
|
|
18015
|
+
margin-top: 6px;
|
|
18016
|
+
margin-left: 8px;
|
|
18017
|
+
margin-right: 5px;
|
|
17999
18018
|
}
|
|
18000
18019
|
|
|
18001
18020
|
.pui-auto-testing-footer.collapsed .pui-auto-testing-save-button {
|
|
@@ -18081,7 +18100,9 @@ table.auto-testing-user-input tr:nth-child(even), table.auto-testing-results tr:
|
|
|
18081
18100
|
table.auto-testing-user-input td:first-child, table.auto-testing-results td:first-child, table.auto-testing-hashes td:first-child {
|
|
18082
18101
|
width: 200px;
|
|
18083
18102
|
max-width: 200px;
|
|
18084
|
-
|
|
18103
|
+
overflow: hidden;
|
|
18104
|
+
text-overflow: ellipsis;
|
|
18105
|
+
white-space: nowrap;
|
|
18085
18106
|
font-weight: bold;
|
|
18086
18107
|
background-color: #ffefcc;
|
|
18087
18108
|
}
|
|
@@ -18093,17 +18114,41 @@ table.auto-testing-user-input tr:hover, table.auto-testing-results tr:hover, tab
|
|
|
18093
18114
|
}
|
|
18094
18115
|
|
|
18095
18116
|
.auto-testing-valid-hash {
|
|
18096
|
-
background-color: #d4edda;
|
|
18117
|
+
background-color: #d4edda !important;
|
|
18097
18118
|
}
|
|
18098
18119
|
|
|
18099
18120
|
.auto-testing-invalid-hash {
|
|
18100
|
-
background-color: #f8d7da;
|
|
18121
|
+
background-color: #f8d7da !important;
|
|
18101
18122
|
}
|
|
18102
18123
|
|
|
18103
18124
|
.pui-auto-testing-diff-viewer .d2h-code-linenumber {
|
|
18104
18125
|
display: none !important;
|
|
18105
18126
|
}
|
|
18106
18127
|
|
|
18128
|
+
.pui-auto-testing-diff-legend {
|
|
18129
|
+
margin-bottom: 10px;
|
|
18130
|
+
}
|
|
18131
|
+
|
|
18132
|
+
.pui-auto-testing-diff-legend span {
|
|
18133
|
+
display: inline-block;
|
|
18134
|
+
padding: 2px 6px;
|
|
18135
|
+
margin-right: 10px;
|
|
18136
|
+
border: 1px solid;
|
|
18137
|
+
font-size: 12px;
|
|
18138
|
+
}
|
|
18139
|
+
|
|
18140
|
+
.pui-auto-testing-diff-legend-actual {
|
|
18141
|
+
background-color: #fee8e9;
|
|
18142
|
+
border-color: #e9aeae;
|
|
18143
|
+
color: #c33;
|
|
18144
|
+
}
|
|
18145
|
+
|
|
18146
|
+
.pui-auto-testing-diff-legend-expected {
|
|
18147
|
+
background-color: #dfd;
|
|
18148
|
+
border-color: #b4e2b4;
|
|
18149
|
+
color: #399839;
|
|
18150
|
+
}
|
|
18151
|
+
|
|
18107
18152
|
/* Exected vs Actual Screen Slider */
|
|
18108
18153
|
.pui-auto-testing-slider {
|
|
18109
18154
|
cursor: pointer;
|
|
@@ -18190,7 +18235,7 @@ table.auto-testing-user-input tr:hover, table.auto-testing-results tr:hover, tab
|
|
|
18190
18235
|
|
|
18191
18236
|
.pui-auto-testing-elem-diff {
|
|
18192
18237
|
cursor: pointer !important;
|
|
18193
|
-
border: 2px dashed red;
|
|
18238
|
+
border: 2px dashed red !important;
|
|
18194
18239
|
}
|
|
18195
18240
|
|
|
18196
18241
|
.pui-auto-testing-step-number {
|
|
@@ -18299,6 +18344,33 @@ table.auto-testing-user-input tr:hover, table.auto-testing-results tr:hover, tab
|
|
|
18299
18344
|
line-height: 1;
|
|
18300
18345
|
}
|
|
18301
18346
|
|
|
18347
|
+
.pui-auto-testing-rules-icon {
|
|
18348
|
+
margin-left: 5px;
|
|
18349
|
+
font-size: 0.8em;
|
|
18350
|
+
position: relative;
|
|
18351
|
+
display: inline-block;
|
|
18352
|
+
vertical-align: middle;
|
|
18353
|
+
}
|
|
18354
|
+
|
|
18355
|
+
.pui-auto-testing-rules-icon.pui-rules-exist {
|
|
18356
|
+
color: #007bff;
|
|
18357
|
+
}
|
|
18358
|
+
|
|
18359
|
+
.pui-auto-testing-rules-icon.pui-rules-dirty {
|
|
18360
|
+
color: #007bff;
|
|
18361
|
+
}
|
|
18362
|
+
|
|
18363
|
+
.pui-auto-testing-rules-icon.pui-rules-dirty::after {
|
|
18364
|
+
content: '*';
|
|
18365
|
+
position: absolute;
|
|
18366
|
+
top: -0.6em;
|
|
18367
|
+
right: -0.4em;
|
|
18368
|
+
font-weight: bold;
|
|
18369
|
+
font-size: 1.5em; /* Relative to the icon's font-size */
|
|
18370
|
+
color: #f47b20;
|
|
18371
|
+
line-height: 1;
|
|
18372
|
+
}
|
|
18373
|
+
|
|
18302
18374
|
.pui-auto-testing-annotation-container {
|
|
18303
18375
|
position: absolute;
|
|
18304
18376
|
top: 0px;
|
|
@@ -18330,3 +18402,79 @@ mjs-marker-area {
|
|
|
18330
18402
|
background-color: #eee; /* Keep background the same on hover */
|
|
18331
18403
|
border-color: transparent;
|
|
18332
18404
|
}
|
|
18405
|
+
|
|
18406
|
+
@media (prefers-color-scheme: dark) {
|
|
18407
|
+
/* Sidebar and step list */
|
|
18408
|
+
.pui-auto-testing-sidebar {
|
|
18409
|
+
background-color: #1e1e1e;
|
|
18410
|
+
border-right-color: #333;
|
|
18411
|
+
}
|
|
18412
|
+
|
|
18413
|
+
.pui-auto-testing-step-item,
|
|
18414
|
+
.pui-auto-testing-step-name {
|
|
18415
|
+
color: #eee;
|
|
18416
|
+
}
|
|
18417
|
+
|
|
18418
|
+
.pui-auto-testing-step-item:hover,
|
|
18419
|
+
.pui-auto-testing-step-item.pui-active {
|
|
18420
|
+
background-color: #333;
|
|
18421
|
+
}
|
|
18422
|
+
|
|
18423
|
+
.pui-auto-testing-step-item.pui-active {
|
|
18424
|
+
border-left-color: #4aa3ff;
|
|
18425
|
+
}
|
|
18426
|
+
|
|
18427
|
+
.pui-auto-testing-step-name:focus {
|
|
18428
|
+
background-color: #2a2d2f;
|
|
18429
|
+
border-color: #4aa3ff;
|
|
18430
|
+
}
|
|
18431
|
+
|
|
18432
|
+
.pui-auto-testing-step-number {
|
|
18433
|
+
color: #4aa3ff;
|
|
18434
|
+
}
|
|
18435
|
+
|
|
18436
|
+
/* Footer tabs */
|
|
18437
|
+
.pui-auto-testing-footer-tabs {
|
|
18438
|
+
background-color: #2b2b2b;
|
|
18439
|
+
border-bottom-color: #444;
|
|
18440
|
+
}
|
|
18441
|
+
|
|
18442
|
+
.pui-auto-testing-footer-tab {
|
|
18443
|
+
color: #ddd;
|
|
18444
|
+
}
|
|
18445
|
+
|
|
18446
|
+
.pui-auto-testing-footer-tab:hover {
|
|
18447
|
+
background-color: #3a3a3a;
|
|
18448
|
+
}
|
|
18449
|
+
|
|
18450
|
+
.pui-auto-testing-footer-tab.pui-active {
|
|
18451
|
+
background-color: #1e1e1e;
|
|
18452
|
+
border-bottom-color: #4aa3ff;
|
|
18453
|
+
}
|
|
18454
|
+
|
|
18455
|
+
.pui-auto-testing-footer-tab-contents {
|
|
18456
|
+
background-color: #1e1e1e;
|
|
18457
|
+
color: #ddd;
|
|
18458
|
+
}
|
|
18459
|
+
|
|
18460
|
+
.pui-auto-testing-footer-tab-contents .d2h-wrapper {
|
|
18461
|
+
background-color: #eeeeee;
|
|
18462
|
+
color: #212121;
|
|
18463
|
+
}
|
|
18464
|
+
|
|
18465
|
+
.pui-auto-testing-footer-tab-contents td {
|
|
18466
|
+
background-color: #eeeeee;
|
|
18467
|
+
}
|
|
18468
|
+
|
|
18469
|
+
.pui-auto-testing-diff-legend-actual {
|
|
18470
|
+
background-color: #3a1f1f;
|
|
18471
|
+
border-color: #663333;
|
|
18472
|
+
color: #f7bcbc;
|
|
18473
|
+
}
|
|
18474
|
+
|
|
18475
|
+
.pui-auto-testing-diff-legend-expected {
|
|
18476
|
+
background-color: #1f3618;
|
|
18477
|
+
border-color: #396939;
|
|
18478
|
+
color: #c8fbc8;
|
|
18479
|
+
}
|
|
18480
|
+
}
|