1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-05 13:35:23 +02:00

chore: bump deps (#2513)

* bump dependencies

* run code-generator

* add direct dependency to text-unidecode

* fix dev dependencies group
This commit is contained in:
Hayden 2023-08-20 16:09:13 -08:00 committed by GitHub
parent 095edef95e
commit c60c63852b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 223 additions and 206 deletions

View file

@ -3,12 +3,12 @@ export const LOCALES = [
{
name: "繁體中文 (Chinese traditional)",
value: "zh-TW",
progress: 50,
progress: 26,
},
{
name: "简体中文 (Chinese simplified)",
value: "zh-CN",
progress: 41,
progress: 34,
},
{
name: "Tiếng Việt (Vietnamese)",
@ -18,57 +18,57 @@ export const LOCALES = [
{
name: "Українська (Ukrainian)",
value: "uk-UA",
progress: 88,
progress: 100,
},
{
name: "Türkçe (Turkish)",
value: "tr-TR",
progress: 41,
progress: 47,
},
{
name: "Svenska (Swedish)",
value: "sv-SE",
progress: 66,
progress: 60,
},
{
name: "српски (Serbian)",
value: "sr-SP",
progress: 8,
progress: 2,
},
{
name: "Slovenian",
value: "sl-SI",
progress: 73,
progress: 47,
},
{
name: "Slovak",
value: "sk-SK",
progress: 78,
progress: 99,
},
{
name: "Pусский (Russian)",
value: "ru-RU",
progress: 49,
progress: 31,
},
{
name: "Română (Romanian)",
value: "ro-RO",
progress: 7,
progress: 12,
},
{
name: "Português (Portuguese)",
value: "pt-PT",
progress: 27,
progress: 69,
},
{
name: "Português do Brasil (Brazilian Portuguese)",
value: "pt-BR",
progress: 31,
progress: 97,
},
{
name: "Polski (Polish)",
value: "pl-PL",
progress: 69,
progress: 99,
},
{
name: "Norsk (Norwegian)",
@ -78,37 +78,52 @@ export const LOCALES = [
{
name: "Nederlands (Dutch)",
value: "nl-NL",
progress: 81,
progress: 100,
},
{
name: "Latvian",
value: "lv-LV",
progress: 0,
},
{
name: "Lithuanian",
value: "lt-LT",
progress: 65,
progress: 99,
},
{
name: "한국어 (Korean)",
value: "ko-KR",
progress: 0,
progress: 3,
},
{
name: "日本語 (Japanese)",
value: "ja-JP",
progress: 0,
progress: 9,
},
{
name: "Italiano (Italian)",
value: "it-IT",
progress: 81,
progress: 98,
},
{
name: "Magyar (Hungarian)",
value: "hu-HU",
progress: 60,
progress: 43,
},
{
name: "Croatian",
value: "hr-HR",
progress: 100,
},
{
name: "עברית (Hebrew)",
value: "he-IL",
progress: 24,
progress: 99,
},
{
name: "Galician",
value: "gl-ES",
progress: 0,
},
{
name: "Français (French)",
@ -118,17 +133,17 @@ export const LOCALES = [
{
name: "French, Canada",
value: "fr-CA",
progress: 61,
progress: 54,
},
{
name: "Suomi (Finnish)",
value: "fi-FI",
progress: 45,
progress: 31,
},
{
name: "Español (Spanish)",
value: "es-ES",
progress: 70,
progress: 59,
},
{
name: "American English",
@ -138,46 +153,46 @@ export const LOCALES = [
{
name: "British English",
value: "en-GB",
progress: 23,
progress: 2,
},
{
name: "Ελληνικά (Greek)",
value: "el-GR",
progress: 51,
progress: 33,
},
{
name: "Deutsch (German)",
value: "de-DE",
progress: 99,
progress: 100,
},
{
name: "Dansk (Danish)",
value: "da-DK",
progress: 76,
progress: 90,
},
{
name: "Čeština (Czech)",
value: "cs-CZ",
progress: 75,
progress: 60,
},
{
name: "Català (Catalan)",
value: "ca-ES",
progress: 69,
progress: 54,
},
{
name: "Bulgarian",
value: "bg-BG",
progress: 25,
progress: 13,
},
{
name: "العربية (Arabic)",
value: "ar-SA",
progress: 18,
progress: 7,
},
{
name: "Afrikaans (Afrikaans)",
value: "af-ZA",
progress: 6,
progress: 0,
},
]

View file

@ -357,7 +357,7 @@ export interface RecipeTimelineEventCreate {
subject: string;
eventType: TimelineEventType;
eventMessage?: string;
image?: TimelineEventImage;
image?: TimelineEventImage & string;
timestamp?: string;
}
export interface RecipeTimelineEventIn {
@ -366,7 +366,7 @@ export interface RecipeTimelineEventIn {
subject: string;
eventType: TimelineEventType;
eventMessage?: string;
image?: TimelineEventImage;
image?: TimelineEventImage & string;
timestamp?: string;
}
export interface RecipeTimelineEventOut {
@ -375,7 +375,7 @@ export interface RecipeTimelineEventOut {
subject: string;
eventType: TimelineEventType;
eventMessage?: string;
image?: TimelineEventImage;
image?: TimelineEventImage & string;
timestamp?: string;
id: string;
createdAt: string;

View file

@ -21,6 +21,15 @@ export interface PaginationQuery {
orderBy?: string;
orderDirection?: OrderDirection & string;
queryFilter?: string;
paginationSeed?: string;
}
export interface RecipeSearchQuery {
cookbook?: string;
requireAllCategories?: boolean;
requireAllTags?: boolean;
requireAllTools?: boolean;
requireAllFoods?: boolean;
search?: string;
}
export interface SuccessResponse {
message: string;

View file

@ -119,6 +119,9 @@ export interface PrivateUser {
loginAttemps?: number;
lockedAt?: string;
}
export interface PasswordResetToken {
token: string;
}
export interface PrivatePasswordResetToken {
userId: string;
token: string;
@ -148,6 +151,7 @@ export interface UnlockResults {
export interface UpdateGroup {
name: string;
id: string;
slug: string;
categories?: CategoryBase[];
webhooks?: unknown[];
}
@ -234,6 +238,3 @@ export interface UserIn {
export interface ValidateResetToken {
token: string;
}
export interface PasswordResetToken {
token: string;
}

View file

@ -158,6 +158,7 @@ export default {
i18n: {
locales: [
// CODE_GEN_ID: MESSAGE_LOCALES
{ code: "lv-LV", file: "lv-LV.json" },
{ code: "el-GR", file: "el-GR.json" },
{ code: "it-IT", file: "it-IT.json" },
{ code: "ko-KR", file: "ko-KR.json" },
@ -177,12 +178,14 @@ export default {
{ code: "lt-LT", file: "lt-LT.json" },
{ code: "fr-CA", file: "fr-CA.json" },
{ code: "pl-PL", file: "pl-PL.json" },
{ code: "hr-HR", file: "hr-HR.json" },
{ code: "da-DK", file: "da-DK.json" },
{ code: "pt-BR", file: "pt-BR.json" },
{ code: "de-DE", file: "de-DE.json" },
{ code: "ca-ES", file: "ca-ES.json" },
{ code: "sr-SP", file: "sr-SP.json" },
{ code: "cs-CZ", file: "cs-CZ.json" },
{ code: "gl-ES", file: "gl-ES.json" },
{ code: "fr-FR", file: "fr-FR.json" },
{ code: "zh-TW", file: "zh-TW.json" },
{ code: "af-ZA", file: "af-ZA.json" },

View file

@ -18,6 +18,7 @@ import ButtonLink from "@/components/global/ButtonLink.vue";
import ContextMenu from "@/components/global/ContextMenu.vue";
import CrudTable from "@/components/global/CrudTable.vue";
import DevDumpJson from "@/components/global/DevDumpJson.vue";
import DocLink from "@/components/global/DocLink.vue";
import DropZone from "@/components/global/DropZone.vue";
import HelpIcon from "@/components/global/HelpIcon.vue";
import InputColor from "@/components/global/InputColor.vue";
@ -57,6 +58,7 @@ declare module "vue" {
ContextMenu: typeof ContextMenu;
CrudTable: typeof CrudTable;
DevDumpJson: typeof DevDumpJson;
DocLink: typeof DocLink;
DropZone: typeof DropZone;
HelpIcon: typeof HelpIcon;
InputColor: typeof InputColor;