Skip to content

chore(deps): update dependency @siemens/ngx-datatable to v27 - #2434

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/siemens-ngx-datatable-27.x
Open

chore(deps): update dependency @siemens/ngx-datatable to v27#2434
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/siemens-ngx-datatable-27.x

Conversation

@renovate

@renovate renovate Bot commented Jul 29, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@siemens/ngx-datatable 26.2.127.0.0 age confidence

Release Notes

siemens/ngx-datatable (@​siemens/ngx-datatable)

v27.0.0

Compare Source

Features
  • datatable-row-ref can optionally replicate column widths on clone (387759d)
  • update to Angular 22 (e009477)
Bug Fixes
  • header: add missing aria-sort (af960f7)
BREAKING CHANGES
  • Angular 22+ is required.
    Follow the Angular update guide to update your app: https://angular.dev/update-guide?v=29.0-21.0

  • The DatatableComponent (select) output has been removed.

    Use (selectedChange) with the selected array, or two-way [(selected)] binding instead.

    Before:

    <ngx-datatable [selected]="mySelection" (select)="onSelect($event)"></ngx-datatable>

    After:

    <ngx-datatable [selected]="mySelection" (selectedChange)="onSelect({selected: $event})"></ngx-datatable>
    <!-- or -->
    <ngx-datatable [(selected)]="mySelection"></ngx-datatable>
  • The DatatableComponent (sort) output has been removed. Use (sortsChange) or two-way [(sorts)] binding instead.
    For server-side paging, subscribe to (page) and read PageEvent.sorts; page emits for both page and sort changes.

    Before:

    <ngx-datatable [sorts]="mySorts" (sort)="onSort($event)"></ngx-datatable>

    After:

    <ngx-datatable [sorts]="mySorts" (sortsChange)="onSort({sorts: $event})"></ngx-datatable>
    <!-- or -->
    <ngx-datatable [(sorts)]="mySorts"></ngx-datatable>
  • All content of the header and body now reside in one single CSS grid.

    This can affect drag/drop interactions build around datatable-row-def using @angular/cdk
    or other solutions that depend on cloneNode to create drag previews.

    Enable preserveColumnWidthsOnClone on datatable-row-def to automatically copy the current
    column sizes into the cloned row, making independent of the table CSS grid.

  • Columns are held at their configured width and no longer
    grow to fit cell content: overflowing content is clipped rather than widening
    the column (and pushing later columns) as it did before. Give columns that
    need more room an explicit width/minWidth (e.g. narrow checkbox columns).

  • The class horizontal-overflow is now applied on the ngx-datatable element.
    It was previously applied seperately within the header and boy.

    The class indicates that a horizontal scrollbar is visible.

  • The header is now a sticky element inside the single css-grid
    scroll container, so body rows scroll underneath it. A non-transparent
    background-color is therefore required on the datatable-header; otherwise the
    scrolling content shows through and overflows the header. The bundled material
    and bootstrap themes now set this automatically, but custom themes must add a
    background-color to .datatable-header.

DEPRECATIONS
  • DatatableComponent.recalculate, recalculateDims and
    onWindowResize are now no-ops and should no longer be called. The table
    re-measures itself automatically whenever its size changes, so manual
    triggering is no longer needed.

26.2.1 (2026-06-19)

Bug Fixes

Configuration

📅 Schedule: (in timezone Etc/UTC)

  • Branch creation
    • "before 7am on Wednesday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.


Documentation.
Examples.
Dashboards Demo.
Playwright report.

Coverage Reports:

Code Coverage

@renovate renovate Bot added the dep-bump label Jul 29, 2026
@renovate
renovate Bot requested review from a team as code owners July 29, 2026 02:13
@renovate renovate Bot added the dep-bump label Jul 29, 2026
@renovate
renovate Bot force-pushed the renovate/siemens-ngx-datatable-27.x branch from 71196db to 25536c4 Compare July 29, 2026 07:45
@renovate
renovate Bot force-pushed the renovate/siemens-ngx-datatable-27.x branch from 25536c4 to ee47466 Compare July 30, 2026 13:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants