axidio-styleguide-library1-v2 0.0.991 → 0.0.992

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.
@@ -8838,10 +8838,9 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
8838
8838
  if (isValueToBeIgnored) {
8839
8839
  return '';
8840
8840
  }
8841
- // Always add space before and after hyphen for date range labels
8841
+ // Always add space before and after hyphen for date range labels, even when header is visible and label is single line
8842
8842
  const dateRangeRegex = /(\d{2,4}[-\/]\d{2}[-\/]\d{2,4})\s*-\s*(\d{2,4}[-\/]\d{2}[-\/]\d{2,4})/;
8843
8843
  if (dateRangeRegex.test(d.trim())) {
8844
- // Replace any hyphen between two dates with ' - '
8845
8844
  return d.trim().replace(dateRangeRegex, (m, d1, d2) => `${d1} - ${d2}`);
8846
8845
  }
8847
8846
  // If label looks like a date (contains digits and - or /)