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:
16
node_modules/to-buffer/.eslintrc
generated
vendored
16
node_modules/to-buffer/.eslintrc
generated
vendored
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"root": true,
|
||||
|
||||
"extends": "@ljharb",
|
||||
|
||||
"globals": {
|
||||
"Float64Array": "readonly",
|
||||
"Uint8Array": "readonly",
|
||||
"Uint16Array": "readonly",
|
||||
},
|
||||
|
||||
"rules": {
|
||||
"complexity": "off",
|
||||
"max-lines-per-function": "off",
|
||||
},
|
||||
}
|
||||
0
node_modules/to-buffer/.github/FUNDING.yml
generated
vendored
Executable file → Normal file
0
node_modules/to-buffer/.github/FUNDING.yml
generated
vendored
Executable file → Normal file
9
node_modules/to-buffer/.nycrc
generated
vendored
9
node_modules/to-buffer/.nycrc
generated
vendored
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"all": true,
|
||||
"check-coverage": false,
|
||||
"reporter": ["text-summary", "text", "html", "json"],
|
||||
"exclude": [
|
||||
"coverage",
|
||||
"test"
|
||||
]
|
||||
}
|
||||
9
node_modules/to-buffer/CHANGELOG.md
generated
vendored
Executable file → Normal file
9
node_modules/to-buffer/CHANGELOG.md
generated
vendored
Executable file → Normal file
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [v1.2.2](https://github.com/browserify/to-buffer/compare/v1.2.1...v1.2.2) - 2025-09-24
|
||||
|
||||
### Commits
|
||||
|
||||
- [Fix] handle SlowBuffers in node 0.10 [`ca20eaa`](https://github.com/browserify/to-buffer/commit/ca20eaad8c9cbd6e3e6e99880b2b1c95abe62566)
|
||||
- [Refactor] use `SafeBuffer.isBuffer` instead of `instanceof` [`81283c1`](https://github.com/browserify/to-buffer/commit/81283c14b585c0e921e04f327381e975cc8561bb)
|
||||
- [Dev Deps] update `@ljharb/eslint-config` [`c7bc986`](https://github.com/browserify/to-buffer/commit/c7bc986d378ce4bdf2dac75612b45b0f618f26d6)
|
||||
- [meta] since tests are npmignored, also npmignore test config files [`866639c`](https://github.com/browserify/to-buffer/commit/866639cf294799f8c0397153e5876ae1e6992a57)
|
||||
|
||||
## [v1.2.1](https://github.com/browserify/to-buffer/compare/v1.2.0...v1.2.1) - 2025-06-19
|
||||
|
||||
### Commits
|
||||
|
||||
0
node_modules/to-buffer/LICENSE
generated
vendored
Executable file → Normal file
0
node_modules/to-buffer/LICENSE
generated
vendored
Executable file → Normal file
0
node_modules/to-buffer/README.md
generated
vendored
Executable file → Normal file
0
node_modules/to-buffer/README.md
generated
vendored
Executable file → Normal file
16
node_modules/to-buffer/index.js
generated
vendored
Executable file → Normal file
16
node_modules/to-buffer/index.js
generated
vendored
Executable file → Normal file
@@ -19,11 +19,11 @@ var useArrayBuffer = typeof ArrayBuffer !== 'undefined'
|
||||
var useFromArrayBuffer = useArrayBuffer && (Buffer.prototype instanceof Uint8Array || Buffer.TYPED_ARRAY_SUPPORT);
|
||||
|
||||
module.exports = function toBuffer(data, encoding) {
|
||||
/*
|
||||
* No need to do anything for exact instance
|
||||
* This is only valid when safe-buffer.Buffer === buffer.Buffer, i.e. when Buffer.from/Buffer.alloc existed
|
||||
*/
|
||||
if (data instanceof Buffer) {
|
||||
if (Buffer.isBuffer(data)) {
|
||||
if (data.constructor && !('isBuffer' in data)) {
|
||||
// probably a SlowBuffer
|
||||
return Buffer.from(data);
|
||||
}
|
||||
return data;
|
||||
}
|
||||
|
||||
@@ -97,9 +97,9 @@ module.exports = function toBuffer(data, encoding) {
|
||||
if (
|
||||
isArr || (
|
||||
Buffer.isBuffer(data)
|
||||
&& data.constructor
|
||||
&& typeof data.constructor.isBuffer === 'function'
|
||||
&& data.constructor.isBuffer(data)
|
||||
&& data.constructor
|
||||
&& typeof data.constructor.isBuffer === 'function'
|
||||
&& data.constructor.isBuffer(data)
|
||||
)
|
||||
) {
|
||||
return Buffer.from(data);
|
||||
|
||||
6
node_modules/to-buffer/package.json
generated
vendored
Executable file → Normal file
6
node_modules/to-buffer/package.json
generated
vendored
Executable file → Normal file
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "to-buffer",
|
||||
"version": "1.2.1",
|
||||
"version": "1.2.2",
|
||||
"description": "Pass in a string, array, Buffer, Data View, or Uint8Array, and get a Buffer back.",
|
||||
"main": "index.js",
|
||||
"sideEffects": false,
|
||||
@@ -30,7 +30,7 @@
|
||||
"typed-array-buffer": "^1.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ljharb/eslint-config": "^21.1.1",
|
||||
"@ljharb/eslint-config": "^21.2.0",
|
||||
"auto-changelog": "^2.5.0",
|
||||
"available-typed-arrays": "^1.0.7",
|
||||
"encoding": "^0.1.13",
|
||||
@@ -46,6 +46,8 @@
|
||||
"publishConfig": {
|
||||
"ignore": [
|
||||
".github/workflows",
|
||||
".eslintrc",
|
||||
".nycrc",
|
||||
"test"
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user