- Introduced a new `QuickAppointment` component for scheduling appointments directly from the profile page. - Integrated the `QuickAppointment` component into the profile layout, allowing users to book appointments with a selected master or client. - Implemented a Radix UI Drawer for the appointment booking interface, enhancing user experience with a modal-like interaction. - Updated `pnpm-lock.yaml` and `package.json` to include new dependencies for the Radix UI components and the `vaul` library.
63 lines
1.6 KiB
JSON
63 lines
1.6 KiB
JSON
{
|
|
"name": "@repo/ui",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"sideEffects": [
|
|
"**/*.css"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
"./globals.css": "./src/globals.css",
|
|
"./postcss.config": "./postcss.config.mjs",
|
|
"./tailwind.config": "./tailwind.config.ts",
|
|
"./lib/*": "./src/lib/*.ts",
|
|
"./hooks/*": [
|
|
"./src/hooks/*.ts",
|
|
"./src/hooks/*.tsx"
|
|
],
|
|
"./components/*": "./src/components/*.tsx"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"ui": "pnpm dlx shadcn@latest",
|
|
"lint": "eslint",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/eslint-config": "workspace:*",
|
|
"@repo/lint-staged-config": "workspace:*",
|
|
"lint-staged": "catalog:"
|
|
},
|
|
"dependencies": {
|
|
"@radix-ui/react-avatar": "^1.1.2",
|
|
"@radix-ui/react-checkbox": "^1.1.3",
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.4",
|
|
"@radix-ui/react-label": "^2.1.1",
|
|
"@radix-ui/react-scroll-area": "^1.2.2",
|
|
"@radix-ui/react-select": "^2.1.4",
|
|
"@radix-ui/react-slot": "^1.1.1",
|
|
"@repo/typescript-config": "workspace:*",
|
|
"@types/react": "catalog:",
|
|
"autoprefixer": "catalog:",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"lucide-react": "catalog:",
|
|
"next-themes": "^0.4.4",
|
|
"postcss": "catalog:",
|
|
"postcss-load-config": "catalog:",
|
|
"react": "catalog:",
|
|
"react-day-picker": "8.10.1",
|
|
"react-dom": "catalog:",
|
|
"sonner": "^1.7.4",
|
|
"tailwind-merge": "^2.5.5",
|
|
"tailwindcss": "catalog:",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"typescript": "catalog:",
|
|
"vaul": "^1.1.2"
|
|
}
|
|
}
|