@bpmn-io/form-js-editor 1.8.3 → 1.8.5
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/README.md +145 -152
- package/dist/assets/form-js-editor-base.css +31 -93
- package/dist/assets/form-js-editor.css +20 -80
- package/dist/index.cjs +67 -63
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +67 -63
- package/dist/index.es.js.map +1 -1
- package/dist/types/features/properties-panel/Util.d.ts +6 -6
- package/dist/types/types.d.ts +27 -29
- package/package.json +3 -3
|
@@ -11,18 +11,18 @@ export function isValidNumber(value: unknown): boolean;
|
|
|
11
11
|
export function stopPropagation(listener: any): (event: any) => void;
|
|
12
12
|
export function textToLabel(text: any): string;
|
|
13
13
|
/**
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
* @param {string} path
|
|
15
|
+
*/
|
|
16
16
|
export function isValidDotPath(path: string): boolean;
|
|
17
17
|
/**
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
* @param {string} path
|
|
19
|
+
*/
|
|
20
20
|
export function isProhibitedPath(path: string): boolean;
|
|
21
21
|
export function hasEntryConfigured(formFieldDefinition: any, entryId: any): any;
|
|
22
22
|
export function hasOptionsGroupsConfigured(formFieldDefinition: any): any;
|
|
23
23
|
/**
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
* @param {string} path
|
|
25
|
+
*/
|
|
26
26
|
export function hasIntegerPathSegment(path: string): boolean;
|
|
27
27
|
export const LABELED_NON_INPUTS: string[];
|
|
28
28
|
export const INPUTS: string[];
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1,29 +1,27 @@
|
|
|
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
|
-
};
|
|
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 { Injector };
|
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.5",
|
|
4
4
|
"description": "Edit forms - powered by bpmn.io",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@bpmn-io/draggle": "^4.0.0",
|
|
51
|
-
"@bpmn-io/form-js-viewer": "^1.8.
|
|
51
|
+
"@bpmn-io/form-js-viewer": "^1.8.5",
|
|
52
52
|
"@bpmn-io/properties-panel": "^3.18.1",
|
|
53
53
|
"array-move": "^3.0.1",
|
|
54
54
|
"big.js": "^6.2.1",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"files": [
|
|
64
64
|
"dist"
|
|
65
65
|
],
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "cc2823143bb6974e9c1355e4af494164122fd829"
|
|
67
67
|
}
|