@acuteinfo/common-base 1.0.7 → 1.0.8
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/components/common/datetime/datePicker.d.ts +5 -0
- package/dist/components/common/datetime/datetimePicker.d.ts +2 -0
- package/dist/components/dynamicForm/typesFields.d.ts +1 -1
- package/dist/components/dynamicForm/utils/extendedFieldTypes.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/registry/rulesEngine/index.d.ts +6 -2
- package/package.json +1 -1
|
@@ -2,7 +2,11 @@ export declare const greaterThanString: (factValue: any, jsonValue: any) => bool
|
|
|
2
2
|
export declare const greaterThanInclusiveString: (factValue: any, jsonValue: any) => boolean;
|
|
3
3
|
export declare const lessThanString: (factValue: any, jsonValue: any) => boolean;
|
|
4
4
|
export declare const lessThanInclusiveString: (factValue: any, jsonValue: any) => boolean;
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const greaterThanDate: (factValue: any, jsonValue: any, options?: {
|
|
6
|
+
ignoreTime: boolean;
|
|
7
|
+
}) => boolean;
|
|
6
8
|
export declare const greaterThanInclusiveDate: (factValue: any, jsonValue: any) => boolean;
|
|
7
|
-
export declare const lessThanDate: (factValue: any, jsonValue: any
|
|
9
|
+
export declare const lessThanDate: (factValue: any, jsonValue: any, options?: {
|
|
10
|
+
ignoreTime: boolean;
|
|
11
|
+
}) => boolean;
|
|
8
12
|
export declare const lessThanInclusiveDate: (factValue: any, jsonValue: any) => boolean;
|