wacomm 2.11.1 → 2.12.2

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.
@@ -5,5 +5,5 @@ export { default as CacheButton } from './CacheButton';
5
5
  export { default as ModalButton } from './ModalButton';
6
6
  export { default as StyledButton } from './StyledButton';
7
7
  export { default as AddButton } from './AddButton';
8
- export { default as InviteFriendByEmailButton } from './InviteFriendByEmailButton';
8
+ export { default as InviteByEmails } from '../inviteByEmails/InviteByEmails';
9
9
  export { default as SaveCancelButtons } from './SaveCancelButtons';
@@ -1,11 +1,11 @@
1
- import { InputType } from './util';
2
1
  interface TextInputProps {
3
2
  onChange: (value: string) => void;
4
3
  value: string;
5
4
  placeholder?: string;
6
5
  className?: string;
7
6
  disabled?: boolean;
8
- type: InputType;
7
+ type: string;
8
+ ref?: React.Ref<HTMLInputElement>;
9
9
  }
10
- declare function Input({ value, placeholder, className, disabled, onChange, type }: TextInputProps): import("react/jsx-runtime").JSX.Element;
10
+ declare function Input({ value, placeholder, className, disabled, onChange, type, ref }: TextInputProps): import("react/jsx-runtime").JSX.Element;
11
11
  export default Input;