File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -296,6 +296,7 @@ import { Button } from 'react-chat-elements'
296296| disabled | none | string | button is disabled? |
297297| text | none | string | button text |
298298| buttonRef | none | function | button ref |
299+ | title | none | string | button title |
299300
300301## Popup Component
301302
Original file line number Diff line number Diff line change 11{
22 "name" : " react-chat-elements" ,
3- "version" : " 10.0.4 " ,
3+ "version" : " 10.0.5 " ,
44 "description" : " Reactjs chat components" ,
55 "author" : " Avare Kodcu <abdurrahmaneker58@gmail.com>" ,
66 "main" : " dist/main.js" ,
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ export class Button extends Component {
88 return (
99 < button
1010 ref = { this . props . buttonRef }
11+ title = { this . props . title }
1112 className = { classNames ( 'rce-button' , this . props . type , this . props . className ) }
1213 style = { {
1314 backgroundColor : this . props . backgroundColor ,
@@ -41,6 +42,7 @@ Button.defaultProps = {
4142 color : 'white' ,
4243 className : null ,
4344 buttonRef : null ,
45+ title : null ,
4446} ;
4547
4648export default Button ;
You can’t perform that action at this time.
0 commit comments