@linzjs/step-ag-grid 15.1.1 → 15.1.2

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.
@@ -28543,8 +28543,8 @@ const typeInputByPlaceholder = async (value, placeholder) => typeInput(value, {
28543
28543
  });
28544
28544
  const typeOtherInput = async (value) => typeInput(value, { classes: ".subComponent", child: { tagName: "input[type='text']" } });
28545
28545
  const typeOtherTextArea = async (value) => typeInput(value, { classes: ".subComponent", child: { tagName: "textarea" } });
28546
- const closeMenu = () => userEvent.click(document.body);
28547
- const closePopover = () => userEvent.click(document.body);
28546
+ const closeMenu = () => user.click(document.body);
28547
+ const closePopover = () => user.click(document.body);
28548
28548
  const findActionButton = (text, container) => findQuick({ tagName: "button", child: { classes: ".ActionButton-minimalAreaDisplay", text: text } }, container);
28549
28549
  const clickActionButton = async (text, container) => {
28550
28550
  const button = await findActionButton(text, container);