Commit 0cefbcb 1 parent a66cfe3 commit 0cefbcb Copy full SHA for 0cefbcb
File tree 3 files changed +20
-2
lines changed
3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## v1.2.2
2
+ ` 2022-08-10 `
3
+
4
+ * :zap : feat: range组件props补齐+国际化 (#201 ) @vickyYE
5
+ * :zap : feat: signature组件增加单元测试、文档和demo国际化 (#205 ) @irisSong
6
+ * :zap : test(navbar): navbar unit test (#203 ) @szg2008
7
+ * :zap : test(tabbar): tabbar unit test (#204 ) @szg2008
8
+ * :zap : feat: 新增 searchbar 组件 (#186 ) @Ymm0008
9
+ * :zap : feat(numberkeyboard): new components (#192 ) @Drjingfubo
10
+ * :zap : feat(tabbar): 组件能力补齐 (#178 ) @szg2008
11
+ * :zap : feat: progress 组件 (#187 ) @ailululu
12
+ * :zap : chore: tag 组件 eslint 修复 (#200 ) @libin0824
13
+ * :zap : feat: datepicker 功能补齐 (#182 ) @yangxiaolu1993
14
+ * :zap : feat: tag 组件新增 onClick 事件,closeable 支持非受控(#195 ) @libin0824
15
+ * :zap : feat: divider组件增加单元测试 (#194 ) @vickyYE
16
+ * :zap : feat: Dialog组件增加在线调试能力,文档多语言支持 (#193 ) @libin0824
17
+
1
18
## v1.2.1
2
19
` 2022-08-03 `
3
20
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @nutui/nutui-react" ,
3
- "version" : " 1.2.1 " ,
3
+ "version" : " 1.2.2 " ,
4
4
"style" : " dist/style.css" ,
5
5
"main" : " dist/nutui.react.umd.js" ,
6
6
"module" : " dist/esm/nutui-react.es.js" ,
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ export const Divider: FunctionComponent<
29
29
styles,
30
30
className,
31
31
direction,
32
+ ...rest
32
33
} = {
33
34
...defaultProps ,
34
35
...props ,
@@ -49,7 +50,7 @@ export const Divider: FunctionComponent<
49
50
[ dividerBem ( 'vertical' ) ] : direction === 'vertical' ,
50
51
} )
51
52
return (
52
- < div className = { `${ classes } ${ className || '' } ` } style = { styles } >
53
+ < div className = { `${ classes } ${ className || '' } ` } style = { styles } { ... rest } >
53
54
{ children }
54
55
</ div >
55
56
)
You can’t perform that action at this time.
0 commit comments