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:
3
node_modules/webpack/lib/node/CommonJsChunkLoadingPlugin.js
generated
vendored
Executable file → Normal file
3
node_modules/webpack/lib/node/CommonJsChunkLoadingPlugin.js
generated
vendored
Executable file → Normal file
@@ -10,6 +10,7 @@ const StartupChunkDependenciesPlugin = require("../runtime/StartupChunkDependenc
|
||||
|
||||
/** @typedef {import("../Chunk")} Chunk */
|
||||
/** @typedef {import("../Compiler")} Compiler */
|
||||
/** @typedef {import("../Module").RuntimeRequirements} RuntimeRequirements */
|
||||
|
||||
/**
|
||||
* @typedef {object} CommonJsChunkLoadingPluginOptions
|
||||
@@ -59,7 +60,7 @@ class CommonJsChunkLoadingPlugin {
|
||||
const onceForChunkSet = new WeakSet();
|
||||
/**
|
||||
* @param {Chunk} chunk chunk
|
||||
* @param {Set<string>} set runtime requirements
|
||||
* @param {RuntimeRequirements} set runtime requirements
|
||||
*/
|
||||
const handler = (chunk, set) => {
|
||||
if (onceForChunkSet.has(chunk)) return;
|
||||
|
||||
0
node_modules/webpack/lib/node/NodeEnvironmentPlugin.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/node/NodeEnvironmentPlugin.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/node/NodeSourcePlugin.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/node/NodeSourcePlugin.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/node/NodeTargetPlugin.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/node/NodeTargetPlugin.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/node/NodeTemplatePlugin.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/node/NodeTemplatePlugin.js
generated
vendored
Executable file → Normal file
8
node_modules/webpack/lib/node/NodeWatchFileSystem.js
generated
vendored
Executable file → Normal file
8
node_modules/webpack/lib/node/NodeWatchFileSystem.js
generated
vendored
Executable file → Normal file
@@ -8,10 +8,10 @@
|
||||
const util = require("util");
|
||||
const Watchpack = require("watchpack");
|
||||
|
||||
/** @typedef {import("../../declarations/WebpackOptions").WatchOptions} WatchOptions */
|
||||
/** @typedef {import("../FileSystemInfo").FileSystemInfoEntry} FileSystemInfoEntry */
|
||||
/** @typedef {import("../util/fs").InputFileSystem} InputFileSystem */
|
||||
/** @typedef {import("../util/fs").WatchMethod} WatchMethod */
|
||||
/** @typedef {import("../util/fs").Changes} Changes */
|
||||
/** @typedef {import("../util/fs").Removals} Removals */
|
||||
|
||||
class NodeWatchFileSystem {
|
||||
/**
|
||||
@@ -78,8 +78,8 @@ class NodeWatchFileSystem {
|
||||
this.watcher.once(
|
||||
"aggregated",
|
||||
/**
|
||||
* @param {Set<string>} changes changes
|
||||
* @param {Set<string>} removals removals
|
||||
* @param {Changes} changes changes
|
||||
* @param {Removals} removals removals
|
||||
*/
|
||||
(changes, removals) => {
|
||||
// pause emitting events (avoids clearing aggregated changes and removals on timeout)
|
||||
|
||||
4
node_modules/webpack/lib/node/ReadFileChunkLoadingRuntimeModule.js
generated
vendored
Executable file → Normal file
4
node_modules/webpack/lib/node/ReadFileChunkLoadingRuntimeModule.js
generated
vendored
Executable file → Normal file
@@ -91,7 +91,7 @@ class ReadFileChunkLoadingRuntimeModule extends RuntimeModule {
|
||||
);
|
||||
const rootOutputDir = getUndoPath(
|
||||
outputName,
|
||||
/** @type {string} */ (compilation.outputOptions.path),
|
||||
compilation.outputOptions.path,
|
||||
false
|
||||
);
|
||||
|
||||
@@ -264,7 +264,7 @@ class ReadFileChunkLoadingRuntimeModule extends RuntimeModule {
|
||||
Template.indent([
|
||||
"if(err) {",
|
||||
Template.indent([
|
||||
'if(err.code === "ENOENT") return resolve();',
|
||||
'if(["MODULE_NOT_FOUND", "ENOENT"].includes(err.code)) return resolve();',
|
||||
"return reject(err);"
|
||||
]),
|
||||
"}",
|
||||
|
||||
0
node_modules/webpack/lib/node/ReadFileCompileAsyncWasmPlugin.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/node/ReadFileCompileAsyncWasmPlugin.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/node/ReadFileCompileWasmPlugin.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/node/ReadFileCompileWasmPlugin.js
generated
vendored
Executable file → Normal file
7
node_modules/webpack/lib/node/RequireChunkLoadingRuntimeModule.js
generated
vendored
Executable file → Normal file
7
node_modules/webpack/lib/node/RequireChunkLoadingRuntimeModule.js
generated
vendored
Executable file → Normal file
@@ -91,7 +91,7 @@ class RequireChunkLoadingRuntimeModule extends RuntimeModule {
|
||||
);
|
||||
const rootOutputDir = getUndoPath(
|
||||
outputName,
|
||||
/** @type {string} */ (compilation.outputOptions.path),
|
||||
compilation.outputOptions.path,
|
||||
true
|
||||
);
|
||||
|
||||
@@ -223,7 +223,10 @@ class RequireChunkLoadingRuntimeModule extends RuntimeModule {
|
||||
RuntimeGlobals.getUpdateManifestFilename
|
||||
}());`
|
||||
]),
|
||||
"})['catch'](function(err) { if(err.code !== 'MODULE_NOT_FOUND') throw err; });"
|
||||
`}).catch(${runtimeTemplate.basicFunction("err", [
|
||||
"if(['MODULE_NOT_FOUND', 'ENOENT'].includes(err.code)) return;",
|
||||
"throw err;"
|
||||
])});`
|
||||
]),
|
||||
"}"
|
||||
])
|
||||
|
||||
4
node_modules/webpack/lib/node/nodeConsole.js
generated
vendored
Executable file → Normal file
4
node_modules/webpack/lib/node/nodeConsole.js
generated
vendored
Executable file → Normal file
@@ -8,7 +8,7 @@
|
||||
const util = require("util");
|
||||
const truncateArgs = require("../logging/truncateArgs");
|
||||
|
||||
/** @typedef {import("../../declarations/WebpackOptions").InfrastructureLogging} InfrastructureLogging */
|
||||
/** @typedef {import("../config/defaults").InfrastructureLoggingNormalizedWithDefaults} InfrastructureLoggingNormalizedWithDefaults */
|
||||
/** @typedef {import("../logging/createConsoleLogger").LoggerConsole} LoggerConsole */
|
||||
|
||||
/* eslint-disable no-console */
|
||||
@@ -17,7 +17,7 @@ const truncateArgs = require("../logging/truncateArgs");
|
||||
* @param {object} options options
|
||||
* @param {boolean=} options.colors colors
|
||||
* @param {boolean=} options.appendOnly append only
|
||||
* @param {NonNullable<InfrastructureLogging["stream"]>} options.stream stream
|
||||
* @param {InfrastructureLoggingNormalizedWithDefaults["stream"]} options.stream stream
|
||||
* @returns {LoggerConsole} logger function
|
||||
*/
|
||||
module.exports = ({ colors, appendOnly, stream }) => {
|
||||
|
||||
Reference in New Issue
Block a user