@bpmn-io/form-js-editor 1.4.0 → 1.5.0-alpha.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.
@@ -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';
@@ -4,11 +4,13 @@ declare class MoveFormFieldHandler {
4
4
  * @param { import('../../../FormEditor').default } formEditor
5
5
  * @param { import('../../../core/FormFieldRegistry').default } formFieldRegistry
6
6
  * @param { import('@bpmn-io/form-js-viewer').PathRegistry } pathRegistry
7
+ * @param { import('@bpmn-io/form-js-viewer').FormLayouter } formLayouter
7
8
  */
8
- constructor(formEditor: import('../../../FormEditor').default, formFieldRegistry: import('../../../core/FormFieldRegistry').default, pathRegistry: import('@bpmn-io/form-js-viewer').PathRegistry);
9
+ constructor(formEditor: import('../../../FormEditor').default, formFieldRegistry: import('../../../core/FormFieldRegistry').default, pathRegistry: import('@bpmn-io/form-js-viewer').PathRegistry, formLayouter: import('@bpmn-io/form-js-viewer').FormLayouter);
9
10
  _formEditor: import("../../../FormEditor").default;
10
11
  _formFieldRegistry: import("../../../core/FormFieldRegistry").default;
11
12
  _pathRegistry: import("@bpmn-io/form-js-viewer/dist/types/core/PathRegistry").default;
13
+ _formLayouter: import("@bpmn-io/form-js-viewer/dist/types/core/FormLayouter").default;
12
14
  execute(context: any): void;
13
15
  revert(context: any): void;
14
16
  moveFormField(context: any, revert: any): void;
@@ -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.0",
3
+ "version": "1.5.0-alpha.0",
4
4
  "description": "Edit forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -47,8 +47,8 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "@bpmn-io/draggle": "^4.0.0",
50
- "@bpmn-io/form-js-viewer": "^1.4.0",
51
- "@bpmn-io/properties-panel": "^3.11.0",
50
+ "@bpmn-io/form-js-viewer": "^1.5.0-alpha.0",
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": "cf256b38f256abf7b4d676ea5cd2bdf796b08f31"
65
+ "gitHead": "dd79ef1e87281d69eef0c052069ce4347d1a7468"
66
66
  }