UNPKG

@mui/x-date-pickers

Version:

The community edition of the Date and Time Picker components (MUI X).

110 lines 3.94 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import { useRtl } from '@mui/system/RtlProvider'; import Divider from '@mui/material/Divider'; import { PickersLayoutContentWrapper, PickersLayoutRoot, pickersLayoutClasses, usePickerLayout } from "../PickersLayout/index.js"; import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; /** * @ignore - internal component. */ const DesktopDateTimePickerLayout = /*#__PURE__*/React.forwardRef(function DesktopDateTimePickerLayout(props, ref) { const isRtl = useRtl(); const { toolbar, tabs, content, actionBar, shortcuts } = usePickerLayout(props); const { sx, className, isLandscape, classes } = props; const isActionBarVisible = actionBar && (actionBar.props.actions?.length ?? 0) > 0; const ownerState = _extends({}, props, { isRtl }); return /*#__PURE__*/_jsxs(PickersLayoutRoot, { ref: ref, className: clsx(pickersLayoutClasses.root, classes?.root, className), sx: [{ [`& .${pickersLayoutClasses.tabs}`]: { gridRow: 4, gridColumn: '1 / 4' }, [`& .${pickersLayoutClasses.actionBar}`]: { gridRow: 5 } }, ...(Array.isArray(sx) ? sx : [sx])], ownerState: ownerState, children: [isLandscape ? shortcuts : toolbar, isLandscape ? toolbar : shortcuts, /*#__PURE__*/_jsxs(PickersLayoutContentWrapper, { className: clsx(pickersLayoutClasses.contentWrapper, classes?.contentWrapper), sx: { display: 'grid' }, children: [content, tabs, isActionBarVisible && /*#__PURE__*/_jsx(Divider, { sx: { gridRow: 3, gridColumn: '1 / 4' } })] }), actionBar] }); }); process.env.NODE_ENV !== "production" ? DesktopDateTimePickerLayout.propTypes = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the TypeScript types and run "pnpm proptypes" | // ---------------------------------------------------------------------- children: PropTypes.node, /** * Override or extend the styles applied to the component. */ classes: PropTypes.object, className: PropTypes.string, disabled: PropTypes.bool, isLandscape: PropTypes.bool.isRequired, /** * `true` if the application is in right-to-left direction. */ isRtl: PropTypes.bool.isRequired, isValid: PropTypes.func.isRequired, onAccept: PropTypes.func.isRequired, onCancel: PropTypes.func.isRequired, onChange: PropTypes.func.isRequired, onClear: PropTypes.func.isRequired, onClose: PropTypes.func.isRequired, onDismiss: PropTypes.func.isRequired, onOpen: PropTypes.func.isRequired, onSelectShortcut: PropTypes.func.isRequired, onSetToday: PropTypes.func.isRequired, onViewChange: PropTypes.func.isRequired, /** * Force rendering in particular orientation. */ orientation: PropTypes.oneOf(['landscape', 'portrait']), readOnly: PropTypes.bool, /** * The props used for each component slot. * @default {} */ slotProps: PropTypes.object, /** * Overridable component slots. * @default {} */ slots: PropTypes.object, /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]), value: PropTypes.any, view: PropTypes.oneOf(['day', 'hours', 'meridiem', 'minutes', 'month', 'seconds', 'year']), views: PropTypes.arrayOf(PropTypes.oneOf(['day', 'hours', 'meridiem', 'minutes', 'month', 'seconds', 'year']).isRequired).isRequired, wrapperVariant: PropTypes.oneOf(['desktop', 'mobile']) } : void 0; export { DesktopDateTimePickerLayout };