@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.
@@ -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 {};
@@ -0,0 +1,10 @@
1
+ export function EndpointKeyEntry(props: any): {
2
+ id: string;
3
+ component: typeof EndpointKey;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ isDefaultVisible: {};
8
+ }[];
9
+ declare function EndpointKey(props: any): any;
10
+ export {};
@@ -0,0 +1,10 @@
1
+ export function MaxHeightEntry(props: any): {
2
+ id: string;
3
+ component: typeof MaxHeight;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ isDefaultVisible: {};
8
+ }[];
9
+ declare function MaxHeight(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
- onChange: (key: any) => (value: any) => void;
32
- getValue: (key: any) => () => any;
30
+ isEdited: any;
33
31
  isDefaultVisible: {};
34
32
  })[];
35
33
  };
@@ -0,0 +1,12 @@
1
+ export function DownloadSettings(field: any, editField: any): {
2
+ id: string;
3
+ label: string;
4
+ entries: {
5
+ id: string;
6
+ component: (props: any) => any;
7
+ editField: any;
8
+ field: any;
9
+ isEdited: any;
10
+ isDefaultVisible: {};
11
+ }[];
12
+ };
@@ -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";
@@ -0,0 +1,5 @@
1
+ export function EditorDocumentPreview(props: any): import("preact").JSX.Element;
2
+ export namespace EditorDocumentPreview {
3
+ let config: typeof DocumentPreview.config;
4
+ }
5
+ import { DocumentPreview } from '@bpmn-io/form-js-viewer';
@@ -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.12.0",
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.12.0",
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": "10334cbaca59fab5e6e224f901b3b08326233953"
66
+ "gitHead": "bc8a9709133f283c7152ea62331bf2ff5cca0251"
67
67
  }