@mx-cartographer/experiences 6.26.14 → 6.26.15
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/common/types/localization/FinstrongCopy.d.ts +10 -0
- package/dist/finstrong/components/shared/ScoreHistoryTimeline.d.ts +7 -0
- package/dist/finstrong/components/shared/ScoreHistoryTimelineItem.d.ts +7 -0
- package/dist/finstrong/util/finstrongUtils.d.ts +1 -0
- package/dist/index.es.js +3680 -3481
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -51,6 +51,15 @@ interface KeyIndicatorSpend {
|
|
|
51
51
|
ratio_off_track_description: string;
|
|
52
52
|
title: string;
|
|
53
53
|
}
|
|
54
|
+
interface ScoreHistoryDrawerTimeline {
|
|
55
|
+
credit_score_description: string;
|
|
56
|
+
down_from: string;
|
|
57
|
+
less_spending: string;
|
|
58
|
+
more_spending: string;
|
|
59
|
+
spend_to_income_description: string;
|
|
60
|
+
stayed_at: string;
|
|
61
|
+
up_from: string;
|
|
62
|
+
}
|
|
54
63
|
export interface FinstrongCopy {
|
|
55
64
|
accordion_details_text: HealthScoreStatuDetailsCopy;
|
|
56
65
|
accordion_title_text: string;
|
|
@@ -96,6 +105,7 @@ export interface FinstrongCopy {
|
|
|
96
105
|
monthly_income: string;
|
|
97
106
|
profile: string;
|
|
98
107
|
score_history: string;
|
|
108
|
+
score_history_drawer_timeline: ScoreHistoryDrawerTimeline;
|
|
99
109
|
score_rubric: string;
|
|
100
110
|
peer_average: string;
|
|
101
111
|
see_whats_possible: string;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { HealthScoreReport } from '../../../common';
|
|
3
|
+
interface ScoreHistoryTimelineProps {
|
|
4
|
+
report: HealthScoreReport;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: React.FunctionComponent<ScoreHistoryTimelineProps>;
|
|
7
|
+
export default _default;
|