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>
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
var __rest = (this && this.__rest) || function (s, e) {
|
|
var t = {};
|
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
t[p] = s[p];
|
|
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
t[p[i]] = s[p[i]];
|
|
}
|
|
return t;
|
|
};
|
|
import { rewireSource } from '../util.js';
|
|
const order = [
|
|
'end',
|
|
'description',
|
|
'postType',
|
|
'type',
|
|
'postName',
|
|
'name',
|
|
'postTag',
|
|
'tag',
|
|
'postDelimiter',
|
|
'delimiter',
|
|
'start',
|
|
];
|
|
export default function crlf(ending) {
|
|
function update(line) {
|
|
return Object.assign(Object.assign({}, line), { tokens: Object.assign(Object.assign({}, line.tokens), { lineEnd: ending === 'LF' ? '' : '\r' }) });
|
|
}
|
|
return (_a) => {
|
|
var { source } = _a, fields = __rest(_a, ["source"]);
|
|
return rewireSource(Object.assign(Object.assign({}, fields), { source: source.map(update) }));
|
|
};
|
|
}
|