[PR #545] [CLOSED] refactor: update to tw4 and svelte5 for shadcn-svelte #739

Closed
opened 2025-10-07 00:21:33 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/pocket-id/pocket-id/pull/545
Author: @kmendell
Created: 5/18/2025
Status: Closed

Base: v1.0.0Head: refactor/upgrade-tw4-sv5


📝 Commits (8)

  • d736b6e chore: update to tailwindcss 4 for shadcn-svelte
  • 7b7c95e chore: upgrade to svelte 5
  • 679f386 chore: update .gitignore to remove binary
  • 2cb2a13 chore: update .gitignore to remove binary
  • b594c97 chore: remove binary
  • 4655436 upgrade lucide-svelte to @lucide/svelte
  • 213c702 upgrade deps
  • 1fbe37a upgrade cmdk-sv to bit-ui

📊 Changes

146 files changed (+7371 additions, -6231 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 backend/.gitignore (+1 -0)
📝 frontend/components.json (+6 -3)
📝 frontend/package-lock.json (+5578 -5304)
📝 frontend/package.json (+61 -59)
📝 frontend/src/app.css (+98 -43)
📝 frontend/src/lib/components/advanced-table.svelte (+20 -19)
📝 frontend/src/lib/components/collapsible-card.svelte (+1 -1)
📝 frontend/src/lib/components/copy-to-clipboard.svelte (+1 -1)
📝 frontend/src/lib/components/error.svelte (+1 -1)
📝 frontend/src/lib/components/form/auto-complete-input.svelte (+1 -1)
📝 frontend/src/lib/components/form/custom-claims-input.svelte (+1 -1)
📝 frontend/src/lib/components/form/date-picker.svelte (+13 -11)
📝 frontend/src/lib/components/form/form-input.svelte (+2 -0)
📝 frontend/src/lib/components/form/profile-picture-settings.svelte (+1 -1)
📝 frontend/src/lib/components/form/searchable-select.svelte (+40 -36)
📝 frontend/src/lib/components/glass-row-item.svelte (+1 -1)
📝 frontend/src/lib/components/header/header-avatar.svelte (+2 -2)
📝 frontend/src/lib/components/login-wrapper.svelte (+1 -1)
📝 frontend/src/lib/components/scope-item.svelte (+10 -4)

...and 80 more files

📄 Description

WIP, Will upgrade the shadcn-components later once the official release drops of the next branch


🔄 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/pocket-id/pocket-id/pull/545 **Author:** [@kmendell](https://github.com/kmendell) **Created:** 5/18/2025 **Status:** ❌ Closed **Base:** `v1.0.0` ← **Head:** `refactor/upgrade-tw4-sv5` --- ### 📝 Commits (8) - [`d736b6e`](https://github.com/pocket-id/pocket-id/commit/d736b6ec2d5428144b03029cdabe1e131c23d2a0) chore: update to tailwindcss 4 for shadcn-svelte - [`7b7c95e`](https://github.com/pocket-id/pocket-id/commit/7b7c95e0b1b62668f2bea548fa14447e8fa36593) chore: upgrade to svelte 5 - [`679f386`](https://github.com/pocket-id/pocket-id/commit/679f3868cd7aad4ad039048ac6e893d36bffc1b9) chore: update .gitignore to remove binary - [`2cb2a13`](https://github.com/pocket-id/pocket-id/commit/2cb2a1311bf2b1ef32a3e13869dc3fb2ed398072) chore: update .gitignore to remove binary - [`b594c97`](https://github.com/pocket-id/pocket-id/commit/b594c9794c9f3ecd75a8c07d5da261654a1d6bb2) chore: remove binary - [`4655436`](https://github.com/pocket-id/pocket-id/commit/46554366ddaa42aaec92da929b04ddb2576a84e3) upgrade lucide-svelte to @lucide/svelte - [`213c702`](https://github.com/pocket-id/pocket-id/commit/213c7026992f649af72fd547634bce6d153edf4e) upgrade deps - [`1fbe37a`](https://github.com/pocket-id/pocket-id/commit/1fbe37a32e653e0f8e5d97745669f3ee9973625e) upgrade cmdk-sv to bit-ui ### 📊 Changes **146 files changed** (+7371 additions, -6231 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `backend/.gitignore` (+1 -0) 📝 `frontend/components.json` (+6 -3) 📝 `frontend/package-lock.json` (+5578 -5304) 📝 `frontend/package.json` (+61 -59) 📝 `frontend/src/app.css` (+98 -43) 📝 `frontend/src/lib/components/advanced-table.svelte` (+20 -19) 📝 `frontend/src/lib/components/collapsible-card.svelte` (+1 -1) 📝 `frontend/src/lib/components/copy-to-clipboard.svelte` (+1 -1) 📝 `frontend/src/lib/components/error.svelte` (+1 -1) 📝 `frontend/src/lib/components/form/auto-complete-input.svelte` (+1 -1) 📝 `frontend/src/lib/components/form/custom-claims-input.svelte` (+1 -1) 📝 `frontend/src/lib/components/form/date-picker.svelte` (+13 -11) 📝 `frontend/src/lib/components/form/form-input.svelte` (+2 -0) 📝 `frontend/src/lib/components/form/profile-picture-settings.svelte` (+1 -1) 📝 `frontend/src/lib/components/form/searchable-select.svelte` (+40 -36) 📝 `frontend/src/lib/components/glass-row-item.svelte` (+1 -1) 📝 `frontend/src/lib/components/header/header-avatar.svelte` (+2 -2) 📝 `frontend/src/lib/components/login-wrapper.svelte` (+1 -1) 📝 `frontend/src/lib/components/scope-item.svelte` (+10 -4) _...and 80 more files_ </details> ### 📄 Description WIP, Will upgrade the shadcn-components later once the official release drops of the `next` branch --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2025-10-07 00:21:34 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/pocket-id#739