mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 02:41:05 +00:00
- add ref prop for applicable components (#196) - add slot to Content Switcher `Switch` component (#183) - remove fillArray, css utilities
39 lines
1.3 KiB
Svelte
39 lines
1.3 KiB
Svelte
<script>
|
|
export let size = undefined; // "compact" | "short" | "tall"
|
|
export let zebra = false;
|
|
export let useStaticWidth = false;
|
|
export let shouldShowBorder = false;
|
|
export let sortable = false;
|
|
export let stickyHeader = false;
|
|
</script>
|
|
|
|
{#if stickyHeader}
|
|
<section class:bx--data-table_inner-container={true} {...$$restProps}>
|
|
<table
|
|
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--sort={sortable}
|
|
class:bx--data-table--zebra={zebra}
|
|
class:bx--data-table--static={useStaticWidth}
|
|
class:bx--data-table--no-border={!shouldShowBorder}
|
|
class:bx--data-table--sticky-header={stickyHeader}>
|
|
<slot />
|
|
</table>
|
|
</section>
|
|
{:else}
|
|
<table
|
|
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--sort={sortable}
|
|
class:bx--data-table--zebra={zebra}
|
|
class:bx--data-table--static={useStaticWidth}
|
|
class:bx--data-table--no-border={!shouldShowBorder}
|
|
class:bx--data-table--sticky-header={stickyHeader}
|
|
{...$$restProps}>
|
|
<slot />
|
|
</table>
|
|
{/if}
|