This commit is contained in:
07akioni 2022-06-29 03:57:31 +08:00
parent d46e425ca0
commit fe2dafe3c3
8 changed files with 18 additions and 18 deletions

View File

@ -1,6 +1,6 @@
# CHANGELOG
## NEXT_VERSION
## 2.30.7
### Fixes

View File

@ -1,6 +1,6 @@
# CHANGELOG
## NEXT_VERSION
## 2.30.7
### Fixes

View File

@ -64,7 +64,7 @@ The following list is sorted by 'Config'.
| Slovak | skSK | dateSkSK | 2.25.3 |
| Thai (Thailand) | thTH | dateThTH | 2.27.0 |
| Ukrainian | ukUA | dateUkUA | |
| Vietnamese | viVN | dateViVN | NEXT_VERSION |
| Vietnamese (Vietnam) | viVN | dateViVN | 2.30.7 |
| Chinese (Simplified) | zhCN | dateZhCN | |
| Chinese (Traditional) | zhTW | dateZhTW | |

View File

@ -64,7 +64,7 @@ Naive-ui 通过使用 `n-config-provider` 调整语言,默认情况下所有
| 斯洛伐克语 | skSK | dateSkSK | 2.25.3 |
| 泰语(泰国) | thTH | dateThTH | 2.27.0 |
| 乌克兰语 | ukUA | dateUkUA | |
| 越南语 | viVN | dateViVN | NEXT_VERSION |
| 越南语(越南) | viVN | dateViVN | 2.30.7 |
| 简体中文 | zhCN | dateZhCN | |
| 繁体中文 | zhTW | dateZhTW | |

View File

