Files
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

45 lines
950 B
Svelte

<script lang="ts">
import { boxWith, mergeProps } from "svelte-toolbelt";
import type { MenuRadioGroupProps } from "../types.js";
import { MenuRadioGroupState } from "../menu.svelte.js";
import { noop } from "../../../internal/noop.js";
import { createId } from "../../../internal/create-id.js";
const uid = $props.id();
let {
id = createId(uid),
children,
child,
ref = $bindable(null),
value = $bindable(""),
onValueChange = noop,
...restProps
}: MenuRadioGroupProps = $props();
const radioGroupState = MenuRadioGroupState.create({
value: boxWith(
() => value,
(v) => {
value = v;
onValueChange(v);
}
),
ref: boxWith(
() => ref,
(v) => (ref = v)
),
id: boxWith(() => id),
});
const mergedProps = $derived(mergeProps(restProps, radioGroupState.props));
</script>
{#if child}
{@render child({ props: mergedProps })}
{:else}
<div {...mergedProps}>
{@render children?.()}
</div>
{/if}