[PR #112] [MERGED] UI v2 #152

Closed
opened 2026-02-15 16:30:28 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/vector-admin/pull/112
Author: @timothycarambat
Created: 1/9/2024
Status: Merged
Merged: 1/18/2024
Merged by: @timothycarambat

Base: masterHead: ui-v2


📝 Commits (10+)

  • 7bee226 login page redesign
  • ffc6098 remove unneeded imports
  • da07534 added animations to login page
  • 1a1f5ba scale animation on focus login input
  • c3f0887 minor animation tweak
  • 09d0a3f Add Sign up page
  • 739205e remove unused imports
  • dea7252 Merge pull request #79 from Mintplex-Labs/v2-login-screen
  • 2ce8d44 WIP onboarding flow skeleton
  • 45522a1 Merge branch 'ui-v2' into v2-onboarding

📊 Changes

146 files changed (+6557 additions, -4713 deletions)

View changed files

📝 .gitignore (+3 -1)
📝 backend/endpoints/v1/workspaces/index.js (+1 -1)
📝 backend/models/workspaceDocument.js (+24 -0)
📝 backend/utils/vectordatabases/providers/chroma/index.js (+6 -0)
📝 backend/utils/vectordatabases/providers/weaviate/index.js (+0 -1)
📝 frontend/package.json (+1 -0)
📝 frontend/src/App.tsx (+5 -2)
📝 frontend/src/components/DocumentPaginator/index.tsx (+36 -5)
frontend/src/components/Header/Notifications/index.tsx (+0 -195)
📝 frontend/src/components/Header/index.tsx (+4 -101)
frontend/src/components/Modals/NewConnectorModal.tsx (+472 -0)
frontend/src/components/Modals/SyncConnectorModal.tsx (+93 -0)
frontend/src/components/Modals/UpdateConnectorModal.tsx (+483 -0)
📝 frontend/src/components/Modals/UploadDocumentModal/FileUploadProgress/index.tsx (+4 -4)
📝 frontend/src/components/Modals/UploadDocumentModal/index.tsx (+32 -28)
frontend/src/components/Modals/UploadModalNoKey.tsx (+77 -0)
frontend/src/components/Notifications/index.tsx (+391 -0)
📝 frontend/src/components/Preloader.tsx (+2 -2)
📝 frontend/src/components/Sidebar/CreateOrganizationModal/index.tsx (+12 -9)
frontend/src/components/Sidebar/OrganizationTab/index.tsx (+238 -0)

...and 80 more files

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #78
resolves #105
resolves #104

What is in this change?

Total UI overhaul of VectorAdmin


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/vector-admin/pull/112 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 1/9/2024 **Status:** ✅ Merged **Merged:** 1/18/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `ui-v2` --- ### 📝 Commits (10+) - [`7bee226`](https://github.com/Mintplex-Labs/vector-admin/commit/7bee226f3ade2d1091476ee603ba862961c6236b) login page redesign - [`ffc6098`](https://github.com/Mintplex-Labs/vector-admin/commit/ffc609881c5af15a307d08a7fddb1376b4546b54) remove unneeded imports - [`da07534`](https://github.com/Mintplex-Labs/vector-admin/commit/da07534c3b70d0bb9d94c9a754a6145e096ce443) added animations to login page - [`1a1f5ba`](https://github.com/Mintplex-Labs/vector-admin/commit/1a1f5baebe30ee49b4ee28141f45b24933c8af3d) scale animation on focus login input - [`c3f0887`](https://github.com/Mintplex-Labs/vector-admin/commit/c3f0887eeaa88ae2a61d6a5a5c7953ea2fd8c7fe) minor animation tweak - [`09d0a3f`](https://github.com/Mintplex-Labs/vector-admin/commit/09d0a3f134e7a8c52ad71d16bdbb2b84f15c17c1) Add Sign up page - [`739205e`](https://github.com/Mintplex-Labs/vector-admin/commit/739205ec1c8e11518685a7df724f996237d17cd2) remove unused imports - [`dea7252`](https://github.com/Mintplex-Labs/vector-admin/commit/dea7252cdcfed1ece8b7e92866b8190f8edeb09c) Merge pull request #79 from Mintplex-Labs/v2-login-screen - [`2ce8d44`](https://github.com/Mintplex-Labs/vector-admin/commit/2ce8d44664488b946bbdcaa8bb9e89ac88b210d3) WIP onboarding flow skeleton - [`45522a1`](https://github.com/Mintplex-Labs/vector-admin/commit/45522a12c8343cda9eaf19681a5733180ff00cfd) Merge branch 'ui-v2' into v2-onboarding ### 📊 Changes **146 files changed** (+6557 additions, -4713 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+3 -1) 📝 `backend/endpoints/v1/workspaces/index.js` (+1 -1) 📝 `backend/models/workspaceDocument.js` (+24 -0) 📝 `backend/utils/vectordatabases/providers/chroma/index.js` (+6 -0) 📝 `backend/utils/vectordatabases/providers/weaviate/index.js` (+0 -1) 📝 `frontend/package.json` (+1 -0) 📝 `frontend/src/App.tsx` (+5 -2) 📝 `frontend/src/components/DocumentPaginator/index.tsx` (+36 -5) ➖ `frontend/src/components/Header/Notifications/index.tsx` (+0 -195) 📝 `frontend/src/components/Header/index.tsx` (+4 -101) ➕ `frontend/src/components/Modals/NewConnectorModal.tsx` (+472 -0) ➕ `frontend/src/components/Modals/SyncConnectorModal.tsx` (+93 -0) ➕ `frontend/src/components/Modals/UpdateConnectorModal.tsx` (+483 -0) 📝 `frontend/src/components/Modals/UploadDocumentModal/FileUploadProgress/index.tsx` (+4 -4) 📝 `frontend/src/components/Modals/UploadDocumentModal/index.tsx` (+32 -28) ➕ `frontend/src/components/Modals/UploadModalNoKey.tsx` (+77 -0) ➕ `frontend/src/components/Notifications/index.tsx` (+391 -0) 📝 `frontend/src/components/Preloader.tsx` (+2 -2) 📝 `frontend/src/components/Sidebar/CreateOrganizationModal/index.tsx` (+12 -9) ➕ `frontend/src/components/Sidebar/OrganizationTab/index.tsx` (+238 -0) _...and 80 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #78 resolves #105 resolves #104 ### What is in this change? Total UI overhaul of VectorAdmin --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 16:30:28 -05:00
yindo closed this issue 2026-02-15 16:30:28 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/vector-admin#152