@acuteinfo/common-base 1.0.90 → 1.0.91
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/autocomplete/autocomplete.d.ts +1 -1
- package/dist/components/common/checkbox/checkbox.d.ts +1 -1
- package/dist/components/common/datetime/datePicker.d.ts +1 -1
- package/dist/components/common/datetime/datetimePicker.d.ts +1 -1
- package/dist/components/common/hidden/hidden.d.ts +1 -1
- package/dist/components/common/select/select.d.ts +1 -1
- package/dist/components/common/textField/textField.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -26,7 +26,7 @@ interface AutoCompleteExtendedProps {
|
|
|
26
26
|
_optionsKey?: string;
|
|
27
27
|
disableCaching?: boolean;
|
|
28
28
|
disableAdornment?: boolean;
|
|
29
|
-
ignoreInSubmit?: (dependentValues: any, object: {
|
|
29
|
+
ignoreInSubmit?: (dependentValues: any, formState: any, object: {
|
|
30
30
|
isSubmitting?: boolean;
|
|
31
31
|
value?: string;
|
|
32
32
|
}) => boolean | boolean;
|
|
@@ -16,7 +16,7 @@ interface MyCheckboxExtendedProps {
|
|
|
16
16
|
FormHelperTextProps?: FormHelperTextProps;
|
|
17
17
|
GridProps?: GridProps;
|
|
18
18
|
enableGrid: boolean;
|
|
19
|
-
ignoreInSubmit?: (dependentValues: any, object: {
|
|
19
|
+
ignoreInSubmit?: (dependentValues: any, formState: any, object: {
|
|
20
20
|
isSubmitting?: boolean;
|
|
21
21
|
value?: string;
|
|
22
22
|
}) => boolean | boolean;
|
|
@@ -14,7 +14,7 @@ interface MyGridExtendedProps {
|
|
|
14
14
|
isWorkingDate?: boolean;
|
|
15
15
|
isMaxWorkingDate?: boolean;
|
|
16
16
|
isMinWorkingDate?: boolean;
|
|
17
|
-
ignoreInSubmit?: (dependentValues: any, object: {
|
|
17
|
+
ignoreInSubmit?: (dependentValues: any, formState: any, object: {
|
|
18
18
|
isSubmitting?: boolean;
|
|
19
19
|
value?: string;
|
|
20
20
|
}) => boolean | boolean;
|
|
@@ -7,7 +7,7 @@ type KeyboardDateTimePickerPropsSubset = Omit<DateTimePickerProps<any>, "onChang
|
|
|
7
7
|
interface MyGridExtendedProps {
|
|
8
8
|
GridProps?: GridProps;
|
|
9
9
|
enableGrid: boolean;
|
|
10
|
-
ignoreInSubmit?: (dependentValues: any, object: {
|
|
10
|
+
ignoreInSubmit?: (dependentValues: any, formState: any, object: {
|
|
11
11
|
isSubmitting?: boolean;
|
|
12
12
|
value?: string;
|
|
13
13
|
}) => boolean | boolean;
|
|
@@ -5,7 +5,7 @@ interface MyGridExtendedProps {
|
|
|
5
5
|
GridProps?: GridProps;
|
|
6
6
|
enableGrid: boolean;
|
|
7
7
|
setValueOnDependentFieldsChange?: any;
|
|
8
|
-
ignoreInSubmit?: boolean;
|
|
8
|
+
ignoreInSubmit?: (dependentValues: any, formState: any) => boolean | boolean;
|
|
9
9
|
runPostValidationForInitValue?: boolean;
|
|
10
10
|
}
|
|
11
11
|
export type MyHiddenFieldProps = UseFieldHookProps & MyGridExtendedProps;
|
|
@@ -24,7 +24,7 @@ interface MySelectExtendedProps {
|
|
|
24
24
|
CircularProgressProps?: CircularProgressProps;
|
|
25
25
|
GridProps?: GridProps;
|
|
26
26
|
enableGrid: boolean;
|
|
27
|
-
ignoreInSubmit?: (dependentValues: any, object: {
|
|
27
|
+
ignoreInSubmit?: (dependentValues: any, formState: any, object: {
|
|
28
28
|
isSubmitting?: boolean;
|
|
29
29
|
value?: string;
|
|
30
30
|
}) => boolean | boolean;
|
|
@@ -24,7 +24,7 @@ interface MyGridExtendedProps {
|
|
|
24
24
|
textFieldStyle?: SxProps;
|
|
25
25
|
txtTransform?: "uppercase" | "lowercase";
|
|
26
26
|
AlwaysRunPostValidationSetCrossFieldValues?: AlwaysRunPostValidationSetCrossFieldValuesType | ((dependentFields: any) => AlwaysRunPostValidationSetCrossFieldValuesType);
|
|
27
|
-
ignoreInSubmit?: (dependentValues: any, object: {
|
|
27
|
+
ignoreInSubmit?: (dependentValues: any, formState: any, object: {
|
|
28
28
|
isSubmitting?: boolean;
|
|
29
29
|
value?: string;
|
|
30
30
|
}) => boolean | boolean;
|