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:
87
node_modules/rollup/dist/bin/rollup
generated
vendored
87
node_modules/rollup/dist/bin/rollup
generated
vendored
@@ -1,8 +1,8 @@
|
||||
#!/usr/bin/env node
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.50.2
|
||||
Mon, 15 Sep 2025 07:13:55 GMT - commit 76a3b8ede4729a71eb522fc29f7d550a4358827b
|
||||
Rollup.js v4.52.5
|
||||
Sat, 18 Oct 2025 06:53:02 GMT - commit 55a8fd5a70820f274921edf394efbbaa620f0962
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
@@ -1444,7 +1444,7 @@ function prettyMilliseconds(milliseconds, options) {
|
||||
if (
|
||||
options.separateMilliseconds
|
||||
|| options.formatSubMilliseconds
|
||||
|| (!options.colonNotation && milliseconds < 1000)
|
||||
|| (!options.colonNotation && milliseconds < 1000 && !options.subSecondsAsDecimals)
|
||||
) {
|
||||
const seconds = Number(parsed.seconds);
|
||||
const milliseconds = Number(parsed.milliseconds);
|
||||
@@ -1584,7 +1584,7 @@ const log10 = numberOrBigInt => {
|
||||
|
||||
const string = numberOrBigInt.toString(10);
|
||||
|
||||
return string.length + Math.log10('0.' + string.slice(0, 15));
|
||||
return string.length + Math.log10(`0.${string.slice(0, 15)}`);
|
||||
};
|
||||
|
||||
const log = numberOrBigInt => {
|
||||
@@ -1605,6 +1605,36 @@ const divide = (numberOrBigInt, divisor) => {
|
||||
return Number(integerPart) + (Number(remainder) / divisor);
|
||||
};
|
||||
|
||||
const applyFixedWidth = (result, fixedWidth) => {
|
||||
if (fixedWidth === undefined) {
|
||||
return result;
|
||||
}
|
||||
|
||||
if (typeof fixedWidth !== 'number' || !Number.isSafeInteger(fixedWidth) || fixedWidth < 0) {
|
||||
throw new TypeError(`Expected fixedWidth to be a non-negative integer, got ${typeof fixedWidth}: ${fixedWidth}`);
|
||||
}
|
||||
|
||||
if (fixedWidth === 0) {
|
||||
return result;
|
||||
}
|
||||
|
||||
return result.length < fixedWidth ? result.padStart(fixedWidth, ' ') : result;
|
||||
};
|
||||
|
||||
const buildLocaleOptions = options => {
|
||||
const {minimumFractionDigits, maximumFractionDigits} = options;
|
||||
|
||||
if (minimumFractionDigits === undefined && maximumFractionDigits === undefined) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
return {
|
||||
...(minimumFractionDigits !== undefined && {minimumFractionDigits}),
|
||||
...(maximumFractionDigits !== undefined && {maximumFractionDigits}),
|
||||
roundingMode: 'trunc',
|
||||
};
|
||||
};
|
||||
|
||||
function prettyBytes(number, options) {
|
||||
if (typeof number !== 'bigint' && !Number.isFinite(number)) {
|
||||
throw new TypeError(`Expected a finite number, got ${typeof number}: ${number}`);
|
||||
@@ -1614,6 +1644,7 @@ function prettyBytes(number, options) {
|
||||
bits: false,
|
||||
binary: false,
|
||||
space: true,
|
||||
nonBreakingSpace: false,
|
||||
...options,
|
||||
};
|
||||
|
||||
@@ -1621,10 +1652,13 @@ function prettyBytes(number, options) {
|
||||
? (options.binary ? BIBIT_UNITS : BIT_UNITS)
|
||||
: (options.binary ? BIBYTE_UNITS : BYTE_UNITS);
|
||||
|
||||
const separator = options.space ? ' ' : '';
|
||||
const separator = options.space ? (options.nonBreakingSpace ? '\u00A0' : ' ') : '';
|
||||
|
||||
if (options.signed && (typeof number === 'number' ? number === 0 : number === 0n)) {
|
||||
return ` 0${separator}${UNITS[0]}`;
|
||||
// Handle signed zero case
|
||||
const isZero = typeof number === 'number' ? number === 0 : number === 0n;
|
||||
if (options.signed && isZero) {
|
||||
const result = ` 0${separator}${UNITS[0]}`;
|
||||
return applyFixedWidth(result, options.fixedWidth);
|
||||
}
|
||||
|
||||
const isNegative = number < 0;
|
||||
@@ -1634,34 +1668,27 @@ function prettyBytes(number, options) {
|
||||
number = -number;
|
||||
}
|
||||
|
||||
let localeOptions;
|
||||
|
||||
if (options.minimumFractionDigits !== undefined) {
|
||||
localeOptions = {minimumFractionDigits: options.minimumFractionDigits};
|
||||
}
|
||||
|
||||
if (options.maximumFractionDigits !== undefined) {
|
||||
localeOptions = {maximumFractionDigits: options.maximumFractionDigits, ...localeOptions};
|
||||
}
|
||||
const localeOptions = buildLocaleOptions(options);
|
||||
let result;
|
||||
|
||||
if (number < 1) {
|
||||
const numberString = toLocaleString(number, options.locale, localeOptions);
|
||||
return prefix + numberString + separator + UNITS[0];
|
||||
result = prefix + numberString + separator + UNITS[0];
|
||||
} else {
|
||||
const exponent = Math.min(Math.floor(options.binary ? log(number) / Math.log(1024) : log10(number) / 3), UNITS.length - 1);
|
||||
number = divide(number, (options.binary ? 1024 : 1000) ** exponent);
|
||||
|
||||
if (!localeOptions) {
|
||||
const minPrecision = Math.max(3, Math.floor(number).toString().length);
|
||||
number = number.toPrecision(minPrecision);
|
||||
}
|
||||
|
||||
const numberString = toLocaleString(Number(number), options.locale, localeOptions);
|
||||
const unit = UNITS[exponent];
|
||||
result = prefix + numberString + separator + unit;
|
||||
}
|
||||
|
||||
const exponent = Math.min(Math.floor(options.binary ? log(number) / Math.log(1024) : log10(number) / 3), UNITS.length - 1);
|
||||
number = divide(number, (options.binary ? 1024 : 1000) ** exponent);
|
||||
|
||||
if (!localeOptions) {
|
||||
const minPrecision = Math.max(3, Number.parseInt(number, 10).toString().length);
|
||||
number = number.toPrecision(minPrecision);
|
||||
}
|
||||
|
||||
const numberString = toLocaleString(Number(number), options.locale, localeOptions);
|
||||
|
||||
const unit = UNITS[exponent];
|
||||
|
||||
return prefix + numberString + separator + unit;
|
||||
return applyFixedWidth(result, options.fixedWidth);
|
||||
}
|
||||
|
||||
function printTimings(timings) {
|
||||
|
||||
Reference in New Issue
Block a user