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
1.4 KiB
JavaScript
28 lines
1.4 KiB
JavaScript
export { isURL } from './is-url';
|
|
export { isEmail } from './is-email';
|
|
export { getProtocol } from './get-protocol';
|
|
export { isValidProtocol } from './is-valid-protocol';
|
|
export { getAuthority } from './get-authority';
|
|
export { isValidAuthority } from './is-valid-authority';
|
|
export { getPath } from './get-path';
|
|
export { isValidPath } from './is-valid-path';
|
|
export { getQueryString } from './get-query-string';
|
|
export { buildQueryString } from './build-query-string';
|
|
export { isValidQueryString } from './is-valid-query-string';
|
|
export { getPathAndQueryString } from './get-path-and-query-string';
|
|
export { getFragment } from './get-fragment';
|
|
export { isValidFragment } from './is-valid-fragment';
|
|
export { addQueryArgs } from './add-query-args';
|
|
export { getQueryArg } from './get-query-arg';
|
|
export { getQueryArgs } from './get-query-args';
|
|
export { hasQueryArg } from './has-query-arg';
|
|
export { removeQueryArgs } from './remove-query-args';
|
|
export { prependHTTP } from './prepend-http';
|
|
export { safeDecodeURI } from './safe-decode-uri';
|
|
export { safeDecodeURIComponent } from './safe-decode-uri-component';
|
|
export { filterURLForDisplay } from './filter-url-for-display';
|
|
export { cleanForSlug } from './clean-for-slug';
|
|
export { getFilename } from './get-filename';
|
|
export { normalizePath } from './normalize-path';
|
|
export { prependHTTPS } from './prepend-https';
|
|
//# sourceMappingURL=index.js.map
|