feat: enhance description component, update property panel with tabs, and refine docs

This commit is contained in:
yuding
2025-12-22 16:41:24 +08:00
parent ed0414c75b
commit e1bb5558ff
19 changed files with 2640 additions and 1856 deletions

View File

@@ -39,11 +39,14 @@ export const enUS: TranslationDictionary = {
},
panel: {
property: {
title: 'Property Panel',
title: 'Component Details',
base: 'Basic Info',
material: 'Material',
advanced: 'Advanced'
advanced: 'Advanced',
tab: {
props: 'Properties',
material: 'Material'
}
}
}
};
};

View File

@@ -26,6 +26,10 @@ export interface TranslationDictionary {
base: string;
material: string;
advanced: string;
tab: {
props: string;
material: string;
}
}
};
dialog: {
@@ -50,6 +54,6 @@ export interface TranslationDictionary {
}
/**
* 语言码类型
* 语言<EFBFBD><EFBFBD>码类型
*/
export type LocaleType = 'zh-CN' | 'en-US';
export type LocaleType = 'zh-CN' | 'en-US';

View File

@@ -39,10 +39,14 @@ export const zhCN: TranslationDictionary = {
},
panel: {
property: {
title: '属性面板',
title: '构件详情',
base: '基本属性',
material: '材质信息',
advanced: '高级设置'
advanced: '高级设置',
tab: {
props: '属性',
material: '材质'
}
}
}
};
};