Added Statistics calculation
Statistics now show calculated values
This commit is contained in:
parent
fe87374e47
commit
fc0f69dacb
2147 changed files with 141321 additions and 39 deletions
84
node_modules/@mui/x-date-pickers/esm/dateViewRenderers/dateViewRenderers.js
generated
vendored
Normal file
84
node_modules/@mui/x-date-pickers/esm/dateViewRenderers/dateViewRenderers.js
generated
vendored
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
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";
|
||||
Loading…
Add table
Add a link
Reference in a new issue