Web: Components: ContextMenuButton - descriptions changed

This commit is contained in:
Sergei Kosyrev 2023-04-07 17:37:50 +05:30
parent 3408fd04d2
commit 43be071e75

View File

@ -282,7 +282,7 @@ class ContextMenuButton extends React.Component {
}
ContextMenuButton.propTypes = {
/** Tells when the button should present a opened state */
/** Sets the button to present an opened state */
opened: PropTypes.bool,
/** Array of options for display */
data: PropTypes.array,
@ -296,7 +296,7 @@ ContextMenuButton.propTypes = {
size: PropTypes.number,
/** Specifies the icon color */
color: PropTypes.string,
/** Tells when the button should present a disabled state */
/** Sets the button to present a disabled state */
isDisabled: PropTypes.bool,
/** Specifies the icon hover color */
hoverColor: PropTypes.string,
@ -308,13 +308,13 @@ ContextMenuButton.propTypes = {
iconClickName: PropTypes.string,
/** Specifies the icon open name */
iconOpenName: PropTypes.string,
/** What the button will trigger when mouse hovered */
/** Triggers a callback function when the mouse enters the button borders */
onMouseEnter: PropTypes.func,
/** What the button will trigger when mouse leave */
/** Triggers a callback function when the mouse leaves the button borders */
onMouseLeave: PropTypes.func,
/** What the button will trigger when mouse over button */
/** Triggers a callback function when the mouse moves over the button borders */
onMouseOver: PropTypes.func,
/** What the button will trigger when mouse out of button */
/** Triggers a callback function when the mouse moves out of the button borders */
onMouseOut: PropTypes.func,
/** Direction X */
directionX: PropTypes.string,
@ -326,9 +326,9 @@ ContextMenuButton.propTypes = {
id: PropTypes.string,
/** Accepts css style */
style: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
/** Set the number of columns */
/** Sets the number of columns */
columnCount: PropTypes.number,
/** Set the display type */
/** Sets the display type */
displayType: PropTypes.string,
isNew: PropTypes.bool,
onClose: PropTypes.func,