49 lines
2.0 KiB
JavaScript
49 lines
2.0 KiB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
var _excluded = ["className"];
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import clsx from 'clsx';
|
|
import { styled } from '@mui/system';
|
|
import { unstable_composeClasses as composeClasses } from '@mui/utils';
|
|
import { getDataGridUtilityClass } from '../../constants/gridClasses';
|
|
import { useGridRootProps } from '../../hooks/utils/useGridRootProps';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
var useUtilityClasses = function useUtilityClasses(ownerState) {
|
|
var classes = ownerState.classes;
|
|
var slots = {
|
|
root: ['panelContent']
|
|
};
|
|
return composeClasses(slots, getDataGridUtilityClass, classes);
|
|
};
|
|
var GridPanelContentRoot = styled('div', {
|
|
name: 'MuiDataGrid',
|
|
slot: 'PanelContent',
|
|
overridesResolver: function overridesResolver(props, styles) {
|
|
return styles.panelContent;
|
|
}
|
|
})({
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
overflow: 'auto',
|
|
flex: '1 1',
|
|
maxHeight: 400
|
|
});
|
|
function GridPanelContent(props) {
|
|
var className = props.className,
|
|
other = _objectWithoutProperties(props, _excluded);
|
|
var rootProps = useGridRootProps();
|
|
var classes = useUtilityClasses(rootProps);
|
|
return /*#__PURE__*/_jsx(GridPanelContentRoot, _extends({
|
|
className: clsx(className, classes.root),
|
|
ownerState: rootProps
|
|
}, other));
|
|
}
|
|
process.env.NODE_ENV !== "production" ? GridPanelContent.propTypes = {
|
|
// ----------------------------- Warning --------------------------------
|
|
// | These PropTypes are generated from the TypeScript type definitions |
|
|
// | To update them edit the TypeScript types and run "yarn proptypes" |
|
|
// ----------------------------------------------------------------------
|
|
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
|
} : void 0;
|
|
export { GridPanelContent }; |