@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>;
|