diff --git a/src/components/ActionsMenu/index.jsx b/src/components/ActionsMenu/index.jsx index 5507631..ab08abe 100644 --- a/src/components/ActionsMenu/index.jsx +++ b/src/components/ActionsMenu/index.jsx @@ -14,6 +14,7 @@ import compStyles from "./styles.module.scss"; * @param {Object} props component properties * @param {'primary'|'error'|'warning'} [props.handleColor] menu handle color * @param {'small'|'medium'} [props.handleSize] menu handle size + * @param {string} [props.handleText] text to show inside menu handle * @param {Array} props.items menu items * @param {'absolute'|'fixed'} [props.popupStrategy] popup positioning strategy * @param {boolean} [props.stopClickPropagation] whether to stop click event propagation @@ -22,6 +23,7 @@ import compStyles from "./styles.module.scss"; const ActionsMenu = ({ handleColor = "primary", handleSize = "small", + handleText, items = [], popupStrategy = "absolute", stopClickPropagation = false, @@ -89,6 +91,7 @@ const ActionsMenu = ({ {isOpen && (