Hotfix location in pipeline search (#108)

* feat(shared): centralize supported country list and source-country rules

* feat(orchestrator): add country selector and UK-only source gating in automatic run modal

* feat(orchestrator): persist country selection and run only compatible extractors

* fix(pipeline): enforce country-source compatibility during discovery

* test(orchestrator): cover country-based source gating and pipeline enforcement

* formatting

* test fix

* lint

* comments

* prevent auto focus grab

* verification

* command and popover

* make sure scroll is working
This commit is contained in:
Shaheer Sarfaraz
2026-02-08 13:02:52 +00:00
committed by GitHub
parent 9b80c2e05d
commit bd6834f99e
20 changed files with 2156 additions and 974 deletions
+14 -12
View File
@@ -30,11 +30,12 @@
"@paralleldrive/cuid2": "^3.0.6",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-checkbox": "1.3.2",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-dropdown-menu": "2.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
@@ -48,23 +49,24 @@
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.38.2",
"express": "^4.18.2",
"get-tsconfig": "^4.10.0",
"jsdom": "^25.0.1",
"tsx": "^4.19.2",
"express": "^4.18.2",
"lucide-react": "^0.561.0",
"next-themes": "^0.4.6",
"react-hook-form": "^7.71.1",
"react-markdown": "^10.1.0",
"recharts": "^2.12.5",
"react-transition-group": "^4.4.5",
"recharts": "^2.12.5",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"vaul": "^1.1.2",
"zod": "^3.23.8"
},
@@ -78,8 +80,8 @@
"@types/express": "^4.17.21",
"@types/jsdom": "^27.0.0",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-transition-group": "^4.4.12",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.22",
@@ -96,11 +98,11 @@
"vitest": "^4.0.16"
},
"optionalDependencies": {
"lightningcss-linux-x64-gnu": "^1.29.3",
"lightningcss-linux-arm64-gnu": "^1.29.3",
"@tailwindcss/oxide-linux-x64-gnu": "4.1.18",
"@tailwindcss/oxide-linux-arm64-gnu": "4.1.18",
"@rollup/rollup-linux-arm64-gnu": "^4.30.0",
"@rollup/rollup-linux-x64-gnu": "^4.30.0"
"@rollup/rollup-linux-x64-gnu": "^4.30.0",
"@tailwindcss/oxide-linux-arm64-gnu": "4.1.18",
"@tailwindcss/oxide-linux-x64-gnu": "4.1.18",
"lightningcss-linux-arm64-gnu": "^1.29.3",
"lightningcss-linux-x64-gnu": "^1.29.3"
}
}