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>
57 lines
940 B
JavaScript
57 lines
940 B
JavaScript
'use strict';
|
|
|
|
const uniteSets = require('../utils/uniteSets.js');
|
|
|
|
// https://www.w3.org/TR/css-page-3/#syntax-page-selector
|
|
const pageMarginAtKeywords = new Set([
|
|
'top-left-corner',
|
|
'top-left',
|
|
'top-center',
|
|
'top-right',
|
|
'top-right-corner',
|
|
'bottom-left-corner',
|
|
'bottom-left',
|
|
'bottom-center',
|
|
'bottom-right',
|
|
'bottom-right-corner',
|
|
'left-top',
|
|
'left-middle',
|
|
'left-bottom',
|
|
'right-top',
|
|
'right-middle',
|
|
'right-bottom',
|
|
]);
|
|
|
|
// https://developer.mozilla.org/en/docs/Web/CSS/At-rule
|
|
const atKeywords = uniteSets(pageMarginAtKeywords, [
|
|
'annotation',
|
|
'apply',
|
|
'character-variant',
|
|
'charset',
|
|
'container',
|
|
'counter-style',
|
|
'custom-media',
|
|
'custom-selector',
|
|
'document',
|
|
'font-face',
|
|
'font-feature-values',
|
|
'import',
|
|
'keyframes',
|
|
'layer',
|
|
'media',
|
|
'namespace',
|
|
'nest',
|
|
'ornaments',
|
|
'page',
|
|
'property',
|
|
'styleset',
|
|
'stylistic',
|
|
'supports',
|
|
'swash',
|
|
'viewport',
|
|
]);
|
|
|
|
module.exports = {
|
|
atKeywords,
|
|
};
|