@mx-cartographer/experiences 7.2.5 → 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 +4 -0
- package/dist/microinsights/{components/beatCard → cards}/BeatCard.d.ts +2 -2
- package/dist/microinsights/{components/microInsightCard → cards}/MicroInsightCard.d.ts +1 -1
- package/dist/microinsights/{components/noRelevantInsightsCard → cards}/NoRelevantInsightsCard.d.ts +1 -1
- package/dist/microinsights/{components/viewMoreMicroCard → cards}/ViewMoreMicroCard.d.ts +1 -1
- package/dist/microinsights/{components/zeroStateCard → cards}/ZeroStateCard.d.ts +1 -1
- package/dist/microinsights/index.d.ts +5 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { MicroWidgetProps, BeatLikeOffer } from '
|
|
3
|
-
import { Beat } from '
|
|
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,12 +1,12 @@
|
|
|
1
1
|
export { AppStore } from './stores/AppStore';
|
|
2
2
|
export { InsightsMicroWidgetDataProvider } from './context/InsightsMicroWidgetDataProvider';
|
|
3
|
-
export { BeatCard } from './
|
|
3
|
+
export { BeatCard } from './cards/BeatCard';
|
|
4
4
|
export { default as MicroBeatCarousel } from './components/microBeatCarousel/MicroBeatCarousel';
|
|
5
|
-
export { MicroInsightCard } from './
|
|
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 './
|
|
9
|
-
export { default as ViewMoreMicroCard } from './
|
|
10
|
-
export { default as ZeroStateCard } from './
|
|
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';
|