@bpmn-io/form-js-viewer 1.8.1 → 1.8.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.
@@ -5,6 +5,7 @@ export namespace ExpressionField {
5
5
  export let label: string;
6
6
  export let group: string;
7
7
  export let keyed: boolean;
8
+ export let emptyValue: any;
8
9
  export let escapeGridRender: boolean;
9
10
  export function create(options?: {}): {
10
11
  computeOn: string;
@@ -9,4 +9,10 @@ export function isDateInputInformationMatching(value: any): boolean;
9
9
  export function serializeDateTime(date: any, time: any, timeSerializingFormat: any): string;
10
10
  export function formatTimezoneOffset(minutes: any): string;
11
11
  export function isInvalidDateString(value: any): boolean;
12
+ export function getNullDateTime(): {
13
+ date: Date;
14
+ time: any;
15
+ };
16
+ export function isValidDate(date: any): boolean;
17
+ export function isValidTime(time: any): boolean;
12
18
  export const ENTER_KEYDOWN_EVENT: KeyboardEvent;
@@ -10,7 +10,6 @@ export { useReadonly } from "./useReadonly";
10
10
  export { useService } from "./useService";
11
11
  export { usePrevious } from "./usePrevious";
12
12
  export { useFlushDebounce } from "./useFlushDebounce";
13
- export { useEffectOnChange } from "./useEffectOnChange";
14
13
  export { useDeepCompareMemoize } from "./useDeepCompareMemoize";
15
14
  export { useSingleLineTemplateEvaluation } from "./useSingleLineTemplateEvaluation";
16
15
  export { useTemplateEvaluation } from "./useTemplateEvaluation";
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@bpmn-io/form-js-viewer",
3
- "version": "1.8.1",
3
+ "version": "1.8.3",
4
4
  "description": "View forms - powered by bpmn.io",
5
5
  "exports": {
6
6
  ".": {
7
+ "types": "./dist/types/index.d.ts",
7
8
  "import": "./dist/index.es.js",
8
9
  "require": "./dist/index.cjs"
9
10
  },
@@ -64,5 +65,5 @@
64
65
  "files": [
65
66
  "dist"
66
67
  ],
67
- "gitHead": "98d0c362ba37b809703027173c58441c1a2af5c2"
68
+ "gitHead": "5b065bf91f29907ff39fee7f4252d639890bb84f"
68
69
  }
@@ -1 +0,0 @@
1
- export function useEffectOnChange(value: any, callback: any, dependencies?: any[]): void;