@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/dist/step-ag-grid.esm.js
CHANGED
|
@@ -28522,8 +28522,8 @@ const typeInputByPlaceholder = async (value, placeholder) => typeInput(value, {
|
|
|
28522
28522
|
});
|
|
28523
28523
|
const typeOtherInput = async (value) => typeInput(value, { classes: ".subComponent", child: { tagName: "input[type='text']" } });
|
|
28524
28524
|
const typeOtherTextArea = async (value) => typeInput(value, { classes: ".subComponent", child: { tagName: "textarea" } });
|
|
28525
|
-
const closeMenu = () =>
|
|
28526
|
-
const closePopover = () =>
|
|
28525
|
+
const closeMenu = () => user.click(document.body);
|
|
28526
|
+
const closePopover = () => user.click(document.body);
|
|
28527
28527
|
const findActionButton = (text, container) => findQuick({ tagName: "button", child: { classes: ".ActionButton-minimalAreaDisplay", text: text } }, container);
|
|
28528
28528
|
const clickActionButton = async (text, container) => {
|
|
28529
28529
|
const button = await findActionButton(text, container);
|