From e933fce3723e393046add8dad413f1870d028bd6 Mon Sep 17 00:00:00 2001 From: John White <750350+johnhwhite@users.noreply.github.com> Date: Fri, 17 Jan 2025 08:50:44 -0500 Subject: [PATCH] fix(components/ag-grid): header should have readable text (#3037) (#3041) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [AB#3204448](https://dev.azure.com/blackbaud/f565481a-7bc9-4083-95d5-4f953da6d499/_workitems/edit/3204448) 🍒 from #3037 --- libs/components/ag-grid/package.json | 4 +- .../ag-grid/header/header.component.html | 20 +-- .../ag-grid/header/header.component.ts | 87 ++++++---- libs/components/packages/package.json | 4 +- .../ag-grid-migrate.schematic.spec.ts | 2 +- .../ag-grid-migrate.schematic.ts | 2 +- .../migrations/migration-collection.json | 5 + .../ag-grid/ag-grid.schematic.spec.ts | 160 ++++++++++++++++++ .../update-12/ag-grid/ag-grid.schematic.ts | 139 +++++++++++++++ .../migrations/update-12/ag-grid/schema.json | 5 + .../workspace-check/workspace-check.spec.ts | 16 ++ .../rules/workspace-check/workspace-check.ts | 7 +- libs/components/pages/project.json | 2 +- libs/components/split-view/package.json | 2 +- libs/sdk/e2e-schematics/package.json | 16 +- libs/sdk/testing/package.json | 2 +- libs/sdk/tools/package.json | 2 +- package-lock.json | 38 +++-- package.json | 6 +- 19 files changed, 434 insertions(+), 85 deletions(-) create mode 100644 libs/components/packages/src/schematics/migrations/update-12/ag-grid/ag-grid.schematic.spec.ts create mode 100644 libs/components/packages/src/schematics/migrations/update-12/ag-grid/ag-grid.schematic.ts create mode 100644 libs/components/packages/src/schematics/migrations/update-12/ag-grid/schema.json diff --git a/libs/components/ag-grid/package.json b/libs/components/ag-grid/package.json index 7c8b320d35..903783cc26 100644 --- a/libs/components/ag-grid/package.json +++ b/libs/components/ag-grid/package.json @@ -36,8 +36,8 @@ "@skyux/lookup": "0.0.0-PLACEHOLDER", "@skyux/popovers": "0.0.0-PLACEHOLDER", "@skyux/theme": "0.0.0-PLACEHOLDER", - "ag-grid-angular": "^32.2.2", - "ag-grid-community": "^32.2.2" + "ag-grid-angular": "^32.3.3", + "ag-grid-community": "^32.3.3" }, "dependencies": { "tslib": "^2.8.1" diff --git a/libs/components/ag-grid/src/lib/modules/ag-grid/header/header.component.html b/libs/components/ag-grid/src/lib/modules/ag-grid/header/header.component.html index 652d6b7907..f67504fe3d 100644 --- a/libs/components/ag-grid/src/lib/modules/ag-grid/header/header.component.html +++ b/libs/components/ag-grid/src/lib/modules/ag-grid/header/header.component.html @@ -1,5 +1,5 @@