orcs-design-system 3.2.17 → 3.2.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -103,6 +103,7 @@ export const ActionsMenuBody = _ref => {
|
|
|
103
103
|
onTriggerFocus,
|
|
104
104
|
closeMenu,
|
|
105
105
|
closeOnClick = false,
|
|
106
|
+
"data-testid": dataTestId,
|
|
106
107
|
...props
|
|
107
108
|
} = _ref;
|
|
108
109
|
const id = useId();
|
|
@@ -128,7 +129,8 @@ export const ActionsMenuBody = _ref => {
|
|
|
128
129
|
ref: triggerRef,
|
|
129
130
|
...props,
|
|
130
131
|
...children.props,
|
|
131
|
-
"data-state": actionMenu.open ? "open" : "closed"
|
|
132
|
+
"data-state": actionMenu.open ? "open" : "closed",
|
|
133
|
+
"data-testid": dataTestId
|
|
132
134
|
})
|
|
133
135
|
};
|
|
134
136
|
let triggerComponent = /*#__PURE__*/_jsx(Control, {
|