@saltcorn/server 0.6.2 → 0.6.3-beta.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/locales/en.json +3 -1
- package/package.json +6 -6
- package/public/saltcorn.js +4 -4
- package/routes/plugins.js +1 -1
package/locales/en.json
CHANGED
|
@@ -843,5 +843,7 @@
|
|
|
843
843
|
"Optional. String type with options, each of which will become a menu section": "Optional. String type with options, each of which will become a menu section",
|
|
844
844
|
"Role to generate API keys": "Role to generate API keys",
|
|
845
845
|
"User should have this role or higher to generate API keys in their user settings": "User should have this role or higher to generate API keys in their user settings",
|
|
846
|
-
"API token removed": "API token removed"
|
|
846
|
+
"API token removed": "API token removed",
|
|
847
|
+
"Row inclusion formula": "Row inclusion formula",
|
|
848
|
+
"Only include rows where this formula is true": "Only include rows where this formula is true"
|
|
847
849
|
}
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saltcorn/server",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3-beta.0",
|
|
4
4
|
"description": "Server app for Saltcorn, open-source no-code platform",
|
|
5
5
|
"homepage": "https://saltcorn.com",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@saltcorn/base-plugin": "0.6.
|
|
10
|
-
"@saltcorn/builder": "0.6.
|
|
11
|
-
"@saltcorn/data": "0.6.
|
|
9
|
+
"@saltcorn/base-plugin": "0.6.3-beta.0",
|
|
10
|
+
"@saltcorn/builder": "0.6.3-beta.0",
|
|
11
|
+
"@saltcorn/data": "0.6.3-beta.0",
|
|
12
12
|
"greenlock-express": "^4.0.3",
|
|
13
|
-
"@saltcorn/markup": "0.6.
|
|
14
|
-
"@saltcorn/sbadmin2": "0.6.
|
|
13
|
+
"@saltcorn/markup": "0.6.3-beta.0",
|
|
14
|
+
"@saltcorn/sbadmin2": "0.6.3-beta.0",
|
|
15
15
|
"@socket.io/cluster-adapter": "^0.1.0",
|
|
16
16
|
"@socket.io/sticky": "^1.0.1",
|
|
17
17
|
"connect-flash": "^0.1.1",
|
package/public/saltcorn.js
CHANGED
|
@@ -585,11 +585,11 @@ function test_formula(tablename, stored) {
|
|
|
585
585
|
function align_dropdown(id) {
|
|
586
586
|
setTimeout(() => {
|
|
587
587
|
if ($("#dm" + id).hasClass("show")) {
|
|
588
|
-
var inputWidth = $("
|
|
589
|
-
$("
|
|
590
|
-
var d0pos = $("
|
|
588
|
+
var inputWidth = $("#search-input-group-" + id).outerWidth();
|
|
589
|
+
$("#dm" + id).css("width", inputWidth);
|
|
590
|
+
var d0pos = $("#search-input-group-" + id).offset();
|
|
591
591
|
$("#dm" + id).offset({ left: d0pos.left });
|
|
592
|
-
$(document).on("click", "
|
|
592
|
+
$(document).on("click", "#dm" + id, function (e) {
|
|
593
593
|
e.stopPropagation();
|
|
594
594
|
});
|
|
595
595
|
}
|
package/routes/plugins.js
CHANGED