Files
formipay/node_modules/stylelint/lib/rules/mediaFeatureColonSpaceChecker.js
dwindown e8fbfb14c1 fix: prevent asset conflicts between React and Grid.js versions
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>
2026-04-18 17:02:14 +07:00

52 lines
1.3 KiB
JavaScript

'use strict';
const atRuleParamIndex = require('../utils/atRuleParamIndex');
const report = require('../utils/report');
const styleSearch = require('style-search');
/**
* @param {{
* root: import('postcss').Root,
* locationChecker: (args: { source: string, index: number, err: (message: string) => void }) => void,
* fix: ((node: import('postcss').AtRule, index: number) => boolean) | null,
* result: import('stylelint').PostcssResult,
* checkedRuleName: string,
* }} opts
*/
module.exports = function mediaFeatureColonSpaceChecker(opts) {
opts.root.walkAtRules(/^media$/i, (atRule) => {
const params = atRule.raws.params ? atRule.raws.params.raw : atRule.params;
styleSearch({ source: params, target: ':' }, (match) => {
checkColon(params, match.startIndex, atRule);
});
});
/**
* @param {string} source
* @param {number} index
* @param {import('postcss').AtRule} node
*/
function checkColon(source, index, node) {
opts.locationChecker({
source,
index,
err: (message) => {
const colonIndex = index + atRuleParamIndex(node);
if (opts.fix && opts.fix(node, colonIndex)) {
return;
}
report({
message,
node,
index: colonIndex,
result: opts.result,
ruleName: opts.checkedRuleName,
});
},
});
}
};