@acuteinfo/common-base 1.0.27 → 1.0.29
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/select/select.d.ts +2 -5
- package/dist/components/common/textField/textField.d.ts +3 -5
- package/dist/components/dataTable/backdrop.d.ts +1 -1
- package/dist/components/dataTable/styledComponents/slider.d.ts +1 -1
- package/dist/components/dataTableStatic/types.d.ts +5 -0
- package/dist/components/dataTableStatic/utils/attachCombineValidationFns.d.ts +1 -0
- package/dist/components/dataTableStatic/utils/attachYupSchema.d.ts +1 -0
- package/dist/components/report/types.d.ts +1 -0
- package/dist/components/styledComponent/tabs/tabs.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/packages/form/src/types.d.ts +5 -4
- package/package.json +1 -1
|
@@ -68,6 +68,10 @@ export interface UseFormHookProps {
|
|
|
68
68
|
onSubmit: SubmitFnType;
|
|
69
69
|
readOnly?: boolean;
|
|
70
70
|
}
|
|
71
|
+
export interface AlwaysRunPostValidationSetCrossFieldValuesType {
|
|
72
|
+
alwaysRun?: any;
|
|
73
|
+
touchAndValidate?: any;
|
|
74
|
+
}
|
|
71
75
|
export interface UseFieldHookProps {
|
|
72
76
|
fieldKey: string;
|
|
73
77
|
name: string;
|
|
@@ -86,10 +90,7 @@ export interface UseFieldHookProps {
|
|
|
86
90
|
__EDIT__?: any;
|
|
87
91
|
__VIEW__?: any;
|
|
88
92
|
txtTransform?: "uppercase" | "lowercase";
|
|
89
|
-
AlwaysRunPostValidationSetCrossFieldValues?:
|
|
90
|
-
alwaysRun?: any;
|
|
91
|
-
touchAndValidate?: any;
|
|
92
|
-
};
|
|
93
|
+
AlwaysRunPostValidationSetCrossFieldValues?: AlwaysRunPostValidationSetCrossFieldValuesType | ((dependentFields: any) => AlwaysRunPostValidationSetCrossFieldValuesType);
|
|
93
94
|
componentType?: string;
|
|
94
95
|
}
|
|
95
96
|
export interface UseFieldArrayHookProps {
|