This commit is contained in:
pengxiaolong
2025-05-13 19:39:53 +08:00
parent 37da6765b8
commit c006a8e63d
1232 changed files with 96963 additions and 883 deletions

48
TUIKit/constant.ts Normal file
View File

@@ -0,0 +1,48 @@
export const CONV_OPERATION = {
DELETE: "delete",
ISPINNED: "ispinned",
DISPINNED: "dispinned",
MUTE: "mute",
NOTMUTE: "notmute",
};
export const CONV_CREATE_TYPE = {
TYPEC2C: "isC2C",
TYPEGROUP: "isGroup",
JOINGROUP: "joinGroup",
};
export const CHAT_MSG_CUSTOM_TYPE = {
SERVICE: "consultion",
EVALUATE: "evaluation",
LINK: "text_link",
CALL: 1,
ORDER: "order",
};
export const DIALOG_CONTENT = {
USERLIST: "userList",
GROUPINFORMATION: "groupInformation",
};
export const EMOJI_TYPE = {
BASIC: "basic",
BIG: "big",
CUSTOM: "CUSTOM",
};
export const CONTACT_INFO_LABEL_POSITION = {
LEFT: "left",
TOP: "top",
};
export const CONTACT_INFO_MORE_EDIT_TYPE = {
INPUT: "input",
TEXTAREA: "textarea",
SWITCH: "switch",
};
export const CONTACT_INFO_BUTTON_TYPE = {
SUBMIT: "submit",
CANCEL: "cancel",
};