@acuteinfo/common-base 1.2.56 → 1.2.57

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.
@@ -44,6 +44,7 @@ interface AutoCompleteExtendedProps {
44
44
  runPostValidationForInitValue?: boolean;
45
45
  skipInitialDefaultValueKeyValidation?: boolean;
46
46
  filterOptionsCb: (options: any, dep: any, fs: any) => OptionsProps[];
47
+ setColor?: (value: any, dependentFields: any, formState: any) => string;
47
48
  }
48
49
  type MyAutocompleteProps = Merge<AutocompleteProps<OptionsProps, true, true, true>, AutoCompleteExtendedProps>;
49
50
  export type MyAllAutocompleteProps = Merge<MyAutocompleteProps, UseFieldHookProps>;
@@ -24,6 +24,7 @@ interface MyGridExtendedProps {
24
24
  } | null | undefined;
25
25
  runPostValidationForInitValue?: boolean;
26
26
  setValueOnDependentFieldsValueChange?: (dependentFields: any, formState: any, valueObj: any) => string | undefined;
27
+ setColor?: (value: any, dependentFields: any, formState: any) => string;
27
28
  }
28
29
  export type MyDataPickerAllProps = Merge<Merge<KeyboardDatePickerPropsSubset, MyGridExtendedProps>, UseFieldHookProps>;
29
30
  export declare const MyDatePicker: FC<MyDataPickerAllProps>;
@@ -19,6 +19,7 @@ interface MyGridExtendedProps {
19
19
  disableFuture?: boolean;
20
20
  runPostValidationForInitValue?: boolean;
21
21
  setValueOnDependentFieldsValueChange?: (dependentFields: any, formState: any, valueObj: any) => string | undefined;
22
+ setColor?: (value: any, dependentFields: any, formState: any) => string;
22
23
  }
23
24
  export type MyDateTimePickerAllProps = Merge<Merge<KeyboardDateTimePickerPropsSubset, MyGridExtendedProps>, UseFieldHookProps>;
24
25
  export declare const MyDateTimePicker: FC<MyDateTimePickerAllProps>;
@@ -13,6 +13,7 @@ interface MyGridExtendedProps {
13
13
  label: string;
14
14
  placeholder?: string;
15
15
  } | null | undefined;
16
+ setColor?: (value: any, dependentFields: any, formState: any) => string;
16
17
  }
17
18
  export type MyTimeTimePickerAllProps = Merge<Merge<KeyboardTimePickerPropsSubset, MyGridExtendedProps>, UseFieldHookProps>;
18
19
  export declare const MyTimePicker: FC<MyTimeTimePickerAllProps>;
@@ -16,7 +16,7 @@ interface MyGridExtendedProps {
16
16
  enableGrid: boolean;
17
17
  setValueOnDependentFieldsChange?: any;
18
18
  setValueOnDependentFieldsValueChange?: (dependentFields: any, formState: any, valueObj: any) => string | undefined;
19
- setColor?: any;
19
+ setColor?: (value: any, dependentFields: any, formState: any) => string;
20
20
  showMaxLength?: boolean;
21
21
  allowToggleVisiblity?: boolean;
22
22
  startsIcon?: keyof typeof Icons;
@@ -43,6 +43,7 @@ interface MyGridExtendedProps {
43
43
  addHandleKeyDownFromExtendedType?: boolean;
44
44
  runPostValidationForInitValue?: boolean;
45
45
  isCurrencyField?: boolean;
46
+ allowEmojiIcons?: boolean;
46
47
  }
47
48
  type MyTextFieldAllProps = Merge<TextFieldProps, MyGridExtendedProps>;
48
49
  export type MyTextFieldProps = UseFieldHookProps & MyTextFieldAllProps;
@@ -19,4 +19,4 @@ export interface RemarksAPIWrapperProps {
19
19
  focusScopeId?: string;
20
20
  preventSpecialChars?: string | (() => string | null) | null;
21
21
  }
22
- export declare const RemarksAPIWrapper: ({ TitleText, onActionNo, onActionYes, isRequired, isEntertoSubmit, AcceptbuttonLabelText, CanceltbuttonLabelText, isLoading, open, label, placeholder, defaultValue, rows, customRequiredMessage, maxLength, showMaxLength, enableEnterToFocus, focusScopeId, preventSpecialChars }: RemarksAPIWrapperProps) => import("react/jsx-runtime").JSX.Element;
22
+ export declare const RemarksAPIWrapper: ({ TitleText, onActionNo, onActionYes, isRequired, isEntertoSubmit, AcceptbuttonLabelText, CanceltbuttonLabelText, isLoading, open, label, placeholder, defaultValue, rows, customRequiredMessage, maxLength, showMaxLength, enableEnterToFocus, focusScopeId, preventSpecialChars, }: RemarksAPIWrapperProps) => import("react/jsx-runtime").JSX.Element;