Files
prestashop-entity-selector/composer.json
myprestarocks aa9f28bb7e Refactor from Tailwind CSS to SCSS/Bootstrap
Major changes:
- Replace Tailwind with SCSS using Bootstrap-compatible variables
- Add Gulp build system for SCSS and JS compilation
- Split JS into modular partials (_events, _filters, _preview, etc.)

CSS fixes:
- Fix preview popover visibility (remove conflicting modal.scss rule)
- Fix search input max-width override for parent form styles
- Add filter panel styling (toggle buttons, chips, values row)
- Add group-body padding with negative margins on modifiers
- Style filter-group-toggle with eye icon for preview

JS additions:
- Add showGroupPreviewPopover for group count badge clicks
- Add showItemsPopover for rendering preview popover
- Add renderPreviewItems for product list rendering
- Add eye icon to filter toggle button generation

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-28 11:11:22 +01:00

29 lines
873 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"
},
"autoload": {
"psr-4": {
"MyPrestaRocks\\EntitySelector\\": "src/",
"MyPrestaRocks\\EntitySelector\\EntitySelector\\": "src/EntitySelector/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"minimum-stability": "stable"
}