Files
formipay/node_modules/@ariakit/react/cjs/select.d.cts
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

28 lines
2.3 KiB
TypeScript

export { useSelectStore } from "@ariakit/react-core/select/select-store";
export { useSelectContext } from "@ariakit/react-core/select/select-context";
export { Select } from "@ariakit/react-core/select/select";
export { SelectProvider } from "@ariakit/react-core/select/select-provider";
export { SelectArrow } from "@ariakit/react-core/select/select-arrow";
export { SelectGroupLabel } from "@ariakit/react-core/select/select-group-label";
export { SelectGroup } from "@ariakit/react-core/select/select-group";
export { SelectItemCheck } from "@ariakit/react-core/select/select-item-check";
export { SelectItem } from "@ariakit/react-core/select/select-item";
export { SelectLabel } from "@ariakit/react-core/select/select-label";
export { SelectList } from "@ariakit/react-core/select/select-list";
export { SelectPopover } from "@ariakit/react-core/select/select-popover";
export { SelectRow } from "@ariakit/react-core/select/select-row";
export { SelectSeparator } from "@ariakit/react-core/select/select-separator";
export type { SelectStoreProps, SelectStoreState, SelectStore, } from "@ariakit/react-core/select/select-store";
export type { SelectOptions, SelectProps, } from "@ariakit/react-core/select/select";
export type { SelectProviderProps } from "@ariakit/react-core/select/select-provider";
export type { SelectArrowOptions, SelectArrowProps, } from "@ariakit/react-core/select/select-arrow";
export type { SelectGroupLabelOptions, SelectGroupLabelProps, } from "@ariakit/react-core/select/select-group-label";
export type { SelectGroupOptions, SelectGroupProps, } from "@ariakit/react-core/select/select-group";
export type { SelectItemCheckOptions, SelectItemCheckProps, } from "@ariakit/react-core/select/select-item-check";
export type { SelectItemOptions, SelectItemProps, } from "@ariakit/react-core/select/select-item";
export type { SelectLabelOptions, SelectLabelProps, } from "@ariakit/react-core/select/select-label";
export type { SelectListOptions, SelectListProps, } from "@ariakit/react-core/select/select-list";
export type { SelectPopoverOptions, SelectPopoverProps, } from "@ariakit/react-core/select/select-popover";
export type { SelectRowOptions, SelectRowProps, } from "@ariakit/react-core/select/select-row";
export type { SelectSeparatorOptions, SelectSeparatorProps, } from "@ariakit/react-core/select/select-separator";