mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 13:47:02 +08:00
882cec62d6
* docs: Add components overview page * fix detail * remove ContributorsList form overview page * fix components url * improve code style * remove extra file * fix detail * fix lint * fix lint * docs: Finish components overview page * fix lint * docs: Update cover * fix lint * update cover * update menu * improve overview page * refactor code * fix order * update title * add components count * fix overview page ssr bug * move less file * update title margin Co-authored-by: arvinxx <arvinx@foxmail.com>
3.8 KiB
3.8 KiB
category | subtitle | cols | type | title | cover |
---|---|---|---|---|---|
Components | 全局化配置 | 1 | 其他 | ConfigProvider | https://gw.alipayobjects.com/zos/alicdn/kegYxl1wj/ConfigProvider.svg |
为组件提供统一的全局化配置。
使用
ConfigProvider 使用 React 的 context 特性,只需在应用外围包裹一次即可全局生效。
import { ConfigProvider } from 'antd';
// ...
return (
<ConfigProvider {...yourConfig}>
<App />
</ConfigProvider>
);
Content Security Policy
部分组件为了支持波纹效果,使用了动态样式。如果开启了 Content Security Policy (CSP),你可以通过 csp
属性来进行配置:
<ConfigProvider csp={{ nonce: 'YourNonceCode' }}>
<Button>My Button</Button>
</ConfigProvider>
API
参数 | 说明 | 类型 | 默认值 | 版本 |
---|---|---|---|---|
autoInsertSpaceInButton | 设置为 false 时,移除按钮中 2 个汉字之间的空格 |
boolean | true | |
componentSize | 设置 antd 组件大小 | small | middle | large |
- | |
csp | 设置 Content Security Policy 配置 | { nonce: string } | - | |
form | 设置 Form 组件的通用属性 | { validateMessages?: ValidateMessages } | - | |
input | 设置 Input 组件的通用属性 | { autoComplete?: string } | - | 4.2.0 |
renderEmpty | 自定义组件空状态。参考 空状态 | Function(componentName: string): ReactNode | - | |
getPopupContainer | 弹出框(Select, Tooltip, Menu 等等)渲染父节点,默认渲染到 body 上。 | Function(triggerNode) | () => document.body | |
getTargetContainer | 配置 Affix、Anchor 滚动监听容器。 | () => HTMLElement | () => window | 4.2.0 |
locale | 语言包配置,语言包可到 antd/es/locale 目录下寻找 | object | - | |
prefixCls | 设置统一样式前缀。注意:这将不会应用由 antd 提供的默认样式 |
string | ant | |
pageHeader | 统一设置 PageHeader 的 ghost,参考 PageHeader | { ghost: boolean } | true | |
direction | 设置文本展示方向。 示例 | ltr | rtl |
ltr |
|
space | 设置 Space 的 size ,参考 Space |
{ size: small | middle | large | number } |
- | 4.1.0 |
virtual | 设置 false 时关闭虚拟滚动 |
boolean | - | 4.3.0 |
dropdownMatchSelectWidth | 下拉菜单和选择器同宽。默认将设置 min-width 。false 时会关闭虚拟滚动 |
boolean | number | - | 4.3.0 |
FAQ
如何增加一个新的语言包?
参考《增加语言包》。
为什么我使用了 ConfigProvider locale
,时间类组件的国际化还有问题?
请检查是否正确设置了 moment 语言包,或者是否有两个版本的 moment 共存。
import 'moment/locale/zh-cn';
moment.locale('zh-cn');
配置 getPopupContainer
导致 Modal 报错?
相关 issue:https://github.com/ant-design/ant-design/issues/19974
当如下全局设置 getPopupContainer
为触发节点的 parentNode 时,由于 Modal 的用法不存在 triggerNode
,这样会导致 triggerNode is undefined
的报错,需要增加一个判断条件。
<ConfigProvider
- getPopupContainer={triggerNode => triggerNode.parentNode}
+ getPopupContainer={node => {
+ if (node) {
+ return node.parentNode;
+ }
+ return document.body;
+ }}
>
<App />
</ConfigProvider>