> ## Documentation Index
> Fetch the complete documentation index at: https://anvil.servicetitan.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Q2 Update: Data Table and Form Field Deferrals

> An update on two planned Anvil2 feature areas deferred this quarter, and how you can contribute.

export const BlogMeta = ({date, author, tags}) => {
  const formatList = items => {
    if (!Array.isArray(items)) return items;
    if (items.length === 1) return items[0];
    if (items.length === 2) return `${items[0]} & ${items[1]}`;
    return `${items.slice(0, -1).join(", ")}, & ${items[items.length - 1]}`;
  };
  return <div className="flex flex-wrap items-center gap-2 text-sm text-gray-500 dark:text-gray-400">
      <span>{date}</span>
      <span>|</span>
      <span>{formatList(author)}</span>
      {tags && tags.length > 0 && <>
          <span>|</span>
          <div className="flex flex-wrap gap-1.5">
            {tags.map(tag => <span key={tag} className="px-2 py-1 rounded bg-gray-100 dark:bg-neutral-800 text-xs">
                {tag}
              </span>)}
          </div>
        </>}
    </div>;
};

<BlogMeta date="June 17, 2026" author="Derek Watson" tags={["Engineering"]} />

We planned to deliver additional **Data Table** enhancements and new **Form Field** components this quarter. Due to a reduction in team capacity, we deferred both areas to focus on in-flight work and maintain quality across what we ship.

<Info>
  This is not a cancellation of the work. Data Table design requirements are mostly complete and can be picked up as contributions. Form Field design work is still in progress. The work remains on our [roadmap](/docs/resources/roadmap).
</Info>

## What was deferred

### Data Table enhancements

The following planned beta improvements are deferred to a future quarter:

* Truncation formatting
* Surface resizing and drag and drop
* Row actions
* Disable Select All button
* Hide expand/collapse all rows button
* Hover background on rows
* Option to have rows render "selected" visual
* Pinned/favorited rows
* Group by / column grouping (stretch goal)

The current `DataTable` beta remains available. We will continue fixing bugs and responding to feedback on the existing API.

Several of the deferred enhancements already have complete designs and are ready for engineering pickup. See [Ready for contribution](#ready-for-contribution) for Figma specs and pattern guidance.

### New Form Field components

Release of **Currency**, **Address**, **Phone**, and **File** form field components is deferred. Design requirements for these components are less complete than Data Table. We are continuing design work on **File** this quarter, but may not get to **Currency**, **Address**, or **Phone**.

## What's next

When scope and priorities are settled, we will update the roadmap and share timing in [#ask-designsystem](https://servicetitan.enterprise.slack.com/archives/CBSRGHTRS).

## Contribute to these areas

Data Table designs are ready for engineering work on several items. Form Field contributions are welcome, but check in with us first — design requirements are still being finalized for most of those components. If you are building with Anvil2 and want to contribute engineering work, design feedback, or real-world use cases:

### Ready for contribution

The following Data Table enhancements have complete designs in Figma and are ready for engineering pickup:

* [ANV-4419 Hover + selected rows](https://www.figma.com/design/hWbEKkeg8iRjjDIeecFIEy/A2-Table?node-id=3143-7145\&t=1pwI3PQ52NQV2nqh-1) — hover background on rows and selected row visual
* [ANV-4469 Table row actions](https://www.figma.com/design/hWbEKkeg8iRjjDIeecFIEy/A2-Table?node-id=2678-10745\&t=1pwI3PQ52NQV2nqh-1)
  * [Pattern Guidance: row actions](https://www.figma.com/design/hWbEKkeg8iRjjDIeecFIEy/A2-Table?node-id=3570-77882\&t=1pwI3PQ52NQV2nqh-1)
  * [Pattern Guidance: associated entities](https://www.figma.com/design/hWbEKkeg8iRjjDIeecFIEy/A2-Table?node-id=3306-36822\&t=1pwI3PQ52NQV2nqh-1)
* [ANV-4475 (1/2) Pinning](https://www.figma.com/design/hWbEKkeg8iRjjDIeecFIEy/A2-Table?node-id=3493-36698\&t=1pwI3PQ52NQV2nqh-1)
* [ANV-4475 (2/2) Favoriting](https://www.figma.com/design/hWbEKkeg8iRjjDIeecFIEy/A2-Table?node-id=3579-80871\&t=1pwI3PQ52NQV2nqh-1)

Other deferred Data Table items — including truncation formatting, surface resizing and drag and drop, Select All / expand controls, and group by — do not have designs ready yet.

Before starting work, review our contribution guidelines and reach out in [#ask-designsystem](https://servicetitan.enterprise.slack.com/archives/CBSRGHTRS) for design hand-off and review:

* Review our [code contribution guidelines](/docs/contributing/code-contributions)
* Review our [design contribution guidelines](/docs/contributing/design-contributions)

For questions or to discuss priorities, use [#ask-designsystem](https://servicetitan.enterprise.slack.com/archives/CBSRGHTRS) or [book office hours](/docs/resources/office-hours).
