Ryo Matsukawa df0126f93f
refactor(date): updated errorMessage story and modified to import props (#3112)
* refactor(date): updated errorMessage story and modified to import props

* docs(date): add errorMessageFunction examples

* chore: add changeset

* fix: remove unnecessary props

* fix: typo
2024-06-14 21:00:11 -03:00

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,
};