Files
formipay/node_modules/@ariakit/react/esm/combobox.d.ts
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

32 lines
2.9 KiB
TypeScript

export { useComboboxStore } from "@ariakit/react-core/combobox/combobox-store";
export { useComboboxContext } from "@ariakit/react-core/combobox/combobox-context";
export { Combobox } from "@ariakit/react-core/combobox/combobox";
export { ComboboxProvider } from "@ariakit/react-core/combobox/combobox-provider";
export { ComboboxCancel } from "@ariakit/react-core/combobox/combobox-cancel";
export { ComboboxDisclosure } from "@ariakit/react-core/combobox/combobox-disclosure";
export { ComboboxGroupLabel } from "@ariakit/react-core/combobox/combobox-group-label";
export { ComboboxGroup } from "@ariakit/react-core/combobox/combobox-group";
export { ComboboxItemCheck } from "@ariakit/react-core/combobox/combobox-item-check";
export { ComboboxItemValue } from "@ariakit/react-core/combobox/combobox-item-value";
export { ComboboxItem } from "@ariakit/react-core/combobox/combobox-item";
export { ComboboxLabel } from "@ariakit/react-core/combobox/combobox-label";
export { ComboboxList } from "@ariakit/react-core/combobox/combobox-list";
export { ComboboxPopover } from "@ariakit/react-core/combobox/combobox-popover";
export { ComboboxRow } from "@ariakit/react-core/combobox/combobox-row";
export { ComboboxSeparator } from "@ariakit/react-core/combobox/combobox-separator";
export type { ComboboxStore, ComboboxStoreProps, ComboboxStoreState, } from "@ariakit/react-core/combobox/combobox-store";
export type { ComboboxOptions, ComboboxProps, } from "@ariakit/react-core/combobox/combobox";
export type { ComboboxProviderProps } from "@ariakit/react-core/combobox/combobox-provider";
export type { ComboboxCancelOptions, ComboboxCancelProps, } from "@ariakit/react-core/combobox/combobox-cancel";
export type { ComboboxDisclosureOptions, ComboboxDisclosureProps, } from "@ariakit/react-core/combobox/combobox-disclosure";
export type { ComboboxGroupLabelOptions, ComboboxGroupLabelProps, } from "@ariakit/react-core/combobox/combobox-group-label";
export type { ComboboxGroupOptions, ComboboxGroupProps, } from "@ariakit/react-core/combobox/combobox-group";
export type { ComboboxItemCheckOptions, ComboboxItemCheckProps, } from "@ariakit/react-core/combobox/combobox-item-check";
export type { ComboboxItemValueOptions, ComboboxItemValueProps, } from "@ariakit/react-core/combobox/combobox-item-value";
export type { ComboboxItemOptions, ComboboxItemProps, } from "@ariakit/react-core/combobox/combobox-item";
export type { ComboboxLabelOptions, ComboboxLabelProps, } from "@ariakit/react-core/combobox/combobox-label";
export type { ComboboxListOptions, ComboboxListProps, } from "@ariakit/react-core/combobox/combobox-list";
export type { ComboboxPopoverOptions, ComboboxPopoverProps, } from "@ariakit/react-core/combobox/combobox-popover";
export type { ComboboxRowOptions, ComboboxRowProps, } from "@ariakit/react-core/combobox/combobox-row";
export type { ComboboxSeparatorOptions, ComboboxSeparatorProps, } from "@ariakit/react-core/combobox/combobox-separator";