From e6bbb44a43fd131a290719a27b423bceab91e3f6 Mon Sep 17 00:00:00 2001 From: Lukas Maurer Date: Mon, 16 Dec 2024 10:26:26 +0100 Subject: [PATCH] fix(ag-grid): pin test version and hide border bottom (#1615) --- .changeset/quick-bugs-thank.md | 5 +++++ packages/aggrid/scss/ix-aggrid.scss | 4 ++++ packages/aggrid/tests/basic.html | 2 +- packages/aggrid/tests/pagination.html | 2 +- packages/html-test-app/src/preview-examples/aggrid.html | 5 +++-- 5 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 .changeset/quick-bugs-thank.md diff --git a/.changeset/quick-bugs-thank.md b/.changeset/quick-bugs-thank.md new file mode 100644 index 0000000000..b4c093419a --- /dev/null +++ b/.changeset/quick-bugs-thank.md @@ -0,0 +1,5 @@ +--- +"@siemens/ix-aggrid": patch +--- + +Hide border sticky bottom in **ag-grid**. diff --git a/packages/aggrid/scss/ix-aggrid.scss b/packages/aggrid/scss/ix-aggrid.scss index 248513ef5f..e66ce11fbb 100644 --- a/packages/aggrid/scss/ix-aggrid.scss +++ b/packages/aggrid/scss/ix-aggrid.scss @@ -169,4 +169,8 @@ } } } + + .ag-sticky-bottom { + display: none; + } } diff --git a/packages/aggrid/tests/basic.html b/packages/aggrid/tests/basic.html index b1cb0e9f37..4f9a558f97 100644 --- a/packages/aggrid/tests/basic.html +++ b/packages/aggrid/tests/basic.html @@ -8,7 +8,7 @@ --> - + diff --git a/packages/aggrid/tests/pagination.html b/packages/aggrid/tests/pagination.html index de501b39af..960fc775d2 100644 --- a/packages/aggrid/tests/pagination.html +++ b/packages/aggrid/tests/pagination.html @@ -8,7 +8,7 @@ --> - + diff --git a/packages/html-test-app/src/preview-examples/aggrid.html b/packages/html-test-app/src/preview-examples/aggrid.html index 0c797e46e3..90c4d1d0c3 100644 --- a/packages/html-test-app/src/preview-examples/aggrid.html +++ b/packages/html-test-app/src/preview-examples/aggrid.html @@ -14,7 +14,8 @@ AG Grid example - + + @@ -70,7 +71,7 @@ checkboxSelection: true, }; - new agGrid.Grid(container, gridOptions); + agGrid.createGrid(container, gridOptions); })();