feat: icon+tooltip buttons on meal-plan/shopping-list headers (v0.28.0)
Match the recipe detail page's action-row convention: Share, Generate shopping list, Shopping lists link, Print, Export to calendar, and Send to grocery delivery collapse to icon-only with a tooltip instead of icon+text, freeing up header space. Week prev/next arrows moved next to the week date instead of sitting at the end of the button row. Note: verified via typecheck/lint only — this dev environment has no authenticated session to visually confirm in-browser. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
All notable changes to Epicure are documented here. This file is mirrored in-app at `/changelog` (and in the admin dashboard) via `apps/web/lib/changelog.ts` — update both together.
|
All notable changes to Epicure are documented here. This file is mirrored in-app at `/changelog` (and in the admin dashboard) via `apps/web/lib/changelog.ts` — update both together.
|
||||||
|
|
||||||
|
## 0.28.0 — 2026-07-14 14:05
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- **Meal plan and shopping list header buttons now match the recipe page's icon+tooltip style** — Share, Generate shopping list, Shopping lists, Print, Export to calendar, Send to grocery delivery all collapsed to icon-only with a tooltip, instead of crowding the header with text labels.
|
||||||
|
- **Week-switch arrows on the meal plan now sit right next to the week date**, instead of at the far end of the button row.
|
||||||
|
|
||||||
## 0.27.2 — 2026-07-14 13:20
|
## 0.27.2 — 2026-07-14 13:20
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import { ChevronLeft, ChevronRight, ShoppingCart, Printer, CalendarDays } from "
|
|||||||
import { auth } from "@/lib/auth/server";
|
import { auth } from "@/lib/auth/server";
|
||||||
import { db, mealPlans, mealPlanMembers, recipes, userNutritionGoals, eq, and, desc } from "@epicure/db";
|
import { db, mealPlans, mealPlanMembers, recipes, userNutritionGoals, eq, and, desc } from "@epicure/db";
|
||||||
import { buttonVariants } from "@/components/ui/button";
|
import { buttonVariants } from "@/components/ui/button";
|
||||||
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip";
|
||||||
import { MealPlanner } from "@/components/meal-plan/meal-planner";
|
import { MealPlanner } from "@/components/meal-plan/meal-planner";
|
||||||
import { ShareMealPlanButton } from "@/components/meal-plan/share-meal-plan-button";
|
import { ShareMealPlanButton } from "@/components/meal-plan/share-meal-plan-button";
|
||||||
import { NewShoppingListButton } from "@/components/meal-plan/new-shopping-list-button";
|
import { NewShoppingListButton } from "@/components/meal-plan/new-shopping-list-button";
|
||||||
@@ -110,10 +111,29 @@ export default async function MealPlanPage({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
|
<TooltipProvider>
|
||||||
<div className="flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between">
|
<div className="flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h1 className="text-3xl font-bold tracking-tight">{msgs.mealPlan.title}</h1>
|
<h1 className="text-3xl font-bold tracking-tight">{msgs.mealPlan.title}</h1>
|
||||||
<p className="text-muted-foreground mt-1">{label}</p>
|
<div className="flex items-center gap-1 mt-1">
|
||||||
|
<Tooltip>
|
||||||
|
<TooltipTrigger render={
|
||||||
|
<Link href={`/meal-plan?week=${prevWeek}`} className={cn(buttonVariants({ variant: "ghost", size: "icon" }), "h-7 w-7")} aria-label={msgs.mealPlan.previousWeek}>
|
||||||
|
<ChevronLeft className="h-4 w-4" />
|
||||||
|
</Link>
|
||||||
|
} />
|
||||||
|
<TooltipContent>{msgs.mealPlan.previousWeek}</TooltipContent>
|
||||||
|
</Tooltip>
|
||||||
|
<p className="text-muted-foreground">{label}</p>
|
||||||
|
<Tooltip>
|
||||||
|
<TooltipTrigger render={
|
||||||
|
<Link href={`/meal-plan?week=${nextWeek}`} className={cn(buttonVariants({ variant: "ghost", size: "icon" }), "h-7 w-7")} aria-label={msgs.mealPlan.nextWeek}>
|
||||||
|
<ChevronRight className="h-4 w-4" />
|
||||||
|
</Link>
|
||||||
|
} />
|
||||||
|
<TooltipContent>{msgs.mealPlan.nextWeek}</TooltipContent>
|
||||||
|
</Tooltip>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-wrap items-center gap-2">
|
<div className="flex flex-wrap items-center gap-2">
|
||||||
<ShareMealPlanButton weekStart={weekStart} />
|
<ShareMealPlanButton weekStart={weekStart} />
|
||||||
@@ -121,30 +141,37 @@ export default async function MealPlanPage({
|
|||||||
defaultWeekStart={weekStart}
|
defaultWeekStart={weekStart}
|
||||||
defaultName={formatMessage(msgs.mealPlan.shoppingListWeekName, { week: label })}
|
defaultName={formatMessage(msgs.mealPlan.shoppingListWeekName, { week: label })}
|
||||||
/>
|
/>
|
||||||
<Link href="/shopping-lists" className={cn(buttonVariants({ variant: "outline", size: "sm" }))}>
|
<Tooltip>
|
||||||
<ShoppingCart className="h-4 w-4" />
|
<TooltipTrigger render={
|
||||||
{msgs.mealPlan.shoppingLists}
|
<Link href="/shopping-lists" className={cn(buttonVariants({ variant: "ghost", size: "icon" }))} aria-label={msgs.mealPlan.shoppingLists}>
|
||||||
</Link>
|
<ShoppingCart className="h-4 w-4" />
|
||||||
<Link href={`/print/meal-plan?week=${weekStart}`} target="_blank" className={cn(buttonVariants({ variant: "outline", size: "sm" }))}>
|
</Link>
|
||||||
<Printer className="h-4 w-4" />
|
} />
|
||||||
{msgs.common.print}
|
<TooltipContent>{msgs.mealPlan.shoppingLists}</TooltipContent>
|
||||||
</Link>
|
</Tooltip>
|
||||||
|
<Tooltip>
|
||||||
|
<TooltipTrigger render={
|
||||||
|
<Link href={`/print/meal-plan?week=${weekStart}`} target="_blank" className={cn(buttonVariants({ variant: "ghost", size: "icon" }))} aria-label={msgs.common.print}>
|
||||||
|
<Printer className="h-4 w-4" />
|
||||||
|
</Link>
|
||||||
|
} />
|
||||||
|
<TooltipContent>{msgs.common.print}</TooltipContent>
|
||||||
|
</Tooltip>
|
||||||
<ExportMarkdownButton
|
<ExportMarkdownButton
|
||||||
markdown={mealPlanToMarkdown({ label, entries })}
|
markdown={mealPlanToMarkdown({ label, entries })}
|
||||||
filename={`meal-plan-${weekStart}`}
|
filename={`meal-plan-${weekStart}`}
|
||||||
/>
|
/>
|
||||||
<a href={`/api/v1/meal-plans/${weekStart}/export/ics`} className={cn(buttonVariants({ variant: "outline", size: "sm" }))}>
|
<Tooltip>
|
||||||
<CalendarDays className="h-4 w-4" />
|
<TooltipTrigger render={
|
||||||
{msgs.mealPlan.exportCalendar}
|
<a href={`/api/v1/meal-plans/${weekStart}/export/ics`} className={cn(buttonVariants({ variant: "ghost", size: "icon" }))} aria-label={msgs.mealPlan.exportCalendar}>
|
||||||
</a>
|
<CalendarDays className="h-4 w-4" />
|
||||||
<Link href={`/meal-plan?week=${prevWeek}`} className={cn(buttonVariants({ variant: "outline", size: "sm" }))}>
|
</a>
|
||||||
<ChevronLeft className="h-4 w-4" />
|
} />
|
||||||
</Link>
|
<TooltipContent>{msgs.mealPlan.exportCalendar}</TooltipContent>
|
||||||
<Link href={`/meal-plan?week=${nextWeek}`} className={cn(buttonVariants({ variant: "outline", size: "sm" }))}>
|
</Tooltip>
|
||||||
<ChevronRight className="h-4 w-4" />
|
|
||||||
</Link>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</TooltipProvider>
|
||||||
|
|
||||||
<WeeklyNutritionBar weekStart={weekStart} />
|
<WeeklyNutritionBar weekStart={weekStart} />
|
||||||
<MealPlanner weekStart={weekStart} initialEntries={entries} userRecipes={userRecipes} hasNutritionGoals={hasNutritionGoals} />
|
<MealPlanner weekStart={weekStart} initialEntries={entries} userRecipes={userRecipes} hasNutritionGoals={hasNutritionGoals} />
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import { ShareShoppingListButton } from "@/components/shopping-lists/share-shopp
|
|||||||
import { GroceryExportButton } from "@/components/shopping-lists/grocery-export-button";
|
import { GroceryExportButton } from "@/components/shopping-lists/grocery-export-button";
|
||||||
import { ShoppingListActionsMenu } from "@/components/shopping-lists/shopping-list-actions-menu";
|
import { ShoppingListActionsMenu } from "@/components/shopping-lists/shopping-list-actions-menu";
|
||||||
import { buttonVariants } from "@/components/ui/button";
|
import { buttonVariants } from "@/components/ui/button";
|
||||||
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
import { getShoppingListAccess, canWriteShoppingList } from "@/lib/shopping-list-access";
|
import { getShoppingListAccess, canWriteShoppingList } from "@/lib/shopping-list-access";
|
||||||
import { ExportMarkdownButton } from "@/components/shared/export-markdown-button";
|
import { ExportMarkdownButton } from "@/components/shared/export-markdown-button";
|
||||||
@@ -48,15 +49,20 @@ export default async function ShoppingListPage({ params }: Params) {
|
|||||||
{list.generatedAt ? m.shoppingLists.fromMealPlan : ""}
|
{list.generatedAt ? m.shoppingLists.fromMealPlan : ""}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
<TooltipProvider>
|
||||||
<div className="flex items-center gap-2 overflow-x-auto pb-0.5 [scrollbar-width:none] [-ms-overflow-style:none] [&::-webkit-scrollbar]:hidden">
|
<div className="flex items-center gap-2 overflow-x-auto pb-0.5 [scrollbar-width:none] [-ms-overflow-style:none] [&::-webkit-scrollbar]:hidden">
|
||||||
<GroceryExportButton listId={id} instacartEnabled={instacartEnabled} />
|
<GroceryExportButton listId={id} instacartEnabled={instacartEnabled} />
|
||||||
{access.role === "owner" && (
|
{access.role === "owner" && (
|
||||||
<ShareShoppingListButton listId={id} initialIsPublic={list.isPublic} initialPublicEditable={list.publicEditable} />
|
<ShareShoppingListButton listId={id} initialIsPublic={list.isPublic} initialPublicEditable={list.publicEditable} />
|
||||||
)}
|
)}
|
||||||
<Link href={`/print/shopping-list/${id}`} target="_blank" className={cn(buttonVariants({ variant: "outline", size: "sm" }))}>
|
<Tooltip>
|
||||||
<Printer className="h-4 w-4" />
|
<TooltipTrigger render={
|
||||||
{m.common.print}
|
<Link href={`/print/shopping-list/${id}`} target="_blank" className={cn(buttonVariants({ variant: "ghost", size: "icon" }))} aria-label={m.common.print}>
|
||||||
</Link>
|
<Printer className="h-4 w-4" />
|
||||||
|
</Link>
|
||||||
|
} />
|
||||||
|
<TooltipContent>{m.common.print}</TooltipContent>
|
||||||
|
</Tooltip>
|
||||||
<ExportMarkdownButton
|
<ExportMarkdownButton
|
||||||
markdown={shoppingListToMarkdown({ name: list.name, items: list.items })}
|
markdown={shoppingListToMarkdown({ name: list.name, items: list.items })}
|
||||||
filename={list.name}
|
filename={list.name}
|
||||||
@@ -65,6 +71,7 @@ export default async function ShoppingListPage({ params }: Params) {
|
|||||||
<ShoppingListActionsMenu listId={id} name={list.name} redirectAfterDeleteTo="/shopping-lists" />
|
<ShoppingListActionsMenu listId={id} name={list.name} redirectAfterDeleteTo="/shopping-lists" />
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
</TooltipProvider>
|
||||||
</div>
|
</div>
|
||||||
<ShoppingListView
|
<ShoppingListView
|
||||||
listId={id}
|
listId={id}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import { Button } from "@/components/ui/button";
|
|||||||
import { Dialog, DialogContent, DialogHeader, DialogTitle } from "@/components/ui/dialog";
|
import { Dialog, DialogContent, DialogHeader, DialogTitle } from "@/components/ui/dialog";
|
||||||
import { Input } from "@/components/ui/input";
|
import { Input } from "@/components/ui/input";
|
||||||
import { Label } from "@/components/ui/label";
|
import { Label } from "@/components/ui/label";
|
||||||
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip";
|
||||||
|
|
||||||
export function NewShoppingListButton({
|
export function NewShoppingListButton({
|
||||||
defaultWeekStart,
|
defaultWeekStart,
|
||||||
@@ -56,10 +57,23 @@ export function NewShoppingListButton({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Button size="sm" onClick={openDialog} variant={defaultWeekStart ? "outline" : "default"}>
|
{defaultWeekStart ? (
|
||||||
{defaultWeekStart ? <ShoppingCart className="h-4 w-4" /> : <Plus className="h-4 w-4" />}
|
<TooltipProvider>
|
||||||
{defaultWeekStart ? t("generateFromThisWeek") : t("newList")}
|
<Tooltip>
|
||||||
</Button>
|
<TooltipTrigger render={
|
||||||
|
<Button size="icon" variant="ghost" onClick={openDialog} aria-label={t("generateFromThisWeek")}>
|
||||||
|
<ShoppingCart className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
} />
|
||||||
|
<TooltipContent>{t("generateFromThisWeek")}</TooltipContent>
|
||||||
|
</Tooltip>
|
||||||
|
</TooltipProvider>
|
||||||
|
) : (
|
||||||
|
<Button size="sm" onClick={openDialog} variant="default">
|
||||||
|
<Plus className="h-4 w-4" />
|
||||||
|
{t("newList")}
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
<Dialog open={open} onOpenChange={setOpen}>
|
<Dialog open={open} onOpenChange={setOpen}>
|
||||||
<DialogContent className="max-w-md">
|
<DialogContent className="max-w-md">
|
||||||
<DialogHeader><DialogTitle>{t("newListTitle")}</DialogTitle></DialogHeader>
|
<DialogHeader><DialogTitle>{t("newListTitle")}</DialogTitle></DialogHeader>
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ import {
|
|||||||
SelectValue,
|
SelectValue,
|
||||||
} from "@/components/ui/select";
|
} from "@/components/ui/select";
|
||||||
import { Badge } from "@/components/ui/badge";
|
import { Badge } from "@/components/ui/badge";
|
||||||
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip";
|
||||||
|
|
||||||
type Role = "viewer" | "editor";
|
type Role = "viewer" | "editor";
|
||||||
|
|
||||||
@@ -116,10 +117,16 @@ export function ShareMealPlanButton({ weekStart }: Props) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Button variant="outline" size="sm" onClick={() => handleOpenChange(true)}>
|
<TooltipProvider>
|
||||||
<UserPlus className="h-4 w-4" />
|
<Tooltip>
|
||||||
{tCommon("share")}
|
<TooltipTrigger render={
|
||||||
</Button>
|
<Button variant="ghost" size="icon" onClick={() => handleOpenChange(true)} aria-label={tCommon("share")}>
|
||||||
|
<UserPlus className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
} />
|
||||||
|
<TooltipContent>{tCommon("share")}</TooltipContent>
|
||||||
|
</Tooltip>
|
||||||
|
</TooltipProvider>
|
||||||
|
|
||||||
<Dialog open={open} onOpenChange={handleOpenChange}>
|
<Dialog open={open} onOpenChange={handleOpenChange}>
|
||||||
<DialogContent className="sm:max-w-md">
|
<DialogContent className="sm:max-w-md">
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import {
|
|||||||
DropdownMenuTrigger,
|
DropdownMenuTrigger,
|
||||||
} from "@/components/ui/dropdown-menu";
|
} from "@/components/ui/dropdown-menu";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip";
|
||||||
import type { GroceryExportPayload } from "@/lib/grocery-export";
|
import type { GroceryExportPayload } from "@/lib/grocery-export";
|
||||||
import { groceryExportToText } from "@/lib/grocery-export";
|
import { groceryExportToText } from "@/lib/grocery-export";
|
||||||
|
|
||||||
@@ -62,12 +63,18 @@ export function GroceryExportButton({ listId, instacartEnabled }: Props) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<DropdownMenu>
|
<DropdownMenu>
|
||||||
<DropdownMenuTrigger render={
|
<TooltipProvider>
|
||||||
<Button variant="outline" size="sm" disabled={loading}>
|
<Tooltip>
|
||||||
<ShoppingBag className="h-4 w-4" />
|
<TooltipTrigger render={
|
||||||
{t("sendToGroceryDelivery")}
|
<DropdownMenuTrigger render={
|
||||||
</Button>
|
<Button variant="ghost" size="icon" disabled={loading} aria-label={t("sendToGroceryDelivery")}>
|
||||||
} />
|
<ShoppingBag className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
} />
|
||||||
|
} />
|
||||||
|
<TooltipContent>{t("sendToGroceryDelivery")}</TooltipContent>
|
||||||
|
</Tooltip>
|
||||||
|
</TooltipProvider>
|
||||||
<DropdownMenuContent align="end">
|
<DropdownMenuContent align="end">
|
||||||
<DropdownMenuItem onClick={() => void handleCopy()}>
|
<DropdownMenuItem onClick={() => void handleCopy()}>
|
||||||
<Copy className="h-4 w-4" />
|
<Copy className="h-4 w-4" />
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ import {
|
|||||||
} from "@/components/ui/select";
|
} from "@/components/ui/select";
|
||||||
import { Badge } from "@/components/ui/badge";
|
import { Badge } from "@/components/ui/badge";
|
||||||
import { Separator } from "@/components/ui/separator";
|
import { Separator } from "@/components/ui/separator";
|
||||||
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip";
|
||||||
|
|
||||||
type Role = "viewer" | "editor";
|
type Role = "viewer" | "editor";
|
||||||
|
|
||||||
@@ -185,10 +186,16 @@ export function ShareShoppingListButton({ listId, initialIsPublic, initialPublic
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Button variant="outline" size="sm" onClick={() => handleOpenChange(true)}>
|
<TooltipProvider>
|
||||||
<UserPlus className="h-4 w-4" />
|
<Tooltip>
|
||||||
{tCommon("share")}
|
<TooltipTrigger render={
|
||||||
</Button>
|
<Button variant="ghost" size="icon" onClick={() => handleOpenChange(true)} aria-label={tCommon("share")}>
|
||||||
|
<UserPlus className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
} />
|
||||||
|
<TooltipContent>{tCommon("share")}</TooltipContent>
|
||||||
|
</Tooltip>
|
||||||
|
</TooltipProvider>
|
||||||
|
|
||||||
<Dialog open={open} onOpenChange={handleOpenChange}>
|
<Dialog open={open} onOpenChange={handleOpenChange}>
|
||||||
<DialogContent className="sm:max-w-md">
|
<DialogContent className="sm:max-w-md">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
// Mirrors CHANGELOG.md at the repo root — update both together.
|
// Mirrors CHANGELOG.md at the repo root — update both together.
|
||||||
export const APP_VERSION = "0.27.2";
|
export const APP_VERSION = "0.28.0";
|
||||||
|
|
||||||
export type ChangelogEntry = {
|
export type ChangelogEntry = {
|
||||||
version: string;
|
version: string;
|
||||||
@@ -11,6 +11,14 @@ export type ChangelogEntry = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const CHANGELOG: ChangelogEntry[] = [
|
export const CHANGELOG: ChangelogEntry[] = [
|
||||||
|
{
|
||||||
|
version: "0.28.0",
|
||||||
|
date: "2026-07-14 14:05",
|
||||||
|
added: [
|
||||||
|
"**Meal plan and shopping list header buttons now match the recipe page's icon+tooltip style** — Share, Generate shopping list, Shopping lists, Print, Export to calendar, Send to grocery delivery all collapsed to icon-only with a tooltip, instead of crowding the header with text labels.",
|
||||||
|
"**Week-switch arrows on the meal plan now sit right next to the week date**, instead of at the far end of the button row.",
|
||||||
|
],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
version: "0.27.2",
|
version: "0.27.2",
|
||||||
date: "2026-07-14 13:20",
|
date: "2026-07-14 13:20",
|
||||||
|
|||||||
@@ -856,6 +856,8 @@
|
|||||||
"markCookedSuccess": "Marked as cooked",
|
"markCookedSuccess": "Marked as cooked",
|
||||||
"markCookedFailed": "Failed to mark as cooked",
|
"markCookedFailed": "Failed to mark as cooked",
|
||||||
"exportCalendar": "Export to calendar",
|
"exportCalendar": "Export to calendar",
|
||||||
|
"previousWeek": "Previous week",
|
||||||
|
"nextWeek": "Next week",
|
||||||
"clearDay": "Clear day",
|
"clearDay": "Clear day",
|
||||||
"clearWeek": "Clear week",
|
"clearWeek": "Clear week",
|
||||||
"clearDayConfirmTitle": "Clear {day}?",
|
"clearDayConfirmTitle": "Clear {day}?",
|
||||||
|
|||||||
@@ -847,6 +847,8 @@
|
|||||||
"markCookedSuccess": "Marqué comme cuisiné",
|
"markCookedSuccess": "Marqué comme cuisiné",
|
||||||
"markCookedFailed": "Échec du marquage comme cuisiné",
|
"markCookedFailed": "Échec du marquage comme cuisiné",
|
||||||
"exportCalendar": "Exporter vers le calendrier",
|
"exportCalendar": "Exporter vers le calendrier",
|
||||||
|
"previousWeek": "Semaine précédente",
|
||||||
|
"nextWeek": "Semaine suivante",
|
||||||
"clearDay": "Vider la journée",
|
"clearDay": "Vider la journée",
|
||||||
"clearWeek": "Vider la semaine",
|
"clearWeek": "Vider la semaine",
|
||||||
"clearDayConfirmTitle": "Vider {day} ?",
|
"clearDayConfirmTitle": "Vider {day} ?",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@epicure/web",
|
"name": "@epicure/web",
|
||||||
"version": "0.27.2",
|
"version": "0.28.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "epicure",
|
"name": "epicure",
|
||||||
"version": "0.27.2",
|
"version": "0.28.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "pnpm --filter web dev",
|
"dev": "pnpm --filter web dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user