@mx-cartographer/experiences 6.10.4-alpha.mega1 → 6.10.4-alpha.mega2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [6.10.4] - 06-29-2025
2
+
3
+ - **FIXED** - Fixed `BubbleChart` overflow issue on compact devices.
4
+
1
5
  ## [6.10.3] - 06-27-2025
2
6
 
3
7
  - **UPDATED** - AppData to include client insight profile
@@ -1,6 +1,7 @@
1
+ import { default as React } from 'react';
1
2
  import { BubbleData } from '../BubbleChart';
2
3
  interface MercuryProps {
3
4
  bubble: BubbleData;
4
5
  }
5
- export declare function Mercury({ bubble }: MercuryProps): import("react/jsx-runtime").JSX.Element;
6
- export {};
6
+ declare const _default: React.MemoExoticComponent<({ bubble }: MercuryProps) => import("react/jsx-runtime").JSX.Element>;
7
+ export default _default;