@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.
- package/dist/index.cjs +25 -24
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +26 -25
- package/dist/index.es.js.map +1 -1
- package/dist/types/render/components/form-fields/ExpressionField.d.ts +1 -0
- package/dist/types/render/components/util/dateTimeUtil.d.ts +6 -0
- package/dist/types/render/hooks/index.d.ts +0 -1
- package/package.json +3 -2
- package/dist/types/render/hooks/useEffectOnChange.d.ts +0 -1
|
@@ -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.
|
|
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": "
|
|
68
|
+
"gitHead": "5b065bf91f29907ff39fee7f4252d639890bb84f"
|
|
68
69
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export function useEffectOnChange(value: any, callback: any, dependencies?: any[]): void;
|