From 4f5e653c47f968ca90f67fc5122101ec738f3278 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Mon, 23 Dec 2024 01:19:03 +0100 Subject: [PATCH] Lib: Update lazydropdown props name to differentiate from non-lazy dropdown --- src/lib/components/form/LazyDropdown.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/components/form/LazyDropdown.ts b/src/lib/components/form/LazyDropdown.ts index 7ebf1fc..534402e 100644 --- a/src/lib/components/form/LazyDropdown.ts +++ b/src/lib/components/form/LazyDropdown.ts @@ -1,4 +1,6 @@ -export interface LazyDropdownOption { +import { type DropdownOption } from "$lib/components"; + +export interface LazyDropdownOption extends DropdownOption { /** The label displayed in the list of options. */ label: string;