@bpmn-io/form-js-viewer 1.21.0 → 1.21.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.
@@ -8,4 +8,5 @@ export const FormRenderContext: import("preact").Context<{
8
8
  hoverInfo: {
9
9
  cleanup: () => void;
10
10
  };
11
+ applyVisibilityConditions: boolean;
11
12
  }>;
@@ -1,4 +1,3 @@
1
- export { useCondition } from "./useCondition";
2
1
  export { useDangerousHTMLWrapper } from "./useDangerousHTMLWrapper";
3
2
  export { useSecurityAttributesMap } from "./useSecurityAttributesMap";
4
3
  export { useGetLabelCorrelation } from "./useGetLabelCorrelation";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-viewer",
3
- "version": "1.21.0",
3
+ "version": "1.21.1",
4
4
  "description": "View forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
@@ -66,5 +66,5 @@
66
66
  "files": [
67
67
  "dist"
68
68
  ],
69
- "gitHead": "19daa3fe06157ae0ae52ae27345fc9dc236b61ca"
69
+ "gitHead": "b36907be7a2b3d872369b1c44d5a8b059a5d4c5d"
70
70
  }
@@ -1,8 +0,0 @@
1
- /**
2
- * Evaluate if condition is met reactively based on the expression language and form data.
3
- *
4
- * @param {string | undefined} condition
5
- *
6
- * @returns {boolean | null} true if condition is met, false if not, null if no condition or expression language
7
- */
8
- export function useCondition(condition: string | undefined): boolean | null;