@bpmn-io/form-js-editor 1.0.0-alpha.8 → 1.0.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 @@
1
+ export default function AutoFocusSelectEntry(props: any): import("preact").JSX.Element;
@@ -0,0 +1 @@
1
+ export { default as AutoFocusSelectEntry } from "./AutoFocusSelect";
@@ -0,0 +1,10 @@
1
+ export default function ValuesExpressionEntry(props: any): {
2
+ id: string;
3
+ component: typeof ValuesExpression;
4
+ label: string;
5
+ isEdited: any;
6
+ editField: any;
7
+ field: any;
8
+ }[];
9
+ declare function ValuesExpression(props: any): any;
10
+ export {};
@@ -5,5 +5,5 @@ export default function ValuesSourceSelectEntry(props: any): {
5
5
  editField: any;
6
6
  field: any;
7
7
  }[];
8
- declare function ValuesSourceSelect(props: any): any;
8
+ declare function ValuesSourceSelect(props: any): import("preact").JSX.Element;
9
9
  export {};
@@ -23,3 +23,4 @@ export { default as StaticValuesSourceEntry } from "./StaticValuesSourceEntry";
23
23
  export { default as AdornerEntry } from "./AdornerEntry";
24
24
  export { default as ReadonlyEntry } from "./ReadonlyEntry";
25
25
  export { ConditionEntry } from "./ConditionEntry";
26
+ export { default as ValuesExpressionEntry } from "./ValuesExpressionEntry";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "1.0.0-alpha.8",
3
+ "version": "1.0.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-alpha.7",
50
- "@bpmn-io/properties-panel": "^2.1.0",
49
+ "@bpmn-io/form-js-viewer": "^1.0.0",
50
+ "@bpmn-io/properties-panel": "^2.2.1",
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": "c4f8349e1f2a5b1e0fbd6fc4e12eb08917516aa6"
65
+ "gitHead": "3a6af85bb648af7fd35347556dc36384da5ee64f"
66
66
  }