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>
22 lines
1.9 KiB
TypeScript
22 lines
1.9 KiB
TypeScript
export { usePopoverStore } from "@ariakit/react-core/popover/popover-store";
|
|
export { usePopoverContext } from "@ariakit/react-core/popover/popover-context";
|
|
export { Popover } from "@ariakit/react-core/popover/popover";
|
|
export { PopoverProvider } from "@ariakit/react-core/popover/popover-provider";
|
|
export { PopoverAnchor } from "@ariakit/react-core/popover/popover-anchor";
|
|
export { PopoverArrow } from "@ariakit/react-core/popover/popover-arrow";
|
|
export { PopoverDescription } from "@ariakit/react-core/popover/popover-description";
|
|
export { PopoverDisclosureArrow } from "@ariakit/react-core/popover/popover-disclosure-arrow";
|
|
export { PopoverDisclosure } from "@ariakit/react-core/popover/popover-disclosure";
|
|
export { PopoverDismiss } from "@ariakit/react-core/popover/popover-dismiss";
|
|
export { PopoverHeading } from "@ariakit/react-core/popover/popover-heading";
|
|
export type { PopoverStoreProps, PopoverStore, PopoverStoreState, } from "@ariakit/react-core/popover/popover-store";
|
|
export type { PopoverProps, PopoverOptions, } from "@ariakit/react-core/popover/popover";
|
|
export type { PopoverProviderProps } from "@ariakit/react-core/popover/popover-provider";
|
|
export type { PopoverAnchorProps, PopoverAnchorOptions, } from "@ariakit/react-core/popover/popover-anchor";
|
|
export type { PopoverArrowProps, PopoverArrowOptions, } from "@ariakit/react-core/popover/popover-arrow";
|
|
export type { PopoverDescriptionProps, PopoverDescriptionOptions, } from "@ariakit/react-core/popover/popover-description";
|
|
export type { PopoverDisclosureArrowProps, PopoverDisclosureArrowOptions, } from "@ariakit/react-core/popover/popover-disclosure-arrow";
|
|
export type { PopoverDisclosureProps, PopoverDisclosureOptions, } from "@ariakit/react-core/popover/popover-disclosure";
|
|
export type { PopoverDismissProps, PopoverDismissOptions, } from "@ariakit/react-core/popover/popover-dismiss";
|
|
export type { PopoverHeadingProps, PopoverHeadingOptions, } from "@ariakit/react-core/popover/popover-heading";
|