@bpmn-io/form-js-editor 1.8.6 → 1.8.8

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.
@@ -37,4 +37,3 @@ export type PaletteEntry = {
37
37
  icon: preact.FunctionalComponent;
38
38
  iconUrl: string;
39
39
  };
40
- import { PaletteEntry } from './PaletteEntry';
@@ -44,10 +44,5 @@ export type PropertiesPanelConfig = {
44
44
  export type EventBus = import('../../core/EventBus').EventBus;
45
45
  export type Injector = import('../../types').Injector;
46
46
  export type PropertiesProvider = {
47
- getGroups: ({ formField, editFormField }: {
48
- formField: any;
49
- editFormField: any;
50
- }) => ({ groups }: {
51
- groups: any;
52
- }) => any[];
47
+ getGroups: ({ formField, editFormField }) => ({ groups }) => any[];
53
48
  };
@@ -1,5 +1,4 @@
1
1
  export function StaticColumnsSourceEntry(props: any): {
2
2
  items: any;
3
3
  add: (event: any) => void;
4
- shouldSort: boolean;
5
4
  };
@@ -1,5 +1,4 @@
1
1
  export function StaticOptionsSourceEntry(props: any): {
2
2
  items: any;
3
3
  add: (e: any) => void;
4
- shouldSort: boolean;
5
4
  };
@@ -19,7 +19,6 @@ export function CustomPropertiesGroup(field: any, editField: any): {
19
19
  }[];
20
20
  label: string;
21
21
  tooltip: string;
22
- shouldSort: boolean;
23
22
  };
24
23
  /**
25
24
  * Returns copy of object without key.
@@ -1,6 +1,6 @@
1
1
  export function editorFormFieldClasses(type: any, { disabled }?: {
2
2
  disabled?: boolean;
3
- }): any;
3
+ }): string;
4
4
  /**
5
5
  * Add a dragger that calls back the passed function with
6
6
  * { event, delta } on drag.
@@ -2,7 +2,7 @@
2
2
  * @param {import('@bpmn-io/form-js-viewer/src/render/components/form-fields/Table').Props} props
3
3
  * @returns {import("preact").JSX.Element}
4
4
  */
5
- export function EditorTable(props: any): import("preact").JSX.Element;
5
+ export function EditorTable(props: import('@bpmn-io/form-js-viewer/src/render/components/form-fields/Table').Props): import("preact").JSX.Element;
6
6
  export namespace EditorTable {
7
7
  let config: typeof Table.config;
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-editor",
3
- "version": "1.8.6",
3
+ "version": "1.8.8",
4
4
  "description": "Edit forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -48,13 +48,13 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@bpmn-io/draggle": "^4.0.0",
51
- "@bpmn-io/form-js-viewer": "^1.8.6",
52
- "@bpmn-io/properties-panel": "^3.18.1",
51
+ "@bpmn-io/form-js-viewer": "^1.8.8",
52
+ "@bpmn-io/properties-panel": "^3.20.1",
53
53
  "array-move": "^3.0.1",
54
54
  "big.js": "^6.2.1",
55
- "ids": "^1.0.0",
55
+ "ids": "^1.0.5",
56
56
  "min-dash": "^4.2.1",
57
- "min-dom": "^5.0.0",
57
+ "min-dom": "^4.1.0",
58
58
  "preact": "^10.5.14"
59
59
  },
60
60
  "sideEffects": [
@@ -63,5 +63,5 @@
63
63
  "files": [
64
64
  "dist"
65
65
  ],
66
- "gitHead": "a3222e98b2334fa0d53887cb8bb25ab3665c2b91"
66
+ "gitHead": "7549b6d3423ae88e877510bb0c8ac27ab8d07758"
67
67
  }