@linzjs/step-ag-grid 27.3.2 → 27.3.3
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/src/utils/__tests__/testUtil.ts +1 -1
- package/dist/src/utils/__tests__/vitestUtil.ts +1 -1
- package/dist/step-ag-grid.cjs.map +1 -1
- package/dist/step-ag-grid.esm.js.map +1 -1
- package/package.json +18 -18
- package/src/utils/__tests__/testUtil.ts +1 -1
- package/src/utils/__tests__/vitestUtil.ts +1 -1
|
@@ -98,7 +98,7 @@ const _selectRow = async (
|
|
|
98
98
|
const row = await findRow(rowId, within);
|
|
99
99
|
const isSelected = row.className.includes('ag-row-selected');
|
|
100
100
|
if (select === 'toggle' || (select === 'select' && !isSelected) || (select === 'deselect' && isSelected)) {
|
|
101
|
-
const cell = await findCell(rowId, '
|
|
101
|
+
const cell = await findCell(rowId, 'ag-Grid-SelectionColumn', within);
|
|
102
102
|
await user.click(cell);
|
|
103
103
|
await waitFor(async () => {
|
|
104
104
|
const row = await findRow(rowId, within);
|
|
@@ -99,7 +99,7 @@ const _selectRow = async (
|
|
|
99
99
|
const row = await findRow(rowId, within);
|
|
100
100
|
const isSelected = row.className.includes('ag-row-selected');
|
|
101
101
|
if (select === 'toggle' || (select === 'select' && !isSelected) || (select === 'deselect' && isSelected)) {
|
|
102
|
-
const cell = await findCell(rowId, '
|
|
102
|
+
const cell = await findCell(rowId, 'ag-Grid-SelectionColumn', within);
|
|
103
103
|
await user.click(cell);
|
|
104
104
|
await waitFor(async () => {
|
|
105
105
|
const row = await findRow(rowId, within);
|