Skip to content

v1.0.5 - Sundress

Choose a tag to compare

@orneryd orneryd released this 09 May 02:55
· 30 commits to main since this release

v1.0.5 - Sundress — 2026-05-08

Still gotta work on my meta packaging. sorry. 1.0.5

Changed

  • Per-column header icons now hide on opt-out instead of rendering disabled — columns with sortable: false, enableSorting: false, or enableGrouping: false no longer render their sort or group buttons in the header, matching the legacy ui-grid ng-if hide pattern and the existing pin behavior. The grid-level enableSorting / enableGrouping master flags still gate the entire feature.
  • npm publish pipeline now mirrors the runtime dependency graph — the web suite publishes as core → vanilla → {react, angular}, with the React and Angular jobs waiting on publish-vanilla and polling the registry for the vanilla tarball before building.
  • The grid now resizes properly and tracks scrolling properly based on the old grid behavior.

Fixed

  • Per-column enableCellEdit: false is now honored when the grid is globally enabledVanillaGridController.beginCellEdit guards on isCellEditable, so opted-out columns can no longer enter edit mode via double-click, F2, Enter, printable keys, or the post-Tab/Enter resumeEdit hop. Brings the vanilla and Angular hosts in line with the React wrapper, which already enforced this.