@bpmn-io/form-js-editor 1.11.0-alpha.0 → 1.11.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.
- package/README.md +1 -0
- package/dist/assets/form-js-editor.css +6 -0
- package/dist/assets/properties-panel.css +6 -0
- package/dist/index.cjs +188 -160
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +189 -161
- package/dist/index.es.js.map +1 -1
- package/dist/types/features/modeling/cmd/Util.d.ts +1 -1
- package/dist/types/features/properties-panel/Util.d.ts +0 -1
- package/dist/types/features/properties-panel/entries/DefaultValueEntry.d.ts +1 -1
- package/dist/types/render/components/editor-form-fields/EditorExpressionField.d.ts +1 -1
- package/package.json +9 -9
- /package/dist/assets/{dragula.css → draggle.css} +0 -0
|
@@ -3,4 +3,4 @@ export function arrayRemove(array: any, index: any): any;
|
|
|
3
3
|
export function updatePath(formFieldRegistry: any, formField: any, index: any): any;
|
|
4
4
|
export function refreshPathsRecursively(formField: any, path: any): void;
|
|
5
5
|
export function updateRow(formField: any, rowId: any): any;
|
|
6
|
-
export {
|
|
6
|
+
export { arrayMoveMutable as arrayMove } from "array-move";
|
|
@@ -9,7 +9,6 @@ export function countDecimals(number: any): any;
|
|
|
9
9
|
*/
|
|
10
10
|
export function isValidNumber(value: unknown): boolean;
|
|
11
11
|
export function stopPropagation(listener: any): (event: any) => void;
|
|
12
|
-
export function textToLabel(text: any): string;
|
|
13
12
|
/**
|
|
14
13
|
* @param {string} path
|
|
15
14
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmn-io/form-js-editor",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"description": "Edit forms - powered by bpmn.io",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"./dist/assets/form-js-editor.css": "./dist/assets/form-js-editor.css",
|
|
12
12
|
"./dist/assets/form-js-editor-base.css": "./dist/assets/form-js-editor-base.css",
|
|
13
|
-
"./dist/assets/dragula.css": "./dist/assets/
|
|
13
|
+
"./dist/assets/dragula.css": "./dist/assets/draggle.css",
|
|
14
14
|
"./dist/assets/properties-panel.css": "./dist/assets/properties-panel.css",
|
|
15
15
|
"./package.json": "./package.json"
|
|
16
16
|
},
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"url": "https://github.com/bpmn-io"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@bpmn-io/draggle": "^4.
|
|
51
|
-
"@bpmn-io/form-js-viewer": "^1.11.
|
|
52
|
-
"@bpmn-io/properties-panel": "^3.
|
|
53
|
-
"array-move": "^
|
|
54
|
-
"big.js": "^6.2.
|
|
50
|
+
"@bpmn-io/draggle": "^4.1.1",
|
|
51
|
+
"@bpmn-io/form-js-viewer": "^1.11.1",
|
|
52
|
+
"@bpmn-io/properties-panel": "^3.24.1",
|
|
53
|
+
"array-move": "^4.0.0",
|
|
54
|
+
"big.js": "^6.2.2",
|
|
55
55
|
"ids": "^1.0.5",
|
|
56
|
-
"min-dash": "^4.2.
|
|
56
|
+
"min-dash": "^4.2.2",
|
|
57
57
|
"min-dom": "^4.1.0",
|
|
58
58
|
"preact": "^10.5.14"
|
|
59
59
|
},
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"files": [
|
|
64
64
|
"dist"
|
|
65
65
|
],
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "fa5965e45151907b42d679b38b466efa526b1a7b"
|
|
67
67
|
}
|
|
File without changes
|