diff --git a/components/cascader/index.en-US.md b/components/cascader/index.en-US.md index 8e91cb6576..1e154b0f8a 100644 --- a/components/cascader/index.en-US.md +++ b/components/cascader/index.en-US.md @@ -28,7 +28,7 @@ Cascade selection box. | disabled | whether disabled select | boolean | false | | displayRender | render function of displaying selected options | `(label, selectedOptions) => ReactNode` | `label => label.join(' / ')` | | expandTrigger | expand current item when click or hover, one of 'click' 'hover' | string | 'click' | -| fieldNames | custom field name for label and value and children | object | `{ label: 'label', value: 'value', children: 'children' }` | +| fieldNames | custom field name for label and value and children (before 3.7.0 it calls `filedNames` which is typo)) | object | `{ label: 'label', value: 'value', children: 'children' }` | | getPopupContainer | Parent Node which the selector should be rendered to. Default to `body`. When position issues happen, try to modify it into scrollable content and position it relative.[example](https://codepen.io/afc163/pen/zEjNOy?editors=0010) | Function(triggerNode) | () => document.body | | loadData | To load option lazily, and it cannot work with `showSearch` | `(selectedOptions) => void` | - | | notFoundContent | Specify content to show when no result matches. | string | 'Not Found' | diff --git a/components/cascader/index.zh-CN.md b/components/cascader/index.zh-CN.md index e1e72fd3c5..4fb77fa9fe 100644 --- a/components/cascader/index.zh-CN.md +++ b/components/cascader/index.zh-CN.md @@ -29,7 +29,7 @@ subtitle: 级联选择 | disabled | 禁用 | boolean | false | | displayRender | 选择后展示的渲染函数 | `(label, selectedOptions) => ReactNode` | `label => label.join(' / ')` | | expandTrigger | 次级菜单的展开方式,可选 'click' 和 'hover' | string | 'click' | -| fieldNames | 自定义 options 中 label name children 的字段 | object | `{ label: 'label', value: 'value', children: 'children' }` | +| fieldNames | 自定义 options 中 label name children 的字段(注意,3.7.0 之前的版本为 `filedNames`) | object | `{ label: 'label', value: 'value', children: 'children' }` | | getPopupContainer | 菜单渲染父节点。默认渲染到 body 上,如果你遇到菜单滚动定位问题,试试修改为滚动的区域,并相对其定位。[示例](https://codepen.io/afc163/pen/zEjNOy?editors=0010) | Function(triggerNode) | () => document.body | | loadData | 用于动态加载选项,无法与 `showSearch` 一起使用 | `(selectedOptions) => void` | - | | notFoundContent | 当下拉列表为空时显示的内容 | string | 'Not Found' |