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>
This commit is contained in:
root
2025-10-30 06:21:56 +00:00
parent e678b987c2
commit f6ac36c632
5683 changed files with 5854736 additions and 22329 deletions

0
node_modules/@babel/plugin-transform-runtime/lib/babel-7/index.cjs generated vendored Executable file → Normal file
View File

0
node_modules/@babel/plugin-transform-runtime/lib/babel-7/index.cjs.map generated vendored Executable file → Normal file
View File

0
node_modules/@babel/plugin-transform-runtime/lib/babel-7/polyfills.cjs generated vendored Executable file → Normal file
View File

0
node_modules/@babel/plugin-transform-runtime/lib/babel-7/polyfills.cjs.map generated vendored Executable file → Normal file
View File

0
node_modules/@babel/plugin-transform-runtime/lib/get-runtime-path/browser.js generated vendored Executable file → Normal file
View File

0
node_modules/@babel/plugin-transform-runtime/lib/get-runtime-path/browser.js.map generated vendored Executable file → Normal file
View File

0
node_modules/@babel/plugin-transform-runtime/lib/get-runtime-path/index.js generated vendored Executable file → Normal file
View File

0
node_modules/@babel/plugin-transform-runtime/lib/get-runtime-path/index.js.map generated vendored Executable file → Normal file
View File

View File

@@ -1,14 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.hasMinVersion = hasMinVersion;
var _semver = require("semver");
function hasMinVersion(minVersion, runtimeVersion) {
if (!runtimeVersion) return true;
if (_semver.valid(runtimeVersion)) runtimeVersion = `^${runtimeVersion}`;
return !_semver.intersects(`<${minVersion}`, runtimeVersion) && !_semver.intersects(`>=8.0.0`, runtimeVersion);
}
//# sourceMappingURL=helpers.js.map

View File

@@ -1 +0,0 @@
{"version":3,"names":["_semver","require","hasMinVersion","minVersion","runtimeVersion","semver","valid","intersects"],"sources":["../src/helpers.ts"],"sourcesContent":["import semver from \"semver\";\n\nexport function hasMinVersion(\n minVersion: string,\n runtimeVersion: string | void,\n) {\n // If the range is unavailable, we're running the script during Babel's\n // build process, and we want to assume that all versions are satisfied so\n // that the built output will include all definitions.\n if (!runtimeVersion) return true;\n\n // semver.intersects() has some surprising behavior with comparing ranges\n // with pre-release versions. We add '^' to ensure that we are always\n // comparing ranges with ranges, which sidesteps this logic.\n // For example:\n //\n // semver.intersects(`<7.0.1`, \"7.0.0-beta.0\") // false - surprising\n // semver.intersects(`<7.0.1`, \"^7.0.0-beta.0\") // true - expected\n //\n // This is because the first falls back to\n //\n // semver.satisfies(\"7.0.0-beta.0\", `<7.0.1`) // false - surprising\n //\n // and this fails because a prerelease version can only satisfy a range\n // if it is a prerelease within the same major/minor/patch range.\n //\n // Note: If this is found to have issues, please also revisit the logic in\n // babel-core's availableHelper() API.\n if (semver.valid(runtimeVersion)) runtimeVersion = `^${runtimeVersion}`;\n\n return (\n !semver.intersects(`<${minVersion}`, runtimeVersion) &&\n !semver.intersects(`>=8.0.0`, runtimeVersion)\n );\n}\n"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AAEO,SAASC,aAAaA,CAC3BC,UAAkB,EAClBC,cAA6B,EAC7B;EAIA,IAAI,CAACA,cAAc,EAAE,OAAO,IAAI;EAmBhC,IAAIC,OAAM,CAACC,KAAK,CAACF,cAAc,CAAC,EAAEA,cAAc,GAAG,IAAIA,cAAc,EAAE;EAEvE,OACE,CAACC,OAAM,CAACE,UAAU,CAAC,IAAIJ,UAAU,EAAE,EAAEC,cAAc,CAAC,IACpD,CAACC,OAAM,CAACE,UAAU,CAAC,SAAS,EAAEH,cAAc,CAAC;AAEjD","ignoreList":[]}

11
node_modules/@babel/plugin-transform-runtime/lib/index.js generated vendored Executable file → Normal file
View File

@@ -7,9 +7,9 @@ exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _helperModuleImports = require("@babel/helper-module-imports");
var _core = require("@babel/core");
var _helpers = require("./helpers.js");
var _index = require("./get-runtime-path/index.js");
var _index2 = require("./babel-7/index.cjs");
var _semver = require("semver");
var _default = exports.default = (0, _helperPluginUtils.declare)((api, options, dirname) => {
api.assertVersion(7);
const {
@@ -27,8 +27,13 @@ var _default = exports.default = (0, _helperPluginUtils.declare)((api, options,
throw new Error("The 'moduleName' option must be null or a string.");
}
{
const DUAL_MODE_RUNTIME = "7.13.0";
var supportsCJSDefault = (0, _helpers.hasMinVersion)(DUAL_MODE_RUNTIME, runtimeVersion);
var supportsCJSDefault;
if (!runtimeVersion) {
supportsCJSDefault = true;
} else {
const normalizedRuntimeVersion = _semver.valid(runtimeVersion) ? `^${runtimeVersion}` : runtimeVersion;
supportsCJSDefault = !_semver.intersects(`<7.13.0`, normalizedRuntimeVersion) && !_semver.intersects(`>=8.0.0`, normalizedRuntimeVersion);
}
}
if (hasOwnProperty.call(options, "useBuiltIns")) {
if (options.useBuiltIns) {

2
node_modules/@babel/plugin-transform-runtime/lib/index.js.map generated vendored Executable file → Normal file

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-runtime",
"version": "7.28.3",
"version": "7.28.5",
"description": "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals",
"repository": {
"type": "git",
@@ -31,12 +31,12 @@
"@babel/core": "^7.0.0-0"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/helper-plugin-test-runner": "^7.27.1",
"@babel/helpers": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@babel/runtime": "^7.28.3",
"@babel/runtime-corejs3": "^7.28.3",
"@babel/helpers": "^7.28.4",
"@babel/preset-env": "^7.28.5",
"@babel/runtime": "^7.28.4",
"@babel/runtime-corejs3": "^7.28.4",
"babel-plugin-polyfill-corejs3": "^0.13.0",
"make-dir": "^2.1.0"
},

0
node_modules/@babel/plugin-transform-runtime/src/get-runtime-path/browser.ts generated vendored Executable file → Normal file
View File

0
node_modules/@babel/plugin-transform-runtime/src/get-runtime-path/index.ts generated vendored Executable file → Normal file
View File