@extend-ai/react-xlsx 0.13.0 → 0.13.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.
@@ -623,7 +623,7 @@ function parseChartPointDataLabelsFromXml(labelsNode) {
623
623
  continue;
624
624
  }
625
625
  const layoutNode = getFirstLocalChild(pointLabelNode, "layout");
626
- const manualLayoutNode = getFirstLocalChild(layoutNode, "manualLayout");
626
+ const manualLayoutNode = layoutNode ? getFirstLocalChild(layoutNode, "manualLayout") : null;
627
627
  labels.push({
628
628
  deleted: readChartBooleanAttribute(pointLabelNode, "delete"),
629
629
  fontSizePt: readChartLabelFontSizePt(getFirstLocalChild(pointLabelNode, "txPr")) ?? fallbackFontSizePt,