Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
decamelize-keys 
Convert object keys from camelCase to lowercase with a custom separator using
decamelize
This project was forked from camelcase-keys and converted to do the opposite
Install
$ npm install --save decamelize-keys
Usage
const decamelizeKeys = require('decamelize-keys');
decamelizeKeys({fooBar: true}, '-');
//=> {'foo-bar': true}
API
decamelizeKeys(input, [separator], [options])
input
Type: object
Required
Object to decamelize.
separator
Type: string
Default: _
A string to insert between words.
options
Type: object
separator
Type: string
Default: _
Alternative way to specify separator.
exclude
Type: array
Default: []
Exclude keys from being decamelized.
Related
See camelcase-keys for the inverse.
License
MIT © Sindre Sorhus, Dmirty Sobolev