@mx-cartographer/experiences 7.2.5-alpha.mm3 → 7.2.6

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,11 @@
1
+ ## [7.2.6] - 11-17-2025
2
+
3
+ - **UPDATED** - cards directory `microinsights`
4
+
5
+ ## [7.2.5] - 11-17-2025
6
+
7
+ - **FIXED** - `MicroInsightCard` content overflowing in some layouts
8
+
1
9
  ## [7.2.4] - 11-14-2025
2
10
 
3
11
  - **UPDATED** - Storybook docs for `InsightsMicroWidget`
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
- import { MicroWidgetProps, BeatLikeOffer } from '../../interfaces';
3
- import { Beat } from '../../../common/types/Beat';
2
+ import { MicroWidgetProps, BeatLikeOffer } from '../interfaces';
3
+ import { Beat } from '../../common/types/Beat';
4
4
  export interface BeatCardProps extends MicroWidgetProps {
5
5
  backgroundColor?: string;
6
6
  beat: Beat | BeatLikeOffer;
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { MicroWidgetProps, StyleProps } from '../../';
2
+ import { MicroWidgetProps, StyleProps } from '..';
3
3
  interface MicroInsightProps extends MicroWidgetProps {
4
4
  actionText?: string;
5
5
  backgroundColor?: string;
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { MicroWidgetProps } from '../../interfaces';
2
+ import { MicroWidgetProps } from '../interfaces';
3
3
  export interface MicroZeroStateCardProps extends MicroWidgetProps {
4
4
  carouselSize: string;
5
5
  }
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { MicroWidgetProps } from '../../interfaces';
2
+ import { MicroWidgetProps } from '../interfaces';
3
3
  export interface ViewMoreMicroCardProps extends MicroWidgetProps {
4
4
  isActiveCard: boolean;
5
5
  }
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { MicroWidgetProps } from '../../interfaces';
2
+ import { MicroWidgetProps } from '../interfaces';
3
3
  export interface ZeroStateCardProps extends MicroWidgetProps {
4
4
  carouselSize: string;
5
5
  }
@@ -1,12 +1,12 @@
1
1
  export { AppStore } from './stores/AppStore';
2
2
  export { InsightsMicroWidgetDataProvider } from './context/InsightsMicroWidgetDataProvider';
3
- export { BeatCard } from './components/beatCard/BeatCard';
3
+ export { BeatCard } from './cards/BeatCard';
4
4
  export { default as MicroBeatCarousel } from './components/microBeatCarousel/MicroBeatCarousel';
5
- export { MicroInsightCard } from './components/microInsightCard/MicroInsightCard';
5
+ export { MicroInsightCard } from './cards/MicroInsightCard';
6
6
  export { default as CarouselHeader } from './components/carouselheader/CarouselHeader';
7
7
  export { default as InsightsMicroWidget } from './components/insightsmicrowidget/InsightsMicroWidget';
8
- export { default as NoRelevantInsightsCard } from './components/noRelevantInsightsCard/NoRelevantInsightsCard';
9
- export { default as ViewMoreMicroCard } from './components/viewMoreMicroCard/ViewMoreMicroCard';
10
- export { default as ZeroStateCard } from './components/zeroStateCard/ZeroStateCard';
8
+ export { default as NoRelevantInsightsCard } from './cards/NoRelevantInsightsCard';
9
+ export { default as ViewMoreMicroCard } from './cards/ViewMoreMicroCard';
10
+ export { default as ZeroStateCard } from './cards/ZeroStateCard';
11
11
  export { ChartFilledIcon, MonthlySpendComparisonIcon, ZeroStateIcon } from './components/beaticons';
12
12
  export type { clientColorSchemeProps, MicroWidgetProps, StyleProps } from './interfaces';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-cartographer/experiences",
3
- "version": "7.2.5-alpha.mm3",
3
+ "version": "7.2.6",
4
4
  "description": "Library containing experience widgets",
5
5
  "author": "MX",
6
6
  "license": "MIT",