···7575npm run dev
7676```
77777878-The ui-kit library is located in `src/lib`, the documentation is in `src/docs`.7878+The ui-kit library is located in `src/lib`, the documentation is in `src/docs`.
+1-1
src/lib/cli.ts
···2233/**
44 * TODO:
55- *
55+ *
66 * - add exports to lib/fuchs/index.ts
77 * - add dependent components to each component
88 * - add option to also add dependent components
···89899090 let animated = $state(true);
9191 let showCaret = $state(true);
9292-9292+9393 function handleInput() {
9494 if (!inputRef) return;
9595 animated = false;
+1-1
src/lib/components/base/popover/index.ts
···1616 Close as PopoverClose
1717};
18181919-export { default as Popover } from './Popover.svelte';1919+export { default as Popover } from './Popover.svelte';
+1-1
src/lib/components/base/prose/Prose.svelte
···11<script lang="ts">
22 import { AddCopyCodeButtons } from '$lib';
33-33+44 let { children } = $props();
5566 // this is fucking hacky, todo fix that
···44 import cute from '$docs/assets/images/cute.jpg?as=run';
55</script>
6677-88-<Box class="flex flex-col gap-3 not-prose">
77+<Box class="not-prose flex flex-col gap-3">
98 <ChatBubble side="right">
109 <p>Hello there</p>
1110 </ChatBubble>
12111313- <ChatBubble>
1414- <p>General Kenobi</p>
1515- </ChatBubble>
1212+ <ChatBubble>
1313+ <p>General Kenobi</p>
1414+ </ChatBubble>
16151717- <ChatBubble side="right">
1818- <p>This is a really long message that should wrap around the chat bubble and not overflow</p>
1919- </ChatBubble>
2020- <ChatBubble>
2121- <p>
2222- This is another really long message that should wrap around the chat bubble and not overflow
2323- </p>
2424- </ChatBubble>
1616+ <ChatBubble side="right">
1717+ <p>This is a really long message that should wrap around the chat bubble and not overflow</p>
1818+ </ChatBubble>
1919+ <ChatBubble>
2020+ <p>
2121+ This is another really long message that should wrap around the chat bubble and not overflow
2222+ </p>
2323+ </ChatBubble>
25242626- <ChatBubble side="right">
2727- <p>This is me sending you an image</p>
2525+ <ChatBubble side="right">
2626+ <p>This is me sending you an image</p>
28272929- <ImageContainer src={cute} alt="cute cat" containerClasses="-mx-1.5 rounded-xl" />
3030- </ChatBubble>
3131-</Box>2828+ <ImageContainer src={cute} alt="cute cat" containerClasses="-mx-1.5 rounded-xl" />
2929+ </ChatBubble>
3030+</Box>