This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Basically, antd naming requires FULL NAME instead of Abbreviation.
Props
- Initialize prop:
default
+PropName
- Force render:
forceRender
- Force render sub component:
force
+Sub Component Name
+Render
- Force render sub component:
- Sub Component Render:
Sub Component Name
+Render
. e.g.
panelRender(originNode, info: { SubComponent1, SubComponent2, [somePassedProps]: someValue })
- Sub Item Render:
Sub Item Name
+Render
. e.g.
cellRender(date, info: { [somePassedProps]: someValue })
- Data Source:
dataSource
- Panel open: popup & dropdown
open
, additional popuppopupName
+Open
liketooltipOpen
- Do not use
visible
to make sure all the visible api align
- Do not use
children
:- Mainly display content. To avoid additional prop name.
- Option list like
Select.Option
orTree.TreeNode
. - Customize wrapped component can consider use
component
prop ifchildren
may have other usage in future.
- Display related naming:
show
+PropName
- Functional:
PropName
+able
- Disable:
disabled
- sub component:
disabled
+Sub Component Name
- sub component:
- Extra:
extra
- sub component:
Sub Component Name
+extra
. e.g.titleExtra
- sub component:
- mainly icon:
icon
- Merge with function first:
functionName: { icon }
. e.g.expandable: { icon: <Smile /> }
- Multiple icons:
FunctionName
+Icon
- Merge with function first:
- Trigger:
trigger
- Sub function trigger:
Sub Function
+Trigger
- Trigger on the time point:
xxx
+On
+EventName
(e.g.destroyOnClose
)
- Sub function trigger:
- Component use other component config. Naming as component.(e.g.
<Table pagination={{...}} />
) - ClassName:
className
- Additional classes should be merged into
classes
(e.g.<Button classes={{ inner: 'custom-inner' }} />
)
- Additional classes should be merged into
- Format
- Not modify value when blur:
preserveInvalidOnBlur
- Not modify value when blur:
Event
- Trigger event:
on
+EventName
- Trigger sub component event:
on
+SubComponentName
+EventName
(e.g.onSearchChange
) - Trigger prop event:
on
+PropName
+EventName
(e.g.onDragStart
)
- Trigger sub component event:
- Before trigger event:
before
+EventName
- After trigger event:
after
+EventName
- After continuous action, such as drag Slider:
on
+EventName
+Complete
Reference
Component should have ref
prop. Which should provide the structure:
ComponentRef {
nativeElement: HTMLElement;
// Other function
focus: VoidFunction;
}
Component Token
variant (optional)
+ semantic part
+ semantic part variant (optional)
+ css property
+ size/disabled (optional)
All component tokens should follow the structure above, and should not conflict with Global Token.
variant
means this token only works in certain variant, likehorizontal
borderless
.semantic part
means the typical element of component, likeitem
header
. If there's.semantic part status
means the variant of the semantic part before it, likehover
selected
.css property
means the exact property where the token is used, likefontSize
width
.
For example:
v4 | v5 | Note |
---|---|---|
@menu-item-color |
itemColor |
Remove the component prefix |
@select-item-selected-bg |
itemSelectedBg |
selected is variant of item |
@select-single-item-height-lg |
itemHeightLG |
single is variant of Select (by default), LG is size of Select |
Note: If there's no semantic part for one component token, for example, the root borderRadius of Button, it is not suitable to add it. Because we could modify it easily with
className
andstyle
.
Current listing api & Chinese version
ref: #16048
API standard in the document
Examples
Property | Description | Type | Default |
---|---|---|---|
htmlType | xxx | string | button |
type | xxx | horizontal | vertical |
horizontal |
disabled | xxx | boolean | false |
minLength | xxx | number | 0 |
style | xxx | CSSProperties | - |
character | xxx | (props) => ReactNode | - |
offset | xxx | [number, number] | [0, 0] |
value | xxx | string | number | small |
Promise
- When string type, the Default use
``
. - Can also list string optional values in Type.
- When boolean type, the Default value is true or false.
- When number type, the Default value use numbers directly.
- When function type, use an arrow function expression in Type.
- No default value use - .
- Capitalize the first letter in Description apart from
someProp
. - No period at the end of the Description.
- API order is arranged in alphabetical order, and can be put together under special circumstances (such as: xs sm md).
ref: #25066
- Home
- Cookbook
- FAQ
- Template for Bug Report in IE8 9
- Contributing
- Maintaining
- Design