@bpmn-io/form-js-editor 1.9.2 → 1.10.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.
@@ -3,4 +3,4 @@ export function arrayRemove(array: any, index: any): any;
3
3
  export function updatePath(formFieldRegistry: any, formField: any, index: any): any;
4
4
  export function refreshPathsRecursively(formField: any, path: any): void;
5
5
  export function updateRow(formField: any, rowId: any): any;
6
- export { mutate as arrayMove } from "array-move";
6
+ export { arrayMoveMutable as arrayMove } from "array-move";
@@ -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,4 @@ 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";
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.10.1",
4
4
  "description": "Edit forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -48,9 +48,9 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@bpmn-io/draggle": "^4.0.0",
51
- "@bpmn-io/form-js-viewer": "^1.9.2",
52
- "@bpmn-io/properties-panel": "^3.20.1",
53
- "array-move": "^3.0.1",
51
+ "@bpmn-io/form-js-viewer": "^1.10.1",
52
+ "@bpmn-io/properties-panel": "^3.23.0",
53
+ "array-move": "^4.0.0",
54
54
  "big.js": "^6.2.1",
55
55
  "ids": "^1.0.5",
56
56
  "min-dash": "^4.2.1",
@@ -63,5 +63,5 @@
63
63
  "files": [
64
64
  "dist"
65
65
  ],
66
- "gitHead": "74ba40e6fad356dad63315d3270b4ee61aec4058"
66
+ "gitHead": "4bc566fc163797bfce5df7d6544f271e4d44e1e2"
67
67
  }