mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
60 lines
1.7 KiB
TypeScript
60 lines
1.7 KiB
TypeScript
import usage from "./usage";
|
|
import dynamic from "./dynamic";
|
|
import disabled from "./disabled";
|
|
import disabledItems from "./disabled-items";
|
|
import required from "./required";
|
|
import sizes from "./sizes";
|
|
import colors from "./colors";
|
|
import variants from "./variants";
|
|
import labelPlacements from "./label-placements";
|
|
import startContent from "./start-content";
|
|
import itemStartContent from "./item-start-content";
|
|
import customValue from "./custom-value";
|
|
import customSelectorIcon from "./custom-selector-icon";
|
|
import withoutScrollShadow from "./without-scroll-shadow";
|
|
import description from "./description";
|
|
import errorMessage from "./error-message";
|
|
import events from "./events";
|
|
import controlled from "./controlled";
|
|
import fullyControlled from "./fully-controlled";
|
|
import customItems from "./custom-items";
|
|
import customFiltering from "./custom-filtering";
|
|
import asyncFiltering from "./async-filtering";
|
|
import asyncLoadingItems from "./async-loading-items";
|
|
import sections from "./sections";
|
|
import customSectionsStyle from "./custom-sections-style";
|
|
import customStyles from "./custom-styles";
|
|
import customEmptyContentMessage from "./custom-empty-content-message";
|
|
import readOnly from "./read-only";
|
|
|
|
export const autocompleteContent = {
|
|
usage,
|
|
dynamic,
|
|
disabled,
|
|
disabledItems,
|
|
required,
|
|
sizes,
|
|
colors,
|
|
variants,
|
|
labelPlacements,
|
|
startContent,
|
|
customValue,
|
|
itemStartContent,
|
|
customSelectorIcon,
|
|
withoutScrollShadow,
|
|
description,
|
|
errorMessage,
|
|
events,
|
|
controlled,
|
|
fullyControlled,
|
|
customItems,
|
|
customFiltering,
|
|
asyncFiltering,
|
|
asyncLoadingItems,
|
|
sections,
|
|
customSectionsStyle,
|
|
customStyles,
|
|
customEmptyContentMessage,
|
|
readOnly,
|
|
};
|