Skip to content

8.17.0

Choose a tag to compare

@github-actions github-actions released this 23 Feb 09:39
82a3292

@comet/admin@8.17.0

Minor Changes

  • 45163f1: Add DataGrid helper useDataGridUrlState that can be used like useDataGridRemote to store state as location params but for client side (non paginated) filter/sort

@comet/admin-generator@8.17.0

Minor Changes

  • cd854dc: Grid: Add automatic onRowClick navigation

    Generated grids now automatically navigate to the edit page when a row is clicked, improving user experience.

    • When rowActionProp is false (default): generates a handleRowClick handler using useStackSwitchApi().activatePage("edit", id)
    • When rowActionProp is true: adds an onRowClick prop to allow parent components to implement needed action
  • 45163f1: Grid: Enable client side filter and sort when non paging api is used

@comet/site-react@8.17.0

Minor Changes

  • 35c338e: Add HTML anchor props pass-through to ExternalLinkBlock, PhoneLinkBlock, and EmailLinkBlock

    These link block components now accept and pass through standard HTML anchor element attributes (such as id, className, style, target, rel, aria-*, data-*, onClick, etc.) to the rendered <a> element.

    Example:

    <ExternalLinkBlock data={linkData} className="custom-link" aria-label="Opens external site" data-tracking="external-click">
        <span>External Link</span>
    </ExternalLinkBlock>