@bpmn-io/form-js-editor 1.4.0 → 1.4.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/dist/assets/form-js-editor-base.css +11 -0
- package/dist/assets/form-js-editor.css +28 -2
- package/dist/assets/properties-panel.css +17 -2
- package/dist/index.cjs +112 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +113 -10
- package/dist/index.es.js.map +1 -1
- package/dist/types/FormEditor.d.ts +1 -0
- package/dist/types/features/modeling/behavior/ValuesSourceBehavior.d.ts +8 -0
- package/dist/types/features/modeling/behavior/index.d.ts +2 -0
- package/dist/types/features/modeling/index.d.ts +1 -0
- package/package.json +3 -3
|
@@ -122,6 +122,7 @@ export default class FormEditor {
|
|
|
122
122
|
keyBehavior: (string | typeof import("./features/modeling/behavior/KeyBehavior").default)[];
|
|
123
123
|
pathBehavior: (string | typeof import("./features/modeling/behavior/PathBehavior").default)[];
|
|
124
124
|
validateBehavior: (string | typeof import("./features/modeling/behavior/ValidateBehavior").default)[];
|
|
125
|
+
valuesSourceBehavior: (string | typeof import("./features/modeling/behavior/ValuesSourceBehavior").default)[];
|
|
125
126
|
})[];
|
|
126
127
|
__init__: string[];
|
|
127
128
|
formLayoutUpdater: (string | typeof import("./features/modeling/FormLayoutUpdater").default)[];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare class ValuesSourceBehavior extends CommandInterceptor {
|
|
2
|
+
constructor(eventBus: any);
|
|
3
|
+
}
|
|
4
|
+
declare namespace ValuesSourceBehavior {
|
|
5
|
+
const $inject: string[];
|
|
6
|
+
}
|
|
7
|
+
export default ValuesSourceBehavior;
|
|
8
|
+
import CommandInterceptor from 'diagram-js/lib/command/CommandInterceptor';
|
|
@@ -4,9 +4,11 @@ declare namespace _default {
|
|
|
4
4
|
const keyBehavior: (string | typeof KeyBehavior)[];
|
|
5
5
|
const pathBehavior: (string | typeof PathBehavior)[];
|
|
6
6
|
const validateBehavior: (string | typeof ValidateBehavior)[];
|
|
7
|
+
const valuesSourceBehavior: (string | typeof ValuesSourceBehavior)[];
|
|
7
8
|
}
|
|
8
9
|
export default _default;
|
|
9
10
|
import IdBehavior from './IdBehavior';
|
|
10
11
|
import KeyBehavior from './KeyBehavior';
|
|
11
12
|
import PathBehavior from './PathBehavior';
|
|
12
13
|
import ValidateBehavior from './ValidateBehavior';
|
|
14
|
+
import ValuesSourceBehavior from './ValuesSourceBehavior';
|
|
@@ -5,6 +5,7 @@ declare namespace _default {
|
|
|
5
5
|
keyBehavior: (string | typeof import("./behavior/KeyBehavior").default)[];
|
|
6
6
|
pathBehavior: (string | typeof import("./behavior/PathBehavior").default)[];
|
|
7
7
|
validateBehavior: (string | typeof import("./behavior/ValidateBehavior").default)[];
|
|
8
|
+
valuesSourceBehavior: (string | typeof import("./behavior/ValuesSourceBehavior").default)[];
|
|
8
9
|
})[];
|
|
9
10
|
const __init__: string[];
|
|
10
11
|
const formLayoutUpdater: (string | typeof FormLayoutUpdater)[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmn-io/form-js-editor",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "Edit forms - powered by bpmn.io",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@bpmn-io/draggle": "^4.0.0",
|
|
50
50
|
"@bpmn-io/form-js-viewer": "^1.4.0",
|
|
51
|
-
"@bpmn-io/properties-panel": "^3.
|
|
51
|
+
"@bpmn-io/properties-panel": "^3.13.0",
|
|
52
52
|
"array-move": "^3.0.1",
|
|
53
53
|
"big.js": "^6.2.1",
|
|
54
54
|
"ids": "^1.0.0",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"files": [
|
|
63
63
|
"dist"
|
|
64
64
|
],
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "1ef256645701ac8be771e3cd4b51e3eefc9c183b"
|
|
66
66
|
}
|