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>
28 lines
683 B
JavaScript
28 lines
683 B
JavaScript
/**
|
|
* Allows users to opt-out of animations via OS-level preferences.
|
|
*
|
|
* @param {'transition' | 'animation' | string} [prop='transition'] CSS Property name
|
|
* @return {string} Generated CSS code for the reduced style
|
|
*/
|
|
export function reduceMotion(prop = 'transition') {
|
|
let style;
|
|
switch (prop) {
|
|
case 'transition':
|
|
style = 'transition-duration: 0ms;';
|
|
break;
|
|
case 'animation':
|
|
style = 'animation-duration: 1ms;';
|
|
break;
|
|
default:
|
|
style = `
|
|
animation-duration: 1ms;
|
|
transition-duration: 0ms;
|
|
`;
|
|
}
|
|
return `
|
|
@media ( prefers-reduced-motion: reduce ) {
|
|
${style};
|
|
}
|
|
`;
|
|
}
|
|
//# sourceMappingURL=reduce-motion.js.map
|