Browse Source

Pull request #3041: KERNEL-7828 chore:补充Button类型定义

Merge in VISUAL/fineui from ~CAUCHY.KE/fineui:master to master

* commit '24a56cc5b6d3c605cbb1841aae4bb3c91098add8':
  KERNEL-7828 chore:补充Button类型定义
es6
Cauchy.Ke 2 years ago
parent
commit
c54cd22820
  1. 5
      typescript/base/single/button/buttons/button.ts

5
typescript/base/single/button/buttons/button.ts

@ -10,8 +10,11 @@ export declare class Button extends BasicButton {
minWidth?: number;
readonly?: boolean;
iconCls?: string;
level?: 'common' | 'success' | 'warning' |'ignore',
level?: 'common' | 'success' | 'warning' | 'error' | 'ignore',
block?: boolean; // 是否块状显示,即不显示边框,没有最小宽度的限制
loading?: boolean, // 是否处于加载中
light?: boolean, // 是否使用浅色
plain?: boolean, // 是否是朴素按钮,和 clear 的区别是 plain 有悬浮效果
clear?: boolean; // 是否去掉边框和背景
ghost?: boolean; // 是否幽灵显示, 即正常状态无背景
iconGap?: number;

Loading…
Cancel
Save