@bpmn-io/form-js-viewer 1.6.1 → 1.6.3

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.
@@ -1,3 +1,4 @@
1
1
  export function sanitizeDateTimePickerValue(options: any): string;
2
+ export function hasEqualValue(value: any, array: any): boolean;
2
3
  export function sanitizeSingleSelectValue(options: any): any;
3
4
  export function sanitizeMultiSelectValue(options: any): any;
@@ -0,0 +1,2 @@
1
+ export default useFlushDebounce;
2
+ declare function useFlushDebounce(func: any, additionalDeps?: any[]): ((...args: any[]) => void)[];
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This hook allows us to retrieve the label from a value in linear time by caching it in a map
3
+ * @param {Array} options
4
+ */
5
+ export function useGetLabelCorrelation(options: any[]): (value: any) => any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-viewer",
3
- "version": "1.6.1",
3
+ "version": "1.6.3",
4
4
  "description": "View forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -52,6 +52,7 @@
52
52
  "feelin": "^3.0.0",
53
53
  "flatpickr": "^4.6.13",
54
54
  "ids": "^1.0.0",
55
+ "lodash.isequal": "^4.5.0",
55
56
  "min-dash": "^4.0.0",
56
57
  "preact": "^10.5.14",
57
58
  "preact-markup": "^2.1.1",
@@ -63,5 +64,5 @@
63
64
  "files": [
64
65
  "dist"
65
66
  ],
66
- "gitHead": "c59b08af1e6ca1c2259db942686d0b2151a4a64b"
67
+ "gitHead": "d3c930ad19aa6a68179e47b1a24fd8353e962ebf"
67
68
  }