From 0314dda37708a589baeb7e6712fcfe0df287a0bb Mon Sep 17 00:00:00 2001 From: Shibo Lyu Date: Mon, 14 Apr 2025 03:41:56 +0800 Subject: [PATCH] fix: Add GroupedListContent component to exports --- src/lib/components/GroupedList.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/lib/components/GroupedList.ts b/src/lib/components/GroupedList.ts index 8039c59..be4e79f 100644 --- a/src/lib/components/GroupedList.ts +++ b/src/lib/components/GroupedList.ts @@ -1,6 +1,13 @@ import GroupedListItem from './GroupedList/GroupedListItem.svelte'; +import GroupedListContent from './GroupedList/GroupedListContent.svelte'; import GroupedListInputItem from './GroupedList/GroupedListInputItem.svelte'; import GroupedListSection from './GroupedList/GroupedListSection.svelte'; import GroupedListContainer from './GroupedList/GroupedListContainer.svelte'; -export { GroupedListItem, GroupedListInputItem, GroupedListSection, GroupedListContainer }; +export { + GroupedListItem, + GroupedListContent, + GroupedListInputItem, + GroupedListSection, + GroupedListContainer +};