feat(data-table): allow custom inputName for radio/checkbox

This commit is contained in:
Eric Liu 2025-01-19 17:02:43 -08:00
commit 8da0db387e
6 changed files with 85 additions and 30 deletions

View file

@ -77,6 +77,15 @@ type $Props<Row> = {
*/
description?: string;
/**
* Specify a name attribute for the input elements
* in a selectable data table (radio or checkbox).
* When the table is inside a form, this name will
* be included in the form data on submit.
* @default "ccs-" + Math.random().toString(36)
*/
inputName?: string;
/**
* Set to `true` to use zebra styles
* @default false