mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-11 03:58:14 +00:00
* [feature](webapp) add drill down dimensions and metric period compare and modify layout * [feature](webapp) add drill down dimensions and metric period compare and modify layout * [feature](webapp) gitignore add supersonic-webapp * [feature](webapp) gitignore add supersonic-webapp * [feature](webapp) add chat plugin and split query to parse and execute * [feature](webapp) add chat plugin and split query to parse and execute * [feature](webapp) add chat plugin and split query to parse and execute --------- Co-authored-by: williamhliu <williamhliu@tencent.com>
39 lines
749 B
TypeScript
39 lines
749 B
TypeScript
export const THEME_COLOR_LIST = [
|
|
'#3369FF',
|
|
'#36D2B8',
|
|
'#DB8D76',
|
|
'#47B359',
|
|
'#8545E6',
|
|
'#E0B18B',
|
|
'#7258F3',
|
|
'#0095FF',
|
|
'#52CC8F',
|
|
'#6675FF',
|
|
'#CC516E',
|
|
'#5CA9E6',
|
|
];
|
|
|
|
export enum SemanticTypeEnum {
|
|
DOMAIN = 'DOMAIN',
|
|
DIMENSION = 'DIMENSION',
|
|
METRIC = 'METRIC',
|
|
VALUE = 'VALUE',
|
|
}
|
|
|
|
export const SEMANTIC_TYPE_MAP = {
|
|
[SemanticTypeEnum.DOMAIN]: '主题域',
|
|
[SemanticTypeEnum.DIMENSION]: '维度',
|
|
[SemanticTypeEnum.METRIC]: '指标',
|
|
[SemanticTypeEnum.VALUE]: '维度值',
|
|
};
|
|
|
|
export const CHAT_TITLE = '';
|
|
|
|
export const DEFAULT_CONVERSATION_NAME = '新问答对话';
|
|
|
|
export const PAGE_TITLE = '问答对话';
|
|
|
|
export const WEB_TITLE = '问答对话';
|
|
|
|
export const PLACE_HOLDER = '请输入您的问题';
|