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

Closes #2085
This commit is contained in:
Eric Liu 2025-03-09 13:47:08 -07:00 committed by GitHub
commit 7481b9a995
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 85 additions and 30 deletions

View file

@ -12,8 +12,20 @@
];
</script>
<DataTable radio {headers} {rows} />
<DataTable radio {headers} {rows} />
<DataTable inputName="radio-select" radio {headers} {rows} />
<DataTable inputName="radio-select" radio {headers} {rows} />
<DataTable batchSelection selectable {headers} {rows} />
<DataTable batchSelection selectable {headers} {rows} />
<DataTable
inputName="checkbox-select"
batchSelection
selectable
{headers}
{rows}
/>
<DataTable
inputName="checkbox-select"
batchSelection
selectable
{headers}
{rows}
/>