diff --git a/bun.lockb b/bun.lockb index 1069226..6ad5614 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/composables/LocalTimeline.ts b/composables/LocalTimeline.ts index 01c76e3..ab87a60 100644 --- a/composables/LocalTimeline.ts +++ b/composables/LocalTimeline.ts @@ -3,13 +3,15 @@ import type { Status } from "@lysand-org/client/types"; export const useLocalTimeline = ( client: LysandClient | null, - options: MaybeRef<{ - only_media: boolean; - max_id: string; - since_id: string; - min_id: string; - limit: number; - }>, + options: MaybeRef< + Partial<{ + only_media: boolean; + max_id: string; + since_id: string; + min_id: string; + limit: number; + }> + >, ): { timeline: Ref; loadNext: () => Promise; diff --git a/package.json b/package.json index 402be3b..5b20afc 100644 --- a/package.json +++ b/package.json @@ -55,13 +55,13 @@ "zod": "^3.23.8" }, "devDependencies": { - "@biomejs/biome": "^1.8.1", + "@biomejs/biome": "^1.8.2", "@nuxtjs/seo": "^2.0.0-rc.10", "@nuxtjs/tailwindcss": "^6.12.0", "@tailwindcss/forms": "^0.5.7", "@types/html-to-text": "^9.0.4", "@vue-email/nuxt": "^0.8.19", - "typescript": "^5.4.5", + "typescript": "^5.5.2", "vue-tsc": "^2.0.21" }, "trustedDependencies": [ diff --git a/tailwind.config.ts b/tailwind.config.ts index b14f5be..f7b668b 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -16,8 +16,7 @@ const themeVariables = (color: string) => ({ 950: `var(--theme-${color}-950)`, }); -// Default are on https://tailwindcss.nuxtjs.org/tailwind/config#default-configuration -export default (>{ +export default ({ theme: { extend: { colors: {