@bpmn-io/form-js-editor 0.5.0 → 0.7.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.
@@ -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 CustomValueEntry(props: any): any;
@@ -0,0 +1 @@
1
+ export default function DefaultValueEntry(props: any): any;
@@ -1,9 +1,11 @@
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";
4
5
  export { default as DisabledEntry } from "./DisabledEntry";
5
6
  export { default as IdEntry } from "./IdEntry";
6
7
  export { default as KeyEntry } from "./KeyEntry";
7
8
  export { default as LabelEntry } from "./LabelEntry";
8
9
  export { default as TextEntry } from "./TextEntry";
9
10
  export { default as ValueEntry } from "./ValueEntry";
11
+ export { default as CustomValueEntry } from "./CustomValueEntry";
@@ -0,0 +1,10 @@
1
+ export default function CustomValuesGroup(field: any, editField: any): any;
2
+ /**
3
+ * Returns copy of object without key.
4
+ *
5
+ * @param {Object} properties
6
+ * @param {string} oldKey
7
+ *
8
+ * @returns {Object}
9
+ */
10
+ export function removeKey(properties: any, oldKey: string): any;
@@ -1,3 +1,4 @@
1
1
  export { default as GeneralGroup } from "./GeneralGroup";
2
2
  export { default as ValidationGroup } from "./ValidationGroup";
3
3
  export { default as ValuesGroup } from "./ValuesGroup";
4
+ export { default as CustomValuesGroup } from "./CustomValuesGroup";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "0.5.0",
3
+ "version": "0.7.0",
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.5.0",
44
+ "@bpmn-io/form-js-viewer": "^0.7.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": "2ed4216591eb2b12844f251716a33acb9c5cb09c"
58
+ "gitHead": "978132ea4bda84b1045b815e24f2dab9a102ccd9"
59
59
  }