@linzjs/step-ag-grid 14.10.0 → 15.0.1

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": "14.10.0",
5
+ "version": "15.0.1",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -12,7 +12,7 @@
12
12
  "react",
13
13
  "react-component"
14
14
  ],
15
- "main": "dist/step-ag-grid.esm.js",
15
+ "main": "dist/step-ag-grid.cjs.js",
16
16
  "type": "module",
17
17
  "typings": "dist/src/index.d.ts",
18
18
  "module": "dist/step-ag-grid.esm.js",
@@ -213,8 +213,8 @@ export const typeOtherInput = async (value: string): Promise<void> =>
213
213
  export const typeOtherTextArea = async (value: string): Promise<void> =>
214
214
  typeInput(value, { classes: ".subComponent", child: { tagName: "textarea" } });
215
215
 
216
- export const closeMenu = (): void => userEvent.click(document.body);
217
- export const closePopover = (): void => userEvent.click(document.body);
216
+ export const closeMenu = () => userEvent.click(document.body);
217
+ export const closePopover = () => userEvent.click(document.body);
218
218
 
219
219
  export const findActionButton = (text: string, container?: HTMLElement): Promise<HTMLElement> =>
220
220
  findQuick({ tagName: "button", child: { classes: ".ActionButton-minimalAreaDisplay", text: text } }, container);