@grafana/components 0.0.54 → 0.0.55

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.
@@ -26064,8 +26064,8 @@ const GenericSkeleton = ({ animationDuration = 2 }) => {
26064
26064
  ] });
26065
26065
  };
26066
26066
 
26067
- const filterHueRotate = (index) => ({
26068
- filter: `hue-rotate(${index * 10}deg)`
26067
+ const filterHueRotate = (index, offset = 10) => ({
26068
+ filter: `hue-rotate(${index * offset}deg)`
26069
26069
  });
26070
26070
 
26071
26071
  const diagonalStripedBackground = ({
@@ -28470,6 +28470,7 @@ exports.ZapOff = ZapOff;
28470
28470
  exports.ZoomIn = ZoomIn;
28471
28471
  exports.ZoomOut = ZoomOut;
28472
28472
  exports.calculateComparison = calculateComparison;
28473
+ exports.filterHueRotate = filterHueRotate;
28473
28474
  exports.formatNumber = formatNumber;
28474
28475
  exports.iconMetaData = iconMetaData;
28475
28476
  exports.useColorMode = useColorMode;