profoundjs 7.20.4 → 7.22.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 (35) hide show
  1. package/auto-testing/static/test-runs/index.html +46 -0
  2. package/auto-testing/static/test-runs/script.js +477 -0
  3. package/auto-testing/static/test-runs/style.css +237 -0
  4. package/htdocs/profoundui/proddata/css/markdown.css +23 -0
  5. package/htdocs/profoundui/proddata/css/plogic.css +4976 -0
  6. package/htdocs/profoundui/proddata/css/profoundui.css +3 -2
  7. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.eot +0 -0
  8. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.svg +276 -0
  9. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.ttf +0 -0
  10. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.woff +0 -0
  11. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.woff2 +0 -0
  12. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.eot +0 -0
  13. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.svg +301 -0
  14. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.ttf +0 -0
  15. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.woff +0 -0
  16. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.woff2 +0 -0
  17. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.eot +0 -0
  18. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.svg +281 -0
  19. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.ttf +0 -0
  20. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.woff +0 -0
  21. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.woff2 +0 -0
  22. package/htdocs/profoundui/proddata/fonts/material_icons.woff2 +0 -0
  23. package/htdocs/profoundui/proddata/images/FlatIcons/24x24/capture-changes.png +0 -0
  24. package/htdocs/profoundui/proddata/js/atrium.js +190 -188
  25. package/htdocs/profoundui/proddata/js/designer.js +4391 -4366
  26. package/htdocs/profoundui/proddata/js/genie.js +2558 -2549
  27. package/htdocs/profoundui/proddata/js/plogic.grids.js +326 -0
  28. package/htdocs/profoundui/proddata/js/runtime.js +1418 -1414
  29. package/htdocs/profoundui/proddata/js/signon.js +101 -99
  30. package/htdocs/profoundui/userdata/html/atrium_login.html +4 -1
  31. package/package.json +3 -1
  32. package/profound.jse +1 -1
  33. package/setup/completeInstall.js +7 -0
  34. package/setup/modules/puiscreens.json +283 -0
  35. package/setup/pjsdist.savf +0 -0
