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

30
node_modules/@rollup/plugin-node-resolve/dist/cjs/index.js generated vendored Executable file → Normal file
View File

@@ -12,7 +12,7 @@ var url = require('url');
var resolve = require('resolve');
var pluginutils = require('@rollup/pluginutils');
var version = "16.0.1";
var version = "16.0.3";
var peerDependencies = {
rollup: "^2.78.0||^3.0.0||^4.0.0"
};
@@ -787,9 +787,18 @@ async function resolveWithExportMap({
importer,
moduleDirs: moduleDirectories,
conditions: exportConditions,
// Resolve targets of "imports" mappings using the same algorithm
// we use for normal specifiers: try export maps first and then
// fall back to classic resolution. This is important for cases
// like "#foo/*": "@scope/pkg/*" where the target package relies
// on "exports" to expose subpaths. Using the classic resolver
// alone would fail to find those subpaths.
resolveId(id /* , parent*/) {
return resolveIdClassic({
importSpecifier: id,
return resolveImportSpecifiers({
importer,
importSpecifierList: [id],
exportConditions,
// pass-through of the rest of the context
packageInfoCache,
extensions,
mainFields,
@@ -797,11 +806,22 @@ async function resolveWithExportMap({
useBrowserOverrides,
baseDir,
moduleDirectories,
modulePaths
modulePaths,
rootDir,
ignoreSideEffectsForRoot,
allowExportsFolderMapping
});
}
});
if (resolveResult == null) {
// When the target of an "imports" mapping cannot be resolved,
// surface a proper resolve error instead of throwing from
// fileURLToPath(null).
throw new ResolveError(
`Could not resolve import "${importSpecifier}" in ${importer} using imports.`
);
}
const location = url.fileURLToPath(resolveResult);
return {
location: preserveSymlinks ? location : await resolveSymlink(location),
@@ -1167,7 +1187,7 @@ function nodeResolve(opts = {}) {
const importSpecifierList = [importee];
if (importer === undefined && !importee[0].match(/^\.?\.?\//)) {
if (importer === undefined && importee[0] && !importee[0].match(/^\.?\.?\//)) {
// For module graph roots (i.e. when importer is undefined), we
// need to handle 'path fragments` like `foo/bar` that are commonly
// found in rollup config files. If importee doesn't look like a

30
node_modules/@rollup/plugin-node-resolve/dist/es/index.js generated vendored Executable file → Normal file
View File

@@ -8,7 +8,7 @@ import { pathToFileURL, fileURLToPath } from 'url';
import resolve$1 from 'resolve';
import { createFilter } from '@rollup/pluginutils';
var version = "16.0.1";
var version = "16.0.3";
var peerDependencies = {
rollup: "^2.78.0||^3.0.0||^4.0.0"
};
@@ -783,9 +783,18 @@ async function resolveWithExportMap({
importer,
moduleDirs: moduleDirectories,
conditions: exportConditions,
// Resolve targets of "imports" mappings using the same algorithm
// we use for normal specifiers: try export maps first and then
// fall back to classic resolution. This is important for cases
// like "#foo/*": "@scope/pkg/*" where the target package relies
// on "exports" to expose subpaths. Using the classic resolver
// alone would fail to find those subpaths.
resolveId(id /* , parent*/) {
return resolveIdClassic({
importSpecifier: id,
return resolveImportSpecifiers({
importer,
importSpecifierList: [id],
exportConditions,
// pass-through of the rest of the context
packageInfoCache,
extensions,
mainFields,
@@ -793,11 +802,22 @@ async function resolveWithExportMap({
useBrowserOverrides,
baseDir,
moduleDirectories,
modulePaths
modulePaths,
rootDir,
ignoreSideEffectsForRoot,
allowExportsFolderMapping
});
}
});
if (resolveResult == null) {
// When the target of an "imports" mapping cannot be resolved,
// surface a proper resolve error instead of throwing from
// fileURLToPath(null).
throw new ResolveError(
`Could not resolve import "${importSpecifier}" in ${importer} using imports.`
);
}
const location = fileURLToPath(resolveResult);
return {
location: preserveSymlinks ? location : await resolveSymlink(location),
@@ -1163,7 +1183,7 @@ function nodeResolve(opts = {}) {
const importSpecifierList = [importee];
if (importer === undefined && !importee[0].match(/^\.?\.?\//)) {
if (importer === undefined && importee[0] && !importee[0].match(/^\.?\.?\//)) {
// For module graph roots (i.e. when importer is undefined), we
// need to handle 'path fragments` like `foo/bar` that are commonly
// found in rollup config files. If importee doesn't look like a

0
node_modules/@rollup/plugin-node-resolve/dist/es/package.json generated vendored Executable file → Normal file
View File

View File

@@ -1,6 +1,6 @@
{
"name": "@rollup/plugin-node-resolve",
"version": "16.0.1",
"version": "16.0.3",
"publishConfig": {
"access": "public"
},

0
node_modules/@rollup/plugin-node-resolve/types/index.d.ts generated vendored Executable file → Normal file
View File