Skip to content

Commit

Permalink
chore: collapse token meta (ant-design#44211)
Browse files Browse the repository at this point in the history
  • Loading branch information
MadCcc authored Aug 14, 2023
1 parent 1b479c4 commit 009779c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
14 changes: 1 addition & 13 deletions components/badge/index.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,7 @@ Common props ref:[Common props](/docs/react/common-props)
### Badge

| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
| color | Customize Badge dot color | string | - | |
| count | Number to show in badge | ReactNode | - | |
| classNames | Semantic DOM class | Record<SemanticDOM, string> | - | 5.7.0 |
| dot | Whether to display a red dot instead of `count` | boolean | false | |
| offset | Set offset of the badge dot | \[number, number] | - | |
| overflowCount | Max count to show | number | 99 | |
| showZero | Whether to show badge when `count` is zero | boolean | false | |
| size | If `count` is set, `size` sets the size of badge | `default` \| `small` | - | 4.6.0 |
| status | Set Badge as a status dot | `success` \| `processing` \| `default` \| `error` \| `warning` | - | |
| styles | Semantic DOM style | Record<SemanticDOM, CSSProperties> | - | 5.7.0 |
| text | If `status` is set, `text` sets the display text of the status `dot` | ReactNode | - | |
| title | Text to show when hovering over the badge | string | - | |
| -------- | ----------- | ---- | ------- | ------- |

### Badge.Ribbon (4.5.0+)

Expand Down
16 changes: 16 additions & 0 deletions components/collapse/style/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,25 @@ import { genComponentStyleHook, mergeToken } from '../../theme/internal';
/** Component only token. Which will handle additional calculation of alias token */
export interface ComponentToken {
// Component token here
/**
* @desc 折叠面板头部内边距
* @descEN Padding of header
*/
headerPadding: CSSProperties['padding'];
/**
* @desc 折叠面板头部背景
* @descEN Background of header
*/
headerBg: string;
/**
* @desc 折叠面板内容内部编辑
* @descEN Padding of content
*/
contentPadding: CSSProperties['padding'];
/**
* @desc 折叠面板内容背景
* @descEN Background of content
*/
contentBg: string;
}

Expand Down

0 comments on commit 009779c

Please sign in to comment.