You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

95 lines
1.9 KiB

/**
* 尺寸配置
*/
export declare const SIZE_STYLE: {
small: {
textFontSize: number;
buttonWidth: number;
buttonHeight: number;
markerSize: number;
};
middle: {
textFontSize: number;
buttonWidth: number;
buttonHeight: number;
markerSize: number;
};
large: {
textFontSize: number;
buttonWidth: number;
buttonHeight: number;
markerSize: number;
};
};
/**
* 类型配置
*/
export declare const TYPE_STYLE: {
primary: {
default: {
textFill: string;
buttonFill: string;
buttonLineWidth: number;
markerFill: string;
};
active: {
buttonFill: string;
markerFill: string;
};
disabled: {};
};
dashed: {
default: {
buttonFill: string;
buttonStroke: string;
buttonLineDash: number[];
};
active: {};
disabled: {};
};
link: {
default: {
textFill: string;
buttonFill: string;
buttonLineWidth: number;
markerFill: string;
};
active: {};
disabled: {};
};
text: {
default: {
textFill: string;
buttonFill: string;
buttonLineWidth: number;
markerFill: string;
};
active: {};
disabled: {};
};
default: {
default: {
textFill: string;
buttonFill: string;
buttonStroke: string;
markerFill: string;
};
active: {
textFill: string;
buttonStroke: string;
markerStroke: string;
};
disabled: {};
};
};
/**
* disabled style
*/
export declare const DISABLED_STYLE: {
strict: {
textFill: string;
};
buttonStroke: string;
buttonFill: string;
markerStroke: string;
};