@bpmn-io/form-js-editor 0.12.0 → 0.12.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.
@@ -150,6 +150,6 @@ export type State = {
150
150
  properties: FormEditorProperties;
151
151
  schema: Schema;
152
152
  };
153
- export type OnEventWithPriority = OnEventWithPriority;
154
- export type OnEventWithOutPriority = OnEventWithOutPriority;
153
+ export type OnEventWithPriority = (type: string, priority: number, handler: Function) => void;
154
+ export type OnEventWithOutPriority = (type: string, handler: Function) => void;
155
155
  export type OnEventType = OnEventWithPriority & OnEventWithOutPriority;
@@ -1 +1,2 @@
1
1
  export default function DefaultOptionEntry(props: any): any[];
2
+ export const EMPTY_OPTION: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "0.12.0",
3
+ "version": "0.12.2",
4
4
  "description": "Edit forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -27,7 +27,7 @@
27
27
  "example:dev": "cd example && npm start",
28
28
  "lint": "run-s lint:*",
29
29
  "lint:eslint": "eslint .",
30
- "generate-types": "tsc --allowJs --skipLibCheck --declaration --emitDeclarationOnly --outDir dist/types src/index.js && copyfiles src/**.d.ts dist/types",
30
+ "generate-types": "tsc --allowJs --skipLibCheck --declaration --emitDeclarationOnly --outDir dist/types src/index.js && copyfiles --flat src/**.d.ts dist/types",
31
31
  "test": "cross-env NODE_ENV=test karma start",
32
32
  "prepublishOnly": "npm run build"
33
33
  },
@@ -42,7 +42,7 @@
42
42
  "url": "https://github.com/bpmn-io"
43
43
  },
44
44
  "dependencies": {
45
- "@bpmn-io/form-js-viewer": "^0.12.0",
45
+ "@bpmn-io/form-js-viewer": "^0.12.2",
46
46
  "@bpmn-io/properties-panel": "^1.2.0",
47
47
  "array-move": "^3.0.1",
48
48
  "big.js": "^6.2.1",
@@ -58,5 +58,5 @@
58
58
  "files": [
59
59
  "dist"
60
60
  ],
61
- "gitHead": "a0f3d50d21422053ebd8aeb933fb026ccf8d9209"
61
+ "gitHead": "38ab0923aff2de4e04094ddd8465cc201863dc9f"
62
62
  }
File without changes