@linzjs/step-ag-grid 17.2.0 → 17.3.0
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/README.md +1 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -266,7 +266,7 @@ test("click Delete menu option removes row from the table", async () => {
|
|
|
266
266
|
await screen.findByText("My component header");
|
|
267
267
|
expect((await findRow(12345)).getAttribute("row-index")).toBe("1");
|
|
268
268
|
await openAndClickMenuOption(12345, "actions", "Delete");
|
|
269
|
-
await waitFor(async () => expect((await queryRow(12345)).not.toBeDefined());
|
|
269
|
+
await waitFor(async () => expect((await queryRow(12345)).not.toBeDefined()));
|
|
270
270
|
});
|
|
271
271
|
```
|
|
272
272
|
|
|
@@ -278,4 +278,3 @@ This will throw an exception if the row id is not found.
|
|
|
278
278
|
```tsx
|
|
279
279
|
window.__stepAgGrid.grids[dataTestId].scrollRowIntoViewById("1000")
|
|
280
280
|
```
|
|
281
|
-
|
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": "17.
|
|
5
|
+
"version": "17.3.0",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"aggrid",
|
|
8
8
|
"ag-grid",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@linzjs/lui": "^18",
|
|
39
|
-
"ag-grid-community": "
|
|
40
|
-
"ag-grid-react": "
|
|
39
|
+
"ag-grid-community": "^29",
|
|
40
|
+
"ag-grid-react": "^29",
|
|
41
41
|
"debounce-promise": "^3.1.2",
|
|
42
42
|
"lodash-es": ">=4",
|
|
43
43
|
"matcher": "^5.0.0",
|