@ -1,6 +1,6 @@
{
"name": "naive-ui",
"version": "2.30.6",
"version": "2.30.7",
"description": "A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast",
"main": "lib/index.js",
"module": "es/index.js",

View File

@ -45,15 +45,15 @@ debug.vue
| max-tag-count | `number \| 'responsive'` | `undefined` | Maximum number of selected options to show before the list is truncated. `'responsive'` will keep all of the selected options in one row. | |
| menu-props | `HTMLAttributes` | `undefined` | The menu's dom props. | 2.22.0 |
| multiple | `boolean` | `false` | Allow selecting multiple options. | |
| node-props | `(info: { option: TreeSelectOption }) => HTMLAttributes` | `undefined` | HTML attributes of node. | NEXT_VERSION |
| node-props | `(info: { option: TreeSelectOption }) => HTMLAttributes` | `undefined` | HTML attributes of node. | 2.30.7 |
| options | `TreeSelectOption[]` | `[]` | Options. | |
| placeholder | `string` | `'Please Select'` | Placeholder. | |
| placement | `'top-start' \| 'top' \| 'top-end' \| 'right-start' \| 'right' \| 'right-end' \| 'bottom-start' \| 'bottom' \| 'bottom-end' \| 'left-start' \| 'left' \| 'left-end'` | `'bottom-start'` | Tree select menu's placement. | 2.25.0 |
| render-label | `(info: { option: TreeSelectOption, checked: boolean, selected: boolean }) => VNodeChild` | `undefined` | Render function of all the options' label. | NEXT_VERSION |
| render-prefix | `(info: { option: TreeSelectOption, checked: boolean, selected: boolean }) => VNodeChild` | `undefined` | Render function of all the options' prefix. | NEXT_VERSION |
| render-suffix | `(info: { option: TreeSelectOption, checked: boolean, selected: boolean }) => VNodeChild` | `undefined` | Render function of all the options' suffix. | NEXT_VERSION |
| render-switcher-icon | `() => VNodeChild` | `undefined` | Render function of option switcher icon. | NEXT_VERSION |
| render-tag | `(props: { option: TreeSelectOption, handleClose: () => void }) => VNodeChild` | `undefined` | Render function for each option tag. | NEXT_VERSION |
| render-label | `(info: { option: TreeSelectOption, checked: boolean, selected: boolean }) => VNodeChild` | `undefined` | Render function of all the options' label. | 2.30.7 |
| render-prefix | `(info: { option: TreeSelectOption, checked: boolean, selected: boolean }) => VNodeChild` | `undefined` | Render function of all the options' prefix. | 2.30.7 |
| render-suffix | `(info: { option: TreeSelectOption, checked: boolean, selected: boolean }) => VNodeChild` | `undefined` | Render function of all the options' suffix. | 2.30.7 |
| render-switcher-icon | `() => VNodeChild` | `undefined` | Render function of option switcher icon. | 2.30.7 |
| render-tag | `(props: { option: TreeSelectOption, handleClose: () => void }) => VNodeChild` | `undefined` | Render function for each option tag. | 2.30.7 |
| separator | `string` | `' / '` | Option value separator. | |
| show-path | `boolean` | `false` | Whether to also show the hierarchy of selected nodes in the label. | |
| size | `'small' \| 'medium' \| 'large'` | `'medium'` | Component size. | |

View File

@ -48,15 +48,15 @@ render-debug.vue
| max-tag-count | `number \| 'responsive'` | `undefined` | 多选时最多直接显示多少选项,设为 `'responsive'` 会保证最多一行 | |
| menu-props | `HTMLAttributes` | `undefined` | 菜单的 DOM 属性 | 2.22.0 |
| multiple | `boolean` | `false` | 是否支持多选 | |
| node-props | `(info: { option: TreeSelectOption }) => HTMLAttributes` | `undefined` | 节点的 HTML 属性 | NEXT_VERSION |
| node-props | `(info: { option: TreeSelectOption }) => HTMLAttributes` | `undefined` | 节点的 HTML 属性 | 2.30.7 |
| options | `TreeSelectOption[]` | `[]` | 选项 | |
| placeholder | `string` | `'请选择'` | 占位信息 | |
| placement | `'top-start' \| 'top' \| 'top-end' \| 'right-start' \| 'right' \| 'right-end' \| 'bottom-start' \| 'bottom' \| 'bottom-end' \| 'left-start' \| 'left' \| 'left-end'` | `'bottom-start'` | 选择器的弹出位置. | 2.25.0 |
| render-label | `(info: { option: TreeSelectOption, checked: boolean, selected: boolean }) => VNodeChild` | `undefined` | 节点内容的渲染函数 | NEXT_VERSION |
| render-prefix | `(info: { option: TreeSelectOption, checked: boolean, selected: boolean }) => VNodeChild` | `undefined` | 节点前缀的渲染函数 | NEXT_VERSION |
| render-suffix | `(info: { option: TreeSelectOption, checked: boolean, selected: boolean }) => VNodeChild` | `undefined` | 节点后缀的渲染函数 | NEXT_VERSION |
| render-switcher-icon | `() => VNodeChild` | `undefined` | 节点展开开关的渲染函数 | NEXT_VERSION |
| render-tag | `(props: { option: TreeSelectOption, handleClose: () => void }) => VNodeChild` | `undefined` | 控制标签的渲染 | NEXT_VERSION |
| render-label | `(info: { option: TreeSelectOption, checked: boolean, selected: boolean }) => VNodeChild` | `undefined` | 节点内容的渲染函数 | 2.30.7 |
| render-prefix | `(info: { option: TreeSelectOption, checked: boolean, selected: boolean }) => VNodeChild` | `undefined` | 节点前缀的渲染函数 | 2.30.7 |
| render-suffix | `(info: { option: TreeSelectOption, checked: boolean, selected: boolean }) => VNodeChild` | `undefined` | 节点后缀的渲染函数 | 2.30.7 |
| render-switcher-icon | `() => VNodeChild` | `undefined` | 节点展开开关的渲染函数 | 2.30.7 |
| render-tag | `(props: { option: TreeSelectOption, handleClose: () => void }) => VNodeChild` | `undefined` | 控制标签的渲染 | 2.30.7 |
| separator | `string` | `' / '` | 数据分隔符 | |
| show-path | `boolean` | `false` | 是否在选择器中显示选项路径 | |
| size | `'small' \| 'medium' \| 'large'` | `'medium'` | 组件尺寸 | |

View File

@ -1 +1 @@
export default '2.30.6'
export default '2.30.7'