Files
x-editable-bs5/package.json
Micha f4dc8a3dd0 Fix datepicker functionality for Bootstrap 5 x-editable
- Updated Gruntfile to use npm bootstrap-datepicker instead of bundled version
- Fixed DPGlobal reference from bdatepicker to datepicker
- Changed mode from inline to popup to ensure date input type is used
- Fixed missing type assignment in editable element initialization
- Enhanced input2value function with fallback logic to extract dates from dates array
- Added comprehensive debugging and error handling
- Datepicker now properly opens, captures selections, and submits formatted dates
2025-07-26 14:25:39 +02:00

68 lines
1.8 KiB
JSON

{
"name": "@24unix/x-editable",
"title": "X-editable",
"description": "A maintained fork of x-editable for Bootstrap 5 support.",
"version": "1.5.2",
"homepage": "https://git.24unix.net/tracer/x-editable",
"author": {
"name": "Micha Espey",
"email": "tracer@24unix.net"
},
"contributors": [
{
"name": "Vitaliy Potapov",
"email": "noginsk@rambler.ru",
"url": "https://github.com/vitalets",
"contributions": "Original author of x-editable"
}
],
"repository": {
"type": "git",
"url": "https://git.24unix.net/tracer/x-editable.git"
},
"bugs": {
"url": "https://git.24unix.net/tracer/x-editable/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://git.24unix.net/tracer/x-editable/blob/master/LICENSE-MIT"
}
],
"main": "dist/bootstrap5-editable/js/bootstrap-editable.js",
"module": "dist/bootstrap5-editable/js/bootstrap-editable.esm.js",
"style": "dist/bootstrap5-editable/css/bootstrap-editable.css",
"dependencies": {
"@anthropic-ai/claude-code": "^1.0.61",
"bootstrap": "^5.3.3",
"bootstrap-datepicker": "^1.10.0",
"bootstrap-icons": "^1.11.3",
"copy-webpack-plugin": "^13.0.0",
"jquery": "^3.7.1",
"popper.js": "^1.16.1",
"webpack": "^5.98.0"
},
"devDependencies": {
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-connect": "^5.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-qunit": "^10.1.1",
"grunt-contrib-requirejs": "^1.0.0",
"grunt-contrib-uglify": "^5.2.2",
"style-loader": "^4.0.0",
"webpack-cli": "^6.0.1"
},
"keywords": [
"editable",
"bootstrap5",
"jquery",
"in-place-editing",
"x-editable"
]
}