Skip to content

Commit

Permalink
fix(ag-grid): pin test version and hide border bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
nuke-ellington committed Dec 12, 2024
1 parent 9205dc9 commit 7dd1edc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions packages/aggrid/scss/ix-aggrid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,8 @@
}
}
}

.ag-sticky-bottom {
display: none;
}
}
2 changes: 1 addition & 1 deletion packages/aggrid/tests/basic.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
-->
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/ag-grid-community/dist/ag-grid-community.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/ag-grid-community@32.1/dist/ag-grid-community.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/ag-grid-community/styles/ag-grid.css" />
<link rel="stylesheet" href="https://unpkg.com/ag-grid-community/styles/ag-theme-alpine.css" />

Expand Down
2 changes: 1 addition & 1 deletion packages/aggrid/tests/pagination.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
-->
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/ag-grid-community/dist/ag-grid-community.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/ag-grid-community@32.1/dist/ag-grid-community.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/ag-grid-community/styles/ag-grid.css" />
<link rel="stylesheet" href="https://unpkg.com/ag-grid-community/styles/ag-theme-alpine.css" />

Expand Down
5 changes: 3 additions & 2 deletions packages/html-test-app/src/preview-examples/aggrid.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AG Grid example</title>
<!-- External resources -->
<script src="https://cdn.jsdelivr.net/npm/ag-grid-community/dist/ag-grid-community.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/ag-grid-community.min.js"></script>

<!-- External resources -->
</head>
<body>
Expand Down Expand Up @@ -70,7 +71,7 @@
checkboxSelection: true,
};

new agGrid.Grid(container, gridOptions);
agGrid.createGrid(container, gridOptions);
})();
</script>
<script type="module" src="./init.js"></script>
Expand Down

0 comments on commit 7dd1edc

Please sign in to comment.