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>
152 lines
5.5 KiB
JSON
Executable File
152 lines
5.5 KiB
JSON
Executable File
{
|
||
"name": "rspade-framework",
|
||
"displayName": "RSpade Framework Support",
|
||
"description": "VS Code extension for RSpade framework with code folding, formatting, and namespace management",
|
||
"version": "0.1.212",
|
||
"publisher": "rspade",
|
||
"engines": {
|
||
"vscode": "^1.74.0"
|
||
},
|
||
"categories": [
|
||
"Programming Languages",
|
||
"Formatters",
|
||
"Other"
|
||
],
|
||
"activationEvents": [
|
||
"onStartupFinished"
|
||
],
|
||
"main": "./out/extension.js",
|
||
"contributes": {
|
||
"configuration": {
|
||
"title": "RSpade Framework",
|
||
"properties": {
|
||
"rspade.enableCodeFolding": {
|
||
"type": "boolean",
|
||
"default": true,
|
||
"description": "Enable automatic folding of LLMDIRECTIVE blocks"
|
||
},
|
||
"rspade.enableReadOnlyRegions": {
|
||
"type": "boolean",
|
||
"default": true,
|
||
"description": "Show visual indicators for RSX:USE sections"
|
||
},
|
||
"rspade.enableFormatOnMove": {
|
||
"type": "boolean",
|
||
"default": true,
|
||
"description": "Automatically update namespaces when moving PHP files"
|
||
},
|
||
"rspade.pythonPath": {
|
||
"type": "string",
|
||
"default": "python",
|
||
"description": "Path to Python executable (python or python3)"
|
||
},
|
||
"rspade.projectType": {
|
||
"type": "string",
|
||
"default": "",
|
||
"description": "Set to 'rspade' to enable RSpade framework features"
|
||
},
|
||
"rspade.enableBladeAutoSpacing": {
|
||
"type": "boolean",
|
||
"default": true,
|
||
"description": "Automatically add spaces inside Blade tags when typing"
|
||
}
|
||
}
|
||
},
|
||
"commands": [
|
||
{
|
||
"command": "rspade.formatPhpFile",
|
||
"title": "RSpade: Format PHP File"
|
||
},
|
||
{
|
||
"command": "rspade.updateNamespace",
|
||
"title": "RSpade: Update Namespace for Current File"
|
||
},
|
||
{
|
||
"command": "rspade.copyRelativePathFromRoot",
|
||
"title": "RSpade: Copy Relative Path from Project Root"
|
||
},
|
||
{
|
||
"command": "rspade.refactorStaticMethod",
|
||
"title": "$(symbol-method) Rsx: Global Rename Method"
|
||
},
|
||
{
|
||
"command": "rspade.refactorClass",
|
||
"title": "$(symbol-class) Rsx: Global Rename Class"
|
||
},
|
||
{
|
||
"command": "rspade.sortClassMethods",
|
||
"title": "$(list-ordered) Rsx: Sort Class Methods"
|
||
}
|
||
],
|
||
"menus": {
|
||
"explorer/context": [
|
||
{
|
||
"command": "rspade.sortClassMethods",
|
||
"when": "resourceExtname == .php",
|
||
"group": "2_workspace"
|
||
}
|
||
]
|
||
},
|
||
"keybindings": [
|
||
{
|
||
"command": "rspade.copyRelativePathFromRoot",
|
||
"key": "ctrl+shift+alt+c",
|
||
"mac": "cmd+shift+alt+c",
|
||
"when": "editorFocus"
|
||
}
|
||
],
|
||
"languages": [
|
||
{
|
||
"id": "php",
|
||
"extensions": [
|
||
".php"
|
||
]
|
||
}
|
||
],
|
||
"grammars": [],
|
||
"semanticTokenTypes": [
|
||
{
|
||
"id": "conventionMethod",
|
||
"superType": "method",
|
||
"description": "Convention method automatically called by RSX framework"
|
||
},
|
||
{
|
||
"id": "jqhtmlTagAttribute",
|
||
"superType": "parameter",
|
||
"description": "The tag attribute on jqhtml components"
|
||
}
|
||
],
|
||
"semanticTokenScopes": [
|
||
{
|
||
"scopes": {
|
||
"conventionMethod": ["entity.name.function.convention.rspade"],
|
||
"jqhtmlTagAttribute": ["entity.other.attribute-name.jqhtml.tag"]
|
||
}
|
||
}
|
||
],
|
||
"configurationDefaults": {
|
||
"editor.semanticTokenColorCustomizations": {
|
||
"rules": {
|
||
"conventionMethod": "#FFA500",
|
||
"jqhtmlTagAttribute": "#FFA500"
|
||
}
|
||
}
|
||
}
|
||
},
|
||
"scripts": {
|
||
"vscode:prepublish": "npm run compile",
|
||
"compile": "tsc -p ./ && echo '\\n⚠️ IMPORTANT: To complete the VS Code extension update, run: ./build.sh\\n\\nThe build.sh script will:\\n- Install all prerequisite npm dependencies\\n- Compile TypeScript to JavaScript\\n- Package the extension\\n- Install it in VS Code for immediate use\\n\\n⛔ FOR DEVELOPERS/LLM AGENTS: Do NOT run \"npm install\" or \"npm run compile\" directly.\\nAlways use ./build.sh which handles everything automatically.\\n'",
|
||
"watch": "tsc -watch -p ./",
|
||
"pretest": "npm run compile && npm run lint",
|
||
"lint": "eslint src --ext ts",
|
||
"test": "node ./out/test/runTest.js"
|
||
},
|
||
"devDependencies": {
|
||
"@types/vscode": "^1.74.0",
|
||
"@types/node": "16.x",
|
||
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
||
"@typescript-eslint/parser": "^5.45.0",
|
||
"eslint": "^8.28.0",
|
||
"typescript": "^4.9.3"
|
||
}
|
||
} |