@bpmn-io/form-js-editor 1.8.0 → 1.8.2

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.
@@ -51,6 +51,7 @@ export class FormEditor {
51
51
  */
52
52
  private _state;
53
53
  get: {
54
+ <Name extends never>(name: Name): null[Name];
54
55
  <T>(name: string): T;
55
56
  <T_1>(name: string, strict: true): T_1;
56
57
  <T_2>(name: string, strict: boolean): T_2;
@@ -25,7 +25,7 @@ export class Dragging {
25
25
  _formFieldRegistry: import("../../core/FormFieldRegistry").FormFieldRegistry;
26
26
  _formLayouter: import("@bpmn-io/form-js-viewer").FormLayouter;
27
27
  _formLayoutValidator: import("../../core/FormLayoutValidator").FormLayoutValidator;
28
- _eventBus: import("diagram-js/lib/core/EventBus").default;
28
+ _eventBus: import("diagram-js/lib/core/EventBus").default<null>;
29
29
  _modeling: import("../modeling/Modeling").Modeling;
30
30
  _pathRegistry: import("@bpmn-io/form-js-viewer").PathRegistry;
31
31
  /**
@@ -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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "1.8.0",
3
+ "version": "1.8.2",
4
4
  "description": "Edit forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -47,13 +47,13 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "@bpmn-io/draggle": "^4.0.0",
50
- "@bpmn-io/form-js-viewer": "^1.8.0",
50
+ "@bpmn-io/form-js-viewer": "^1.8.1",
51
51
  "@bpmn-io/properties-panel": "^3.18.1",
52
52
  "array-move": "^3.0.1",
53
53
  "big.js": "^6.2.1",
54
54
  "ids": "^1.0.0",
55
55
  "min-dash": "^4.2.1",
56
- "min-dom": "^4.1.0",
56
+ "min-dom": "^5.0.0",
57
57
  "preact": "^10.5.14"
58
58
  },
59
59
  "sideEffects": [
@@ -62,5 +62,5 @@
62
62
  "files": [
63
63
  "dist"
64
64
  ],
65
- "gitHead": "ec587c5fb75597a73d3d689fb7a8079499391a8c"
65
+ "gitHead": "b2a7445d094381999756e3d08b252e00db30f05f"
66
66
  }