docs: add missing defaultOptions and optionSchema to package.json manifest

This commit is contained in:
saberzero1 2026-05-22 20:06:19 +02:00
parent a165e287ea
commit 3d9c3b83da
No known key found for this signature in database

View file

@ -93,13 +93,39 @@
"dependencies": [],
"defaultOrder": 50,
"defaultEnabled": false,
"defaultOptions": {},
"defaultOptions": {
"limit": 3,
"linkToMore": false,
"showTags": true,
"hideTagPages": false,
"hideFolderPages": false
},
"components": {
"RecentNotes": {
"displayName": "Recent Notes",
"defaultPosition": "afterBody",
"defaultPriority": 50
}
},
"optionSchema": {
"title": {
"type": "string"
},
"limit": {
"type": "number"
},
"linkToMore": {
"type": "string"
},
"showTags": {
"type": "boolean"
},
"hideTagPages": {
"type": "boolean"
},
"hideFolderPages": {
"type": "boolean"
}
}
}
}