mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
chore: ⬆️ Upgrade dependencies
This commit is contained in:
parent
6d879cdf44
commit
32d1acb4c1
|
|
@ -3,13 +3,15 @@ import type { Status } from "@lysand-org/client/types";
|
||||||
|
|
||||||
export const useLocalTimeline = (
|
export const useLocalTimeline = (
|
||||||
client: LysandClient | null,
|
client: LysandClient | null,
|
||||||
options: MaybeRef<{
|
options: MaybeRef<
|
||||||
|
Partial<{
|
||||||
only_media: boolean;
|
only_media: boolean;
|
||||||
max_id: string;
|
max_id: string;
|
||||||
since_id: string;
|
since_id: string;
|
||||||
min_id: string;
|
min_id: string;
|
||||||
limit: number;
|
limit: number;
|
||||||
}>,
|
}>
|
||||||
|
>,
|
||||||
): {
|
): {
|
||||||
timeline: Ref<Status[]>;
|
timeline: Ref<Status[]>;
|
||||||
loadNext: () => Promise<void>;
|
loadNext: () => Promise<void>;
|
||||||
|
|
|
||||||
|
|
@ -55,13 +55,13 @@
|
||||||
"zod": "^3.23.8"
|
"zod": "^3.23.8"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "^1.8.1",
|
"@biomejs/biome": "^1.8.2",
|
||||||
"@nuxtjs/seo": "^2.0.0-rc.10",
|
"@nuxtjs/seo": "^2.0.0-rc.10",
|
||||||
"@nuxtjs/tailwindcss": "^6.12.0",
|
"@nuxtjs/tailwindcss": "^6.12.0",
|
||||||
"@tailwindcss/forms": "^0.5.7",
|
"@tailwindcss/forms": "^0.5.7",
|
||||||
"@types/html-to-text": "^9.0.4",
|
"@types/html-to-text": "^9.0.4",
|
||||||
"@vue-email/nuxt": "^0.8.19",
|
"@vue-email/nuxt": "^0.8.19",
|
||||||
"typescript": "^5.4.5",
|
"typescript": "^5.5.2",
|
||||||
"vue-tsc": "^2.0.21"
|
"vue-tsc": "^2.0.21"
|
||||||
},
|
},
|
||||||
"trustedDependencies": [
|
"trustedDependencies": [
|
||||||
|
|
|
||||||
|
|
@ -16,8 +16,7 @@ const themeVariables = (color: string) => ({
|
||||||
950: `var(--theme-${color}-950)`,
|
950: `var(--theme-${color}-950)`,
|
||||||
});
|
});
|
||||||
|
|
||||||
// Default are on https://tailwindcss.nuxtjs.org/tailwind/config#default-configuration
|
export default (<Config>{
|
||||||
export default (<Partial<Config>>{
|
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
colors: {
|
colors: {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue