@bpmn-io/form-js-editor 1.10.1 → 1.11.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.
@@ -9,7 +9,6 @@ export function countDecimals(number: any): any;
9
9
  */
10
10
  export function isValidNumber(value: unknown): boolean;
11
11
  export function stopPropagation(listener: any): (event: any) => void;
12
- export function textToLabel(text: any): string;
13
12
  /**
14
13
  * @param {string} path
15
14
  */
@@ -0,0 +1,10 @@
1
+ export function AcceptEntry(props: any): {
2
+ id: string;
3
+ component: typeof Accept;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ isDefaultVisible: {};
8
+ }[];
9
+ declare function Accept(props: any): any;
10
+ export {};
@@ -7,6 +7,6 @@ export function DefaultValueEntry(props: any): {
7
7
  id: string;
8
8
  label: string;
9
9
  }[];
10
- export const EMPTY_OPTION: any;
10
+ export const EMPTY_OPTION: "";
11
11
  declare function DefaultValueCheckbox(props: any): any;
12
12
  export {};
@@ -0,0 +1,10 @@
1
+ export function MultipleEntry(props: any): {
2
+ id: string;
3
+ component: typeof Multiple;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ isDefaultVisible: {};
8
+ }[];
9
+ declare function Multiple(props: any): any;
10
+ export {};
@@ -40,3 +40,5 @@ export { HeadersSourceSelectEntry } from "./HeadersSourceSelectEntry";
40
40
  export { ColumnsExpressionEntry } from "./ColumnsExpressionEntry";
41
41
  export { StaticColumnsSourceEntry } from "./StaticColumnsSourceEntry";
42
42
  export { VersionTagEntry } from "./VersionTagEntry";
43
+ export { AcceptEntry } from "./AcceptEntry";
44
+ export { MultipleEntry } from "./MultipleEntry";
@@ -6,7 +6,7 @@ export namespace EditorExpressionField {
6
6
  computeOn: string;
7
7
  };
8
8
  type: "expression";
9
- label: string;
9
+ name: string;
10
10
  group: string;
11
11
  keyed: boolean;
12
12
  emptyValue: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "1.10.1",
3
+ "version": "1.11.0",
4
4
  "description": "Edit forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "./dist/assets/form-js-editor.css": "./dist/assets/form-js-editor.css",
12
12
  "./dist/assets/form-js-editor-base.css": "./dist/assets/form-js-editor-base.css",
13
- "./dist/assets/dragula.css": "./dist/assets/dragula.css",
13
+ "./dist/assets/dragula.css": "./dist/assets/draggle.css",
14
14
  "./dist/assets/properties-panel.css": "./dist/assets/properties-panel.css",
15
15
  "./package.json": "./package.json"
16
16
  },
@@ -47,13 +47,13 @@
47
47
  "url": "https://github.com/bpmn-io"
48
48
  },
49
49
  "dependencies": {
50
- "@bpmn-io/draggle": "^4.0.0",
51
- "@bpmn-io/form-js-viewer": "^1.10.1",
52
- "@bpmn-io/properties-panel": "^3.23.0",
50
+ "@bpmn-io/draggle": "^4.1.1",
51
+ "@bpmn-io/form-js-viewer": "^1.11.0",
52
+ "@bpmn-io/properties-panel": "^3.24.1",
53
53
  "array-move": "^4.0.0",
54
- "big.js": "^6.2.1",
54
+ "big.js": "^6.2.2",
55
55
  "ids": "^1.0.5",
56
- "min-dash": "^4.2.1",
56
+ "min-dash": "^4.2.2",
57
57
  "min-dom": "^4.1.0",
58
58
  "preact": "^10.5.14"
59
59
  },
@@ -63,5 +63,5 @@
63
63
  "files": [
64
64
  "dist"
65
65
  ],
66
- "gitHead": "4bc566fc163797bfce5df7d6544f271e4d44e1e2"
66
+ "gitHead": "d1731fe95e832b1408564d14dc6d4a139a6a90ab"
67
67
  }
File without changes