mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
479e4e8884
* ♻️ refactor token system interface * 📝 docs: add more token meta info to seeds and map token * 🔨 chore: update token meta generator scripts * 🚨 chore: fix lint * 📝 docs: 补充 token 的 meta 信息 * chore: add json in pkg * chore: update script * chore: update flag Co-authored-by: MadCcc <1075746765@qq.com>
40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
export interface StyleMapToken {
|
||
/**
|
||
* @nameZH 线宽
|
||
* @nameEN Line Width
|
||
* @desc 描边类组件的默认线宽,如 Button、Input、Select 等输入类控件。
|
||
* @descEN The default line width of the outline class components, such as Button, Input, Select, etc.
|
||
* @default 1
|
||
*/
|
||
lineWidthBold: number;
|
||
|
||
/**
|
||
* @nameZH XS号圆角
|
||
* @desc XS号圆角,用于组件中的一些小圆角,如 Segmented 、Arrow 等一些内部圆角的组件样式中。
|
||
* @descEN XS size border radius, used in some small border radius components, such as Segmented, Arrow and other components.
|
||
* @default 2
|
||
*/
|
||
borderRadiusXS: number;
|
||
/**
|
||
* @nameZH SM号圆角
|
||
* @nameEN SM Border Radius
|
||
* @desc SM号圆角,用于组件小尺寸下的圆角,如 Button、Input、Select 等输入类控件在 small size 下的圆角
|
||
* @descEN SM size border radius, used in small size components, such as Button, Input, Select and other input components in small size
|
||
* @default 4
|
||
*/
|
||
borderRadiusSM: number;
|
||
/**
|
||
* @nameZH LG号圆角
|
||
* @nameEN LG Border Radius
|
||
* @desc LG号圆角,用于组件中的一些大圆角,如 Card、Modal 等一些组件样式。
|
||
* @descEN LG size border radius, used in some large border radius components, such as Card, Modal and other components.
|
||
* @default 8
|
||
*/
|
||
borderRadiusLG: number;
|
||
/**
|
||
* @default 4
|
||
* @internal
|
||
*/
|
||
borderRadiusOuter: number;
|
||
}
|