react-crud-mui 0.2.92 → 0.2.93

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.
@@ -4,7 +4,8 @@ export type CaseType = 'firstUpper' | 'upperCase' | 'lowerCase' | 'normal';
4
4
  export interface InputProps extends TextFieldProps<'standard'> {
5
5
  caseType?: CaseType;
6
6
  getRef?: Ref<any>;
7
+ showCharacterCount?: boolean;
7
8
  }
8
- declare function Input({ caseType, getRef, value, onBlur, onFocus, ...inputProps }: InputProps): import("react/jsx-runtime").JSX.Element;
9
+ declare function Input({ caseType, getRef, value, onBlur, onFocus, showCharacterCount, ...inputProps }: InputProps): import("react/jsx-runtime").JSX.Element;
9
10
  declare const _default: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<typeof Input>>;
10
11
  export default _default;