@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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@linzjs/step-ag-grid",
3
3
  "repository": "github:linz/step-ag-grid.git",
4
4
  "license": "MIT",
5
- "version": "15.1.1",
5
+ "version": "15.1.2",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -202,8 +202,8 @@ export const typeOtherInput = async (value: string): Promise<void> =>
202
202
  export const typeOtherTextArea = async (value: string): Promise<void> =>
203
203
  typeInput(value, { classes: ".subComponent", child: { tagName: "textarea" } });
204
204
 
205
- export const closeMenu = () => userEvent.click(document.body);
206
- export const closePopover = () => userEvent.click(document.body);
205
+ export const closeMenu = () => user.click(document.body);
206
+ export const closePopover = () => user.click(document.body);
207
207
 
208
208
  export const findActionButton = (text: string, container?: HTMLElement): Promise<HTMLElement> =>
209
209
  findQuick({ tagName: "button", child: { classes: ".ActionButton-minimalAreaDisplay", text: text } }, container);