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:
0
node_modules/webpack/lib/sharing/ConsumeSharedFallbackDependency.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/sharing/ConsumeSharedFallbackDependency.js
generated
vendored
Executable file → Normal file
8
node_modules/webpack/lib/sharing/ConsumeSharedModule.js
generated
vendored
Executable file → Normal file
8
node_modules/webpack/lib/sharing/ConsumeSharedModule.js
generated
vendored
Executable file → Normal file
@@ -17,21 +17,19 @@ const makeSerializable = require("../util/makeSerializable");
|
||||
const { rangeToString, stringifyHoley } = require("../util/semver");
|
||||
const ConsumeSharedFallbackDependency = require("./ConsumeSharedFallbackDependency");
|
||||
|
||||
/** @typedef {import("../../declarations/WebpackOptions").WebpackOptionsNormalized} WebpackOptions */
|
||||
/** @typedef {import("../ChunkGraph")} ChunkGraph */
|
||||
/** @typedef {import("../ChunkGroup")} ChunkGroup */
|
||||
/** @typedef {import("../config/defaults").WebpackOptionsNormalizedWithDefaults} WebpackOptions */
|
||||
/** @typedef {import("../Compilation")} Compilation */
|
||||
/** @typedef {import("../Dependency").UpdateHashContext} UpdateHashContext */
|
||||
/** @typedef {import("../Module").BuildCallback} BuildCallback */
|
||||
/** @typedef {import("../Module").CodeGenerationContext} CodeGenerationContext */
|
||||
/** @typedef {import("../Module").CodeGenerationResult} CodeGenerationResult */
|
||||
/** @typedef {import("../Module").LibIdentOptions} LibIdentOptions */
|
||||
/** @typedef {import("../Module").LibIdent} LibIdent */
|
||||
/** @typedef {import("../Module").NeedBuildCallback} NeedBuildCallback */
|
||||
/** @typedef {import("../Module").NeedBuildContext} NeedBuildContext */
|
||||
/** @typedef {import("../Module").SourceTypes} SourceTypes */
|
||||
/** @typedef {import("../RequestShortener")} RequestShortener */
|
||||
/** @typedef {import("../ResolverFactory").ResolverWithOptions} ResolverWithOptions */
|
||||
/** @typedef {import("../WebpackError")} WebpackError */
|
||||
/** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
|
||||
/** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
|
||||
/** @typedef {import("../util/Hash")} Hash */
|
||||
@@ -104,7 +102,7 @@ class ConsumeSharedModule extends Module {
|
||||
|
||||
/**
|
||||
* @param {LibIdentOptions} options options
|
||||
* @returns {string | null} an identifier for library inclusion
|
||||
* @returns {LibIdent | null} an identifier for library inclusion
|
||||
*/
|
||||
libIdent(options) {
|
||||
const { shareKey, shareScope, import: request } = this.options;
|
||||
|
||||
6
node_modules/webpack/lib/sharing/ConsumeSharedPlugin.js
generated
vendored
Executable file → Normal file
6
node_modules/webpack/lib/sharing/ConsumeSharedPlugin.js
generated
vendored
Executable file → Normal file
@@ -23,8 +23,8 @@ const {
|
||||
isRequiredVersion
|
||||
} = require("./utils");
|
||||
|
||||
/** @typedef {import("enhanced-resolve").ResolveContext} ResolveContext */
|
||||
/** @typedef {import("../../declarations/plugins/sharing/ConsumeSharedPlugin").ConsumeSharedPluginOptions} ConsumeSharedPluginOptions */
|
||||
/** @typedef {import("../../declarations/plugins/sharing/ConsumeSharedPlugin").ConsumesConfig} ConsumesConfig */
|
||||
/** @typedef {import("../Compiler")} Compiler */
|
||||
/** @typedef {import("../ResolverFactory").ResolveOptionsWithDependencyType} ResolveOptionsWithDependencyType */
|
||||
/** @typedef {import("../util/semver").SemVerRange} SemVerRange */
|
||||
@@ -168,12 +168,10 @@ class ConsumeSharedPlugin {
|
||||
resolve();
|
||||
return;
|
||||
}
|
||||
/** @typedef {ResolveContext} */
|
||||
const resolveContext = {
|
||||
/** @type {LazySet<string>} */
|
||||
fileDependencies: new LazySet(),
|
||||
/** @type {LazySet<string>} */
|
||||
contextDependencies: new LazySet(),
|
||||
/** @type {LazySet<string>} */
|
||||
missingDependencies: new LazySet()
|
||||
};
|
||||
resolver.resolve(
|
||||
|
||||
15
node_modules/webpack/lib/sharing/ConsumeSharedRuntimeModule.js
generated
vendored
Executable file → Normal file
15
node_modules/webpack/lib/sharing/ConsumeSharedRuntimeModule.js
generated
vendored
Executable file → Normal file
@@ -23,7 +23,7 @@ const {
|
||||
/** @typedef {import("../Compilation")} Compilation */
|
||||
/** @typedef {import("../Module")} Module */
|
||||
/** @typedef {import("../Module").ReadOnlyRuntimeRequirements} ReadOnlyRuntimeRequirements */
|
||||
/** @typedef {import("./ConsumeSharedModule")} ConsumeSharedModule */
|
||||
/** @typedef {import("../CodeGenerationResults")} CodeGenerationResults */
|
||||
|
||||
class ConsumeSharedRuntimeModule extends RuntimeModule {
|
||||
/**
|
||||
@@ -40,17 +40,20 @@ class ConsumeSharedRuntimeModule extends RuntimeModule {
|
||||
generate() {
|
||||
const compilation = /** @type {Compilation} */ (this.compilation);
|
||||
const chunkGraph = /** @type {ChunkGraph} */ (this.chunkGraph);
|
||||
const { runtimeTemplate, codeGenerationResults } = compilation;
|
||||
/** @type {Record<ChunkId, (string | number)[]>} */
|
||||
const codeGenerationResults =
|
||||
/** @type {CodeGenerationResults} */
|
||||
(compilation.codeGenerationResults);
|
||||
const { runtimeTemplate } = compilation;
|
||||
/** @type {Record<ChunkId, ModuleId[]>} */
|
||||
const chunkToModuleMapping = {};
|
||||
/** @type {Map<string | number, Source>} */
|
||||
/** @type {Map<ModuleId, Source>} */
|
||||
const moduleIdToSourceMapping = new Map();
|
||||
/** @type {(string | number)[]} */
|
||||
/** @type {ModuleId[]} */
|
||||
const initialConsumes = [];
|
||||
/**
|
||||
* @param {Iterable<Module>} modules modules
|
||||
* @param {Chunk} chunk the chunk
|
||||
* @param {(string | number)[]} list list of ids
|
||||
* @param {ModuleId[]} list list of ids
|
||||
*/
|
||||
const addModules = (modules, chunk, list) => {
|
||||
for (const m of modules) {
|
||||
|
||||
0
node_modules/webpack/lib/sharing/ProvideForSharedDependency.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/sharing/ProvideForSharedDependency.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/sharing/ProvideSharedDependency.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/sharing/ProvideSharedDependency.js
generated
vendored
Executable file → Normal file
10
node_modules/webpack/lib/sharing/ProvideSharedModule.js
generated
vendored
Executable file → Normal file
10
node_modules/webpack/lib/sharing/ProvideSharedModule.js
generated
vendored
Executable file → Normal file
@@ -13,24 +13,20 @@ const RuntimeGlobals = require("../RuntimeGlobals");
|
||||
const makeSerializable = require("../util/makeSerializable");
|
||||
const ProvideForSharedDependency = require("./ProvideForSharedDependency");
|
||||
|
||||
/** @typedef {import("../../declarations/WebpackOptions").WebpackOptionsNormalized} WebpackOptions */
|
||||
/** @typedef {import("../Chunk")} Chunk */
|
||||
/** @typedef {import("../ChunkGraph")} ChunkGraph */
|
||||
/** @typedef {import("../ChunkGroup")} ChunkGroup */
|
||||
/** @typedef {import("../config/defaults").WebpackOptionsNormalizedWithDefaults} WebpackOptions */
|
||||
/** @typedef {import("../Compilation")} Compilation */
|
||||
/** @typedef {import("../Module").BuildCallback} BuildCallback */
|
||||
/** @typedef {import("../Module").CodeGenerationContext} CodeGenerationContext */
|
||||
/** @typedef {import("../Module").CodeGenerationResult} CodeGenerationResult */
|
||||
/** @typedef {import("../Module").LibIdentOptions} LibIdentOptions */
|
||||
/** @typedef {import("../Module").LibIdent} LibIdent */
|
||||
/** @typedef {import("../Module").NeedBuildCallback} NeedBuildCallback */
|
||||
/** @typedef {import("../Module").NeedBuildContext} NeedBuildContext */
|
||||
/** @typedef {import("../Module").SourceTypes} SourceTypes */
|
||||
/** @typedef {import("../RequestShortener")} RequestShortener */
|
||||
/** @typedef {import("../ResolverFactory").ResolverWithOptions} ResolverWithOptions */
|
||||
/** @typedef {import("../WebpackError")} WebpackError */
|
||||
/** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
|
||||
/** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
|
||||
/** @typedef {import("../util/Hash")} Hash */
|
||||
/** @typedef {import("../util/fs").InputFileSystem} InputFileSystem */
|
||||
|
||||
class ProvideSharedModule extends Module {
|
||||
@@ -69,7 +65,7 @@ class ProvideSharedModule extends Module {
|
||||
|
||||
/**
|
||||
* @param {LibIdentOptions} options options
|
||||
* @returns {string | null} an identifier for library inclusion
|
||||
* @returns {LibIdent | null} an identifier for library inclusion
|
||||
*/
|
||||
libIdent(options) {
|
||||
return `${this.layer ? `(${this.layer})/` : ""}webpack/sharing/provide/${
|
||||
|
||||
0
node_modules/webpack/lib/sharing/ProvideSharedModuleFactory.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/sharing/ProvideSharedModuleFactory.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/sharing/ProvideSharedPlugin.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/lib/sharing/ProvideSharedPlugin.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/lib/sharing/SharePlugin.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/lib/sharing/SharePlugin.js
generated
vendored
Executable file → Normal file
@@ -10,9 +10,7 @@ const ConsumeSharedPlugin = require("./ConsumeSharedPlugin");
|
||||
const ProvideSharedPlugin = require("./ProvideSharedPlugin");
|
||||
const { isRequiredVersion } = require("./utils");
|
||||
|
||||
/** @typedef {import("../../declarations/plugins/sharing/ConsumeSharedPlugin").ConsumeSharedPluginOptions} ConsumeSharedPluginOptions */
|
||||
/** @typedef {import("../../declarations/plugins/sharing/ConsumeSharedPlugin").ConsumesConfig} ConsumesConfig */
|
||||
/** @typedef {import("../../declarations/plugins/sharing/ProvideSharedPlugin").ProvideSharedPluginOptions} ProvideSharedPluginOptions */
|
||||
/** @typedef {import("../../declarations/plugins/sharing/ProvideSharedPlugin").ProvidesConfig} ProvidesConfig */
|
||||
/** @typedef {import("../../declarations/plugins/sharing/SharePlugin").SharePluginOptions} SharePluginOptions */
|
||||
/** @typedef {import("../../declarations/plugins/sharing/SharePlugin").SharedConfig} SharedConfig */
|
||||
|
||||
5
node_modules/webpack/lib/sharing/ShareRuntimeModule.js
generated
vendored
Executable file → Normal file
5
node_modules/webpack/lib/sharing/ShareRuntimeModule.js
generated
vendored
Executable file → Normal file
@@ -16,6 +16,7 @@ const {
|
||||
/** @typedef {import("../Chunk")} Chunk */
|
||||
/** @typedef {import("../ChunkGraph")} ChunkGraph */
|
||||
/** @typedef {import("../Compilation")} Compilation */
|
||||
/** @typedef {import("../CodeGenerationResults")} CodeGenerationResults */
|
||||
|
||||
class ShareRuntimeModule extends RuntimeModule {
|
||||
constructor() {
|
||||
@@ -29,9 +30,11 @@ class ShareRuntimeModule extends RuntimeModule {
|
||||
const compilation = /** @type {Compilation} */ (this.compilation);
|
||||
const {
|
||||
runtimeTemplate,
|
||||
codeGenerationResults,
|
||||
outputOptions: { uniqueName, ignoreBrowserWarnings }
|
||||
} = compilation;
|
||||
const codeGenerationResults =
|
||||
/** @type {CodeGenerationResults} */
|
||||
(compilation.codeGenerationResults);
|
||||
const chunkGraph = /** @type {ChunkGraph} */ (this.chunkGraph);
|
||||
/** @type {Map<string, Map<number, Set<string>>>} */
|
||||
const initCodePerScope = new Map();
|
||||
|
||||
20
node_modules/webpack/lib/sharing/resolveMatchedConfigs.js
generated
vendored
Executable file → Normal file
20
node_modules/webpack/lib/sharing/resolveMatchedConfigs.js
generated
vendored
Executable file → Normal file
@@ -8,6 +8,7 @@
|
||||
const ModuleNotFoundError = require("../ModuleNotFoundError");
|
||||
const LazySet = require("../util/LazySet");
|
||||
|
||||
/** @typedef {import("enhanced-resolve").ResolveContext} ResolveContext */
|
||||
/** @typedef {import("../Compilation")} Compilation */
|
||||
/** @typedef {import("../ResolverFactory").ResolveOptionsWithDependencyType} ResolveOptionsWithDependencyType */
|
||||
|
||||
@@ -35,12 +36,10 @@ module.exports.resolveMatchedConfigs = (compilation, configs) => {
|
||||
const unresolved = new Map();
|
||||
/** @type {Map<string, T>} */
|
||||
const prefixed = new Map();
|
||||
/** @type {ResolveContext} */
|
||||
const resolveContext = {
|
||||
/** @type {LazySet<string>} */
|
||||
fileDependencies: new LazySet(),
|
||||
/** @type {LazySet<string>} */
|
||||
contextDependencies: new LazySet(),
|
||||
/** @type {LazySet<string>} */
|
||||
missingDependencies: new LazySet()
|
||||
};
|
||||
const resolver = compilation.resolverFactory.get("normal", RESOLVE_OPTIONS);
|
||||
@@ -84,9 +83,18 @@ module.exports.resolveMatchedConfigs = (compilation, configs) => {
|
||||
}
|
||||
})
|
||||
).then(() => {
|
||||
compilation.contextDependencies.addAll(resolveContext.contextDependencies);
|
||||
compilation.fileDependencies.addAll(resolveContext.fileDependencies);
|
||||
compilation.missingDependencies.addAll(resolveContext.missingDependencies);
|
||||
compilation.contextDependencies.addAll(
|
||||
/** @type {LazySet<string>} */
|
||||
(resolveContext.contextDependencies)
|
||||
);
|
||||
compilation.fileDependencies.addAll(
|
||||
/** @type {LazySet<string>} */
|
||||
(resolveContext.fileDependencies)
|
||||
);
|
||||
compilation.missingDependencies.addAll(
|
||||
/** @type {LazySet<string>} */
|
||||
(resolveContext.missingDependencies)
|
||||
);
|
||||
return { resolved, unresolved, prefixed };
|
||||
});
|
||||
};
|
||||
|
||||
6
node_modules/webpack/lib/sharing/utils.js
generated
vendored
Executable file → Normal file
6
node_modules/webpack/lib/sharing/utils.js
generated
vendored
Executable file → Normal file
@@ -151,7 +151,6 @@ const extractCommithashByDomain = {
|
||||
|
||||
/**
|
||||
* extract commit hash from parsed url
|
||||
* @inner
|
||||
* @param {URL} urlParsed parsed url
|
||||
* @returns {string} commithash
|
||||
*/
|
||||
@@ -181,7 +180,6 @@ function getCommithash(urlParsed) {
|
||||
|
||||
/**
|
||||
* make url right for URL parse
|
||||
* @inner
|
||||
* @param {string} gitUrl git url
|
||||
* @returns {string} fixed url
|
||||
*/
|
||||
@@ -193,7 +191,6 @@ function correctUrl(gitUrl) {
|
||||
|
||||
/**
|
||||
* make url protocol right for URL parse
|
||||
* @inner
|
||||
* @param {string} gitUrl git url
|
||||
* @returns {string} fixed url
|
||||
*/
|
||||
@@ -213,7 +210,6 @@ function correctProtocol(gitUrl) {
|
||||
|
||||
/**
|
||||
* extract git dep version from hash
|
||||
* @inner
|
||||
* @param {string} hash hash
|
||||
* @returns {string} git dep version
|
||||
*/
|
||||
@@ -225,7 +221,6 @@ function getVersionFromHash(hash) {
|
||||
|
||||
/**
|
||||
* if string can be decoded
|
||||
* @inner
|
||||
* @param {string} str str to be checked
|
||||
* @returns {boolean} if can be decoded
|
||||
*/
|
||||
@@ -241,7 +236,6 @@ function canBeDecoded(str) {
|
||||
|
||||
/**
|
||||
* get right dep version from git url
|
||||
* @inner
|
||||
* @param {string} gitUrl git url
|
||||
* @returns {string} dep version
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user