quickblox-react-ui-kit 0.2.8-beta.15 → 0.2.8-beta.16

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,6 +5,7 @@ type InputForForwardingProps = {
5
5
  inputText: string;
6
6
  onChange: FunctionTypeStringToVoid;
7
7
  onSend: FunctionTypeVoidToVoid;
8
+ disabled?: boolean;
8
9
  };
9
10
  declare const InputForForwarding: React.FC<InputForForwardingProps>;
10
11
  export default InputForForwarding;
@@ -3,7 +3,7 @@ import './UserAvatar.scss';
3
3
  import { IconTheme } from '../../../components/UI/svgs/Icons/IconsCommonTypes';
4
4
  import { FunctionTypeVoidToVoid } from '../../../../CommonTypes/BaseViewModel';
5
5
  type UserAvatarProps = {
6
- urlAvatar: string;
6
+ urlAvatar?: string;
7
7
  iconTheme?: IconTheme;
8
8
  clickRemoveAvatarHandler?: FunctionTypeVoidToVoid;
9
9
  };
@@ -5,6 +5,7 @@ type ActiveSvgContainerProps = {
5
5
  content: React.ReactNode;
6
6
  onTouch?: FunctionTypeVoidToVoid;
7
7
  onClick?: FunctionTypeVoidToVoid;
8
+ disabled?: boolean;
8
9
  };
9
10
  declare const ActiveSvg: React.FC<ActiveSvgContainerProps>;
10
11
  export default ActiveSvg;