profoundjs 7.23.0 → 7.24.1
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 +36 -0
- package/htdocs/profoundui/proddata/css/profoundui.css +132 -3
- package/htdocs/profoundui/proddata/js/atrium.js +135 -134
- package/htdocs/profoundui/proddata/js/designer.js +3576 -3571
- package/htdocs/profoundui/proddata/js/genie.js +2357 -2344
- package/htdocs/profoundui/proddata/js/profoundai.js +31 -29
- package/htdocs/profoundui/proddata/js/runtime.js +1290 -1285
- package/package.json +10 -9
- package/profound.jse +1 -1
- package/setup/install_info.json +1 -11
- package/setup/pjsdist.savf +0 -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 */
|
|
@@ -142,6 +162,12 @@
|
|
|
142
162
|
overflow-wrap: anywhere;
|
|
143
163
|
}
|
|
144
164
|
|
|
165
|
+
.pai-message-mobile{
|
|
166
|
+
font-size: 12px;
|
|
167
|
+
padding: 10px;
|
|
168
|
+
line-height: 15px;
|
|
169
|
+
}
|
|
170
|
+
|
|
145
171
|
.pai-greeting, .pai-agent-response {
|
|
146
172
|
background-color: #fff;
|
|
147
173
|
}
|
|
@@ -165,6 +191,16 @@
|
|
|
165
191
|
color: #fff;
|
|
166
192
|
}
|
|
167
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
|
+
|
|
168
204
|
.pai-error {
|
|
169
205
|
background-color: pink;
|
|
170
206
|
}
|
|
@@ -18100,7 +18100,9 @@ table.auto-testing-user-input tr:nth-child(even), table.auto-testing-results tr:
|
|
|
18100
18100
|
table.auto-testing-user-input td:first-child, table.auto-testing-results td:first-child, table.auto-testing-hashes td:first-child {
|
|
18101
18101
|
width: 200px;
|
|
18102
18102
|
max-width: 200px;
|
|
18103
|
-
|
|
18103
|
+
overflow: hidden;
|
|
18104
|
+
text-overflow: ellipsis;
|
|
18105
|
+
white-space: nowrap;
|
|
18104
18106
|
font-weight: bold;
|
|
18105
18107
|
background-color: #ffefcc;
|
|
18106
18108
|
}
|
|
@@ -18112,17 +18114,41 @@ table.auto-testing-user-input tr:hover, table.auto-testing-results tr:hover, tab
|
|
|
18112
18114
|
}
|
|
18113
18115
|
|
|
18114
18116
|
.auto-testing-valid-hash {
|
|
18115
|
-
background-color: #d4edda;
|
|
18117
|
+
background-color: #d4edda !important;
|
|
18116
18118
|
}
|
|
18117
18119
|
|
|
18118
18120
|
.auto-testing-invalid-hash {
|
|
18119
|
-
background-color: #f8d7da;
|
|
18121
|
+
background-color: #f8d7da !important;
|
|
18120
18122
|
}
|
|
18121
18123
|
|
|
18122
18124
|
.pui-auto-testing-diff-viewer .d2h-code-linenumber {
|
|
18123
18125
|
display: none !important;
|
|
18124
18126
|
}
|
|
18125
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
|
+
|
|
18126
18152
|
/* Exected vs Actual Screen Slider */
|
|
18127
18153
|
.pui-auto-testing-slider {
|
|
18128
18154
|
cursor: pointer;
|
|
@@ -18318,6 +18344,33 @@ table.auto-testing-user-input tr:hover, table.auto-testing-results tr:hover, tab
|
|
|
18318
18344
|
line-height: 1;
|
|
18319
18345
|
}
|
|
18320
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
|
+
|
|
18321
18374
|
.pui-auto-testing-annotation-container {
|
|
18322
18375
|
position: absolute;
|
|
18323
18376
|
top: 0px;
|
|
@@ -18349,3 +18402,79 @@ mjs-marker-area {
|
|
|
18349
18402
|
background-color: #eee; /* Keep background the same on hover */
|
|
18350
18403
|
border-color: transparent;
|
|
18351
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
|
+
}
|