@bpmn-io/form-js-editor 1.9.2 → 1.11.0-alpha.0

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 AcceptEntry(props: any): {
2
+ id: string;
3
+ component: typeof Accept;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ isDefaultVisible: {};
8
+ }[];
9
+ declare function Accept(props: any): any;
10
+ export {};
@@ -0,0 +1,10 @@
1
+ export function MultipleEntry(props: any): {
2
+ id: string;
3
+ component: typeof Multiple;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ isDefaultVisible: {};
8
+ }[];
9
+ declare function Multiple(props: any): any;
10
+ export {};
@@ -0,0 +1,10 @@
1
+ export function VersionTagEntry(props: any): {
2
+ id: string;
3
+ component: typeof VersionTag;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ isDefaultVisible: {};
8
+ }[];
9
+ declare function VersionTag(props: any): any;
10
+ export {};
@@ -39,3 +39,6 @@ export { RowCountEntry } from "./RowCountEntry";
39
39
  export { HeadersSourceSelectEntry } from "./HeadersSourceSelectEntry";
40
40
  export { ColumnsExpressionEntry } from "./ColumnsExpressionEntry";
41
41
  export { StaticColumnsSourceEntry } from "./StaticColumnsSourceEntry";
42
+ export { VersionTagEntry } from "./VersionTagEntry";
43
+ export { AcceptEntry } from "./AcceptEntry";
44
+ export { MultipleEntry } from "./MultipleEntry";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "1.9.2",
3
+ "version": "1.11.0-alpha.0",
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.9.2",
51
+ "@bpmn-io/form-js-viewer": "^1.11.0-alpha.0",
52
52
  "@bpmn-io/properties-panel": "^3.20.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": "74ba40e6fad356dad63315d3270b4ee61aec4058"
66
+ "gitHead": "05c03607877ce52cf7ea96e71b5819ea17c1a8b4"
67
67
  }