@saltcorn/builder 0.7.4-beta.0 → 0.7.4-beta.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saltcorn/builder",
3
- "version": "0.7.4-beta.0",
3
+ "version": "0.7.4-beta.1",
4
4
  "description": "Drag and drop view builder for Saltcorn, open-source no-code platform",
5
5
  "main": "index.js",
6
6
  "homepage": "https://saltcorn.com",
@@ -35,6 +35,7 @@
35
35
  "react-contenteditable": "3.3.5",
36
36
  "react-dom": "16.13.1",
37
37
  "react-transition-group": "4.4.1",
38
+ "@tippyjs/react": "4.2.6",
38
39
  "webpack": "4.43.0",
39
40
  "webpack-cli": "3.3.11",
40
41
  "lodash": "4.17.11"
@@ -19,6 +19,7 @@ import {
19
19
  reactifyStyles,
20
20
  bstyleopt,
21
21
  setAPropGen,
22
+ FormulaTooltip,
22
23
  } from "./utils";
23
24
  import {
24
25
  BorderOuter,
@@ -757,7 +758,7 @@ const ContainerSettings = () => {
757
758
  onChange={setAProp("showIfFormula")}
758
759
  />
759
760
  <div style={{ marginTop: "-5px" }}>
760
- <small className="text-muted font-monospace">FORMULA</small>
761
+ <small className="text-muted font-monospace">FORMULA <FormulaTooltip /></small>
761
762
  </div>
762
763
  </td>
763
764
  </tr>
@@ -16,6 +16,7 @@ import {
16
16
  fetchViewPreview,
17
17
  ConfigForm,
18
18
  setAPropGen,
19
+ FormulaTooltip,
19
20
  } from "./utils";
20
21
 
21
22
  export /**
@@ -158,7 +159,7 @@ const ViewSettings = () => {
158
159
  {(state === "shared" || options.mode === "page") && (
159
160
  <Fragment>
160
161
  {" "}
161
- <label>Extra state Formula</label>
162
+ <label>Extra state Formula <FormulaTooltip /></label>
162
163
  <input
163
164
  type="text"
164
165
  className="viewlink-label form-control"
@@ -15,6 +15,7 @@ import {
15
15
  TextStyleSetting,
16
16
  ButtonOrLinkSettingsRows,
17
17
  setAPropGen,
18
+ FormulaTooltip,
18
19
  } from "./utils";
19
20
 
20
21
  export /**
@@ -157,7 +158,7 @@ const ViewLinkSettings = () => {
157
158
  </tr>
158
159
  <tr>
159
160
  <td colSpan="2">
160
- <label>Extra state Formula</label>
161
+ <label>Extra state Formula <FormulaTooltip /></label>
161
162
  <input
162
163
  type="text"
163
164
  className="viewlink-label form-control"