84 lines
No EOL
2.1 KiB
JavaScript
84 lines
No EOL
2.1 KiB
JavaScript
import * as React from 'react';
|
|
import { DateCalendar } from "../DateCalendar/index.js";
|
|
import { isDatePickerView } from "../internals/utils/date-utils.js";
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
export const renderDateViewCalendar = ({
|
|
view,
|
|
onViewChange,
|
|
views,
|
|
focusedView,
|
|
onFocusedViewChange,
|
|
value,
|
|
defaultValue,
|
|
referenceDate,
|
|
onChange,
|
|
className,
|
|
classes,
|
|
disableFuture,
|
|
disablePast,
|
|
minDate,
|
|
maxDate,
|
|
shouldDisableDate,
|
|
shouldDisableMonth,
|
|
shouldDisableYear,
|
|
reduceAnimations,
|
|
onMonthChange,
|
|
monthsPerRow,
|
|
onYearChange,
|
|
yearsOrder,
|
|
yearsPerRow,
|
|
slots,
|
|
slotProps,
|
|
loading,
|
|
renderLoading,
|
|
disableHighlightToday,
|
|
readOnly,
|
|
disabled,
|
|
showDaysOutsideCurrentMonth,
|
|
dayOfWeekFormatter,
|
|
sx,
|
|
autoFocus,
|
|
fixedWeekNumber,
|
|
displayWeekNumber,
|
|
timezone
|
|
}) => /*#__PURE__*/_jsx(DateCalendar, {
|
|
view: view,
|
|
onViewChange: onViewChange,
|
|
views: views.filter(isDatePickerView),
|
|
focusedView: focusedView && isDatePickerView(focusedView) ? focusedView : null,
|
|
onFocusedViewChange: onFocusedViewChange,
|
|
value: value,
|
|
defaultValue: defaultValue,
|
|
referenceDate: referenceDate,
|
|
onChange: onChange,
|
|
className: className,
|
|
classes: classes,
|
|
disableFuture: disableFuture,
|
|
disablePast: disablePast,
|
|
minDate: minDate,
|
|
maxDate: maxDate,
|
|
shouldDisableDate: shouldDisableDate,
|
|
shouldDisableMonth: shouldDisableMonth,
|
|
shouldDisableYear: shouldDisableYear,
|
|
reduceAnimations: reduceAnimations,
|
|
onMonthChange: onMonthChange,
|
|
monthsPerRow: monthsPerRow,
|
|
onYearChange: onYearChange,
|
|
yearsOrder: yearsOrder,
|
|
yearsPerRow: yearsPerRow,
|
|
slots: slots,
|
|
slotProps: slotProps,
|
|
loading: loading,
|
|
renderLoading: renderLoading,
|
|
disableHighlightToday: disableHighlightToday,
|
|
readOnly: readOnly,
|
|
disabled: disabled,
|
|
showDaysOutsideCurrentMonth: showDaysOutsideCurrentMonth,
|
|
dayOfWeekFormatter: dayOfWeekFormatter,
|
|
sx: sx,
|
|
autoFocus: autoFocus,
|
|
fixedWeekNumber: fixedWeekNumber,
|
|
displayWeekNumber: displayWeekNumber,
|
|
timezone: timezone
|
|
});
|
|
if (process.env.NODE_ENV !== "production") renderDateViewCalendar.displayName = "renderDateViewCalendar"; |