feat(components/ag-grid): auto-populate column configuration for data manager#4153
Merged
johnhwhite merged 1 commit intomainfrom Jan 14, 2026
Merged
Conversation
|
View your CI Pipeline Execution ↗ for commit 0d2d244
☁️ Nx Cloud last updated this comment at |
Collaborator
|
Component Storybooks: Apps: |
libs/components/ag-grid/src/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.spec.ts
Outdated
Show resolved
Hide resolved
libs/components/ag-grid/src/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.ts
Outdated
Show resolved
Hide resolved
libs/components/ag-grid/src/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.ts
Outdated
Show resolved
Hide resolved
libs/components/ag-grid/src/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.spec.ts
Outdated
Show resolved
Hide resolved
libs/components/ag-grid/src/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.ts
Outdated
Show resolved
Hide resolved
Blackbaud-SteveBrush
previously approved these changes
Jan 14, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 3 out of 3 changed files in this pull request and generated 6 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
libs/components/ag-grid/src/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.spec.ts
Show resolved
Hide resolved
libs/components/ag-grid/src/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.spec.ts
Outdated
Show resolved
Hide resolved
libs/components/ag-grid/src/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.spec.ts
Outdated
Show resolved
Hide resolved
libs/components/ag-grid/src/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.spec.ts
Outdated
Show resolved
Hide resolved
libs/components/ag-grid/src/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.spec.ts
Outdated
Show resolved
Hide resolved
libs/components/ag-grid/src/lib/modules/ag-grid/ag-grid-data-manager-adapter.directive.ts
Outdated
Show resolved
Hide resolved
Contributor
|
@johnhwhite I've opened a new pull request, #4154, to work on those changes. Once the pull request is ready, I'll request review from you. |
johnhwhite
added a commit
that referenced
this pull request
Jan 14, 2026
…kVisible test (#4154) Addresses two code review comments from #4153: ## Changes - **Removed `distinctUntilChanged()` operator** from breakpoint signal - provides negligible performance benefit since `toColumnWidthName` already deduplicates by collapsing 'md'/'lg' → 'sm' - **Added test assertion for `lockVisible` behavior** - verifies `nameColumn.alwaysDisplayed` is true when column has `lockVisible: true`, validating the directive logic at line 532 ```typescript // Before readonly #breakpoint = toSignal( inject(SkyMediaQueryService).breakpointChange.pipe( map(toColumnWidthName), distinctUntilChanged(), // Removed ), ); // After readonly #breakpoint = toSignal( inject(SkyMediaQueryService).breakpointChange.pipe( map(toColumnWidthName), ), ); ``` <!-- START COPILOT CODING AGENT TIPS --> --- 💬 We'd love your input! Share your thoughts on Copilot coding agent in our [2 minute survey](https://gh.io/copilot-coding-agent-survey). --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: johnhwhite <750350+johnhwhite@users.noreply.github.com>
0ac10e8 to
0d2d244
Compare
Blackbaud-SteveBrush
approved these changes
Jan 14, 2026
Merged
Blackbaud-SandhyaRajasabeson
pushed a commit
that referenced
this pull request
Jan 15, 2026
# [13.12.0](13.11.5...13.12.0) (2026-01-15) ### Features * **components/ag-grid:** auto-populate column configuration for data manager ([#4153](#4153)) ([e0a82b1](e0a82b1)), closes [AB#3642107](https://github.com/AB/issues/3642107) * **components/ag-grid:** provide test harness for AG Grid ([#4150](#4150)) ([2a119cb](2a119cb)), closes [AB#3672986](https://github.com/AB/issues/3672986) [#4063](#4063) * **components/filter-bar:** add generics for filter types ([#4144](#4144)) ([3108198](3108198)), closes [AB#3605105](https://github.com/AB/issues/3605105) * **components/lookup:** support searching when minimum characters is set to 0 ([#4133](#4133)) ([806e17e](806e17e)), closes [AB#3605881](https://github.com/AB/issues/3605881) * **components/theme:** visual test data viz colors and add to public API ([#4146](#4146)) ([112f2cd](112f2cd))
johnhwhite
added a commit
that referenced
this pull request
Jan 16, 2026
* origin/main: chore: release 13.12.0 (#4145) feat(components/ag-grid): auto-populate column configuration for data manager (#4153) feat(components/theme): visual test data viz colors and add to public API (#4146) feat(components/lookup): support searching when minimum characters is set to 0 (#4133)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
AB#3642107