@cometchat/chat-uikit-vue
Version:
Ready-to-use Chat UI Components for Vue(Javascript/Web)
32 lines (31 loc) • 1.51 kB
TypeScript
import { AvatarStyle, ListItemStyle } from "@cometchat/uikit-elements";
import { CallLogParticipantsStyle, ListStyle } from "@cometchat/uikit-shared";
import { CometChatTheme } from "@cometchat/uikit-resources";
import { CSSProperties } from "vue";
export declare function getButtonContainerStyle(): CSSProperties;
export declare function getBackButtonStyle(theme: CometChatTheme, style: CallLogParticipantsStyle): {
height: string;
width: string;
border: string;
borderRadius: string;
background: string;
buttonIconTint: string;
};
export declare function getListStyle(theme: CometChatTheme, callLogsStyle: CallLogParticipantsStyle): ListStyle;
export declare function getAvatarStyle(theme: CometChatTheme, avatarStyle?: AvatarStyle): AvatarStyle;
export declare function getListItemStyle(theme: CometChatTheme, listItemStyle?: ListItemStyle): ListItemStyle;
export declare function getSubtitleStyle(theme: CometChatTheme, style: CallLogParticipantsStyle): CSSProperties;
export declare function getCallDateStyle(theme: CometChatTheme, style: CallLogParticipantsStyle): {
textColor: string;
textFont: string;
font: string;
color: string;
background: string;
padding: string;
};
export declare function getContainerStyle(theme: CometChatTheme, callLogsStyle: CallLogParticipantsStyle): CSSProperties;
export declare function getTitleStyle(theme: CometChatTheme, style: CallLogParticipantsStyle): {
font: string;
color: string;
background: string;
};