@bpmn-io/form-js-editor 1.0.0 → 1.1.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,9 @@
1
+ export default function SpacerEntry(props: any): {
2
+ id: string;
3
+ component: typeof SpacerHeight;
4
+ isEdited: any;
5
+ editField: any;
6
+ field: any;
7
+ }[];
8
+ declare function SpacerHeight(props: any): any;
9
+ export {};
@@ -9,6 +9,7 @@ export { default as KeyEntry } from "./KeyEntry";
9
9
  export { default as LabelEntry } from "./LabelEntry";
10
10
  export { default as ImageSourceEntry } from "./ImageSourceEntry";
11
11
  export { default as TextEntry } from "./TextEntry";
12
+ export { default as SpacerEntry } from "./SpacerEntry";
12
13
  export { default as NumberEntries } from "./NumberEntries";
13
14
  export { default as NumberSerializationEntry } from "./NumberSerializationEntry";
14
15
  export { default as DateTimeEntry } from "./DateTimeEntry";
@@ -1,2 +1,2 @@
1
1
  export { iconsByType } from "@bpmn-io/form-js-viewer";
2
- export { CloseIcon, DeleteIcon, DraggableIcon, SearchIcon };
2
+ export { CloseIcon, DeleteIcon, DraggableIcon, SearchIcon, EmptyFormIcon };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Edit forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -46,8 +46,8 @@
46
46
  "url": "https://github.com/bpmn-io"
47
47
  },
48
48
  "dependencies": {
49
- "@bpmn-io/form-js-viewer": "^1.0.0",
50
- "@bpmn-io/properties-panel": "^2.2.1",
49
+ "@bpmn-io/form-js-viewer": "^1.1.0",
50
+ "@bpmn-io/properties-panel": "^3.0.0",
51
51
  "array-move": "^3.0.1",
52
52
  "big.js": "^6.2.1",
53
53
  "dragula": "^3.7.3",
@@ -62,5 +62,5 @@
62
62
  "files": [
63
63
  "dist"
64
64
  ],
65
- "gitHead": "3a6af85bb648af7fd35347556dc36384da5ee64f"
65
+ "gitHead": "6bfb194e07fe44d3309744507f9f874cf8e94169"
66
66
  }