@mx-cartographer/experiences 6.9.8 → 6.9.10

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
+ ## [6.9.10] - 06-25-2025
2
+
3
+ - **Fixed** - Bug Fixes | Compressed the Bubble Budgets for the width lesser than 400px
4
+
5
+ ## [6.9.9] - 06-25-2025
6
+
7
+ - **ADDED** - `NetWorthMicroWidget` copy changes.
8
+
1
9
  ## [6.9.8] - 06-24-2025
2
10
 
3
11
  - **UPDATED** - ProfileTab | throw are you sure dialogue if user leaves before saving
@@ -31,3 +31,12 @@ export declare const getScale: (min: number, max: number) => d3.ScaleLinear<numb
31
31
  * @param budgets Budget data
32
32
  */
33
33
  export declare const simulate: (budgets: DetailedBudget[]) => d3.Simulation<BubbleData, undefined>;
34
+ export declare const getSmartScale: (count: number, height: number, maxValue: number, minValue: number, width: number) => d3.ScaleLinear<number, number, never>;
35
+ /**
36
+ * Simulate a compact layout for smaller viewports
37
+ * @param budgets Budget data
38
+ * @param height Height of the container
39
+ * @param width Width of the container
40
+ * @returns A D3 simulation for the compact layout
41
+ */
42
+ export declare const simulateCompact: (budgets: DetailedBudget[], height: number, width: number) => d3.Simulation<BubbleData, undefined>;
@@ -50,6 +50,7 @@ export interface CommonCopy {
50
50
  search_button: string;
51
51
  search_placeholder: string;
52
52
  search_zero_state: string;
53
+ see_details: string;
53
54
  settings: string;
54
55
  six_month_total: string;
55
56
  unhide_button: string;
@@ -14,4 +14,5 @@ export interface NetWorthCopy {
14
14
  empty_widget_button: string;
15
15
  empty_widget_description: string;
16
16
  empty_widget_header: string;
17
+ zero_state_description: string;
17
18
  }