48 lines
1.3 KiB
Svelte
48 lines
1.3 KiB
Svelte
<script lang="ts" context="module">
|
|
type TTabListProps<
|
|
TSlotProps extends {},
|
|
TAsProp extends SupportedAs
|
|
> = TPassThroughProps<TSlotProps, TAsProp> & {};
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import { useTabsContext } from "./TabGroup.svelte";
|
|
import { forwardEventsBuilder } from "$lib/internal/forwardEventsBuilder";
|
|
import { get_current_component } from "svelte/internal";
|
|
import type { SupportedAs } from "$lib/internal/elements";
|
|
import type { HTMLActionArray } from "$lib/hooks/use-actions";
|
|
import Render, { type TPassThroughProps } from "$lib/utils/Render.svelte";
|
|
|
|
/***** Props *****/
|
|
type TAsProp = $$Generic<SupportedAs>;
|
|
type $$Props = TTabListProps<typeof slotProps, TAsProp>;
|
|
|
|
export let as: SupportedAs = "div";
|
|
export let use: HTMLActionArray = [];
|
|
|
|
/***** Events *****/
|
|
const forwardEvents = forwardEventsBuilder(get_current_component());
|
|
|
|
/***** Component *****/
|
|
let api = useTabsContext("TabList");
|
|
let listRef = $api.listRef;
|
|
|
|
$: propsWeControl = {
|
|
role: "tablist",
|
|
"aria-orientation": $api.orientation,
|
|
};
|
|
|
|
$: slotProps = { selectedIndex: $api.selectedIndex };
|
|
</script>
|
|
|
|
<Render
|
|
{...{ ...$$restProps, ...propsWeControl }}
|
|
{as}
|
|
{slotProps}
|
|
bind:el={$listRef}
|
|
use={[...use, forwardEvents]}
|
|
name={"TabList"}
|
|
>
|
|
<slot {...slotProps} />
|
|
</Render>
|