@acuteinfo/common-base 1.0.53 → 1.0.55

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.
@@ -34,6 +34,7 @@ interface MyGridExtendedProps {
34
34
  } | null | undefined;
35
35
  label?: string;
36
36
  preventSpecialChars?: string | null;
37
+ handleKeyDown?: (event: any, dependentValues: any, authState: any, formState: any) => void;
37
38
  }
38
39
  type MyTextFieldAllProps = Merge<TextFieldProps, MyGridExtendedProps>;
39
40
  export type MyTextFieldProps = UseFieldHookProps & MyTextFieldAllProps;
@@ -122,5 +122,6 @@ export declare const currencySymbol: {
122
122
  SLL: string;
123
123
  ETB: string;
124
124
  MMK: string;
125
+ BLANK: string;
125
126
  };
126
127
  export declare function getCurrencySymbol(currencyCode: any, sendCodeBack?: boolean): any;
@@ -33,6 +33,9 @@ export interface FilterFormFieldType {
33
33
  optiondata?: OptionsProps[] | OptionsFn;
34
34
  _optionsKey?: string;
35
35
  defaultOptionValue?: string;
36
+ skipDefaultOption?: boolean;
37
+ defaultSpaceAdd?: boolean;
38
+ touched?: boolean;
36
39
  isRequired?: boolean;
37
40
  isDisabled?: boolean;
38
41
  validate?: Function;