@bpmn-io/form-js-editor 1.8.5 → 1.8.7
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/LICENSE +22 -22
- package/dist/index.cjs +16 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +15 -21
- package/dist/index.es.js.map +1 -1
- package/dist/types/features/palette/components/Palette.d.ts +0 -1
- package/dist/types/features/properties-panel/PropertiesPanelRenderer.d.ts +1 -6
- package/dist/types/render/components/Util.d.ts +1 -1
- package/dist/types/render/components/editor-form-fields/EditorTable.d.ts +1 -1
- package/package.json +6 -6
|
@@ -44,10 +44,5 @@ export type PropertiesPanelConfig = {
|
|
|
44
44
|
export type EventBus = import('../../core/EventBus').EventBus;
|
|
45
45
|
export type Injector = import('../../types').Injector;
|
|
46
46
|
export type PropertiesProvider = {
|
|
47
|
-
getGroups: ({ formField, editFormField }
|
|
48
|
-
formField: any;
|
|
49
|
-
editFormField: any;
|
|
50
|
-
}) => ({ groups }: {
|
|
51
|
-
groups: any;
|
|
52
|
-
}) => any[];
|
|
47
|
+
getGroups: ({ formField, editFormField }) => ({ groups }) => any[];
|
|
53
48
|
};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @param {import('@bpmn-io/form-js-viewer/src/render/components/form-fields/Table').Props} props
|
|
3
3
|
* @returns {import("preact").JSX.Element}
|
|
4
4
|
*/
|
|
5
|
-
export function EditorTable(props:
|
|
5
|
+
export function EditorTable(props: import('@bpmn-io/form-js-viewer/src/render/components/form-fields/Table').Props): import("preact").JSX.Element;
|
|
6
6
|
export namespace EditorTable {
|
|
7
7
|
let config: typeof Table.config;
|
|
8
8
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmn-io/form-js-editor",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.7",
|
|
4
4
|
"description": "Edit forms - powered by bpmn.io",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@bpmn-io/draggle": "^4.0.0",
|
|
51
|
-
"@bpmn-io/form-js-viewer": "^1.8.
|
|
52
|
-
"@bpmn-io/properties-panel": "^3.18.
|
|
51
|
+
"@bpmn-io/form-js-viewer": "^1.8.7",
|
|
52
|
+
"@bpmn-io/properties-panel": "^3.18.2",
|
|
53
53
|
"array-move": "^3.0.1",
|
|
54
54
|
"big.js": "^6.2.1",
|
|
55
|
-
"ids": "^1.0.
|
|
55
|
+
"ids": "^1.0.5",
|
|
56
56
|
"min-dash": "^4.2.1",
|
|
57
|
-
"min-dom": "^
|
|
57
|
+
"min-dom": "^4.1.0",
|
|
58
58
|
"preact": "^10.5.14"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": [
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"files": [
|
|
64
64
|
"dist"
|
|
65
65
|
],
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "aaaaf358018b2410011613345a5e254fccdea891"
|
|
67
67
|
}
|