From 4d53212956e0c0929a2bd6722c4f7435f56c1d52 Mon Sep 17 00:00:00 2001 From: LuizGarbini Date: Mon, 26 Jan 2026 13:06:47 -0300 Subject: [PATCH] refactor(calendar): enhance calendar component styling and structure - Updated class names for improved layout and responsiveness. - Removed unused components to streamline the code. --- apps/web/next-env.d.ts | 2 +- packages/ui/src/components/ui/calendar.tsx | 28 ++++++++++++---------- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/apps/web/next-env.d.ts b/apps/web/next-env.d.ts index c4e7c0eb..a3e4680c 100644 --- a/apps/web/next-env.d.ts +++ b/apps/web/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -import './.next/types/routes.d.ts' +import './.next/dev/types/routes.d.ts' // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/packages/ui/src/components/ui/calendar.tsx b/packages/ui/src/components/ui/calendar.tsx index c1affc35..3dfc67b4 100644 --- a/packages/ui/src/components/ui/calendar.tsx +++ b/packages/ui/src/components/ui/calendar.tsx @@ -17,18 +17,28 @@ function Calendar({ }: CalendarProps) { return ( - orientation === 'left' ? ( - - ) : ( - - ), - }} {...props} /> )