Skip to content

Commit a82292f

Browse files
committed
fix: #1766
1 parent 1725346 commit a82292f

File tree

19 files changed

+119
-381
lines changed

19 files changed

+119
-381
lines changed

src/lib/forms/tags/Tags.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,11 +158,11 @@
158158
<span class={spanCls({ class: clsx(theme?.span, styling.span) })}>
159159
{tag}
160160
</span>
161-
<CloseButton disabled size={closeBtnSize} class={close({ class: clsx(theme?.close, styling.close) })} onclick={() => deleteField(index)} />
161+
<CloseButton {disabled} size={closeBtnSize} class={close({ class: clsx(theme?.close, styling.close) })} onclick={() => deleteField(index)} />
162162
</div>
163163
{/each}
164164
<div class="relative w-full" bind:this={inputContainer}>
165-
<input {...inputProps} disabled bind:this={inputElement} onkeydown={handleKeys} oninput={handleInput} bind:value={contents} placeholder={value.length === 0 ? placeholder : ""} type="text" autocomplete="off" class={inputCls({ class: clsx(styling.input) })} />
165+
<input {...inputProps} {disabled} bind:this={inputElement} onkeydown={handleKeys} oninput={handleInput} bind:value={contents} placeholder={value.length === 0 ? placeholder : ""} type="text" autocomplete="off" class={inputCls({ class: clsx(styling.input) })} />
166166
{#if availableTags.length > 0 && contents.trim() !== ""}
167167
{@const filteredSuggestions = availableTags.filter((tag) => tag.toLowerCase().includes(contents.trim().toLowerCase()) && (!unique || !value.some((t) => t.toLowerCase() === tag.toLowerCase())))}
168168
{#if filteredSuggestions.length > 0}

src/routes/admin-dashboard/+layout.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
let { children, data }: LayoutProps = $props();
77
8-
// console.log('data.FATHOM_ID', data.FATHOM_ID);
8+
console.log('data', data);
99
1010
onMount(modeobserver);
1111
</script>

src/routes/examples/+layout.svelte

Lines changed: 0 additions & 7 deletions
This file was deleted.

src/routes/examples/[...slug]/+page.svelte

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/routes/examples/[...slug]/+page.ts

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/routes/examples/banner/banner1.svelte

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/routes/examples/bottom-nav/example1.svelte

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/routes/examples/datepicker/range.svelte

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/routes/examples/datepicker/usage.svelte

Lines changed: 0 additions & 48 deletions
This file was deleted.

src/routes/examples/drawer/classesCheck.svelte

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)