Files
prestashop-entity-selector/composer.json
myprestarocks 7d79273743 Add hierarchical tree view for category selection
Features:
- Tree view mode for categories with expand/collapse
- Product count badges with clickable preview popover
- Select parent with all children button
- Client-side tree filtering (refine search)
- Keyboard shortcuts: Ctrl+A (select all), Ctrl+D (clear)
- View mode switching between tree/list/columns
- Tree view as default for categories, respects user preference

Backend:
- Add previewCategoryProducts and previewCategoryPages AJAX handlers
- Support pagination and filtering in category previews

Styling:
- Consistent count-badge styling across tree and other views
- Loading and popover-open states for count badges

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 15:03:51 +01:00

30 lines
923 B
JSON
Executable File

{
"name": "myprestarocks/prestashop-entity-selector",
"description": "Universal entity selection widget for PrestaShop admin controllers - select products, categories, manufacturers with include/exclude logic",
"keywords": ["prestashop", "admin", "controller", "traits", "entity", "selector", "products", "categories"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "mypresta.rocks",
"email": "info@mypresta.rocks"
}
],
"require": {
"php": ">=7.1",
"myprestarocks/prestashop-admin": "^1.0"
},
"autoload": {
"psr-4": {
"MyPrestaRocks\\EntitySelector\\": "src/",
"MyPrestaRocks\\EntitySelector\\EntitySelector\\": "src/EntitySelector/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"minimum-stability": "stable"
}