@atlaskit/profilecard
Version:
A React component to display a card with user information.
25 lines (24 loc) • 1.89 kB
TypeScript
import ProfileCardClient from './client/ProfileCardClient';
import TeamProfileClient from './client/TeamProfileCardClient';
import UserProfileClient, { modifyResponse } from './client/UserProfileCardClient';
import AgentProfileCard from './components/Agent/AgentProfileCard';
import { TeamProfileCard } from './components/team-profile-card';
import TeamProfileCardTrigger from './components/Team/TeamProfileCardTrigger';
import ProfileCard from './components/User/ProfileCard';
import ProfileCardResourced from './components/User/ProfileCardResourced';
import ProfileCardTrigger from './components/User/ProfileCardTrigger';
import { DELAY_MS_HIDE, DELAY_MS_SHOW } from './util/config';
export { default as withOuterListeners } from './util/withOuterListeners';
export type { WithOuterListenersProps } from './util/withOuterListeners';
export type { ProfileCardErrorType, ProfilecardTriggerPosition, RelativeDateKeyType, StatusModifiedDateType, StatusType, TriggerType, ApiClientResponse, MessageIntlProviderProps, ProfileCardAction, ProfileCardClientData, ProfileCardResourcedProps, ProfileCardResourcedState, ProfileCardTriggerProps, ProfileCardTriggerState, ProfileClientOptions, ProfilecardProps, PrepopulatedData, Team, AgentProfileCardTriggerProps, } from './types';
export { default as TeamProfileCard } from './components/Team/TeamProfileCard';
export { ProfileCard };
export { ProfileCardTrigger };
export { TeamProfileCardTrigger };
export { AgentProfileCard };
export { ProfileCardClient as ProfileClient, TeamProfileClient, UserProfileClient, modifyResponse };
export { DELAY_MS_SHOW, DELAY_MS_HIDE };
export { AgentProfileCardTrigger } from './components/Agent/AgentProfileCardTrigger';
export { AgentProfileCardResourced } from './components/Agent/AgentProfileCardResourced';
export { TeamProfileCard as TeamProfileCardWithContainer };
export default ProfileCardResourced;