@bpmn-io/form-js-viewer 1.18.0 → 1.20.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.
@@ -2,7 +2,7 @@ export class FormFieldRegistry {
2
2
  constructor(eventBus: any);
3
3
  _eventBus: any;
4
4
  _formFields: {};
5
- _ids: any;
5
+ _ids: Ids;
6
6
  add(formField: any): void;
7
7
  remove(formField: any): void;
8
8
  get(id: any): any;
@@ -14,3 +14,4 @@ export class FormFieldRegistry {
14
14
  export namespace FormFieldRegistry {
15
15
  let $inject: string[];
16
16
  }
17
+ import { Ids } from 'ids';
@@ -19,7 +19,7 @@ export class FormLayouter {
19
19
  constructor(eventBus: any);
20
20
  /** @type Array<FormRows> */
21
21
  _rows: Array<FormRows>;
22
- _ids: any;
22
+ _ids: Ids;
23
23
  _eventBus: any;
24
24
  /**
25
25
  * @param {FormRow} row
@@ -61,3 +61,4 @@ export type FormRows = {
61
61
  formFieldId: string;
62
62
  rows: Array<FormRow>;
63
63
  };
64
+ import { Ids } from 'ids';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-viewer",
3
- "version": "1.18.0",
3
+ "version": "1.20.0",
4
4
  "description": "View forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -45,19 +45,19 @@
45
45
  "url": "https://github.com/bpmn-io"
46
46
  },
47
47
  "dependencies": {
48
- "@carbon/grid": "^11.41.0",
48
+ "@bpmn-io/feelin": "^6.1.0",
49
+ "@carbon/grid": "^11.49.0",
49
50
  "big.js": "^7.0.1",
50
51
  "classnames": "^2.5.1",
51
- "didi": "^10.2.2",
52
- "dompurify": "^3.3.0",
53
- "feelers": "^1.4.0",
54
- "feelin": "^4.6.0",
52
+ "didi": "^11.0.0",
53
+ "dompurify": "^3.3.1",
54
+ "feelers": "^1.5.1",
55
55
  "flatpickr": "^4.6.13",
56
- "ids": "^1.0.5",
57
- "lodash": "^4.17.21",
56
+ "ids": "^3.0.1",
57
+ "lodash": "^4.17.23",
58
58
  "luxon": "^3.7.2",
59
- "marked": "^16.4.1",
60
- "min-dash": "^4.2.3",
59
+ "marked": "^17.0.1",
60
+ "min-dash": "^5.0.0",
61
61
  "preact": "^10.5.14"
62
62
  },
63
63
  "sideEffects": [
@@ -66,5 +66,5 @@
66
66
  "files": [
67
67
  "dist"
68
68
  ],
69
- "gitHead": "a8e0bddaa756386c9d94695bdffec6b4d9df3f16"
69
+ "gitHead": "99083c967e6c5fcd8ad15a96558296eae4e02b69"
70
70
  }