@ariakit/react
Version:
Toolkit for building accessible web apps with React
41 lines (38 loc) • 1.56 kB
JavaScript
"use client";
// src/select.ts
import { useSelectStore } from "@ariakit/react-core/select/select-store";
import { useSelectContext } from "@ariakit/react-core/select/select-context";
import { Select } from "@ariakit/react-core/select/select";
import { SelectProvider } from "@ariakit/react-core/select/select-provider";
import { SelectArrow } from "@ariakit/react-core/select/select-arrow";
import { SelectDismiss } from "@ariakit/react-core/select/select-dismiss";
import { SelectGroupLabel } from "@ariakit/react-core/select/select-group-label";
import { SelectGroup } from "@ariakit/react-core/select/select-group";
import { SelectHeading } from "@ariakit/react-core/select/select-heading";
import { SelectItemCheck } from "@ariakit/react-core/select/select-item-check";
import { SelectItem } from "@ariakit/react-core/select/select-item";
import { SelectLabel } from "@ariakit/react-core/select/select-label";
import { SelectList } from "@ariakit/react-core/select/select-list";
import { SelectPopover } from "@ariakit/react-core/select/select-popover";
import { SelectRow } from "@ariakit/react-core/select/select-row";
import { SelectSeparator } from "@ariakit/react-core/select/select-separator";
import { SelectValue } from "@ariakit/react-core/select/select-value";
export {
useSelectStore,
useSelectContext,
Select,
SelectProvider,
SelectArrow,
SelectDismiss,
SelectGroupLabel,
SelectGroup,
SelectHeading,
SelectItemCheck,
SelectItem,
SelectLabel,
SelectList,
SelectPopover,
SelectRow,
SelectSeparator,
SelectValue
};