@pixonui/react 0.5.13 → 0.5.14

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.
package/dist/index.d.mts CHANGED
@@ -1885,6 +1885,7 @@ interface ChatInputProps extends Omit<React__default.HTMLAttributes<HTMLDivEleme
1885
1885
  onChange?: (content: string) => void;
1886
1886
  onAttach?: () => void;
1887
1887
  onMic?: () => void;
1888
+ onVoiceEnd?: (blob: Blob, duration: number) => void;
1888
1889
  onEmoji?: () => void;
1889
1890
  onGif?: () => void;
1890
1891
  onLocation?: () => void;
@@ -1902,7 +1903,7 @@ interface ChatInputProps extends Omit<React__default.HTMLAttributes<HTMLDivEleme
1902
1903
  maxLength?: number;
1903
1904
  disabled?: boolean;
1904
1905
  }
1905
- declare function ChatInput({ value, onValueChange, onSend, onChange, onAttach, onMic, onEmoji, onGif, onLocation, onContact, onPoll, onPix, onCarousel, onButtons, onList, onCancelReply, placeholder, users, replyingTo, isRecording, maxLength, disabled, className, ...props }: ChatInputProps): react_jsx_runtime.JSX.Element;
1906
+ declare function ChatInput({ value, onValueChange, onSend, onChange, onAttach, onMic, onVoiceEnd, onEmoji, onGif, onLocation, onContact, onPoll, onPix, onCarousel, onButtons, onList, onCancelReply, placeholder, users, replyingTo, isRecording, maxLength, disabled, className, ...props }: ChatInputProps): react_jsx_runtime.JSX.Element;
1906
1907
 
1907
1908
  interface ChatProfileProps extends React__default.HTMLAttributes<HTMLDivElement> {
1908
1909
  user: User;
package/dist/index.d.ts CHANGED
@@ -1885,6 +1885,7 @@ interface ChatInputProps extends Omit<React__default.HTMLAttributes<HTMLDivEleme
1885
1885
  onChange?: (content: string) => void;
1886
1886
  onAttach?: () => void;
1887
1887
  onMic?: () => void;
1888
+ onVoiceEnd?: (blob: Blob, duration: number) => void;
1888
1889
  onEmoji?: () => void;
1889
1890
  onGif?: () => void;
1890
1891
  onLocation?: () => void;
@@ -1902,7 +1903,7 @@ interface ChatInputProps extends Omit<React__default.HTMLAttributes<HTMLDivEleme
1902
1903
  maxLength?: number;
1903
1904
  disabled?: boolean;
1904
1905
  }
1905
- declare function ChatInput({ value, onValueChange, onSend, onChange, onAttach, onMic, onEmoji, onGif, onLocation, onContact, onPoll, onPix, onCarousel, onButtons, onList, onCancelReply, placeholder, users, replyingTo, isRecording, maxLength, disabled, className, ...props }: ChatInputProps): react_jsx_runtime.JSX.Element;
1906
+ declare function ChatInput({ value, onValueChange, onSend, onChange, onAttach, onMic, onVoiceEnd, onEmoji, onGif, onLocation, onContact, onPoll, onPix, onCarousel, onButtons, onList, onCancelReply, placeholder, users, replyingTo, isRecording, maxLength, disabled, className, ...props }: ChatInputProps): react_jsx_runtime.JSX.Element;
1906
1907
 
1907
1908
  interface ChatProfileProps extends React__default.HTMLAttributes<HTMLDivElement> {
1908
1909
  user: User;