Skip to content

Commit

Permalink
chore(release): v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oasis-cloud committed Aug 10, 2022
1 parent a66cfe3 commit 0cefbcb
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## v1.2.2
`2022-08-10`

* :zap: feat: range组件props补齐+国际化 (#201) @vickyYE
* :zap: feat: signature组件增加单元测试、文档和demo国际化 (#205) @irisSong
* :zap: test(navbar): navbar unit test (#203) @szg2008
* :zap: test(tabbar): tabbar unit test (#204) @szg2008
* :zap: feat: 新增 searchbar 组件 (#186) @Ymm0008
* :zap: feat(numberkeyboard): new components (#192) @Drjingfubo
* :zap: feat(tabbar): 组件能力补齐 (#178) @szg2008
* :zap: feat: progress 组件 (#187) @ailululu
* :zap: chore: tag 组件 eslint 修复 (#200) @libin0824
* :zap: feat: datepicker 功能补齐 (#182) @yangxiaolu1993
* :zap: feat: tag 组件新增 onClick 事件,closeable 支持非受控(#195) @libin0824
* :zap: feat: divider组件增加单元测试 (#194) @vickyYE
* :zap: feat: Dialog组件增加在线调试能力,文档多语言支持 (#193) @libin0824

## v1.2.1
`2022-08-03`

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nutui/nutui-react",
"version": "1.2.1",
"version": "1.2.2",
"style": "dist/style.css",
"main": "dist/nutui.react.umd.js",
"module": "dist/esm/nutui-react.es.js",
Expand Down
3 changes: 2 additions & 1 deletion src/packages/divider/divider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const Divider: FunctionComponent<
styles,
className,
direction,
...rest
} = {
...defaultProps,
...props,
Expand All @@ -49,7 +50,7 @@ export const Divider: FunctionComponent<
[dividerBem('vertical')]: direction === 'vertical',
})
return (
<div className={`${classes} ${className || ''}`} style={styles}>
<div className={`${classes} ${className || ''}`} style={styles} {...rest}>
{children}
</div>
)
Expand Down

0 comments on commit 0cefbcb

Please sign in to comment.