Spaces:
Running
Running
| <script lang="ts"> | |
| import { Select as SelectPrimitive } from 'bits-ui'; | |
| import { cn, type WithoutChild } from '$lib/utils.js'; | |
| import CheckIcon from 'phosphor-svelte/lib/Check'; | |
| let { | |
| ref = $bindable(null), | |
| class: className, | |
| value, | |
| label, | |
| children: childrenProp, | |
| ...restProps | |
| } | |
| </script> | |
| <SelectPrimitive.Item | |
| bind:ref | |
| {value} | |
| data-slot="select-item" | |
| class={cn( | |
| "focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground focus:bg-accent data-highlighted:bg-accent data-highlighted:text-accent-foreground focus:text-accent-foreground relative flex min-h-7 w-full cursor-default items-center gap-2 rounded-md px-2 py-1 text-xs/relaxed outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-3.5 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2", | |
| className | |
| )} | |
| {...restProps} | |
| > | |
| {#snippet children({ selected, highlighted })} | |
| <span class="absolute end-2 flex size-3.5 items-center justify-center"> | |
| {#if selected} | |
| <CheckIcon class="cn-select-item-indicator-icon" /> | |
| {/if} | |
| </span> | |
| {#if childrenProp} | |
| {@render childrenProp({ selected, highlighted })} | |
| {:else} | |
| {label || value} | |
| {/if} | |
| {/snippet} | |
| </SelectPrimitive.Item> | |