@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 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.2",
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.2",
10
- "@saltcorn/builder": "0.6.2",
11
- "@saltcorn/data": "0.6.2",
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.2",
14
- "@saltcorn/sbadmin2": "0.6.2",
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",
@@ -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 = $(".input-group.search-bar").outerWidth();
589
- $(".dropdown-menu.search-bar").css("width", inputWidth);
590
- var d0pos = $(".input-group.search-bar").offset();
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", ".dropdown-menu.search-bar", function (e) {
592
+ $(document).on("click", "#dm" + id, function (e) {
593
593
  e.stopPropagation();
594
594
  });
595
595
  }
package/routes/plugins.js CHANGED
@@ -511,7 +511,7 @@ const plugin_store_html = (items, req) => {
511
511
  },
512
512
  {
513
513
  besides: items.map(store_item_html(req)),
514
- widths: items.map((item) => 4), // todo warning that item uis unused
514
+ widths: items.map(() => 4),
515
515
  },
516
516
  ],
517
517
  };