Fix code quality violations and enhance ROUTE-EXISTS-01 rule

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>
This commit is contained in:
root
2025-11-19 17:48:15 +00:00
parent 77b4d10af8
commit 9ebcc359ae
4360 changed files with 37751 additions and 18578 deletions

View File

@@ -395,6 +395,9 @@
"type": "object",
"additionalProperties": false,
"properties": {
"exportType": {
"$ref": "#/definitions/CssParserExportType"
},
"import": {
"$ref": "#/definitions/CssParserImport"
},
@@ -473,6 +476,9 @@
"esModule": {
"$ref": "#/definitions/CssGeneratorEsModule"
},
"exportType": {
"$ref": "#/definitions/CssParserExportType"
},
"exportsConvention": {
"$ref": "#/definitions/CssGeneratorExportsConvention"
},
@@ -489,6 +495,9 @@
"type": "object",
"additionalProperties": false,
"properties": {
"exportType": {
"$ref": "#/definitions/CssParserExportType"
},
"import": {
"$ref": "#/definitions/CssParserImport"
},
@@ -508,6 +517,9 @@
"esModule": {
"$ref": "#/definitions/CssGeneratorEsModule"
},
"exportType": {
"$ref": "#/definitions/CssParserExportType"
},
"exportsConvention": {
"$ref": "#/definitions/CssGeneratorExportsConvention"
},
@@ -524,6 +536,9 @@
"type": "object",
"additionalProperties": false,
"properties": {
"exportType": {
"$ref": "#/definitions/CssParserExportType"
},
"import": {
"$ref": "#/definitions/CssParserImport"
},
@@ -535,6 +550,10 @@
}
}
},
"CssParserExportType": {
"description": "Configure how CSS content is exported as default.",
"enum": ["link", "text", "css-style-sheet"]
},
"CssParserImport": {
"description": "Enable/disable `@import` at-rules handling.",
"type": "boolean"
@@ -548,6 +567,9 @@
"type": "object",
"additionalProperties": false,
"properties": {
"exportType": {
"$ref": "#/definitions/CssParserExportType"
},
"import": {
"$ref": "#/definitions/CssParserImport"
},
@@ -629,6 +651,63 @@
"description": "Module namespace to use when interpolating filename template string for the sources array in a generated SourceMap. Defaults to `output.library` if not set. It's useful for avoiding runtime collisions in sourcemaps from multiple webpack projects built as libraries.",
"type": "string"
},
"Dotenv": {
"description": "Enable and configure the Dotenv plugin to load environment variables from .env files.",
"anyOf": [
{
"description": "Enable Dotenv plugin with default options.",
"type": "boolean"
},
{
"$ref": "#/definitions/DotenvPluginOptions"
}
]
},
"DotenvPluginOptions": {
"description": "Options for Dotenv plugin.",
"type": "object",
"additionalProperties": false,
"properties": {
"dir": {
"description": "The directory from which .env files are loaded. Can be an absolute path, false will disable the .env file loading.",
"anyOf": [
{
"enum": [false]
},
{
"type": "string",
"absolutePath": true
}
]
},
"prefix": {
"description": "Only expose environment variables that start with these prefixes. Defaults to 'WEBPACK_'.",
"anyOf": [
{
"type": "array",
"items": {
"description": "A prefix that environment variables must start with to be exposed.",
"type": "string",
"minLength": 1
}
},
{
"type": "string",
"minLength": 1
}
]
},
"template": {
"description": "Template patterns for .env file names. Use [mode] as placeholder for the webpack mode. Defaults to ['.env', '.env.local', '.env.[mode]', '.env.[mode].local'].",
"type": "array",
"items": {
"description": "A template pattern for .env file names.",
"type": "string",
"minLength": 1
}
}
}
},
"EmptyGeneratorOptions": {
"description": "No generator options are supported for this module type.",
"type": "object",
@@ -943,6 +1022,10 @@
"description": "The environment supports 'globalThis'.",
"type": "boolean"
},
"importMetaDirnameAndFilename": {
"description": "The environment supports `import.meta.dirname` and `import.meta.filename`.",
"type": "boolean"
},
"module": {
"description": "The environment supports EcmaScript Module syntax to import EcmaScript modules (import ... from '...').",
"type": "boolean"
@@ -1294,7 +1377,10 @@
"import",
"module-import",
"script",
"node-commonjs"
"node-commonjs",
"asset",
"css-import",
"css-url"
]
},
"Falsy": {
@@ -1375,8 +1461,7 @@
{
"description": "A path to an immutable directory (usually a package manager cache directory).",
"type": "string",
"absolutePath": true,
"minLength": 1
"absolutePath": true
}
]
}
@@ -1395,8 +1480,7 @@
{
"description": "A path to a managed directory (usually a node_modules directory).",
"type": "string",
"absolutePath": true,
"minLength": 1
"absolutePath": true
}
]
}
@@ -1569,20 +1653,7 @@
},
"HashDigest": {
"description": "Digest types used for the hash.",
"enum": [
"base64",
"base64url",
"hex",
"binary",
"utf8",
"utf-8",
"utf16le",
"utf-16le",
"latin1",
"ascii",
"ucs2",
"ucs-2"
]
"type": "string"
},
"HashDigestLength": {
"description": "Number of chars which are used for the hash.",
@@ -1920,6 +1991,11 @@
"description": "Override the module to strict or non-strict. This may affect the behavior of the module (some behaviors differ between strict and non-strict), so please configure this option carefully.",
"enum": ["strict", "non-strict"]
},
"parse": {
"description": "Function to parser source code.",
"instanceof": "Function",
"tsType": "(import('../lib/javascript/JavascriptParser').ParseFunction)"
},
"reexportExportsPresence": {
"description": "Specifies the behavior of invalid export names in \"export ... from ...\". This might be useful to disable during the migration from \"export ... from ...\" to \"export type ... from ...\" when reexporting types in TypeScript.",
"enum": ["error", "warn", "auto", false]
@@ -2038,6 +2114,10 @@
"description": "The depth of json dependency flagged as `exportInfo`.",
"type": "number"
},
"namedExports": {
"description": "Allow named exports for json of object type.",
"type": "boolean"
},
"parse": {
"description": "Function to parser content and return JSON.",
"instanceof": "Function",
@@ -4405,8 +4485,7 @@
},
{
"type": "string",
"absolutePath": true,
"minLength": 1
"absolutePath": true
}
]
}
@@ -5011,8 +5090,7 @@
{
"description": "A path to an immutable directory (usually a package manager cache directory).",
"type": "string",
"absolutePath": true,
"minLength": 1
"absolutePath": true
}
]
}
@@ -5031,8 +5109,7 @@
{
"description": "A path to a managed directory (usually a node_modules directory).",
"type": "string",
"absolutePath": true,
"minLength": 1
"absolutePath": true
}
]
}
@@ -5096,8 +5173,7 @@
{
"description": "A path to an unmanaged directory.",
"type": "string",
"absolutePath": true,
"minLength": 1
"absolutePath": true
}
]
}
@@ -5813,6 +5889,9 @@
"devtool": {
"$ref": "#/definitions/DevTool"
},
"dotenv": {
"$ref": "#/definitions/Dotenv"
},
"entry": {
"$ref": "#/definitions/EntryNormalized"
},
@@ -5963,6 +6042,9 @@
"devtool": {
"$ref": "#/definitions/DevTool"
},
"dotenv": {
"$ref": "#/definitions/Dotenv"
},
"entry": {
"$ref": "#/definitions/Entry"
},