feat: Implement Text control and update Topology (#37)

This commit is contained in:
Fine0830
2022-03-25 15:51:06 +08:00
committed by GitHub
parent 4380a874de
commit 99e23c33dc
20 changed files with 454 additions and 74 deletions

View File

@@ -91,6 +91,14 @@ export interface CardConfig {
textAlign?: "center" | "right" | "left";
}
export interface TextConfig {
fontSize: number;
backgroundColor: string;
textAlign: string;
fontColor: string;
content: string;
}
export interface TableConfig {
type?: string;
showTableValues: boolean;