@bpmn-io/form-js-editor 0.4.4 → 0.6.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.
@@ -21,6 +21,11 @@ export default class FormEditor {
21
21
  * @param {FormEditorOptions} options
22
22
  */
23
23
  constructor(options?: FormEditorOptions);
24
+ /**
25
+ * @public
26
+ * @type {String}
27
+ */
28
+ public _id: string;
24
29
  /**
25
30
  * @private
26
31
  * @type {Element}
@@ -0,0 +1 @@
1
+ export default function SelectEntry(props: any): any;
@@ -5,6 +5,7 @@ export { default as Textarea } from "./Textarea";
5
5
  export { default as TextInput } from "./TextInput";
6
6
  export { default as CheckboxInputEntry } from "./CheckboxInputEntry";
7
7
  export { default as NumberInputEntry } from "./NumberInputEntry";
8
+ export { default as SelectEntry } from "./SelectEntry";
8
9
  export { default as TextareaEntry } from "./TextareaEntry";
9
10
  export { default as TextInputEntry } from "./TextInputEntry";
10
11
  export { default as CollapsibleEntry } from "./CollapsibleEntry";
@@ -0,0 +1 @@
1
+ export default function DefaultValueEntry(props: any): any;
@@ -0,0 +1 @@
1
+ export default function DisabledEntry(props: any): any;
@@ -1,6 +1,8 @@
1
1
  export { default as ActionEntry } from "./ActionEntry";
2
2
  export { default as ColumnsEntry } from "./ColumnsEntry";
3
3
  export { default as DescriptionEntry } from "./DescriptionEntry";
4
+ export { default as DefaultValueEntry } from "./DefaultValueEntry";
5
+ export { default as DisabledEntry } from "./DisabledEntry";
4
6
  export { default as IdEntry } from "./IdEntry";
5
7
  export { default as KeyEntry } from "./KeyEntry";
6
8
  export { default as LabelEntry } from "./LabelEntry";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "0.4.4",
3
+ "version": "0.6.1",
4
4
  "description": "Edit forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -41,7 +41,7 @@
41
41
  "url": "https://github.com/bpmn-io"
42
42
  },
43
43
  "dependencies": {
44
- "@bpmn-io/form-js-viewer": "^0.4.4",
44
+ "@bpmn-io/form-js-viewer": "^0.6.0",
45
45
  "array-move": "^3.0.1",
46
46
  "dragula": "^3.7.3",
47
47
  "ids": "^1.0.0",
@@ -55,5 +55,5 @@
55
55
  "files": [
56
56
  "dist"
57
57
  ],
58
- "gitHead": "84cef6814e67a6aa59023ee588e458f473accb52"
58
+ "gitHead": "5a39527809d6a6545e9e0893c44bfeb8144bbc7f"
59
59
  }