sag_components 2.0.0-beta43 → 2.0.0-beta45

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.
package/dist/index.js CHANGED
@@ -26371,6 +26371,7 @@ const ControlsContainer$4 = styled__default["default"].div`
26371
26371
  color: ${props => props.textColor};
26372
26372
  width: ${props => props.width};
26373
26373
  height: ${props => props.height};
26374
+ padding: ${props => props.containerPadding || '0'};
26374
26375
  display: flex;
26375
26376
  align-items: center;
26376
26377
  @media (max-width: 1536px) {
@@ -26525,6 +26526,7 @@ const TotalDoughnutChart = props => {
26525
26526
  title,
26526
26527
  value,
26527
26528
  rootFont,
26529
+ containerPadding,
26528
26530
  addingBenchmark,
26529
26531
  dotCut,
26530
26532
  currencySign,
@@ -26601,6 +26603,7 @@ const TotalDoughnutChart = props => {
26601
26603
  height: height,
26602
26604
  width: width,
26603
26605
  rootFont: rootFont,
26606
+ containerPadding: containerPadding,
26604
26607
  textcolor: textcolor
26605
26608
  }, legendData.length === 0 || legendData.every(item => item.value === undefined || item.value === null) ? /*#__PURE__*/React__default["default"].createElement(NoDataFoundMessage, {
26606
26609
  className: "NoDataFoundMessage",
@@ -26662,6 +26665,7 @@ TotalDoughnutChart.propTypes = {
26662
26665
  title: PropTypes.string,
26663
26666
  value: PropTypes.number,
26664
26667
  rootFont: PropTypes.string,
26668
+ containerPadding: PropTypes.string,
26665
26669
  addingBenchmark: PropTypes.bool,
26666
26670
  dotCut: PropTypes.bool,
26667
26671
  currencySign: PropTypes.bool,
@@ -26690,6 +26694,7 @@ TotalDoughnutChart.defaultProps = {
26690
26694
  title: '',
26691
26695
  value: 0,
26692
26696
  rootFont: '18px',
26697
+ containerPadding: '0px',
26693
26698
  addingBenchmark: false,
26694
26699
  dotCut: false,
26695
26700
  currencySign: false,