amountOfMonths
説明
The number of months to display.
タイプ
number
デフォルト
1
Yamada UIにスターをあげる
スターCalendar
は、日付を表示または選択するカレンダーのコンポーネントです。
説明
The number of months to display.
タイプ
number
デフォルト
1
説明
The visual color appearance of the component.
タイプ
"blackAlpha" | "whiteAlpha" | "amber" | "blue" | "info" | "link" | "primary" | "cyan" | "emerald" | "flashy" | "fuchsia" | "gray" | "green" | "success" | "indigo" | "lime" | "neutral" | "orange" | "warning" | "pink" | "purple" | "red" | "danger" | "rose" | "sky" | "teal" | "violet" | "secondary" | "yellow"
デフォルト
"primary"
説明
Props for calendar control button element.
タイプ
Omit<CalendarControlProps, "operation">
説明
The format used for conversion. Check the docs to see the format of possible modifiers you can pass.
タイプ
string
デフォルト
'MMMM YYYY'
ドキュメント
https://day.js.org/docs/en/display/format#list-of-localized-formats説明
Props for calendar day button element.
タイプ
{ component?: FC<DayProps> | undefined } & ButtonProps
説明
The initial month of the calendar.
タイプ
Date
デフォルト
'new Date()'
説明
The initial type of the calendar.
タイプ
"month" | "date" | "year"
説明
The initial value of the calendar.
タイプ
NonNullable<Y>
説明
If true
, outside days will be disabled.
タイプ
boolean
デフォルト
false
説明
If true
, enables date multiple selection.
タイプ
boolean
デフォルト
false
説明
If true
, enables date range selection.
タイプ
boolean
デフォルト
false
説明
Callback function to determine whether the day should be disabled.
タイプ
(date: Date) => boolean
説明
Define the first day of the week.
タイプ
"monday" | "sunday"
デフォルト
'monday'
説明
Props for calendar header element.
タイプ
HTMLUIProps
説明
Define holidays.
タイプ
Date[]
説明
Props for calendar label button element.
タイプ
{
icon?:
| IconProps
| ReactElement<any, string | JSXElementConstructor<any>>
| undefined
} & CalendarLabelProps
説明
The locale of the calendar. Check the docs to see the locale of possible modifiers you can pass.
タイプ
string
デフォルト
'en'
ドキュメント
https://day.js.org/docs/en/i18n/instance-locale説明
The maximum possible date.
タイプ
Date
説明
The maximum selectable value.
タイプ
number
説明
The minimum possible date.
タイプ
Date
説明
The minimum selectable value.
タイプ
number
説明
The month of the calendar.
タイプ
Date
説明
The format used for conversion. Check the docs to see the format of possible modifiers you can pass.
タイプ
string
デフォルト
'MM'
ドキュメント
https://day.js.org/docs/en/display/format#list-of-localized-formats説明
Props for calendar month grid element.
タイプ
HTMLUIProps
説明
Props for calendar month button element.
タイプ
{
component?: FC<{ index: number; month: string; year: number }> | undefined
} & ButtonProps
説明
Props for calendar next control button element.
タイプ
Omit<CalendarControlProps, "operation">
説明
Ref to a next function.
タイプ
type ONLY_FOR_FORMAT =
| ((instance: (() => void | undefined) | null) => void)
| MutableRefObject<(() => void | undefined) | null>
説明
The callback invoked when value state changes.
タイプ
(value: Y) => void
説明
The callback invoked when month state changes.
タイプ
(value: Date) => void
説明
The callback invoked when type state changes.
タイプ
(
type: "month" | "date" | "year",
year?: number | undefined,
month?: number | undefined,
) => void
説明
The number of months to paginate.
タイプ
number
デフォルト
1
説明
Props for calendar previous control button element.
タイプ
Omit<CalendarControlProps, "operation">
説明
Ref to a previous function.
タイプ
type ONLY_FOR_FORMAT =
| ((instance: (() => void | undefined) | null) => void)
| MutableRefObject<(() => void | undefined) | null>
説明
The size of the Calendar.
タイプ
"sm" | "md" | "lg" | "full"
デフォルト
"md"
説明
Props for calendar month table element.
タイプ
MonthTableProps
説明
If true
, highlight today.
タイプ
boolean
デフォルト
false
説明
The type of the calendar.
タイプ
"month" | "date" | "year"
説明
Ref to a type function.
タイプ
type ONLY_FOR_FORMAT =
| ((instance: (() => void | undefined) | null) => void)
| MutableRefObject<(() => void | undefined) | null>
説明
The value of the calendar.
タイプ
NonNullable<Y>
説明
The variant of the Calendar.
タイプ
"solid" | "subtle" | "unstyled"
デフォルト
"solid"
説明
The format used for conversion. Check the docs to see the format of possible modifiers you can pass.
タイプ
string
デフォルト
'dd'
ドキュメント
https://day.js.org/docs/en/display/format#list-of-localized-formats説明
Props for calendar weekday element.
タイプ
{ component?: FC<WeekdayProps> | undefined } & UIProps &
Omit<HTMLProps<"div">, keyof UIProps>
説明
Define weekend days.
タイプ
number[]
デフォルト
'[0, 6]'
説明
If true
, display the calendar control buttons.
タイプ
boolean
デフォルト
true
説明
If true
, display the calendar header.
タイプ
boolean
デフォルト
true
説明
If true
, display the calendar label button.
タイプ
boolean
デフォルト
true
説明
If true
, display the calendar weekdays.
タイプ
boolean
デフォルト
true
説明
The format used for conversion. Check the docs to see the format of possible modifiers you can pass.
タイプ
string
デフォルト
'YYYY'
ドキュメント
https://day.js.org/docs/en/display/format#list-of-localized-formats説明
Props for calendar year grid element.
タイプ
HTMLUIProps
説明
Props for calendar year button element.
タイプ
{
component?: FC<{ index: number; year: number }> | undefined
} & ButtonProps
GitHubでこのページを編集する