songs add single song type to filters
This commit is contained in:
12
src/lib/components/ui/native-select/index.ts
Normal file
12
src/lib/components/ui/native-select/index.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import Root from "./native-select.svelte";
|
||||
import Option from "./native-select-option.svelte";
|
||||
import OptGroup from "./native-select-opt-group.svelte";
|
||||
|
||||
export {
|
||||
Root,
|
||||
Option,
|
||||
OptGroup,
|
||||
Root as NativeSelect,
|
||||
Option as NativeSelectOption,
|
||||
OptGroup as NativeSelectOptGroup,
|
||||
};
|
||||
@@ -0,0 +1,14 @@
|
||||
<script lang="ts">
|
||||
import type { HTMLOptgroupAttributes } from "svelte/elements";
|
||||
import type { WithElementRef } from "$lib/utils.js";
|
||||
|
||||
let {
|
||||
ref = $bindable(null),
|
||||
children,
|
||||
...restProps
|
||||
}: WithElementRef<HTMLOptgroupAttributes> = $props();
|
||||
</script>
|
||||
|
||||
<optgroup bind:this={ref} data-slot="native-select-opt-group" {...restProps}>
|
||||
{@render children?.()}
|
||||
</optgroup>
|
||||
@@ -0,0 +1,14 @@
|
||||
<script lang="ts">
|
||||
import type { HTMLOptionAttributes } from "svelte/elements";
|
||||
import type { WithElementRef } from "$lib/utils.js";
|
||||
|
||||
let {
|
||||
ref = $bindable(null),
|
||||
children,
|
||||
...restProps
|
||||
}: WithElementRef<HTMLOptionAttributes> = $props();
|
||||
</script>
|
||||
|
||||
<option bind:this={ref} data-slot="native-select-option" {...restProps}>
|
||||
{@render children?.()}
|
||||
</option>
|
||||
38
src/lib/components/ui/native-select/native-select.svelte
Normal file
38
src/lib/components/ui/native-select/native-select.svelte
Normal file
@@ -0,0 +1,38 @@
|
||||
<script lang="ts">
|
||||
import { cn, type WithElementRef } from "$lib/utils.js";
|
||||
import type { HTMLSelectAttributes } from "svelte/elements";
|
||||
import ChevronDownIcon from "@lucide/svelte/icons/chevron-down";
|
||||
|
||||
let {
|
||||
ref = $bindable(null),
|
||||
value = $bindable(),
|
||||
class: className,
|
||||
children,
|
||||
...restProps
|
||||
}: WithElementRef<HTMLSelectAttributes> = $props();
|
||||
</script>
|
||||
|
||||
<div
|
||||
class="group/native-select relative w-fit has-[select:disabled]:opacity-50"
|
||||
data-slot="native-select-wrapper"
|
||||
>
|
||||
<select
|
||||
bind:value
|
||||
bind:this={ref}
|
||||
data-slot="native-select"
|
||||
class={cn(
|
||||
"border-input placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 dark:hover:bg-input/50 h-9 w-full min-w-0 appearance-none rounded-md border bg-transparent px-3 py-2 pe-9 text-sm shadow-xs transition-[color,box-shadow] outline-none disabled:pointer-events-none disabled:cursor-not-allowed",
|
||||
"focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px]",
|
||||
"aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
|
||||
className
|
||||
)}
|
||||
{...restProps}
|
||||
>
|
||||
{@render children?.()}
|
||||
</select>
|
||||
<ChevronDownIcon
|
||||
class="text-muted-foreground pointer-events-none absolute end-3.5 top-1/2 size-4 -translate-y-1/2 opacity-50 select-none"
|
||||
aria-hidden="true"
|
||||
data-slot="native-select-icon"
|
||||
/>
|
||||
</div>
|
||||
Reference in New Issue
Block a user