feat: add environment variable management page with import/export functionality

- Implemented EnvPage component for managing environment variables.
- Added functionality to load, add, remove, and update environment variables.
- Included validation for empty and duplicate keys.
- Implemented import/export features for environment variables in JSON format.
- Integrated autocompletion for environment variable keys based on predefined config.

feat: create user profile management with edit and password change modals

- Developed ProfileCard component to display user information.
- Added EditProfileModal for updating user details.
- Implemented ChangePasswordModal for password modification.
- Integrated user data fetching and state management using Zustand.

feat: establish user store for managing user state and actions

- Created user store with Zustand for managing user profile state.
- Added actions for updating user information and handling loading states.

feat: implement login store for user authentication

- Developed login store for managing login state and actions.
- Added functionality for user login and registration with error handling.

feat: create reusable UI components for input groups and comboboxes

- Developed InputGroup and related components for enhanced input handling.
- Created Combobox component for improved selection functionality.
- Added Badge component for displaying contextual information.
This commit is contained in:
2026-02-02 23:30:08 +08:00
parent e42fce5bd1
commit 09f5f06baa
14 changed files with 1658 additions and 70 deletions

View File

@@ -11,10 +11,11 @@
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@kevisual/api": "^0.0.28",
"@base-ui/react": "^1.1.0",
"@kevisual/api": "^0.0.41",
"@kevisual/cache": "^0.0.5",
"@kevisual/query": "^0.0.38",
"@kevisual/router": "^0.0.63",
"@kevisual/query": "^0.0.39",
"@kevisual/router": "^0.0.66",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
@@ -39,7 +40,7 @@
"idb-keyval": "^6.2.2",
"lucide-react": "^0.563.0",
"marked": "^17.0.1",
"next": "16.1.5",
"next": "16.1.6",
"react": "19.2.4",
"react-day-picker": "^9.13.0",
"react-dom": "19.2.4",
@@ -48,11 +49,12 @@
"tailwind-merge": "^3.4.0",
"valtio": "^2.3.0",
"vaul": "^1.1.2",
"zustand": "^5.0.10"
"zustand": "^5.0.11"
},
"devDependencies": {
"@kevisual/context": "^0.0.4",
"@kevisual/types": "^0.0.12",
"@kevisual/use-config": "^1.0.30",
"@tailwindcss/postcss": "^4",
"@types/node": "^25",
"@types/react": "^19",