2018-11-26 12:06:42 +08:00
---
category: Components
2022-11-09 12:28:04 +08:00
group: Other
2018-11-26 12:06:42 +08:00
title: ConfigProvider
2022-11-30 20:14:41 +08:00
cover: https://mdn.alipayobjects.com/huamei_7uahnr/afts/img/A*NVKORa7BCVwAAAAAAAAAAAAADrJ8AQ/original
2023-02-09 22:17:31 +08:00
coverDark: https://mdn.alipayobjects.com/huamei_7uahnr/afts/img/A*YC4ERpGAddoAAAAAAAAAAAAADrJ8AQ/original
2018-11-26 12:06:42 +08:00
---
`ConfigProvider` provides a uniform configuration support for components.
## Usage
2019-11-21 07:39:57 +08:00
This component provides a configuration to all React components underneath itself via the [context API ](https://facebook.github.io/react/docs/context.html ). In the render tree all components will have access to the provided config.
2018-11-26 12:06:42 +08:00
2023-01-19 15:37:54 +08:00
```tsx
2018-11-26 12:06:42 +08:00
import { ConfigProvider } from 'antd';
2023-01-19 15:37:54 +08:00
import React from 'react';
2018-11-26 12:06:42 +08:00
// ...
2023-01-19 15:37:54 +08:00
const Demo: React.FC = () => (
2020-08-03 14:35:11 +08:00
< ConfigProvider direction = "rtl" >
2018-11-26 12:06:42 +08:00
< App / >
< / ConfigProvider >
);
2023-01-19 15:37:54 +08:00
export default Demo;
2018-11-26 12:06:42 +08:00
```
2019-01-09 20:15:37 +08:00
### Content Security Policy
2019-11-21 07:39:57 +08:00
Some components use dynamic style to support wave effect. You can config `csp` prop if Content Security Policy (CSP) is enabled:
2019-01-09 20:15:37 +08:00
2023-01-19 15:37:54 +08:00
```tsx
2019-01-09 20:15:37 +08:00
< ConfigProvider csp = {{ nonce: ' YourNonceCode ' } } >
< Button > My Button< / Button >
< / ConfigProvider >
```
2022-11-09 12:28:04 +08:00
## Examples
2022-11-17 17:31:26 +08:00
<!-- prettier - ignore -->
2022-11-09 12:28:04 +08:00
< code src = "./demo/locale.tsx" > Locale< / code >
< code src = "./demo/direction.tsx" > Direction< / code >
< code src = "./demo/size.tsx" > Component size< / code >
< code src = "./demo/theme.tsx" > Theme< / code >
< code src = "./demo/prefixCls.tsx" debug > prefixCls< / code >
2023-02-14 17:39:35 +08:00
< code src = "./demo/useConfig.tsx" debug > useConfig< / code >
2022-11-09 12:28:04 +08:00
2018-11-26 12:06:42 +08:00
## API
2022-11-17 17:31:26 +08:00
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
| autoInsertSpaceInButton | Set false to remove space between 2 chinese characters on Button | boolean | true | |
| componentDisabled | Config antd component `disabled` | boolean | - | 4.21.0 |
| componentSize | Config antd component size | `small` \| `middle` \| `large` | - | |
| csp | Set [Content Security Policy ](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP ) config | { nonce: string } | - | |
| direction | Set direction of layout. See [demo ](#components-config-provider-demo-direction ) | `ltr` \| `rtl` | `ltr` | |
2023-04-04 17:17:36 +08:00
| popupMatchSelectWidth | Determine whether the dropdown menu and the select input are the same width. Default set `min-width` same as input. Will ignore when value less than select width. `false` will disable virtual scroll | boolean \| number | - | 5.5.0 |
2023-04-07 10:17:00 +08:00
| popupOverflow | Select like component popup logic. Can set to show in viewport or follow window scroll | 'viewport' \| 'scroll' < InlinePopover previewURL = "https://user-images.githubusercontent.com/5378891/230344474-5b9f7e09-0a5d-49e8-bae8-7d2abed6c837.png" ></ InlinePopover > | 'viewport' | 5.5.0 |
2023-01-03 09:56:47 +08:00
| form | Set Form common props | { validateMessages?: [ValidateMessages ](/components/form/#validatemessages ), requiredMark?: boolean \| `optional` , scrollToFirstError?: boolean \| [Options ](https://github.com/stipsan/scroll-into-view-if-needed/tree/ece40bd9143f48caf4b99503425ecb16b0ad8249#options ) } | - | requiredMark: 4.8.0; colon: 4.18.0; scrollToFirstError: 5.2.0 |
2022-11-17 17:31:26 +08:00
| getPopupContainer | To set the container of the popup element. The default is to create a `div` element in `body` | function(triggerNode) | () => document.body | |
| getTargetContainer | Config Affix, Anchor scroll target container | () => HTMLElement | () => window | 4.2.0 |
| iconPrefixCls | Set icon prefix className | string | `anticon` | 4.11.0 |
| input | Set Input common props | { autoComplete?: string } | - | 4.2.0 |
2022-12-14 10:22:17 +08:00
| select | Set Select common props | { showSearch?: boolean } | - | |
2022-11-17 17:31:26 +08:00
| locale | Language package setting, you can find the packages in [antd/locale ](http://unpkg.com/antd/locale/ ) | object | - | |
| prefixCls | Set prefix className | string | `ant` | |
| renderEmpty | Set empty content of components. Ref [Empty ](/components/empty/ ) | function(componentName: string): ReactNode | - | |
| space | Set Space `size` , ref [Space ](/components/space ) | { size: `small` \| `middle` \| `large` \| `number` } | - | 4.1.0 |
2022-11-24 11:26:38 +08:00
| theme | Set theme, ref [Customize Theme ](/docs/react/customize-theme ) | - | - | 5.0.0 |
2022-11-17 17:31:26 +08:00
| virtual | Disable virtual scroll when set to `false` | boolean | - | 4.3.0 |
2019-11-09 16:24:07 +08:00
2021-02-09 21:49:15 +08:00
### ConfigProvider.config() `4.13.0+`
2021-03-16 09:33:16 +08:00
Setting `Modal` 、`Message`、`Notification` rootPrefixCls.
2021-02-09 21:49:15 +08:00
2023-01-19 15:37:54 +08:00
```ts
2021-02-09 21:49:15 +08:00
ConfigProvider.config({
2021-06-09 15:36:59 +08:00
prefixCls: 'ant', // 4.13.0+
iconPrefixCls: 'anticon', // 4.17.0+
2021-02-09 21:49:15 +08:00
});
```
2023-02-14 17:39:35 +08:00
### ConfigProvider.useConfig() `5.3.0+`
Available since `5.2.0` . Get the value of the parent `Provider` . Such as `DisabledContextProvider` , `SizeContextProvider` .
```jsx
const {
componentDisabled, // 5.3.0+
componentSize, // 5.3.0+
} = ConfigProvider.useConfig();
```
| 返回值 | 说明 | 类型 | 默认值 | 版本 |
| --- | --- | --- | --- | --- |
| componentDisabled | antd component disabled state | boolean | - | 5.3.0 |
| componentSize | antd component size state | `small` \| `middle` \| `large` | - | 5.3.0 |
2019-11-09 16:24:07 +08:00
## FAQ
2020-05-27 20:05:13 +08:00
#### How to contribute a new language?
2022-12-22 14:12:26 +08:00
See [<Adding new language> ](/docs/react/i18n#adding-newplanguage ).
2020-05-27 20:05:13 +08:00
2022-07-12 13:10:20 +08:00
#### Date-related components locale is not working?
2019-11-09 16:24:07 +08:00
2022-12-22 14:12:26 +08:00
See FAQ [Date-related-components-locale-is-not-working? ](/docs/react/faq#date-related-components-locale-is-not-working )
2019-12-09 19:40:43 +08:00
#### Modal throw error when setting `getPopupContainer`?
2020-10-21 10:33:43 +08:00
Related issue: < https: / / github . com / ant-design / ant-design / issues / 19974 >
2019-12-09 19:40:43 +08:00
When you config `getPopupContainer` to parentNode globally, Modal will throw error of `triggerNode is undefined` because it did not have a triggerNode. You can try the [fix ](https://github.com/afc163/feedback-antd/commit/3e4d1ad1bc1a38460dc3bf3c56517f737fe7d44a ) below.
```diff
< ConfigProvider
- getPopupContainer={triggerNode => triggerNode.parentNode}
+ getPopupContainer={node => {
+ if (node) {
+ return node.parentNode;
+ }
+ return document.body;
+ }}
>
< App / >
< / ConfigProvider >
```
2022-11-29 10:39:57 +08:00
#### Why can't ConfigProvider props (like `prefixCls` and `theme`) affect ReactNode inside `message.info`, `notification.open`, `Modal.confirm`?
antd will dynamic create React instance by `ReactDOM.render` when call message methods. Whose context is different with origin code located context. We recommend `useMessage` , `useNotification` and `useModal` which , the methods came from `message/notification/Modal` has been deprecated in 5.x.
2022-12-13 18:07:28 +08:00
#### Locale is not working with Vite in production mode?
Related issue: [#39045 ](https://github.com/ant-design/ant-design/issues/39045 )
In production mode of Vite, default exports from cjs file should be used like this: `enUS.default` . So you can directly import locale from `es/` directory like `import enUS from 'antd/es/locale/en_US'` to make dev and production have the same behavior.