@bpmn-io/form-js-editor 1.8.7 → 1.9.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.
@@ -1,5 +1,6 @@
1
- export namespace PropertiesPanelHeaderProvider {
2
- function getElementLabel(field: any): any;
3
- function getElementIcon(field: any): any;
4
- function getTypeLabel(field: any): any;
5
- }
1
+ export function getPropertiesPanelHeaderProvider(options?: {}): {
2
+ getElementLabel: (field: any) => any;
3
+ getElementIcon: (field: any) => any;
4
+ getTypeLabel: (field: any) => any;
5
+ getDocumentationRef: any;
6
+ };
@@ -1,5 +1,4 @@
1
1
  export function StaticColumnsSourceEntry(props: any): {
2
2
  items: any;
3
3
  add: (event: any) => void;
4
- shouldSort: boolean;
5
4
  };
@@ -1,5 +1,4 @@
1
1
  export function StaticOptionsSourceEntry(props: any): {
2
2
  items: any;
3
3
  add: (e: any) => void;
4
- shouldSort: boolean;
5
4
  };
@@ -19,7 +19,6 @@ export function CustomPropertiesGroup(field: any, editField: any): {
19
19
  }[];
20
20
  label: string;
21
21
  tooltip: string;
22
- shouldSort: boolean;
23
22
  };
24
23
  /**
25
24
  * Returns copy of object without key.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "1.8.7",
3
+ "version": "1.9.0",
4
4
  "description": "Edit forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -48,8 +48,8 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@bpmn-io/draggle": "^4.0.0",
51
- "@bpmn-io/form-js-viewer": "^1.8.7",
52
- "@bpmn-io/properties-panel": "^3.18.2",
51
+ "@bpmn-io/form-js-viewer": "^1.8.8",
52
+ "@bpmn-io/properties-panel": "^3.20.1",
53
53
  "array-move": "^3.0.1",
54
54
  "big.js": "^6.2.1",
55
55
  "ids": "^1.0.5",
@@ -63,5 +63,5 @@
63
63
  "files": [
64
64
  "dist"
65
65
  ],
66
- "gitHead": "aaaaf358018b2410011613345a5e254fccdea891"
66
+ "gitHead": "12f4d5ecd109d90e9203006097918daed1199d91"
67
67
  }