Ryo Matsukawa cb1b3135bc
feat(date-picker): add selectorButtonPlacement property (#3248)
* feat(date-picker): add selectorButtonPlacement property

* chore: update changeset

* Update .changeset/neat-donkeys-accept.md

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: Junior Garcia <jrgarciadev@gmail.com>
2024-11-04 11:54:08 -03:00

48 lines
1.4 KiB
TypeScript

import usage from "./usage";
import disabled from "./disabled";
import readOnly from "./readonly";
import required from "./required";
import variants from "./variants";
import labelPlacements from "./label-placements";
import description from "./description";
import errorMessage from "./error-message";
import errorMessageFunction from "./error-message-function";
import withMonthAndYearPickers from "./with-month-and-year-pickers";
import withTimeField from "./with-time-field";
import selectorIcon from "./selector-icon";
import selectorButtonPlacement from "./selector-button-placement";
import controlled from "./controlled";
import timeZones from "./time-zones";
import granularity from "./granularity";
import minAndMaxDate from "./min-and-max-date";
import internationalCalendar from "./international-calendar";
import unavailableDates from "./unavailable-dates";
import visibleMonth from "./visible-month";
import pageBehavior from "./page-behavior";
import preset from "./preset";
export const datePickerContent = {
usage,
disabled,
readOnly,
required,
variants,
labelPlacements,
description,
errorMessage,
errorMessageFunction,
withMonthAndYearPickers,
withTimeField,
selectorIcon,
selectorButtonPlacement,
controlled,
timeZones,
granularity,
minAndMaxDate,
internationalCalendar,
unavailableDates,
visibleMonth,
pageBehavior,
preset,
};