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>
31 lines
1.4 KiB
TypeScript
31 lines
1.4 KiB
TypeScript
/**
|
|
* NOTE: In order to avoid circular dependencies, if you add a function to this module and it needs to print something,
|
|
* you must either a) use `console.log` rather than the logger, or b) put your function elsewhere.
|
|
*/
|
|
/**
|
|
* Checks whether we're in the Node.js or Browser environment
|
|
*
|
|
* @returns Answer to given question
|
|
*/
|
|
export declare function isNodeEnv(): boolean;
|
|
/**
|
|
* Requires a module which is protected against bundler minification.
|
|
*
|
|
* @param request The module path to resolve
|
|
*/
|
|
export declare function dynamicRequire(mod: any, request: string): any;
|
|
/**
|
|
* Helper for dynamically loading module that should work with linked dependencies.
|
|
* The problem is that we _should_ be using `require(require.resolve(moduleName, { paths: [cwd()] }))`
|
|
* However it's _not possible_ to do that with Webpack, as it has to know all the dependencies during
|
|
* build time. `require.resolve` is also not available in any other way, so we cannot create,
|
|
* a fake helper like we do with `dynamicRequire`.
|
|
*
|
|
* We always prefer to use local package, thus the value is not returned early from each `try/catch` block.
|
|
* That is to mimic the behavior of `require.resolve` exactly.
|
|
*
|
|
* @param moduleName module name to require
|
|
* @returns possibly required module
|
|
*/
|
|
export declare function loadModule<T>(moduleName: string): T | undefined;
|
|
//# sourceMappingURL=node.d.ts.map
|