@levi-gemcommerce/analytics 1.0.0-dev.33 → 1.0.0-dev.34

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/esm/index.js CHANGED
@@ -22742,7 +22742,7 @@ const ChartContainer = (props) => {
22742
22742
  characterWidths,
22743
22743
  characterWidthOffsets,
22744
22744
  theme: printFriendlyTheme,
22745
- isTouchDevice: isTouchDevice(),
22745
+ isTouchDevice: typeof window === 'undefined' ? false : isTouchDevice(),
22746
22746
  isPerformanceImpacted: dataTooBigToAnimate,
22747
22747
  scrollContainer: props.scrollContainer,
22748
22748
  containerBounds: containerBounds ?? EMPTY_BOUNDS,
@@ -22742,7 +22742,7 @@ const ChartContainer = (props) => {
22742
22742
  characterWidths,
22743
22743
  characterWidthOffsets,
22744
22744
  theme: printFriendlyTheme,
22745
- isTouchDevice: isTouchDevice(),
22745
+ isTouchDevice: typeof window === 'undefined' ? false : isTouchDevice(),
22746
22746
  isPerformanceImpacted: dataTooBigToAnimate,
22747
22747
  scrollContainer: props.scrollContainer,
22748
22748
  containerBounds: containerBounds ?? EMPTY_BOUNDS,