profoundjs 6.2.0 → 6.3.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 +21 -2
- package/htdocs/profoundui/proddata/css/profoundui.css +16 -0
- package/htdocs/profoundui/proddata/js/designer.js +3816 -3806
- package/htdocs/profoundui/proddata/js/key_management.js +3 -3
- package/htdocs/profoundui/proddata/js/rich-display-react-component.js +5 -5
- package/htdocs/profoundui/proddata/js/rich-display-vue-component.js +3 -3
- package/htdocs/profoundui/proddata/js/runtime.js +1231 -1228
- package/htdocs/profoundui/proddata/js/soapclient.js +22 -22
- package/index.js +4 -4
- package/package.json +2 -1
- package/profound.jse +1 -1
- package/setup/call.js +1 -1
- package/setup/completeInstall.js +26 -56
- package/setup/convertStartJS.js +40 -30
- package/setup/encrypt_client_file.js +4 -0
- package/setup/install.js +1 -1
- package/setup/install_utils.js +15 -30
- package/setup/lic_client.js +1 -1
- package/setup/modules/papisamples/.noderun/settings.json +5 -0
- package/setup/modules/papisamples/APISample.api.json +313 -0
- package/setup/modules/papisamples/APISample.js +55 -0
- package/setup/modules/papisamples/APISample.json +751 -0
- package/setup/modules/papisamples/README.md +17 -0
- package/setup/modules/papisamples/hobbyshop.csv +6 -0
- package/setup/modules/papisamples/readCSVFile.js +136 -0
- package/setup/pjsdist.savf +0 -0
- package/setup/removeExtraComponents.js +4 -6
- package/setup/setup.js +32 -14
|
@@ -334,13 +334,32 @@ div.pui-wf-arrow {
|
|
|
334
334
|
-ms-user-select: none;
|
|
335
335
|
}
|
|
336
336
|
|
|
337
|
+
div.pui-wf-comment {
|
|
338
|
+
color: #999999;
|
|
339
|
+
font-size: 15px;
|
|
340
|
+
float: left;
|
|
341
|
+
position: relative;
|
|
342
|
+
top: -45px;
|
|
343
|
+
left: calc(100% - 69px);
|
|
344
|
+
cursor: pointer;
|
|
345
|
+
visibility: visible;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
div.pui-wf-comment-empty {
|
|
349
|
+
visibility: hidden;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
div.pui-wf-comment:hover {
|
|
353
|
+
color: #ef8200;
|
|
354
|
+
}
|
|
355
|
+
|
|
337
356
|
div.pui-wf-edit {
|
|
338
357
|
color: #999999;
|
|
339
358
|
font-size: 15px;
|
|
340
359
|
float: left;
|
|
341
360
|
position: relative;
|
|
342
361
|
top: -45px;
|
|
343
|
-
left: calc(100% -
|
|
362
|
+
left: calc(100% - 61px);
|
|
344
363
|
cursor: pointer;
|
|
345
364
|
}
|
|
346
365
|
|
|
@@ -354,7 +373,7 @@ div.pui-wf-remove {
|
|
|
354
373
|
float: left;
|
|
355
374
|
position: relative;
|
|
356
375
|
top: -45px;
|
|
357
|
-
left: calc(100% -
|
|
376
|
+
left: calc(100% - 53px);
|
|
358
377
|
cursor: pointer;
|
|
359
378
|
}
|
|
360
379
|
|
|
@@ -323,6 +323,10 @@ img {
|
|
|
323
323
|
background-repeat: repeat-x;
|
|
324
324
|
}
|
|
325
325
|
|
|
326
|
+
Input[type="date"]{
|
|
327
|
+
display: -webkit-box;
|
|
328
|
+
}
|
|
329
|
+
|
|
326
330
|
INPUT.enhanced-input {
|
|
327
331
|
font-family: Consolas, Monospace;
|
|
328
332
|
font-size: 14px;
|
|
@@ -4353,6 +4357,18 @@ a.ui-link-inherit {
|
|
|
4353
4357
|
}
|
|
4354
4358
|
|
|
4355
4359
|
/* misc */
|
|
4360
|
+
.readOnly {
|
|
4361
|
+
filter: contrast(0.4);
|
|
4362
|
+
background-color: #FFFFFF;
|
|
4363
|
+
cursor: default;
|
|
4364
|
+
}
|
|
4365
|
+
.readOnly > input {
|
|
4366
|
+
cursor: default;
|
|
4367
|
+
}
|
|
4368
|
+
|
|
4369
|
+
.hidden {
|
|
4370
|
+
display: none;
|
|
4371
|
+
}
|
|
4356
4372
|
|
|
4357
4373
|
.ui-icon-check {
|
|
4358
4374
|
background-position: -252px -1px;
|