Files
rspade_system/node_modules/webpack/schemas/plugins/sharing/ConsumeSharedPlugin.json
root f6ac36c632 Enhance refactor commands with controller-aware Route() updates and fix code quality violations
Add semantic token highlighting for 'that' variable and comment file references in VS Code extension
Add Phone_Text_Input and Currency_Input components with formatting utilities
Implement client widgets, form standardization, and soft delete functionality
Add modal scroll lock and update documentation
Implement comprehensive modal system with form integration and validation
Fix modal component instantiation using jQuery plugin API
Implement modal system with responsive sizing, queuing, and validation support
Implement form submission with validation, error handling, and loading states
Implement country/state selectors with dynamic data loading and Bootstrap styling
Revert Rsx::Route() highlighting in Blade/PHP files
Target specific PHP scopes for Rsx::Route() highlighting in Blade
Expand injection selector for Rsx::Route() highlighting
Add custom syntax highlighting for Rsx::Route() and Rsx.Route() calls
Update jqhtml packages to v2.2.165
Add bundle path validation for common mistakes (development mode only)
Create Ajax_Select_Input widget and Rsx_Reference_Data controller
Create Country_Select_Input widget with default country support
Initialize Tom Select on Select_Input widgets
Add Tom Select bundle for enhanced select dropdowns
Implement ISO 3166 geographic data system for country/region selection
Implement widget-based form system with disabled state support

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-30 06:21:56 +00:00

121 lines
4.3 KiB
JSON

{
"definitions": {
"Consumes": {
"description": "Modules that should be consumed from share scope. When provided, property names are used to match requested modules in this compilation.",
"anyOf": [
{
"type": "array",
"items": {
"description": "Modules that should be consumed from share scope.",
"anyOf": [
{
"$ref": "#/definitions/ConsumesItem"
},
{
"$ref": "#/definitions/ConsumesObject"
}
]
}
},
{
"$ref": "#/definitions/ConsumesObject"
}
]
},
"ConsumesConfig": {
"description": "Advanced configuration for modules that should be consumed from share scope.",
"type": "object",
"additionalProperties": false,
"properties": {
"eager": {
"description": "Include the fallback module directly instead behind an async request. This allows to use fallback module in initial load too. All possible shared modules need to be eager too.",
"type": "boolean"
},
"import": {
"description": "Fallback module if no shared module is found in share scope. Defaults to the property name.",
"anyOf": [
{
"description": "No fallback module.",
"enum": [false]
},
{
"$ref": "#/definitions/ConsumesItem"
}
]
},
"packageName": {
"description": "Package name to determine required version from description file. This is only needed when package name can't be automatically determined from request.",
"type": "string",
"minLength": 1
},
"requiredVersion": {
"description": "Version requirement from module in share scope.",
"anyOf": [
{
"description": "No version requirement check.",
"enum": [false]
},
{
"description": "Version as string. Can be prefixed with '^' or '~' for minimum matches. Each part of the version should be separated by a dot '.'.",
"type": "string"
}
]
},
"shareKey": {
"description": "Module is looked up under this key from the share scope.",
"type": "string",
"minLength": 1
},
"shareScope": {
"description": "Share scope name.",
"type": "string",
"minLength": 1
},
"singleton": {
"description": "Allow only a single version of the shared module in share scope (disabled by default).",
"type": "boolean"
},
"strictVersion": {
"description": "Do not accept shared module if version is not valid (defaults to yes, if local fallback module is available and shared module is not a singleton, otherwise no, has no effect if there is no required version specified).",
"type": "boolean"
}
}
},
"ConsumesItem": {
"description": "A module that should be consumed from share scope.",
"type": "string",
"minLength": 1
},
"ConsumesObject": {
"description": "Modules that should be consumed from share scope. Property names are used to match requested modules in this compilation. Relative requests are resolved, module requests are matched unresolved, absolute paths will match resolved requests. A trailing slash will match all requests with this prefix. In this case shareKey must also have a trailing slash.",
"type": "object",
"additionalProperties": {
"description": "Modules that should be consumed from share scope.",
"anyOf": [
{
"$ref": "#/definitions/ConsumesConfig"
},
{
"$ref": "#/definitions/ConsumesItem"
}
]
}
}
},
"title": "ConsumeSharedPluginOptions",
"description": "Options for consuming shared modules.",
"type": "object",
"additionalProperties": false,
"properties": {
"consumes": {
"$ref": "#/definitions/Consumes"
},
"shareScope": {
"description": "Share scope name used for all consumed modules (defaults to 'default').",
"type": "string",
"minLength": 1
}
},
"required": ["consumes"]
}