mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* refactor(date): updated errorMessage story and modified to import props * docs(date): add errorMessageFunction examples * chore: add changeset * fix: remove unnecessary props * fix: typo
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import usage from "./usage";
|
|
import required from "./required";
|
|
import disabled from "./disabled";
|
|
import readonly from "./read-only";
|
|
import withoutLabel from "./without-label";
|
|
import withDescription from "./with-description";
|
|
import errorMessage from "./error-message";
|
|
import errorMessageFunction from "./error-message-function";
|
|
import labelPlacement from "./label-placement";
|
|
import startContent from "./start-content";
|
|
import endContent from "./end-content";
|
|
import controlled from "./controlled";
|
|
import timezones from "./timezones";
|
|
import granularity from "./granularity";
|
|
import minTimeValue from "./min-time-value";
|
|
import maxTimeValue from "./max-time-value";
|
|
import placeholderValue from "./placeholder-value";
|
|
import hideTimeZone from "./hide-timezone";
|
|
import hourCycle from "./hour-cycle";
|
|
|
|
export const timeInputContent = {
|
|
usage,
|
|
required,
|
|
disabled,
|
|
readonly,
|
|
withoutLabel,
|
|
withDescription,
|
|
errorMessage,
|
|
errorMessageFunction,
|
|
labelPlacement,
|
|
startContent,
|
|
endContent,
|
|
controlled,
|
|
timezones,
|
|
granularity,
|
|
minTimeValue,
|
|
maxTimeValue,
|
|
placeholderValue,
|
|
hideTimeZone,
|
|
hourCycle,
|
|
};
|