Skip to content

Commit e491b30

Browse files
committed
feat: side panel with request tracking and tab-aware context
- Migrate from popup/options to unified side panel UI - Add real-time request tracking with privacy-safe storage - Implement performance optimizations (caching, batching, debouncing) - Add tab-specific context filtering by organization - Display active rules based on actual network interception - Add dark mode with purple accents - Extract pure functions for pattern matching and stats tracking - Add transparent tracking data display in settings
1 parent 1306850 commit e491b30

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+4465
-116
lines changed

components.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": false,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.ts",
8+
"css": "src/shared/styles/globals.css",
9+
"baseColor": "neutral",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/shared/lib/utils",
16+
"ui": "@/components/ui",
17+
"lib": "@/shared/lib",
18+
"hooks": "@/hooks"
19+
},
20+
"iconLibrary": "lucide"
21+
}

package.json

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,25 @@
1717
"prepare": "husky",
1818
"lint-staged": "biome check --write --no-errors-on-unmatched"
1919
},
20-
"keywords": [
21-
"chrome-extension",
22-
"auth",
23-
"headers",
24-
"sdk-kit",
25-
"developer-tools"
26-
],
20+
"keywords": ["chrome-extension", "auth", "headers", "sdk-kit", "developer-tools"],
2721
"author": "ProsDevLab",
2822
"license": "MIT",
2923
"packageManager": "[email protected]",
3024
"dependencies": {
25+
"@hookform/resolvers": "^5.2.2",
3126
"@lytics/sdk-kit": "link:../sdk-kit/packages/core",
27+
"@radix-ui/react-dialog": "^1.1.15",
28+
"@radix-ui/react-label": "^2.1.8",
29+
"@radix-ui/react-slot": "^1.2.4",
30+
"@radix-ui/react-switch": "^1.2.6",
31+
"class-variance-authority": "^0.7.1",
32+
"clsx": "^2.1.1",
33+
"lucide-react": "^0.562.0",
3234
"react": "^19.0.0",
33-
"react-dom": "^19.0.0"
35+
"react-dom": "^19.0.0",
36+
"react-hook-form": "^7.69.0",
37+
"tailwind-merge": "^3.4.0",
38+
"zod": "^4.2.1"
3439
},
3540
"devDependencies": {
3641
"@biomejs/biome": "^1.9.4",
@@ -45,7 +50,9 @@
4550
"happy-dom": "^20.0.11",
4651
"husky": "^9.1.7",
4752
"postcss": "^8.4.49",
53+
"sharp": "^0.34.5",
4854
"tailwindcss": "^3.4.17",
55+
"tailwindcss-animate": "^1.0.7",
4956
"typescript": "^5.7.3",
5057
"vite": "^6.0.7",
5158
"vite-plugin-web-extension": "^4.1.9",

0 commit comments

Comments
 (0)