feat(components): 新增表格属性配置

This commit is contained in:
xlsea
2025-06-05 21:09:01 +08:00
parent 9cdbf81467
commit f81a65a359
12 changed files with 160 additions and 4 deletions

View File

@ -63,3 +63,11 @@ export const resetCacheStrategyRecord: Record<UnionKey.ResetCacheStrategy, App.I
export const resetCacheStrategyOptions = transformRecordToOption(resetCacheStrategyRecord);
export const DARK_CLASS = 'dark';
export const themeTableSizeRecord: Record<UnionKey.ThemeTableSize, App.I18n.I18nKey> = {
small: 'theme.table.size.small',
medium: 'theme.table.size.medium',
large: 'theme.table.size.large'
};
export const themeTableSizeOptions = transformRecordToOption(themeTableSizeRecord);