@mx-cartographer/experiences 6.18.8-alpha.mm0 → 6.18.8-alpha.mm2
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 +0 -8
- package/dist/index.es.js +4650 -4667
- package/dist/index.es.js.map +1 -1
- package/dist/microinsights/components/microBeatCarousel/CarouselControls.d.ts +0 -1
- package/dist/microinsights/interfaces.d.ts +0 -1
- package/dist/trends/TrendsWidget.d.ts +5 -2
- package/dist/trends/components/TrendsInsights.d.ts +5 -1
- package/package.json +1 -1
|
@@ -8,7 +8,6 @@ export interface CarouselControlsProps {
|
|
|
8
8
|
onPreviousClick: () => void;
|
|
9
9
|
scrollRightBoundary: number;
|
|
10
10
|
scrollX: number;
|
|
11
|
-
shouldApplyNewAnimation?: boolean;
|
|
12
11
|
visibleCardsCount?: number;
|
|
13
12
|
}
|
|
14
13
|
export declare const CarouselControls: React.FC<CarouselControlsProps>;
|
|
@@ -10,7 +10,6 @@ export interface MicroWidgetProps {
|
|
|
10
10
|
isActiveCard?: boolean;
|
|
11
11
|
onCardClick?: (beat?: Beat | undefined) => void;
|
|
12
12
|
posthog?: TheWholeHog;
|
|
13
|
-
shouldApplyNewAnimation?: boolean;
|
|
14
13
|
showBorder?: boolean;
|
|
15
14
|
showCarouselControls?: boolean;
|
|
16
15
|
showHeader?: boolean;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { WidgetProps } from '../common';
|
|
3
|
-
|
|
2
|
+
import { WidgetProps, Beat } from '../common';
|
|
3
|
+
interface TrendsWidgetProps extends WidgetProps {
|
|
4
|
+
onInsightCardClick?: (beat?: Beat) => void;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: React.FunctionComponent<TrendsWidgetProps>;
|
|
4
7
|
export default _default;
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
|
|
2
|
+
import { Beat } from '../../common/types/Beat';
|
|
3
|
+
interface TrendsMicroInsightsProps {
|
|
4
|
+
onInsightCardClick?: (beat?: Beat) => void;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: React.FunctionComponent<TrendsMicroInsightsProps>;
|
|
3
7
|
export default _default;
|