profoundjs 7.12.0 → 7.13.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 +8 -1
- package/htdocs/profoundui/proddata/css/profoundai.css +2 -0
- package/htdocs/profoundui/proddata/js/designer.js +1737 -1734
- package/htdocs/profoundui/proddata/js/key_management.js +0 -1
- package/htdocs/profoundui/proddata/js/profoundai.js +2 -2
- package/htdocs/profoundui/proddata/js/rich-display-react-component.js +0 -1
- package/htdocs/profoundui/proddata/js/rich-display-vue-component.js +0 -1
- package/htdocs/profoundui/proddata/js/runtime.js +136 -135
- package/package.json +2 -2
- package/profound.jse +1 -1
- package/setup/pjsdist.savf +0 -0
|
@@ -416,7 +416,11 @@ div.pui-wf-hidden {
|
|
|
416
416
|
border: 1px;
|
|
417
417
|
width: 475px;
|
|
418
418
|
min-width: 320px;
|
|
419
|
+
max-width: 90vw;
|
|
420
|
+
max-height: 90vh;
|
|
419
421
|
z-index: 10000;
|
|
422
|
+
display: flex;
|
|
423
|
+
flex-direction: column;
|
|
420
424
|
}
|
|
421
425
|
|
|
422
426
|
.pui-wf-dialog-header {
|
|
@@ -425,6 +429,7 @@ div.pui-wf-hidden {
|
|
|
425
429
|
height: 45px;
|
|
426
430
|
border-top-left-radius: 5px;
|
|
427
431
|
border-top-right-radius: 5px;
|
|
432
|
+
flex-shrink: 0;
|
|
428
433
|
}
|
|
429
434
|
|
|
430
435
|
.pui-wf-description-box {
|
|
@@ -456,6 +461,7 @@ div.pui-wf-hidden {
|
|
|
456
461
|
.pui-wf-dialog-body {
|
|
457
462
|
background-color: #f8f8f8;
|
|
458
463
|
min-height: 150px;
|
|
464
|
+
max-height: calc(100vh - 150px);
|
|
459
465
|
border-bottom-left-radius: 5px;
|
|
460
466
|
border-bottom-right-radius: 5px;
|
|
461
467
|
border-bottom: 1px solid #666;
|
|
@@ -466,9 +472,10 @@ div.pui-wf-hidden {
|
|
|
466
472
|
-moz-user-select: none;
|
|
467
473
|
-webkit-user-select: none;
|
|
468
474
|
-ms-user-select: none;
|
|
469
|
-
|
|
475
|
+
flex-grow: 1;
|
|
470
476
|
}
|
|
471
477
|
|
|
478
|
+
|
|
472
479
|
.pui-wf-dialog-body::-webkit-scrollbar {
|
|
473
480
|
width: 7px;
|
|
474
481
|
}
|
|
@@ -106,10 +106,12 @@
|
|
|
106
106
|
|
|
107
107
|
.pai-user-message {
|
|
108
108
|
background-color: #eee;
|
|
109
|
+
overflow-wrap: anywhere;
|
|
109
110
|
}
|
|
110
111
|
.pai-dark .pai-user-message {
|
|
111
112
|
background-color: #aaa;
|
|
112
113
|
color: #222;
|
|
114
|
+
overflow-wrap: anywhere;
|
|
113
115
|
}
|
|
114
116
|
|
|
115
117
|
.pai-greeting, .pai-agent-response {
|