@pitcher/canvas-ui 2026.1.9-130412-beta → 2026.1.9-131543-beta

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/canvas-ui.js CHANGED
@@ -120854,7 +120854,7 @@ function useCanvasContext() {
120854
120854
  };
120855
120855
  const crmShapeWithSectionCtx = computed(() => {
120856
120856
  const mergedCtx = getSectionCtx();
120857
- return !isEmpty(crmShape.value) ? { ...mergedCtx, ...crmShape.value } : mergedCtx;
120857
+ return !isEmpty(crmShape.value) ? merge$1({}, crmShape.value, mergedCtx) : mergedCtx;
120858
120858
  });
120859
120859
  return {
120860
120860
  getSectionCtx,