repo
stringlengths
7
64
file_url
stringlengths
81
338
file_path
stringlengths
5
257
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:25:31
2026-01-05 01:50:38
truncated
bool
2 classes
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageUsername.tsx
packages/fuselage/src/components/Message/MessageUsername.tsx
import type { HTMLAttributes } from 'react'; export type MessageUsernameProps = HTMLAttributes<HTMLSpanElement>; const MessageUsername = (props: MessageUsernameProps) => ( <span className='rcx-box rcx-box--full rcx-message-header__username' {...props} /> ); export default MessageUsername;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageNameContainer.tsx
packages/fuselage/src/components/Message/MessageNameContainer.tsx
import type { HTMLAttributes } from 'react'; import { forwardRef } from 'react'; export type MessageNameContainerProps = HTMLAttributes<HTMLSpanElement>; const MessageNameContainer = forwardRef< HTMLSpanElement, MessageNameContainerProps >(function MessageNameContainer(props, ref) { return ( <span ref...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageLeftContainer.tsx
packages/fuselage/src/components/Message/MessageLeftContainer.tsx
import type { HTMLAttributes } from 'react'; export type MessageLeftContainerProps = HTMLAttributes<HTMLDivElement>; const MessageLeftContainer = (props: MessageLeftContainerProps) => ( <div className='rcx-box rcx-box--full rcx-message-container rcx-message-container--left' {...props} /> ); export defaul...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageName.tsx
packages/fuselage/src/components/Message/MessageName.tsx
import type { HTMLAttributes } from 'react'; export type MessageNameProps = HTMLAttributes<HTMLSpanElement>; const MessageName = (props: MessageNameProps) => ( <span className='rcx-box rcx-box--full rcx-message-header__name' {...props} /> ); export default MessageName;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageBody.tsx
packages/fuselage/src/components/Message/MessageBody.tsx
import type { HTMLAttributes } from 'react'; import { prependClassName } from '../../helpers/prependClassName'; export type MessageBodyProps = HTMLAttributes<HTMLDivElement> & { clamp?: 2 | 3 | 4; }; const MessageBody = ({ clamp, className, ...props }: MessageBodyProps) => ( <div className={ prependCla...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageTimestamp.tsx
packages/fuselage/src/components/Message/MessageTimestamp.tsx
import type { HTMLAttributes } from 'react'; export type MessageTimestampProps = HTMLAttributes<HTMLSpanElement>; const MessageTimestamp = (props: MessageTimestampProps) => ( <span className='rcx-box rcx-box--full rcx-message-header__time' {...props} /> ); export default MessageTimestamp;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageBlock.tsx
packages/fuselage/src/components/Message/MessageBlock.tsx
import { forwardRef } from 'react'; import { Box, type BoxProps } from '../Box'; export type MessageBlockProps = { fixedWidth?: boolean; } & BoxProps; const MessageBlock = forwardRef<HTMLDivElement, MessageBlockProps>( ({ className: _className, fixedWidth, ...props }, ref) => ( <Box rcx-message-block ...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/Message.tsx
packages/fuselage/src/components/Message/Message.tsx
import type { AllHTMLAttributes } from 'react'; import { forwardRef } from 'react'; import { prependClassName } from '../../helpers/prependClassName'; import MessageBlock from './MessageBlock'; import MessageBody from './MessageBody'; import MessageContainer from './MessageContainer'; import MessageContainerFixed fro...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageHighlight.tsx
packages/fuselage/src/components/Message/MessageHighlight.tsx
import type { ElementType, HTMLAttributes } from 'react'; import { prependClassName } from '../../helpers/prependClassName'; export type MessageHighlightProps = { is?: ElementType; clickable?: boolean; variant?: 'critical' | 'relevant' | 'other' | 'link'; className?: string; children: any; title?: string;...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageEmojiBase.tsx
packages/fuselage/src/components/Message/MessageEmojiBase.tsx
import type { HTMLAttributes } from 'react'; export type MessageEmojiBaseProps = { name: string; image?: string; } & HTMLAttributes<HTMLSpanElement>; export const MessageEmojiBase = ({ name, image, className, ...props }: MessageEmojiBaseProps) => ( <span className={`${className || ''} ${name}`} ...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageContainer.tsx
packages/fuselage/src/components/Message/MessageContainer.tsx
import type { HTMLAttributes } from 'react'; export type MessageContainerProps = HTMLAttributes<HTMLDivElement>; const MessageContainer = (props: MessageContainerProps) => ( <div className='rcx-box rcx-box--full rcx-message-container' {...props} /> ); export default MessageContainer;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/Message.spec.tsx
packages/fuselage/src/components/Message/Message.spec.tsx
import { composeStories } from '@storybook/react-webpack5'; import { render } from '../../testing'; import * as stories from './Messages.stories'; const { Default } = composeStories(stories); describe('[Message Component]', () => { it('renders without crashing', () => { render(<Default />); }); });
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageContainerFixed.tsx
packages/fuselage/src/components/Message/MessageContainerFixed.tsx
import type { HTMLAttributes } from 'react'; export type MessageContainerFixedProps = HTMLAttributes<HTMLDivElement>; const MessageContainerFixed = (props: MessageContainerFixedProps) => ( <div className='rcx-box rcx-box--full rcx-message-container rcx-message-container--fixed' {...props} /> ); export de...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageRole.tsx
packages/fuselage/src/components/Message/MessageRole.tsx
import type { TagProps } from '../Tag'; import { Tag } from '../Tag'; export type MessageRoleProps = TagProps; const MessageRole = (props: MessageRoleProps) => ( <Tag className='rcx-box rcx-box--full rcx-message-header__role' {...props} /> ); export default MessageRole;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/index.ts
packages/fuselage/src/components/Message/index.ts
export { default as Message, type MessageProps } from './Message'; export { default as MessageBlock, type MessageBlockProps, } from './MessageBlock'; export { default as MessageBody, type MessageBodyProps } from './MessageBody'; export { default as MessageContainer, type MessageContainerProps, } from './Messag...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageHeader.tsx
packages/fuselage/src/components/Message/MessageHeader.tsx
import type { HTMLAttributes } from 'react'; export type MessageHeaderProps = HTMLAttributes<HTMLDivElement>; const MessageHeader = ({ children, ...props }: MessageHeaderProps) => ( <div className='rcx-box rcx-box--full rcx-message-header' {...props}> <div className='rcx-box rcx-box--full rcx-message-header__wr...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/Messages.stories.tsx
packages/fuselage/src/components/Message/Messages.stories.tsx
import type { Meta, StoryFn } from '@storybook/react-webpack5'; import { useState } from 'react'; import { Avatar } from '../Avatar'; import { Box } from '../Box'; import Message from './Message'; import { MessageDivider } from './MessageDivider'; import MessageEmoji from './MessageEmoji'; import { MessageMetrics } f...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
true
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageRoles.tsx
packages/fuselage/src/components/Message/MessageRoles.tsx
import type { HTMLAttributes } from 'react'; export type MessageRolesProps = HTMLAttributes<HTMLDivElement>; const MessageRoles = (props: MessageRolesProps) => ( <div className='rcx-box rcx-box--full rcx-message-header__roles' {...props} /> ); export default MessageRoles;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageOrigin.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageOrigin.tsx
import type { ReactNode } from 'react'; export type ThreadMessageOriginProps = { children?: ReactNode; system?: boolean; }; const ThreadMessageOrigin = ({ children, system, }: ThreadMessageOriginProps) => ( <div className={[ 'rcx-box rcx-box--full rcx-message-thread__origin', system && 'rcx-...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageBody.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageBody.tsx
import type { ReactNode } from 'react'; export type ThreadMessageBodyProps = { children?: ReactNode; }; const ThreadMessageBody = (props: ThreadMessageBodyProps) => ( <div className='rcx-box rcx-box--full rcx-message-thread__message' {...props} /> ); export default ThreadMessageBody;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessage.stories.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessage.stories.tsx
import type { Meta } from '@storybook/react-webpack5'; import { Avatar } from '../../Avatar'; import { Box } from '../../Box'; import ThreadMessage from './ThreadMessage'; import ThreadMessageEmoji from './ThreadMessageEmoji'; export default { title: 'Message/ThreadMessage', component: ThreadMessage, } satisfies...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageRow.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageRow.tsx
import type { HTMLAttributes } from 'react'; export type ThreadMessageRowProps = HTMLAttributes<HTMLDivElement>; const ThreadMessageRow = (props: ThreadMessageRowProps) => ( <div className='rcx-box rcx-box--full rcx-message-thread__row' {...props} /> ); export default ThreadMessageRow;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageContainer.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageContainer.tsx
import type { ReactNode } from 'react'; export type ThreadMessageContainerProps = { children?: ReactNode; }; const ThreadMessageContainer = (props: ThreadMessageContainerProps) => ( <div className='rcx-box rcx-box--full rcx-message-thread__container' {...props} /> ); export default ThreadMessageContain...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessage.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessage.tsx
import Message, { type MessageProps } from '../Message'; import MessageLeftContainer from '../MessageLeftContainer'; import ThreadMessageBody from './ThreadMessageBody'; import ThreadMessageContainer from './ThreadMessageContainer'; import ThreadMessageFollow from './ThreadMessageFollow'; import ThreadMessageIconThrea...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageIcon.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageIcon.tsx
import { Icon, type IconProps } from '../../Icon'; export const ThreadMessageIcon = ({ ...props }: IconProps) => ( <Icon className='rcx-box rcx-box--full rcx-message-thread__icon' size='x16' {...props} /> );
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageOrigin.spec.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageOrigin.spec.tsx
import { screen } from '@testing-library/react'; import { render } from '../../../testing'; import ThreadMessageOrigin from './ThreadMessageOrigin'; describe('ThreadMessageOrigin', () => { it('renders without crashing', () => { render(<ThreadMessageOrigin />); }); it('should render system variation', () =...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageUnfollow.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageUnfollow.tsx
import { ThreadMessageIcon } from './ThreadMessageIcon'; const ThreadMessageUnfollow = () => ( <ThreadMessageIcon className='rcx-box rcx-box--full rcx-message-thread__icon rcx-message-thread__icon--unfollow' {...({ name: 'bell-off' } as any)} /> ); export default ThreadMessageUnfollow;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessage.spec.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessage.spec.tsx
import { render } from '../../../testing'; import ThreadMessage from './ThreadMessage'; it('renders without crashing', () => { render(<ThreadMessage />); });
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/index.ts
packages/fuselage/src/components/Message/ThreadMessage/index.ts
export { default as ThreadMessage, type ThreadMessageProps, } from './ThreadMessage'; export { default as ThreadMessageBody, type ThreadMessageBodyProps, } from './ThreadMessageBody'; export { default as ThreadMessageContainer, type ThreadMessageContainerProps, } from './ThreadMessageContainer'; export { ...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageIconThread.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageIconThread.tsx
import { ThreadMessageIcon } from './ThreadMessageIcon'; const ThreadMessageIconThread = () => <ThreadMessageIcon name='thread' />; export default ThreadMessageIconThread;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageEmoji.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageEmoji.tsx
import type { MessageEmojiBaseProps } from '../MessageEmojiBase'; import { MessageEmojiBase } from '../MessageEmojiBase'; export type ThreadMessageEmojiProps = MessageEmojiBaseProps; const ThreadMessageEmoji = ({ className, ...props }: ThreadMessageEmojiProps) => ( <MessageEmojiBase className={`rcx-message-...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageFollow.tsx
packages/fuselage/src/components/Message/ThreadMessage/ThreadMessageFollow.tsx
import { ThreadMessageIcon } from './ThreadMessageIcon'; const ThreadMessageFollow = () => ( <ThreadMessageIcon className='rcx-box rcx-box--full rcx-message-thread__icon rcx-message-thread__icon--follow' {...({ name: 'bell' } as any)} /> ); export default ThreadMessageFollow;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageStatusIndicator/MessageStatusIndicator.spec.tsx
packages/fuselage/src/components/Message/MessageStatusIndicator/MessageStatusIndicator.spec.tsx
import { render } from '../../../testing'; import { MessageStatusIndicator, MessageStatusIndicatorItem } from '.'; it('renders without crashing', () => { render( <MessageStatusIndicator> <MessageStatusIndicatorItem name='star' variant='success' /> </MessageStatusIndicator>, ); });
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageStatusIndicator/MessageStatusPrivateIndicator.tsx
packages/fuselage/src/components/Message/MessageStatusIndicator/MessageStatusPrivateIndicator.tsx
import type { ReactNode } from 'react'; import type { MessageStatusIndicatorItemProps } from './MessageStatusIndicatorItem'; export type MessageStatusPrivateIndicatorProps = { children?: ReactNode; variant?: MessageStatusIndicatorItemProps['variant']; }; const MessageStatusPrivateIndicator = ({ children, var...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageStatusIndicator/MessageStatusIndicator.tsx
packages/fuselage/src/components/Message/MessageStatusIndicator/MessageStatusIndicator.tsx
import type { AllHTMLAttributes } from 'react'; import { forwardRef } from 'react'; import './MessageStatusIndicator.styles.scss'; export type MessageStatusIndicatorProps = AllHTMLAttributes<HTMLDivElement>; const MessageStatusIndicator = forwardRef< HTMLDivElement, MessageStatusIndicatorProps >(function Message...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageStatusIndicator/MessageStatusIndicatorText.tsx
packages/fuselage/src/components/Message/MessageStatusIndicator/MessageStatusIndicatorText.tsx
import type { ReactNode } from 'react'; export type MessageStatusIndicatorTextProps = { children: ReactNode; }; const MessageStatusIndicatorText = ({ children, }: MessageStatusIndicatorTextProps) => ( <span className='rcx-message-status-indicator__text' aria-hidden> {children} </span> ); export default M...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageStatusIndicator/MessageStatusIndicator.stories.tsx
packages/fuselage/src/components/Message/MessageStatusIndicator/MessageStatusIndicator.stories.tsx
import type { Meta, StoryFn } from '@storybook/react-webpack5'; import { Avatar } from '../../Avatar'; import { Box } from '../../Box'; import Message from '../Message'; import { MessageDivider } from '../MessageDivider'; import MessageReactions from '../MessageReactions'; import { MessageToolbar } from '../MessageToo...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageStatusIndicator/MessageStatusIndicatorItem.tsx
packages/fuselage/src/components/Message/MessageStatusIndicator/MessageStatusIndicatorItem.tsx
import type { AllHTMLAttributes } from 'react'; import { Icon, type IconProps } from '../../Icon'; export type MessageStatusIndicatorItemProps = { name: IconProps['name']; variant?: 'success' | 'danger' | 'warning' | 'primary'; } & Omit<AllHTMLAttributes<HTMLElement>, 'is'>; const MessageStatusIndicatorItem = ({...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageStatusIndicator/index.ts
packages/fuselage/src/components/Message/MessageStatusIndicator/index.ts
export { default as MessageStatusIndicator, type MessageStatusIndicatorProps, } from './MessageStatusIndicator'; export { default as MessageStatusIndicatorText, type MessageStatusIndicatorTextProps, } from './MessageStatusIndicatorText'; export { default as MessageStatusIndicatorItem, type MessageStatusIndi...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewImage.spec.tsx
packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewImage.spec.tsx
import { screen } from '@testing-library/react'; import { render } from '../../../testing'; import MessageGenericPreviewImage from './MessageGenericPreviewImage'; describe('MessageGenericPreviewImage', () => { it('renders without crashing', () => { render(<MessageGenericPreviewImage url='' />); }); it('sh...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewTitle.tsx
packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewTitle.tsx
import type { AnchorHTMLAttributes, HTMLAttributes } from 'react'; export type MessageGenericPreviewTitleProps = { externalUrl?: string; } & HTMLAttributes<HTMLSpanElement> & AnchorHTMLAttributes<HTMLAnchorElement>; const MessageGenericPreviewTitle = ({ externalUrl, children, ...props }: MessageGenericPrevi...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewImage.tsx
packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewImage.tsx
import type { ImgHTMLAttributes } from 'react'; import { prependClassName } from '../../../helpers/prependClassName'; export type MessageGenericPreviewImageProps = { url: string; className?: string; } & ImgHTMLAttributes<HTMLImageElement>; const MessageGenericPreviewImage = ({ url, className, ...props }: M...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewDescription.tsx
packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewDescription.tsx
import type { ReactNode } from 'react'; export type MessageGenericPreviewDescriptionProps = { children?: ReactNode; clamp?: boolean; }; const MessageGenericPreviewDescription = ({ children, clamp = false, }: MessageGenericPreviewDescriptionProps) => ( <div className={[ 'rcx-message-generic-preview...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreview.stories.tsx
packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreview.stories.tsx
import type { Meta, StoryFn } from '@storybook/react-webpack5'; import type { ReactNode } from 'react'; import { Avatar } from '../../Avatar'; import { Box } from '../../Box'; import Message from '../Message'; import MessageGenericPreview from './MessageGenericPreview'; import MessageGenericPreviewContent from './Mes...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewIcon.tsx
packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewIcon.tsx
import { Icon, type IconProps } from '../../Icon'; export type MessageGenericPreviewIconProps = IconProps & { type: string; }; const MessageGenericPreviewIcon = ({ name = 'attachment-file', size = 32, color = 'default', type = 'file', }: MessageGenericPreviewIconProps) => ( <div className='rcx-message-gen...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewContent.tsx
packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewContent.tsx
import type { ReactElement, ReactNode } from 'react'; export type MessageGenericPreviewContentProps = { children?: ReactNode; thumb?: ReactElement; }; const MessageGenericPreviewContent = ({ thumb, ...props }: MessageGenericPreviewContentProps) => ( <div className='rcx-message-generic-preview__content'> ...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewCoverImage.tsx
packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewCoverImage.tsx
import { prependClassName } from '../../../helpers/prependClassName'; export type MessageGenericPreviewCoverImageProps = { url: string; width: number; height: number; className?: string; }; const MessageGenericPreviewCoverImage = ({ url, width, height, className, ...props }: MessageGenericPreviewCov...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreview.tsx
packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreview.tsx
import type { HTMLAttributes } from 'react'; import './MessageGenericPreview.styles.scss'; export type MessageGenericPreviewProps = HTMLAttributes<HTMLDivElement>; const MessageGenericPreview = (props: MessageGenericPreviewProps) => ( <div className='rcx-message-generic-preview' {...props} /> ); export default Me...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewCoverImage.spec.tsx
packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewCoverImage.spec.tsx
import { screen } from '@testing-library/react'; import { render } from '../../../testing'; import MessageGenericPreviewCoverImage from './MessageGenericPreviewCoverImage'; describe('MessageGenericPreviewCoverImage', () => { it('renders without crashing', () => { render(<MessageGenericPreviewCoverImage url='' ...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/index.ts
packages/fuselage/src/components/Message/MessageGenericPreview/index.ts
export { default as MessageGenericPreview, type MessageGenericPreviewProps, } from './MessageGenericPreview'; export { default as MessageGenericPreviewContent, type MessageGenericPreviewContentProps, } from './MessageGenericPreviewContent'; export { default as MessageGenericPreviewDescription, type MessageG...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewFooter.tsx
packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewFooter.tsx
import type { ReactNode } from 'react'; export type MessageGenericPreviewFooterProps = { children?: ReactNode; clamp?: boolean; }; const MessageGenericPreviewFooter = ({ children, }: MessageGenericPreviewFooterProps) => ( <div className={'rcx-message-generic-preview__footer'}>{children}</div> ); export defau...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewThumb.tsx
packages/fuselage/src/components/Message/MessageGenericPreview/MessageGenericPreviewThumb.tsx
import type { HTMLAttributes } from 'react'; export type MessageGenericPreviewThumbProps = HTMLAttributes<HTMLDivElement>; const MessageGenericPreviewThumb = (props: MessageGenericPreviewThumbProps) => ( <div className='rcx-message-generic-preview__thumb' {...props} /> ); export default MessageGenericPreviewThumb;...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageSystem/MessageSystem.stories.tsx
packages/fuselage/src/components/Message/MessageSystem/MessageSystem.stories.tsx
import type { Meta, StoryFn } from '@storybook/react-webpack5'; import { Avatar } from '../../Avatar'; import { Box } from '../../Box'; import { MessageDivider } from '../MessageDivider'; import MessageNameContainer from '../MessageNameContainer'; import MessageUsername from '../MessageUsername'; import { MessageSyst...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageSystem/MessageSystemBlock.tsx
packages/fuselage/src/components/Message/MessageSystem/MessageSystemBlock.tsx
import type { ReactNode } from 'react'; export type MessageSystemBlockProps = { children?: ReactNode; }; const MessageSystemBlock = (props: MessageSystemBlockProps) => ( <div className='rcx-message-system__block' {...props} /> ); export default MessageSystemBlock;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageSystem/MessageSystemContainer.tsx
packages/fuselage/src/components/Message/MessageSystem/MessageSystemContainer.tsx
import type { ReactNode } from 'react'; export type MessageSystemContainerProps = { children?: ReactNode; }; const MessageSystemContainer = (props: MessageSystemContainerProps) => ( <div className='rcx-box rcx-box--full rcx-message-system__container' {...props} /> ); export default MessageSystemContain...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageSystem/MessageSystem.spec.tsx
packages/fuselage/src/components/Message/MessageSystem/MessageSystem.spec.tsx
import { composeStories } from '@storybook/react-webpack5'; import { axe } from 'jest-axe'; import { render } from '../../../testing'; import * as stories from './MessageSystem.stories'; const testCases = Object.values(composeStories(stories)).map((Story) => [ Story.storyName || 'Story', Story, ]); test.each(te...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageSystem/MessageSystemTimestamp.tsx
packages/fuselage/src/components/Message/MessageSystem/MessageSystemTimestamp.tsx
import type { ReactNode } from 'react'; export type MessageSystemTimestampProps = { children: ReactNode; title?: string; }; const MessageSystemTimestamp = (props: MessageSystemTimestampProps) => ( <span className='rcx-box rcx-box--full rcx-message-system__time' {...props} /> ); export default MessageSystemTime...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageSystem/MessageSystem.tsx
packages/fuselage/src/components/Message/MessageSystem/MessageSystem.tsx
import type { ReactNode, MouseEvent as ReactMouseEvent, AllHTMLAttributes, } from 'react'; import './MessageSystem.styles.scss'; export type MessageSystemProps = { children?: ReactNode; title?: string; isSelected?: boolean; onClick?: (e: ReactMouseEvent<HTMLDivElement, MouseEvent>) => void; } & AllHTMLA...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageSystem/MessageSystemName.tsx
packages/fuselage/src/components/Message/MessageSystem/MessageSystemName.tsx
import type { MessageNameProps } from '../MessageName'; export type MessageSystemNameProps = MessageNameProps; const MessageSystemName = (props: MessageSystemNameProps) => ( <span className='rcx-box rcx-box--full rcx-message-system__name' {...props} /> ); export default MessageSystemName;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageSystem/index.ts
packages/fuselage/src/components/Message/MessageSystem/index.ts
export { default as MessageSystem, type MessageSystemProps, } from './MessageSystem'; export { default as MessageSystemBlock, type MessageSystemBlockProps, } from './MessageSystemBlock'; export { default as MessageSystemBody, type MessageSystemBodyProps, } from './MessageSystemBody'; export { default as M...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageSystem/MessageSystemBody.tsx
packages/fuselage/src/components/Message/MessageSystem/MessageSystemBody.tsx
import type { HTMLAttributes } from 'react'; export type MessageSystemBodyProps = HTMLAttributes<HTMLDivElement>; const MessageSystemBody = (props: MessageSystemBodyProps) => ( <div className='rcx-message-system__body' {...props} /> ); export default MessageSystemBody;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsFollowing.tsx
packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsFollowing.tsx
import type { ReactElement } from 'react'; import { IconButton, type IconButtonProps } from '../../Button'; export type MessageMetricsFollowingProps = { name: 'bell' | 'bell-off'; badge?: ReactElement; } & Omit<IconButtonProps, 'icon'>; const MessageMetricsFollowing = ({ name, badge, ...props }: MessageMet...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetrics.spec.tsx
packages/fuselage/src/components/Message/MessageMetrics/MessageMetrics.spec.tsx
import { composeStories } from '@storybook/react-webpack5'; import { axe } from 'jest-axe'; import { render } from '../../../testing'; import * as stories from './MessageMetrics.stories'; const testCases = Object.values(composeStories(stories)).map((Story) => [ Story.storyName || 'Story', Story, ]); describe('[...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsReply.tsx
packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsReply.tsx
import { Button, type ButtonProps } from '../../Button'; import { MessageMetricsItem } from './MessageMetricsItem'; export type MessageMetricsReplyProps = ButtonProps; const MessageMetricsReply = (props: MessageMetricsReplyProps) => ( <MessageMetricsItem> <Button primary {...props} small /> </MessageMetricsI...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetrics.stories.tsx
packages/fuselage/src/components/Message/MessageMetrics/MessageMetrics.stories.tsx
import type { Meta } from '@storybook/react-webpack5'; import { action } from 'storybook/actions'; import { Avatar } from '../../Avatar'; import { Badge } from '../../Badge'; import { BasicMessageTemplate } from '../helpers'; import MessageMetrics from './MessageMetrics'; import MessageMetricsFollowing from './Messag...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/index.ts
packages/fuselage/src/components/Message/MessageMetrics/index.ts
export { default as MessageMetrics, type MessageMetricsProps, } from './MessageMetrics'; export * from './MessageMetricsItem'; export { default as MessageMetricsFollowing, type MessageMetricsFollowingProps, } from './MessageMetricsFollowing'; export { default as MessageMetricsReply, type MessageMetricsReply...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsContentItem.tsx
packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsContentItem.tsx
import type { HTMLAttributes } from 'react'; export type MessageMetricsContentItemProps = HTMLAttributes<HTMLDivElement>; const MessageMetricsContentItem = (props: MessageMetricsContentItemProps) => ( <div className='rcx-message-metrics__content-item' {...props} /> ); export default MessageMetricsContentItem;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsContent.tsx
packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsContent.tsx
import type { HTMLAttributes } from 'react'; export const MessageMetricsContent = ( props: HTMLAttributes<HTMLDivElement>, ) => <div className='rcx-message-metrics__content' {...props} />;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetrics.tsx
packages/fuselage/src/components/Message/MessageMetrics/MessageMetrics.tsx
import type { HTMLAttributes } from 'react'; import MessageMetricsContentItem from './MessageMetricsContentItem'; import MessageMetricsFollowing from './MessageMetricsFollowing'; import { MessageMetricsItem } from './MessageMetricsItem'; import MessageMetricsReply from './MessageMetricsReply'; export type MessageMetr...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsItem/MessageMetricsItem.tsx
packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsItem/MessageMetricsItem.tsx
import type { HTMLAttributes } from 'react'; import { prependClassName } from '../../../../helpers/prependClassName'; import MessageMetricsItemIcon from './MessageMetricsItemIcon'; import MessageMetricsItemLabel from './MessageMetricsItemLabel'; export type MessageMetricsItemProps = HTMLAttributes<HTMLDivElement>; ...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsItem/MessageMetricsItemAvatarRowContent.tsx
packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsItem/MessageMetricsItemAvatarRowContent.tsx
import type { HTMLAttributes } from 'react'; import { prependClassName } from '../../../../helpers/prependClassName'; export type MessageMetricsItemAvatarRowContentProps = HTMLAttributes<HTMLDivElement>; const MessageMetricsItemAvatarRowContent = ({ className, ...props }: MessageMetricsItemAvatarRowContentProp...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsItem/MessageMetricsItemAvatarRow.tsx
packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsItem/MessageMetricsItemAvatarRow.tsx
import type { HTMLAttributes } from 'react'; import { prependClassName } from '../../../../helpers/prependClassName'; export type MessageMetricsItemProps = HTMLAttributes<HTMLDivElement>; const MessageMetricsItemAvatarRow = ({ className, ...props }: MessageMetricsItemProps) => ( <div className={prependClas...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsItem/index.ts
packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsItem/index.ts
export { default as MessageMetricsItem, type MessageMetricsItemProps, } from './MessageMetricsItem'; export { default as MessageMetricsItemAvatarRow, type MessageMetricsItemProps as MessageMetricsItemAvatarRowProps, } from './MessageMetricsItemAvatarRow'; export { default as MessageMetricsItemAvatarRowContent...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsItem/MessageMetricsItemIcon.tsx
packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsItem/MessageMetricsItemIcon.tsx
import { Icon, type IconProps } from '../../../Icon'; export type MessageMetricsItemIconProps = { name: 'thread' | 'user' | 'clock' | 'discussion'; } & Omit<IconProps, 'name'>; const MessageMetricsItemIcon = (props: MessageMetricsItemIconProps) => ( <Icon size='x20' {...props} /> ); export default MessageMetrics...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsItem/MessageMetricsItemLabel.tsx
packages/fuselage/src/components/Message/MessageMetrics/MessageMetricsItem/MessageMetricsItemLabel.tsx
import type { HTMLAttributes } from 'react'; export type MessageMetricsItemLabelProps = HTMLAttributes<HTMLDivElement>; const MessageMetricsItemLabel = (props: MessageMetricsItemLabelProps) => ( <div className='rcx-message-metrics__item-label' {...props} /> ); export default MessageMetricsItemLabel;
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageToolbar/MessageToolbar.stories.tsx
packages/fuselage/src/components/Message/MessageToolbar/MessageToolbar.stories.tsx
import type { Meta } from '@storybook/react-webpack5'; import { Box } from '../../Box'; import { BasicMessageTemplate } from '../helpers'; import MessageToolbar from './MessageToolbar'; import MessageToolbarItem from './MessageToolbarItem'; export default { title: 'Message/MessageToolbar', component: MessageTool...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageToolbar/MessageToolbar.spec.tsx
packages/fuselage/src/components/Message/MessageToolbar/MessageToolbar.spec.tsx
import { composeStories } from '@storybook/react-webpack5'; import { axe } from 'jest-axe'; import { render } from '../../../testing'; import * as stories from './MessageToolbar.stories'; const testCases = Object.values(composeStories(stories)).map((Story) => [ Story.storyName || 'Story', Story, ]); describe('[...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageToolbar/MessageToolbarItem.tsx
packages/fuselage/src/components/Message/MessageToolbar/MessageToolbarItem.tsx
import { forwardRef } from 'react'; import { IconButton } from '../../Button'; import type { IconButtonProps } from '../../Button/IconButton'; export type MessageToolbarItemProps = IconButtonProps; const MessageToolbarItem = forwardRef< HTMLButtonElement, MessageToolbarItemProps >(function MessageToolbarItem(pro...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageToolbar/MessageToolbarWrapper.tsx
packages/fuselage/src/components/Message/MessageToolbar/MessageToolbarWrapper.tsx
import type { HTMLAttributes } from 'react'; import { forwardRef } from 'react'; export type MessageToolbarWrapperProps = HTMLAttributes<HTMLDivElement> & { visible?: boolean; }; const MessageToolbarWrapper = forwardRef< HTMLDivElement, MessageToolbarWrapperProps >(function MessageToolbarWrapper({ className, vi...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageToolbar/index.ts
packages/fuselage/src/components/Message/MessageToolbar/index.ts
export { default as MessageToolbar, type MessageToolbarProps, } from './MessageToolbar'; export { default as MessageToolbarItem, type MessageToolbarItemProps, } from './MessageToolbarItem'; export { default as MessageToolbarWrapper, type MessageToolbarWrapperProps, } from './MessageToolbarWrapper';
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageToolbar/MessageToolbar.tsx
packages/fuselage/src/components/Message/MessageToolbar/MessageToolbar.tsx
import { forwardRef } from 'react'; import { ButtonGroup, type ButtonGroupProps } from '../../ButtonGroup'; import { Menu } from '../../Menu'; import MessageToolbarItem from './MessageToolbarItem'; import MessageToolbarWrapper from './MessageToolbarWrapper'; export type MessageToolbarProps = ButtonGroupProps; const...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageReactions/MessageReactions.spec.tsx
packages/fuselage/src/components/Message/MessageReactions/MessageReactions.spec.tsx
import { composeStories } from '@storybook/react-webpack5'; import { axe } from 'jest-axe'; import { render } from '../../../testing'; import * as stories from './MessageReactions.stories'; const testCases = Object.values(composeStories(stories)).map((Story) => [ Story.storyName || 'Story', Story, ]); describe(...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageReactions/MessageReactionAction.tsx
packages/fuselage/src/components/Message/MessageReactions/MessageReactionAction.tsx
import type { HTMLAttributes } from 'react'; import { Icon } from '../../Icon'; export const MessageReactionAction = ({ className, ...props }: HTMLAttributes<HTMLDivElement>) => ( <div role='button' tabIndex={0} className={[ 'rcx-message-reactions__reaction rcx-message-reactions__reaction--act...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageReactions/MessageReactionCounter.tsx
packages/fuselage/src/components/Message/MessageReactions/MessageReactionCounter.tsx
type MessageReactionCounterProps = { counter: number; className?: string; }; export const MessageReactionCounter = ({ counter, className, }: MessageReactionCounterProps) => ( <div className={`rcx-message-reactions__counter ${className}`}>{counter}</div> );
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageReactions/MessageReaction.tsx
packages/fuselage/src/components/Message/MessageReactions/MessageReaction.tsx
import type { HTMLAttributes, ReactNode } from 'react'; import { forwardRef } from 'react'; import { MessageReactionCounter } from './MessageReactionCounter'; import { MessageReactionEmoji } from './MessageReactionEmoji'; type MessageReactionProps = { name?: string; counter?: number; mine?: boolean; children?...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageReactions/MessageReactions.tsx
packages/fuselage/src/components/Message/MessageReactions/MessageReactions.tsx
import type { HTMLAttributes } from 'react'; import { forwardRef } from 'react'; import MessageBlock from '../MessageBlock'; export type MessageReactionsProps = HTMLAttributes<HTMLDivElement>; const MessageReactions = forwardRef<HTMLDivElement, MessageReactionsProps>( function MessageReactions(props, ref) { re...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageReactions/MessageReactions.stories.tsx
packages/fuselage/src/components/Message/MessageReactions/MessageReactions.stories.tsx
import type { Meta } from '@storybook/react-webpack5'; import { BasicMessageTemplate } from '../helpers'; import { MessageReaction } from './MessageReaction'; import { MessageReactionAction } from './MessageReactionAction'; import MessageReactions from './MessageReactions'; export default { title: 'Message/Message...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageReactions/MessageReactionEmoji.tsx
packages/fuselage/src/components/Message/MessageReactions/MessageReactionEmoji.tsx
import type { MessageEmojiBaseProps } from '../MessageEmojiBase'; import { MessageEmojiBase } from '../MessageEmojiBase'; export const MessageReactionEmoji = ({ className, ...props }: MessageEmojiBaseProps) => ( <MessageEmojiBase className={`rcx-message-reactions__emoji ${className || ''}`} {...props} ...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageReactions/index.ts
packages/fuselage/src/components/Message/MessageReactions/index.ts
import { MessageReaction } from './MessageReaction'; import { MessageReactionAction } from './MessageReactionAction'; import { MessageReactionCounter } from './MessageReactionCounter'; import { MessageReactionEmoji } from './MessageReactionEmoji'; import MessageReactions, { type MessageReactionsProps, } from './Messa...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageDivider/MessageDivider.tsx
packages/fuselage/src/components/Message/MessageDivider/MessageDivider.tsx
import type { ReactNode } from 'react'; export type MessageDividerProps = { children?: ReactNode; unreadLabel?: string; }; const MessageDivider = ({ children, unreadLabel, ...props }: MessageDividerProps) => ( <div role='separator' className={ !unreadLabel ? 'rcx-message-divider' ...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageDivider/index.ts
packages/fuselage/src/components/Message/MessageDivider/index.ts
export { default as MessageDivider, type MessageDividerProps, } from './MessageDivider';
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageDivider/MessageDivider.spec.tsx
packages/fuselage/src/components/Message/MessageDivider/MessageDivider.spec.tsx
import { render } from '../../../testing'; import { MessageDivider } from '.'; it('renders without crashing', () => { render(<MessageDivider />); });
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/Message/MessageDivider/MessageDivider.stories.tsx
packages/fuselage/src/components/Message/MessageDivider/MessageDivider.stories.tsx
import type { StoryFn, Meta } from '@storybook/react-webpack5'; import { Box } from '../../Box'; import MessageDivider from './MessageDivider'; export default { title: 'Message/MessageDivider', component: MessageDivider, } satisfies Meta<typeof MessageDivider>; export const Default: StoryFn<typeof MessageDivide...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/PositionAnimated/PositionAnimated.stories.tsx
packages/fuselage/src/components/PositionAnimated/PositionAnimated.stories.tsx
import type { StoryFn, Meta } from '@storybook/react-webpack5'; import { useRef } from 'react'; import { AnimatedVisibility } from '../AnimatedVisibility'; import { Tile } from '../Tile'; import PositionAnimated from './PositionAnimated'; export default { title: 'Layout/PositionAnimated', component: PositionAnim...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/PositionAnimated/PositionAnimated.tsx
packages/fuselage/src/components/PositionAnimated/PositionAnimated.tsx
import { AnimatedVisibility } from '../AnimatedVisibility'; import type { PositionProps } from '../Position'; import { Position } from '../Position'; export type PositionAnimatedProps = { visible?: 'hidden' | 'visible' | 'hiding' | 'unhiding'; } & PositionProps; const PositionAnimated = ({ width: _width, visibl...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/PositionAnimated/index.ts
packages/fuselage/src/components/PositionAnimated/index.ts
export { default as PositionAnimated, type PositionAnimatedProps, } from './PositionAnimated';
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/AutoComplete/AutoComplete.spec.tsx
packages/fuselage/src/components/AutoComplete/AutoComplete.spec.tsx
import { composeStories } from '@storybook/react-webpack5'; import { screen } from '@testing-library/dom'; import userEvent from '@testing-library/user-event'; import { axe } from 'jest-axe'; import { withResizeObserverMock } from 'testing-utils/mocks/withResizeObserverMock'; import { render } from '../../testing'; i...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/AutoComplete/index.ts
packages/fuselage/src/components/AutoComplete/index.ts
export { default as AutoComplete, type AutoCompleteProps, } from './AutoComplete';
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/AutoComplete/AutoComplete.stories.tsx
packages/fuselage/src/components/AutoComplete/AutoComplete.stories.tsx
import type { Meta, StoryFn } from '@storybook/react-webpack5'; import { useState, type ReactNode } from 'react'; import { exampleAvatar, DECORATOR_LABEL } from '../../../.storybook/helpers'; import { Avatar } from '../Avatar'; import { Box } from '../Box'; import { Chip } from '../Chip'; import { Option } from '../Op...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false
RocketChat/fuselage
https://github.com/RocketChat/fuselage/blob/28b7a4a51c6c5bf72182f3b708965b1abfc36b38/packages/fuselage/src/components/AutoComplete/AutoComplete.tsx
packages/fuselage/src/components/AutoComplete/AutoComplete.tsx
import { useEffectEvent, useResizeObserver } from '@rocket.chat/fuselage-hooks'; import type { AllHTMLAttributes, ChangeEvent, ComponentType, FocusEvent, MouseEvent, ReactNode, } from 'react'; import { useEffect, useRef, useMemo, useState } from 'react'; import { AnimatedVisibility } from '../AnimatedVisib...
typescript
MIT
28b7a4a51c6c5bf72182f3b708965b1abfc36b38
2026-01-05T04:58:51.149339Z
false