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>
46 lines
979 B
JavaScript
46 lines
979 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Contains helpers for working with vendor prefixes.
|
|
*
|
|
* Copied from https://github.com/postcss/postcss/commit/777c55b5d2a10605313a4972888f4f32005f5ac2
|
|
*
|
|
* @namespace vendor
|
|
*/
|
|
module.exports = {
|
|
/**
|
|
* Returns the vendor prefix extracted from an input string.
|
|
*
|
|
* @param {string} prop String with or without vendor prefix.
|
|
*
|
|
* @return {string} vendor prefix or empty string
|
|
*
|
|
* @example
|
|
* vendor.prefix('-moz-tab-size') //=> '-moz-'
|
|
* vendor.prefix('tab-size') //=> ''
|
|
*/
|
|
prefix(prop) {
|
|
const match = prop.match(/^(-\w+-)/);
|
|
|
|
if (match) {
|
|
return match[0] || '';
|
|
}
|
|
|
|
return '';
|
|
},
|
|
|
|
/**
|
|
* Returns the input string stripped of its vendor prefix.
|
|
*
|
|
* @param {string} prop String with or without vendor prefix.
|
|
*
|
|
* @return {string} String name without vendor prefixes.
|
|
*
|
|
* @example
|
|
* vendor.unprefixed('-moz-tab-size') //=> 'tab-size'
|
|
*/
|
|
unprefixed(prop) {
|
|
return prop.replace(/^-\w+-/, '');
|
|
},
|
|
};
|