@@ -0,0 +1,237 @@
1
+ /* Body reset and layout */
2
+ body {
3
+ font-family: Arial, sans-serif;
4
+ margin: 0;
5
+ padding: 0;
6
+ display: flex;
7
+ flex-direction: column;
8
+ height: 100vh;
9
+ user-select: none; /* Prevent text selection during resizing */
10
+ overflow: hidden; /* Prevent overall page scrolling */
11
+ }
12
+
13
+ /* Main container with flexible columns */
14
+ .container {
15
+ display: flex;
16
+ flex: 1;
17
+ overflow: hidden;
18
+ }
19
+
20
+ .resizable {
21
+ display: flex;
22
+ width: 100%;
23
+ height: 100%;
24
+ }
25
+
26
+ /* Shared column styling */
27
+ .column {
28
+ padding: 20px;
29
+ box-sizing: border-box;
30
+ border: 1px solid #ccc;
31
+ height: 100%;
32
+ overflow-y: auto;
33
+ }
34
+
35
+ /* Left column */
36
+ .column.left {
37
+ background-color: #f9f9f9;
38
+ flex: 1;
39
+ min-width: 100px;
40
+ }
41
+
42
+ /* Header containing the batch id's */
43
+ .column.left .header {
44
+ margin-bottom: 10px;
45
+ display: flex;
46
+ justify-content: flex-end;
47
+ }
48
+
49
+ .column.left .header button {
50
+ padding: 5px 10px;
51
+ font-size: 14px;
52
+ cursor: pointer;
53
+ }
54
+
55
+ .column.right {
56
+ background-color: #ffffff;
57
+ flex: 1;
58
+ min-width: 100px;
59
+ }
60
+
61
+ /* Resizer handle */
62
+ .resizer {
63
+ width: 5px;
64
+ cursor: ew-resize;
65
+ background-color: #ddd;
66
+ position: relative;
67
+ z-index: 10;
68
+ user-select: none; /* Ensure resizer is not selectable */
69
+ }
70
+
71
+ .resizer:hover {
72
+ background-color: #bbb;
73
+ }
74
+
75
+ /* Individual item styling */
76
+ .item {
77
+ padding: 10px;
78
+ cursor: pointer;
79
+ }
80
+
81
+ .item:hover {
82
+ background-color: #e0e0e0;
83
+ }
84
+
85
+ .item.active {
86
+ background-color: #cce5ff;
87
+ font-weight: bold;
88
+ }
89
+
90
+ .item.active:hover {
91
+ background-color: #cce5ff !important; /* Force the active background even on hover */
92
+ }
93
+
94
+ /* Details section styling */
95
+ .details {
96
+ font-size: 16px;
97
+ color: #333;
98
+ }
99
+
100
+ /* left-align grid headers and filter inputs */
101
+ #run-grid th,
102
+ #run-grid thead input {
103
+ text-align: left;
104
+ }
105
+
106
+ #run-grid {
107
+ width: 100%; /* Expand table to fill available width */
108
+ max-width: 1500px;
109
+ margin: 0;
110
+ table-layout: auto; /* Allow columns to adjust size relative to their content */
111
+ }
112
+
113
+ /* Add padding to table header and data cells except for action cells */
114
+ #run-grid th:not(.action-column),
115
+ #run-grid td:not(.action-cell) {
116
+ padding-left: 10px;
117
+ padding-right: 10px;
118
+ }
119
+
120
+ /* Alternate row colors */
121
+ #run-grid tbody tr:nth-child(even) {
122
+ background-color: #f0f0f0;
123
+ }
124
+
125
+ #run-grid tbody tr:nth-child(odd) {
126
+ background-color: #ffffff;
127
+ }
128
+
129
+ .work-icon {
130
+ display: inline-block;
131
+ width: 30px;
132
+ text-align: center;
133
+ vertical-align: middle;
134
+ margin-right: -1px;
135
+ margin-left: 4px;
136
+ margin-top: 1px;
137
+ cursor: pointer;
138
+ color: #757575;
139
+ }
140
+
141
+ .work-icon:hover {
142
+ color: #1565C0;
143
+ }
144
+
145
+ .batch-text {
146
+ display: inline-block;
147
+ vertical-align: middle;
148
+ }
149
+
150
+ .status-icon {
151
+ display: inline-block;
152
+ width: 30px; /* fixed width for the icon column */
153
+ text-align: center;
154
+ vertical-align: middle;
155
+ margin-right: 2px;
156
+ margin-left: -3px;
157
+ margin-top: 1px;
158
+ }
159
+
160
+ .action-column, .action-cell {
161
+ width: auto;
162
+ text-align: center;
163
+ }
164
+
165
+ .action-cell {
166
+ white-space: nowrap;
167
+ }
168
+
169
+ /* Overall header styling */
170
+ #page-header {
171
+ display: flex;
172
+ justify-content: space-between;
173
+ align-items: center;
174
+ padding: 10px 20px;
175
+ color: #ecf0f1;
176
+ background-color: #555;
177
+ border-bottom: 1px solid #ccc;
178
+ }
179
+
180
+ #page-header h1 {
181
+ margin: 0;
182
+ font-size: 24px;
183
+ }
184
+
185
+ #refresh-button {
186
+ background-color: transparent;
187
+ border: none; /* Remove default border */
188
+ border-radius: 5px;
189
+ color: #ecf0f1;
190
+ font-size: 16px;
191
+ display: flex; /* Align icon and text nicely */
192
+ align-items: center;
193
+ cursor: pointer;
194
+ padding: 5px;
195
+ transition: color 0.3s ease;
196
+ }
197
+
198
+ #refresh-button .material-icons {
199
+ font-size: 20px;
200
+ margin-right: 5px;
201
+ }
202
+
203
+ #refresh-button:hover {
204
+ background-color: #00a0f6;
205
+ }
206
+
207
+ .loading {
208
+ text-align: center;
209
+ padding: 20px;
210
+ font-size: 18px;
211
+ color: #666;
212
+ }
213
+
214
+ .spinner {
215
+ display: block;
216
+ width: 40px;
217
+ height: 40px;
218
+ border: 4px solid rgba(0, 0, 0, 0.1);
219
+ border-radius: 50%;
220
+ border-top-color: #3498db; /* Blue color for the spinner top */
221
+ animation: spin 1s ease-in-out infinite;
222
+ margin: 80px auto 20px auto;
223
+ }
224
+
225
+ @keyframes spin {
226
+ to {
227
+ transform: rotate(360deg);
228
+ }
229
+ }
230
+
231
+ #filter-panel {
232
+ margin-bottom: 10px;
233
+ font-size: 14px;
234
+ }
235
+ #filter-panel label {
236
+ margin-right: 10px;
237
+ }
@@ -583,6 +583,29 @@
583
583
  overflow: auto;
584
584
  }
585
585
 
586
+ /* Dark-mode tables */
587
+ .pai-dark .markdown-body table {
588
+ background-color: #47515f;
589
+ border: 1px solid #dfe2e5;
590
+ }
591
+
592
+ .pai-dark .markdown-body table th,
593
+ .pai-dark .markdown-body table td {
594
+ color: #fff;
595
+ }
596
+
597
+ .pai-dark .markdown-body table th {
598
+ background-color: #47515f;
599
+ }
600
+
601
+ .pai-dark .markdown-body table tr {
602
+ background-color: #6a737d;
603
+ }
604
+
605
+ .pai-dark .markdown-body table tr:nth-child(2n) {
606
+ background-color: #47515f;
607
+ }
608
+
586
609
  .markdown-body table th {
587
610
  font-weight: 600;
588
611
  }