@bpmn-io/form-js-editor 1.12.0 → 1.13.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/index.cjs +309 -27
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +310 -28
- package/dist/index.es.js.map +1 -1
- package/dist/types/features/properties-panel/entries/DocumentsDataSource.d.ts +10 -0
- package/dist/types/features/properties-panel/entries/EndpointKey.d.ts +10 -0
- package/dist/types/features/properties-panel/entries/MaxHeightEntry.d.ts +10 -0
- package/dist/types/features/properties-panel/entries/index.d.ts +3 -0
- package/dist/types/features/properties-panel/groups/AppearanceGroup.d.ts +1 -3
- package/dist/types/features/properties-panel/groups/DownloadSettings.d.ts +12 -0
- package/dist/types/features/properties-panel/groups/index.d.ts +1 -0
- package/dist/types/render/components/editor-form-fields/EditorDocumentPreview.d.ts +5 -0
- package/dist/types/render/components/editor-form-fields/index.d.ts +2 -1
- package/package.json +3 -3
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export function DocumentsDataSourceEntry(props: any): {
|
|
2
|
+
id: string;
|
|
3
|
+
component: typeof DocumentsDataSource;
|
|
4
|
+
editField: any;
|
|
5
|
+
field: any;
|
|
6
|
+
isEdited: any;
|
|
7
|
+
isDefaultVisible: {};
|
|
8
|
+
}[];
|
|
9
|
+
declare function DocumentsDataSource(props: any): any;
|
|
10
|
+
export {};
|
|
@@ -42,3 +42,6 @@ export { StaticColumnsSourceEntry } from "./StaticColumnsSourceEntry";
|
|
|
42
42
|
export { VersionTagEntry } from "./VersionTagEntry";
|
|
43
43
|
export { AcceptEntry } from "./AcceptEntry";
|
|
44
44
|
export { MultipleEntry } from "./MultipleEntry";
|
|
45
|
+
export { DocumentsDataSourceEntry } from "./DocumentsDataSource";
|
|
46
|
+
export { EndpointKeyEntry } from "./EndpointKey";
|
|
47
|
+
export { MaxHeightEntry } from "./MaxHeightEntry";
|
|
@@ -25,11 +25,9 @@ export function AppearanceGroup(field: any, editField: any, getService: any): {
|
|
|
25
25
|
} | {
|
|
26
26
|
id: string;
|
|
27
27
|
component: (props: any) => any;
|
|
28
|
-
isEdited: any;
|
|
29
28
|
editField: any;
|
|
30
29
|
field: any;
|
|
31
|
-
|
|
32
|
-
getValue: (key: any) => () => any;
|
|
30
|
+
isEdited: any;
|
|
33
31
|
isDefaultVisible: {};
|
|
34
32
|
})[];
|
|
35
33
|
};
|
|
@@ -9,3 +9,4 @@ export { LayoutGroup } from "./LayoutGroup";
|
|
|
9
9
|
export { SecurityAttributesGroup } from "./SecurityAttributesGroup";
|
|
10
10
|
export { ConditionGroup } from "./ConditionGroup";
|
|
11
11
|
export { TableHeaderGroups } from "./TableHeaderGroups";
|
|
12
|
+
export { DownloadSettings } from "./DownloadSettings";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export const editorFormFields: (typeof EditorIFrame | typeof EditorText | typeof EditorHtml | typeof EditorTable | typeof EditorExpressionField)[];
|
|
1
|
+
export const editorFormFields: (typeof EditorIFrame | typeof EditorText | typeof EditorHtml | typeof EditorTable | typeof EditorExpressionField | typeof EditorDocumentPreview)[];
|
|
2
2
|
import { EditorIFrame } from './EditorIFrame';
|
|
3
3
|
import { EditorText } from './EditorText';
|
|
4
4
|
import { EditorHtml } from './EditorHtml';
|
|
5
5
|
import { EditorTable } from './EditorTable';
|
|
6
6
|
import { EditorExpressionField } from './EditorExpressionField';
|
|
7
|
+
import { EditorDocumentPreview } from './EditorDocumentPreview';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmn-io/form-js-editor",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.1",
|
|
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.1.1",
|
|
51
|
-
"@bpmn-io/form-js-viewer": "^1.
|
|
51
|
+
"@bpmn-io/form-js-viewer": "^1.13.1",
|
|
52
52
|
"@bpmn-io/properties-panel": "^3.25.0",
|
|
53
53
|
"array-move": "^4.0.0",
|
|
54
54
|
"big.js": "^6.2.2",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"files": [
|
|
64
64
|
"dist"
|
|
65
65
|
],
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "bc8a9709133f283c7152ea62331bf2ff5cca0251"
|
|
67
67
|
}
|