@bpmn-io/form-js-editor 1.8.1 → 1.8.3

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.
@@ -14,6 +14,10 @@ export function textToLabel(text: any): string;
14
14
  * @param {string} path
15
15
  */
16
16
  export function isValidDotPath(path: string): boolean;
17
+ /**
18
+ * @param {string} path
19
+ */
20
+ export function isProhibitedPath(path: string): boolean;
17
21
  export function hasEntryConfigured(formFieldDefinition: any, entryId: any): any;
18
22
  export function hasOptionsGroupsConfigured(formFieldDefinition: any): any;
19
23
  /**
@@ -9,5 +9,6 @@ export namespace EditorExpressionField {
9
9
  label: string;
10
10
  group: string;
11
11
  keyed: boolean;
12
+ emptyValue: any;
12
13
  };
13
14
  }
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "1.8.1",
3
+ "version": "1.8.3",
4
4
  "description": "Edit forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
7
+ "types": "./dist/types/index.d.ts",
7
8
  "import": "./dist/index.es.js",
8
9
  "require": "./dist/index.cjs"
9
10
  },
@@ -47,7 +48,7 @@
47
48
  },
48
49
  "dependencies": {
49
50
  "@bpmn-io/draggle": "^4.0.0",
50
- "@bpmn-io/form-js-viewer": "^1.8.1",
51
+ "@bpmn-io/form-js-viewer": "^1.8.3",
51
52
  "@bpmn-io/properties-panel": "^3.18.1",
52
53
  "array-move": "^3.0.1",
53
54
  "big.js": "^6.2.1",
@@ -62,5 +63,5 @@
62
63
  "files": [
63
64
  "dist"
64
65
  ],
65
- "gitHead": "98d0c362ba37b809703027173c58441c1a2af5c2"
66
+ "gitHead": "5b065bf91f29907ff39fee7f4252d639890bb84f"
66
67
  }