Files
ISA-Frontend/libs/checkout/feature/select-branch-dropdown/project.json
Lorenz Hilpert 7950994d66 Merged PR 2057: feat(checkout): add branch selection to reward catalog
feat(checkout): add branch selection to reward catalog

- Add new select-branch-dropdown library with BranchDropdownComponent
  and SelectedBranchDropdownComponent for branch selection
- Extend DropdownButtonComponent with filter and option subcomponents
- Integrate branch selection into reward catalog page
- Add BranchesResource for fetching available branches
- Update CheckoutMetadataService with branch selection persistence
- Add comprehensive tests for dropdown components

Related work items: #5464
2025-11-27 10:38:52 +00:00

21 lines
598 B
JSON

{
"name": "checkout-feature-select-branch-dropdown",
"$schema": "../../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/checkout/feature/select-branch-dropdown/src",
"prefix": "checkout",
"projectType": "library",
"tags": ["scope:checkout", "type:feature"],
"targets": {
"test": {
"executor": "@nx/vite:test",
"outputs": ["{options.reportsDirectory}"],
"options": {
"reportsDirectory": "../../../../coverage/libs/checkout/feature/select-branch-dropdown"
}
},
"lint": {
"executor": "@nx/eslint:lint"
}
}
}