aefis-core-ui 2.5.1 → 2.5.2

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.
@@ -21411,7 +21411,8 @@ const TitleAndActionHeader = /*#__PURE__*/React__default.forwardRef(({
21411
21411
  breadcrumbs,
21412
21412
  centerMobile: _centerMobile = false,
21413
21413
  centerMobileSx: _centerMobileSx = {},
21414
- titleWordBreak: _titleWordBreak = false
21414
+ titleWordBreak: _titleWordBreak = false,
21415
+ forcePDFLandscape
21415
21416
  }, ref) => {
21416
21417
  const filterSetConfiguration = filterSetsProp || initialFilterSetsProp;
21417
21418
  const [open, setOpen] = useState(false);
@@ -21646,7 +21647,8 @@ const TitleAndActionHeader = /*#__PURE__*/React__default.forwardRef(({
21646
21647
  children: [_additionalActionsPosition === "left" && additionalActions, actions && /*#__PURE__*/jsx(Actions, {
21647
21648
  data: actions
21648
21649
  }), _additionalActionsPosition === "right" && additionalActions, _showExport && /*#__PURE__*/jsx(ExportButton, {
21649
- options: exportOptions
21650
+ options: exportOptions,
21651
+ forcePDFLandscape: forcePDFLandscape
21650
21652
  })]
21651
21653
  })
21652
21654
  })
@@ -21719,6 +21721,8 @@ TitleAndActionHeader.propTypes = {
21719
21721
  /** if a url is provided, the export is directed the url. */
21720
21722
  url: PropTypes.string
21721
21723
  })),
21724
+ /** pdf export will be on landscape mode */
21725
+ forcePDFLandscape: PropTypes.bool,
21722
21726
  /** Function to execute when the filter button is clicked. If provided, the filter button will be displayed. */
21723
21727
  onFilterClick: PropTypes.func,
21724
21728
  /** Have filters been applied? */