mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 10:51:06 +00:00
* feat(code-snippet): add copy functionality - docs: add custom feedback copy text example * feat(tile): support disabled state for SelectableTile, RadioTile Closes #539 * build(rollup): add clipboard-copy to globals * feat(copy-button): add copy functionality * feat(content-switcher): deprecate the light prop - docs: remove the light variant example * fix(toolbar-search): remove outer div * feat(search): add searchClass prop * fix(composed-modal): set hasScrollingContent class on ModalBody * docs(data-table): add expandable size examples * feat(tooltip): add TooltipFooter component * fix(time-picker): correctly display invalidText * feat(breadcrumb): support overflow menu * feat(multi-select): export inputRef prop * chore(deps-dev): upgrade carbon-components to v10.32.0 * feat(form): add noMargin prop to FormGroup * docs(tooltip): document TooltipFooter * feat(context-menu): support danger kind for ContextMenuOption * feat(data-table): support rendering empty table header in skeleton * refactor(types): use shorter import path in DataTableSkeleton * feat(data-table): allow sorting to be disabled for a specific header * docs(data-table): update example to desort the Protocol header As an example, it makes more sense because all the values ("http") are the same. * fix(context-menu): set initial y offset of context menu based on window height #577 * fix(context-menu): render submenu based on viewport constraints #577
103 lines
2.5 KiB
Svelte
103 lines
2.5 KiB
Svelte
<script>
|
|
/** @extends {"./DataTable"} DataTableHeader */
|
|
|
|
/**
|
|
* Specify the number of columns
|
|
* Superseded by `headers` if `headers` is a non-empty array
|
|
*/
|
|
export let columns = 5;
|
|
|
|
/** Specify the number of rows */
|
|
export let rows = 5;
|
|
|
|
/**
|
|
* Set the size of the data table
|
|
* @type {"compact" | "short" | "tall"}
|
|
*/
|
|
export let size = undefined;
|
|
|
|
/** Set to `true` to apply zebra styles to the datatable rows */
|
|
export let zebra = false;
|
|
|
|
/** Set to `false` to hide the header */
|
|
export let showHeader = true;
|
|
|
|
/**
|
|
* Set the column headers
|
|
* Supersedes `columns` if value is a non-empty array
|
|
* @type {string[] | Partial<DataTableHeader>[]}
|
|
*/
|
|
export let headers = [];
|
|
|
|
/** Set to `false` to hide the toolbar */
|
|
export let showToolbar = true;
|
|
|
|
$: values = headers.map((header) =>
|
|
header.value !== undefined ? header.value : header
|
|
);
|
|
$: cols = Array.from(
|
|
{ length: headers.length > 0 ? headers.length : columns },
|
|
(_, i) => i
|
|
);
|
|
</script>
|
|
|
|
<div
|
|
class:bx--skeleton="{true}"
|
|
class:bx--data-table-container="{true}"
|
|
{...$$restProps}
|
|
>
|
|
{#if showHeader}
|
|
<div class:bx--data-table-header="{true}">
|
|
<div class:bx--data-table-header__title="{true}"></div>
|
|
<div class:bx--data-table-header__description="{true}"></div>
|
|
</div>
|
|
{/if}
|
|
{#if showToolbar}
|
|
<section aria-label="data table toolbar" class:bx--table-toolbar="{true}">
|
|
<div class:bx--toolbar-content="{true}">
|
|
<span
|
|
class:bx--skeleton="{true}"
|
|
class:bx--btn="{true}"
|
|
class:bx--btn--sm="{true}"></span>
|
|
</div>
|
|
</section>
|
|
{/if}
|
|
<table
|
|
class:bx--skeleton="{true}"
|
|
class:bx--data-table="{true}"
|
|
class:bx--data-table--compact="{size === 'compact'}"
|
|
class:bx--data-table--short="{size === 'short'}"
|
|
class:bx--data-table--tall="{size === 'tall'}"
|
|
class:bx--data-table--zebra="{zebra}"
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<thead>
|
|
<tr>
|
|
{#each cols as col (col)}
|
|
{#if typeof values[col] === "object" && values[col].empty === true}
|
|
<th></th>
|
|
{:else}
|
|
<th>{values[col] || ""}</th>
|
|
{/if}
|
|
{/each}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
{#each cols as col (col)}
|
|
<td><span></span></td>
|
|
{/each}
|
|
</tr>
|
|
{#each Array.from({ length: rows - 1 }, (_, i) => i) as row (row)}
|
|
<tr>
|
|
{#each cols as col (col)}
|
|
<td></td>
|
|
{/each}
|
|
</tr>
|
|
{/each}
|
|
</tbody>
|
|
</table>
|
|
</div>
|