- Add validation system to prevent contradicting conditions: - Same entity in include/exclude detection - Parent-child conflict detection for tree entities - Redundant selection prevention - Toast notifications for validation errors - Fix entity icons (employees: briefcase, taxes: calculator) - Improve tooltip component: - Use Material Icons instead of broken FA4 icons - Fix positioning using getBoundingClientRect for viewport coords - Add click-to-pin functionality with close button - Pinned tooltips show X icon and close button in corner - Add lightweight test suite (31 tests) for validation logic Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
657 B
JSON
Executable File
26 lines
657 B
JSON
Executable File
{
|
|
"name": "prestashop-entity-selector",
|
|
"version": "2.0.0",
|
|
"description": "Universal entity selection widget for PrestaShop admin controllers",
|
|
"scripts": {
|
|
"build": "gulp build",
|
|
"build:css": "gulp scss",
|
|
"build:js": "gulp js",
|
|
"watch": "gulp watch",
|
|
"watch:css": "gulp watch:scss",
|
|
"watch:js": "gulp watch:js",
|
|
"test": "node tests/run-tests.js"
|
|
},
|
|
"devDependencies": {
|
|
"gulp": "^4.0.2",
|
|
"gulp-concat": "^2.6.1",
|
|
"gulp-rename": "^2.0.0",
|
|
"gulp-sass": "^5.1.0",
|
|
"gulp-sourcemaps": "^3.0.0",
|
|
"gulp-terser": "^2.1.0",
|
|
"jquery": "^3.7.1",
|
|
"jsdom": "^22.1.0",
|
|
"sass": "^1.63.6"
|
|
}
|
|
}
|