@bpmn-io/form-js-editor 0.9.9 → 0.10.0-alpha.1

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.
@@ -2,6 +2,6 @@ export function arrayAdd(array: any, index: any, item: any): any[];
2
2
  export function arrayRemove(array: any, index: any): any[];
3
3
  export function prefixId(id: any): string;
4
4
  export function stopPropagation(listener: any): (event: any) => void;
5
- export function textToLabel(text?: string): string;
5
+ export function textToLabel(text: any): string;
6
6
  export const INPUTS: string[];
7
7
  export const VALUES_INPUTS: string[];
@@ -9,5 +9,6 @@ export namespace iconsByType {
9
9
  export { TaglistIcon as taglist };
10
10
  export { TextIcon as text };
11
11
  export { TextfieldIcon as textfield };
12
+ export { TextareaIcon as textarea };
12
13
  export { FormIcon as default };
13
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "0.9.9",
3
+ "version": "0.10.0-alpha.1",
4
4
  "description": "Edit forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -42,7 +42,8 @@
42
42
  "url": "https://github.com/bpmn-io"
43
43
  },
44
44
  "dependencies": {
45
- "@bpmn-io/form-js-viewer": "^0.9.9",
45
+ "@bpmn-io/form-js-viewer": "^0.10.0-alpha.1",
46
+ "@bpmn-io/properties-panel": "^0.25.0",
46
47
  "array-move": "^3.0.1",
47
48
  "dragula": "^3.7.3",
48
49
  "ids": "^1.0.0",
@@ -56,5 +57,5 @@
56
57
  "files": [
57
58
  "dist"
58
59
  ],
59
- "gitHead": "a0c48668fabc92d210bd5675986715f262192d77"
60
+ "gitHead": "9bc2d1e01db3a1a38122632fb94f70d1e085243b"
60
61
  }