- Implemented FullPagePageIndex component with mock data for database clusters. - Added pagination and bulk actions for managing database clusters. - Created navigation context hooks for detail, edit, duplicate, and create actions. - Introduced a new store for managing state in full-page and single-page modules. feat: add navigation localization files - Added English and Indonesian localization files for navigation menu items. - Included translations for various modules including CRM, Sales, Supply Chain, and more. feat: create system information shortcuts component - Developed Shortcut component to display keyboard shortcuts with search functionality. - Implemented System component to show placeholder information when system details are unavailable. - Added localization for shortcuts and system information in English and Indonesian. feat: implement global theme store - Created a Zustand store for managing theme color scheme with localStorage persistence. feat: add module page header component - Developed ModulePageHeader component for consistent page header across modules. - Included breadcrumb navigation, title, description, and action buttons. feat: define default privileges for enterprise module - Established default privileges for CRUD operations and other actions in the enterprise module.
66 lines
1.9 KiB
JSON
66 lines
1.9 KiB
JSON
{
|
|
"name": "@repo/ui",
|
|
"version": "0.0.0",
|
|
"exports": {
|
|
"./theme.css": "./src/theme.css",
|
|
"./components": "./src/components/index.ts",
|
|
"./form": "./src/components/Form/index.ts",
|
|
"./hooks": "./src/hooks/index.ts",
|
|
"./provider": "./src/provider/index.ts",
|
|
"./validators": "./src/validators/index.ts",
|
|
"./foundations": "./src/foundations/index.ts"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"lint": "eslint \"**/*.ts\"",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest --watch"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.2.3"
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "^5.0.1",
|
|
"@mantine/core": "^8.3.15",
|
|
"@mantine/hooks": "^8.3.15",
|
|
"@mantine/notifications": "^8.3.15",
|
|
"@mantine/tiptap": "^9.3.2",
|
|
"@repo/core-api": "workspace:^",
|
|
"@repo/core-i18n": "workspace:*",
|
|
"@repo/core-storage": "workspace:^",
|
|
"@repo/utils": "workspace:*",
|
|
"@tiptap/extension-link": "^3.27.1",
|
|
"@tiptap/extension-text-align": "^3.27.1",
|
|
"@tiptap/extension-underline": "^3.27.1",
|
|
"@tiptap/pm": "^3.27.1",
|
|
"@tiptap/react": "^3.27.1",
|
|
"@tiptap/starter-kit": "^3.27.1",
|
|
"dayjs": "^1.11.19",
|
|
"lucide-react": "^1.22.0",
|
|
"react-hook-form": "^7.56.4",
|
|
"react-router-dom": "^7.11.0",
|
|
"tailwind-merge": "^3.4.0",
|
|
"tailwind-variants": "^3.2.2",
|
|
"tailwindcss": "^4.1.18",
|
|
"zod": "^3.25.36"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/eslint-config": "workspace:*",
|
|
"@repo/typescript-config": "workspace:*",
|
|
"@tailwindcss/vite": "^4.1.18",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.3.0",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/react": "^19.2.7",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^5.1.2",
|
|
"eslint": "^8.57.1",
|
|
"jsdom": "^26.1.0",
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.2.3",
|
|
"typescript": "5.5.4",
|
|
"vite": "^5.1.4",
|
|
"vitest": "^4.0.17"
|
|
}
|
|
} |