@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.
- package/dist/assets/form-js-editor.css +86 -40
- package/dist/index.cjs +378 -33
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +379 -35
- package/dist/index.es.js.map +1 -1
- package/dist/types/FormEditor.d.ts +5 -0
- package/dist/types/render/components/properties-panel/components/SelectEntry.d.ts +1 -0
- package/dist/types/render/components/properties-panel/components/index.d.ts +1 -0
- package/dist/types/render/components/properties-panel/entries/CustomValueEntry.d.ts +1 -0
- package/dist/types/render/components/properties-panel/entries/DefaultValueEntry.d.ts +1 -0
- package/dist/types/render/components/properties-panel/entries/index.d.ts +2 -0
- package/dist/types/render/components/properties-panel/groups/CustomValuesGroup.d.ts +10 -0
- package/dist/types/render/components/properties-panel/groups/index.d.ts +1 -0
- package/package.json +3 -3
|
@@ -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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmn-io/form-js-editor",
|
|
3
|
-
"version": "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.
|
|
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": "
|
|
58
|
+
"gitHead": "978132ea4bda84b1045b815e24f2dab9a102ccd9"
|
|
59
59
|
}
|