@bpmn-io/form-js-editor 1.3.0-alpha.0 → 1.3.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.
@@ -147,6 +147,7 @@ export default class FormEditor {
147
147
  expressionLanguage: (string | typeof import("@bpmn-io/form-js-viewer/dist/types/features/expression-language/FeelExpressionLanguage").default)[];
148
148
  templating: (string | typeof import("./features/expression-language/EditorTemplating").default)[];
149
149
  } | typeof MarkdownModule | {
150
+ __depends__: any[];
150
151
  __init__: string[];
151
152
  propertiesPanel: (string | typeof import("./features/properties-panel/PropertiesPanelRenderer").default)[];
152
153
  } | {
@@ -1,4 +1,5 @@
1
1
  declare namespace _default {
2
+ const __depends__: any[];
2
3
  const __init__: string[];
3
4
  const propertiesPanel: (string | typeof PropertiesPanelModule)[];
4
5
  }
@@ -1,29 +1,29 @@
1
- import { Injector } from 'didi';
2
-
3
- export type Module = any;
4
- export type Schema = any;
5
-
6
- export interface FormEditorProperties {
7
- [x: string]: any
8
- }
9
-
10
- export interface FormEditorOptions {
11
- additionalModules?: Module[];
12
- container?: Element | null | string;
13
- exporter?: {
14
- name: string,
15
- version: string
16
- };
17
- injector?: Injector;
18
- modules?: Module[];
19
- properties?: FormEditorProperties;
20
- [x:string]: any;
21
- }
22
-
23
- export interface CreateFormEditorOptions extends FormEditorOptions {
24
- schema?: Schema
25
- }
26
-
27
- export {
28
- Injector
1
+ import { Injector } from 'didi';
2
+
3
+ export type Module = any;
4
+ export type Schema = any;
5
+
6
+ export interface FormEditorProperties {
7
+ [x: string]: any
8
+ }
9
+
10
+ export interface FormEditorOptions {
11
+ additionalModules?: Module[];
12
+ container?: Element | null | string;
13
+ exporter?: {
14
+ name: string,
15
+ version: string
16
+ };
17
+ injector?: Injector;
18
+ modules?: Module[];
19
+ properties?: FormEditorProperties;
20
+ [x:string]: any;
21
+ }
22
+
23
+ export interface CreateFormEditorOptions extends FormEditorOptions {
24
+ schema?: Schema
25
+ }
26
+
27
+ export {
28
+ Injector
29
29
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "1.3.0-alpha.0",
3
+ "version": "1.3.1",
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.3.0-alpha.0",
51
- "@bpmn-io/properties-panel": "^3.3.1",
50
+ "@bpmn-io/form-js-viewer": "^1.3.0",
51
+ "@bpmn-io/properties-panel": "^3.8.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": "dd5504e512c13945767159900dc8cf884834b937"
65
+ "gitHead": "0c629e002118aaabaa538415e3c922e7f5d3ae4c"
66
66
  }