Implement JQHTML function cache ID system and fix bundle compilation Implement underscore prefix for system tables Fix JS syntax linter to support decorators and grant exception to Task system SPA: Update planning docs and wishlists with remaining features SPA: Document Navigation API abandonment and future enhancements Implement SPA browser integration with History API (Phase 1) Convert contacts view page to SPA action Convert clients pages to SPA actions and document conversion procedure SPA: Merge GET parameters and update documentation Implement SPA route URL generation in JavaScript and PHP Implement SPA bootstrap controller architecture Add SPA routing manual page (rsx:man spa) Add SPA routing documentation to CLAUDE.md Phase 4 Complete: Client-side SPA routing implementation Update get_routes() consumers for unified route structure Complete SPA Phase 3: PHP-side route type detection and is_spa flag Restore unified routes structure and Manifest_Query class Refactor route indexing and add SPA infrastructure Phase 3 Complete: SPA route registration in manifest Implement SPA Phase 2: Extract router code and test decorators Rename Jqhtml_Component to Component and complete SPA foundation setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
99 lines
3.1 KiB
JSON
Executable File
99 lines
3.1 KiB
JSON
Executable File
{
|
|
"definitions": {
|
|
"ManifestEntrypoint": {
|
|
"description": "Describes a manifest entrypoint.",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"imports": {
|
|
"description": "Contains the names of entrypoints.",
|
|
"type": "array",
|
|
"items": {
|
|
"description": "The name of file.",
|
|
"type": "string",
|
|
"minLength": 1
|
|
}
|
|
},
|
|
"parents": {
|
|
"description": "Contains the names of parent entrypoints.",
|
|
"type": "array",
|
|
"items": {
|
|
"description": "The entrypoint name.",
|
|
"type": "string",
|
|
"minLength": 1
|
|
}
|
|
}
|
|
},
|
|
"required": ["imports"]
|
|
},
|
|
"ManifestItem": {
|
|
"description": "Describes a manifest asset that links the emitted path to the producing asset.",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"file": {
|
|
"description": "The path absolute URL (this indicates that the path is absolute from the server's root directory) to file.",
|
|
"type": "string"
|
|
},
|
|
"src": {
|
|
"description": "The source path relative to the context.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["file"]
|
|
},
|
|
"ManifestObject": {
|
|
"description": "The manifest object.",
|
|
"type": "object",
|
|
"additionalProperties": true,
|
|
"properties": {
|
|
"assets": {
|
|
"description": "Contains the names of assets.",
|
|
"type": "object",
|
|
"tsType": "Record<string, ManifestItem>"
|
|
},
|
|
"entrypoints": {
|
|
"description": "Contains the names of entrypoints.",
|
|
"type": "object",
|
|
"tsType": "Record<string, ManifestEntrypoint>"
|
|
}
|
|
},
|
|
"required": ["assets", "entrypoints"]
|
|
}
|
|
},
|
|
"title": "ManifestPluginOptions",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"entrypoints": {
|
|
"description": "Enables/disables generation of the entrypoints manifest section.",
|
|
"type": "boolean"
|
|
},
|
|
"filename": {
|
|
"description": "Specifies the filename of the output file on disk. By default the plugin will emit `manifest.json` inside the 'output.path' directory.",
|
|
"type": "string",
|
|
"absolutePath": false,
|
|
"minLength": 1
|
|
},
|
|
"filter": {
|
|
"description": "Allows filtering the files which make up the manifest.",
|
|
"instanceof": "Function",
|
|
"tsType": "(item: ManifestItem) => boolean"
|
|
},
|
|
"generate": {
|
|
"description": "A function that receives the manifest object, modifies it, and returns the modified manifest.",
|
|
"instanceof": "Function",
|
|
"tsType": "(manifest: ManifestObject) => ManifestObject"
|
|
},
|
|
"prefix": {
|
|
"description": "Specifies a path prefix for all keys in the manifest.",
|
|
"type": "string"
|
|
},
|
|
"serialize": {
|
|
"description": "A function that receives the manifest object and returns the manifest string.",
|
|
"instanceof": "Function",
|
|
"tsType": "(manifest: ManifestObject) => string"
|
|
}
|
|
}
|
|
}
|