vue2-mind-map
Version:
`vue2-mind-map` 是一个功能丰富的思维导图可视化组件。该组件提供了完整的思维导图展示和交互功能,支持多种数据格式输入、灵活的布局配置、丰富的样式定制和流畅的用户交互体验。目前基于 Vue 2 构建。
30 lines (29 loc) • 854 B
TypeScript
export interface IFontStyle {
fontFamily?: string;
fontSize?: number;
fontStyle?: 'normal' | 'italic' | 'oblique';
fontWeight?: 'normal' | 'bold';
}
export interface IColorStyle {
color?: string;
}
export interface IBorderStyle {
borderWidth?: number;
borderColor?: string;
borderStyle?: 'solid' | 'dashed' | 'dotted';
}
export interface IBackgroundStyle {
backgroundColor?: string;
opacity?: number;
}
export declare class Style implements IFontStyle, IColorStyle, IBorderStyle, IBackgroundStyle {
fontFamily?: string;
fontSize?: number;
fontStyle?: 'normal' | 'italic' | 'oblique';
fontWeight?: 'normal' | 'bold';
color?: string;
borderWidth?: number;
borderColor?: string;
borderStyle?: 'solid' | 'dashed' | 'dotted';
backgroundColor?: string;
}