@bpmn-io/form-js-editor 1.6.2 → 1.6.4
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/README.md +152 -152
- package/dist/assets/form-js-editor-base.css +863 -863
- package/dist/index.cjs +347 -347
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +347 -347
- package/dist/index.es.js.map +1 -1
- package/dist/types/FormEditor.d.ts +0 -20
- package/dist/types/types.d.ts +28 -28
- package/package.json +3 -3
|
@@ -131,26 +131,6 @@ export default class FormEditor {
|
|
|
131
131
|
validateBehavior: (string | typeof import("./features/modeling/behavior/ValidateBehavior").default)[];
|
|
132
132
|
optionsSourceBehavior: (string | typeof import("./features/modeling/behavior/OptionsSourceBehavior").default)[];
|
|
133
133
|
columnsSourceBehavior: (string | typeof import("./features/modeling/behavior/ColumnsSourceBehavior").ColumnsSourceBehavior)[];
|
|
134
|
-
/**
|
|
135
|
-
* @typedef { import('./types').Injector } Injector
|
|
136
|
-
* @typedef { import('./types').Module } Module
|
|
137
|
-
* @typedef { import('./types').Schema } Schema
|
|
138
|
-
*
|
|
139
|
-
* @typedef { import('./types').FormEditorOptions } FormEditorOptions
|
|
140
|
-
* @typedef { import('./types').FormEditorProperties } FormEditorProperties
|
|
141
|
-
*
|
|
142
|
-
* @typedef { {
|
|
143
|
-
* properties: FormEditorProperties,
|
|
144
|
-
* schema: Schema
|
|
145
|
-
* } } State
|
|
146
|
-
*
|
|
147
|
-
* @typedef { (type:string, priority:number, handler:Function) => void } OnEventWithPriority
|
|
148
|
-
* @typedef { (type:string, handler:Function) => void } OnEventWithOutPriority
|
|
149
|
-
* @typedef { OnEventWithPriority & OnEventWithOutPriority } OnEventType
|
|
150
|
-
*/
|
|
151
|
-
/**
|
|
152
|
-
* The form editor.
|
|
153
|
-
*/
|
|
154
134
|
tableDataSourceBehavior: (string | typeof import("./features/modeling/behavior/TableDataSourceBehavior").TableDataSourceBehavior)[];
|
|
155
135
|
})[];
|
|
156
136
|
__init__: string[];
|
package/dist/types/types.d.ts
CHANGED
|
@@ -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.6.
|
|
3
|
+
"version": "1.6.4",
|
|
4
4
|
"description": "Edit forms - powered by bpmn.io",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@bpmn-io/draggle": "^4.0.0",
|
|
50
|
-
"@bpmn-io/form-js-viewer": "^1.6.
|
|
50
|
+
"@bpmn-io/form-js-viewer": "^1.6.4",
|
|
51
51
|
"@bpmn-io/properties-panel": "^3.13.0",
|
|
52
52
|
"array-move": "^3.0.1",
|
|
53
53
|
"big.js": "^6.2.1",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"files": [
|
|
63
63
|
"dist"
|
|
64
64
|
],
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "81778692a8965f1bc6aadb3ff6a94df4202099e8"
|
|
66
66
|
}
|