profoundjs 7.22.0 → 7.23.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 (38) hide show
  1. package/htdocs/profoundui/proddata/css/profoundai.css +39 -9
  2. package/htdocs/profoundui/proddata/css/profoundui.css +20 -1
  3. package/htdocs/profoundui/proddata/js/atrium.js +500 -509
  4. package/htdocs/profoundui/proddata/js/atrium_api.js +6 -6
  5. package/htdocs/profoundui/proddata/js/designer.js +4937 -5056
  6. package/htdocs/profoundui/proddata/js/genie.js +3142 -3225
  7. package/htdocs/profoundui/proddata/js/profoundai.js +34 -31
  8. package/htdocs/profoundui/proddata/js/runtime.js +1867 -1898
  9. package/htdocs/profoundui/proddata/js/signon.js +102 -107
  10. package/index.js +1 -0
  11. package/package.json +2 -2
  12. package/profound.jse +1 -1
  13. package/setup/call.js +2 -0
  14. package/setup/completeInstall.js +3 -1
  15. package/setup/convertStartJS.js +2 -2
  16. package/setup/pjsdist.savf +0 -0
  17. package/setup/plugins/mathoperation.js +75 -79
  18. package/setup/start.js +3 -2
  19. package/setup/store_credentials.js +2 -0
  20. package/setup/store_options.js +2 -0
  21. package/htdocs/profoundui/proddata/css/plogic.css +0 -4976
  22. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.eot +0 -0
  23. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.svg +0 -276
  24. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.ttf +0 -0
  25. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.woff +0 -0
  26. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.woff2 +0 -0
  27. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.eot +0 -0
  28. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.svg +0 -301
  29. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.ttf +0 -0
  30. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.woff +0 -0
  31. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.woff2 +0 -0
  32. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.eot +0 -0
  33. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.svg +0 -281
  34. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.ttf +0 -0
  35. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.woff +0 -0
  36. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.woff2 +0 -0
  37. package/htdocs/profoundui/proddata/fonts/material_icons.woff2 +0 -0
  38. package/htdocs/profoundui/proddata/js/plogic.grids.js +0 -326
@@ -37,7 +37,7 @@
37
37
  }
38
38
 
39
39
  .pai-prompt-area {
40
- margin: 20px auto;
40
+ margin: 0px auto;
41
41
  padding: 7px;
42
42
  padding-left: 10px;
43
43
  border: 1px solid #999;
@@ -45,31 +45,59 @@
45
45
  display: block;
46
46
  width: 90%;
47
47
  font-family: Arial, Helvetica, sans-serif;
48
- font-size: 18px;
48
+ font-size: 15px;
49
+ box-sizing: unset;
50
+ line-height: normal;
51
+ transition: none;
49
52
  }
50
53
  .pai-dark .pai-prompt-area {
51
54
  background-color: #47515f;
52
55
  }
53
56
 
54
- .pai-prompt-box {
57
+ .pai-prompt-area .pai-prompt-box {
55
58
  font-family: Arial, Helvetica, sans-serif;
56
- font-size: 18px;
59
+ font-size: 15px;
57
60
  border: none;
58
61
  outline: none;
59
- width: calc(100% - 30px);
60
62
  height: 21px;
61
63
  margin-top: 5px;
62
64
  padding: 0px;
63
65
  resize: none;
66
+ box-sizing: unset;
67
+ line-height: normal;
68
+ transition: none;
69
+ border-color: transparent;
70
+ color: unset;
71
+ border-radius: 0px;
72
+ }
73
+
74
+ .pai-prompt-area .pai-prompt-box {
75
+ width: calc(100% - 30px);
76
+ }
77
+
78
+ .pai-prompt-area .pai-prompt-box.pai-with-voice {
79
+ width: calc(100% - 66px);
64
80
  }
65
81
 
66
- .pai-with-voice {
67
- width: calc(100% - 64px);
82
+ @-moz-document url-prefix() {
83
+ .pai-prompt-area .pai-prompt-box {
84
+ width: calc(100% - 32px);
85
+ }
86
+
87
+ .pai-prompt-area .pai-prompt-box.pai-with-voice {
88
+ width: calc(100% - 68px);
89
+ }
68
90
  }
69
- .pai-dark .pai-prompt-box {
91
+
92
+ .pai-prompt-area .pai-prompt-box:focus, .pai-with-voice {
93
+ border-color: transparent;
94
+ }
95
+
96
+ .pai-dark .pai-prompt-box, .pai-dark .pai-prompt-box:focus {
70
97
  background-color: #47515f;
71
- border-color: #47515f;
98
+ border-color: transparent;
72
99
  color: #fff;
100
+ border-radius: 0px;
73
101
  }
74
102
  .pai-dark .pai-prompt-box::placeholder {
75
103
  color: #bdc7d8;
@@ -207,6 +235,7 @@
207
235
  color: #ccc;
208
236
  border-radius: 6px;
209
237
  user-select: none;
238
+ box-sizing: unset;
210
239
  }
211
240
  .pai-send-button svg {
212
241
  fill: #ccc;
@@ -229,6 +258,7 @@
229
258
  color: #ccc;
230
259
  border-radius: 6px;
231
260
  user-select: none;
261
+ box-sizing: unset;
232
262
  }
233
263
  .pai-voice-button svg {
234
264
  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 {
@@ -18190,7 +18209,7 @@ table.auto-testing-user-input tr:hover, table.auto-testing-results tr:hover, tab
18190
18209
 
18191
18210
  .pui-auto-testing-elem-diff {
18192
18211
  cursor: pointer !important;
18193
- border: 2px dashed red;
18212
+ border: 2px dashed red !important;
18194
18213
  }
18195
18214
 
18196
18215
  .pui-auto-testing-step-number {