aefis-core-ui 2.3.0-rc33 → 2.3.0-rc34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5591,7 +5591,7 @@ const ModalDialog = props => {
5591
5591
  onClose: props.handleClose,
5592
5592
  open: props.open,
5593
5593
  TransitionComponent: props.transitionComponent
5594
- }, a11yprops, sizeProps, {
5594
+ }, a11yprops, sizeProps, props.DialogProps, {
5595
5595
  children: [props.size === "fullscreen" && /*#__PURE__*/jsx(FullScreenAppBar, _extends({
5596
5596
  id: `modal-title-${id}`,
5597
5597
  handleConfirm: handleConfirm
@@ -5659,7 +5659,9 @@ ModalDialog.propTypes = {
5659
5659
  /** Props to apply to the dialog content area. */
5660
5660
  dialogContentProps: PropTypes.any,
5661
5661
  /** Component to apply to the dialog title. */
5662
- titleComponent: PropTypes.oneOf(["h1", "h2", "h3", "div", "span"])
5662
+ titleComponent: PropTypes.oneOf(["h1", "h2", "h3", "div", "span"]),
5663
+ /** Override Dialog Props */
5664
+ DialogProps: PropTypes.any
5663
5665
  };
5664
5666
 
5665
5667
  const DisplayInFrame = props => {