@bpmn-io/form-js-editor 1.7.2 → 1.8.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.
@@ -155,6 +155,7 @@ export class FormEditor {
155
155
  selection: (string | typeof import("./features/selection/Selection").Selection)[];
156
156
  selectionBehavior: (string | typeof import("./features/selection/SelectionBehavior").SelectionBehavior)[];
157
157
  } | {
158
+ __init__: string[];
158
159
  palette: (string | typeof import("./features/palette/PaletteRenderer").PaletteRenderer)[];
159
160
  } | {
160
161
  __depends__: any[];
@@ -1,4 +1,5 @@
1
1
  export namespace PaletteModule {
2
+ let __init__: string[];
2
3
  let palette: (string | typeof PaletteRenderer)[];
3
4
  }
4
5
  import { PaletteRenderer } from './PaletteRenderer';
@@ -0,0 +1,10 @@
1
+ export function ExpressionFieldEntries(props: any): {
2
+ id: string;
3
+ component: typeof ExpressionFieldExpression;
4
+ isEdited: any;
5
+ editField: any;
6
+ field: any;
7
+ isDefaultVisible: {};
8
+ }[];
9
+ declare function ExpressionFieldExpression(props: any): any;
10
+ export {};
@@ -16,6 +16,7 @@ export { TextEntry } from "./TextEntry";
16
16
  export { HtmlEntry } from "./HtmlEntry";
17
17
  export { HeightEntry } from "./HeightEntry";
18
18
  export { NumberEntries } from "./NumberEntries";
19
+ export { ExpressionFieldEntries } from "./ExpressionFieldEntries";
19
20
  export { NumberSerializationEntry } from "./NumberSerializationEntry";
20
21
  export { DateTimeEntry } from "./DateTimeEntry";
21
22
  export { DateTimeConstraintsEntry } from "./DateTimeConstraintsEntry";
@@ -0,0 +1,13 @@
1
+ export function EditorExpressionField(props: any): import("preact").JSX.Element;
2
+ export namespace EditorExpressionField {
3
+ let config: {
4
+ escapeGridRender: boolean;
5
+ create(options?: {}): {
6
+ computeOn: string;
7
+ };
8
+ type: "expression";
9
+ label: string;
10
+ group: string;
11
+ keyed: boolean;
12
+ };
13
+ }
@@ -1,5 +1,6 @@
1
- export const editorFormFields: (typeof EditorIFrame | typeof EditorText | typeof EditorHtml | typeof EditorTable)[];
1
+ export const editorFormFields: (typeof EditorIFrame | typeof EditorText | typeof EditorHtml | typeof EditorTable | typeof EditorExpressionField)[];
2
2
  import { EditorIFrame } from './EditorIFrame';
3
3
  import { EditorText } from './EditorText';
4
4
  import { EditorHtml } from './EditorHtml';
5
5
  import { EditorTable } from './EditorTable';
6
+ import { EditorExpressionField } from './EditorExpressionField';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "1.7.2",
3
+ "version": "1.8.0",
4
4
  "description": "Edit forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -47,7 +47,7 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "@bpmn-io/draggle": "^4.0.0",
50
- "@bpmn-io/form-js-viewer": "^1.7.2",
50
+ "@bpmn-io/form-js-viewer": "^1.8.0",
51
51
  "@bpmn-io/properties-panel": "^3.18.1",
52
52
  "array-move": "^3.0.1",
53
53
  "big.js": "^6.2.1",
@@ -62,5 +62,5 @@
62
62
  "files": [
63
63
  "dist"
64
64
  ],
65
- "gitHead": "bcedc83096d7db0d89d64b1d6c0faf776d133dab"
65
+ "gitHead": "ec587c5fb75597a73d3d689fb7a8079499391a8c"
66
66
  }