mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
31 lines
650 B
Svelte
31 lines
650 B
Svelte
<script lang="ts">
|
|
import { DataTable } from "carbon-components-svelte";
|
|
|
|
const headers = [
|
|
{ key: "id", value: "id" },
|
|
{ key: "contact.company", value: "Company name" },
|
|
] as const;
|
|
|
|
const rows = [
|
|
{ id: "1", contact: { company: "Company 1" } },
|
|
{ id: "2", contact: { company: "Company 2" } },
|
|
];
|
|
</script>
|
|
|
|
<DataTable inputName="radio-select" radio {headers} {rows} />
|
|
<DataTable inputName="radio-select" radio {headers} {rows} />
|
|
|
|
<DataTable
|
|
inputName="checkbox-select"
|
|
batchSelection
|
|
selectable
|
|
{headers}
|
|
{rows}
|
|
/>
|
|
<DataTable
|
|
inputName="checkbox-select"
|
|
batchSelection
|
|
selectable
|
|
{headers}
|
|
{rows}
|
|
/>
|