@bpmn-io/form-js-editor 0.6.1 → 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/index.cjs +197 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +198 -8
- package/dist/index.es.js.map +1 -1
- package/dist/types/render/components/properties-panel/entries/CustomValueEntry.d.ts +1 -0
- package/dist/types/render/components/properties-panel/entries/index.d.ts +1 -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 CustomValueEntry(props: any): any;
|
|
@@ -8,3 +8,4 @@ export { default as KeyEntry } from "./KeyEntry";
|
|
|
8
8
|
export { default as LabelEntry } from "./LabelEntry";
|
|
9
9
|
export { default as TextEntry } from "./TextEntry";
|
|
10
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
|
}
|