@mx-cartographer/experiences 6.9.9 → 6.9.11-alpha.al0

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,7 @@
1
+ ## [6.9.10] - 06-25-2025
2
+
3
+ - **Fixed** - Bug Fixes | Compressed the Bubble Budgets for the width lesser than 400px
4
+
1
5
  ## [6.9.9] - 06-25-2025
2
6
 
3
7
  - **ADDED** - `NetWorthMicroWidget` copy changes.
@@ -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>;
@@ -10,6 +10,7 @@ export declare const ApiEndpoints: {
10
10
  CASHFLOW_EVENTS: string;
11
11
  CASHFLOW_SEQUENCES: string;
12
12
  CATEGORIES: string;
13
+ CLIENT_INSIGHT_PROFILE: string;
13
14
  DATE_RANGE_CATEGORY_TOTALS: string;
14
15
  DEVICES: string;
15
16
  EMAIL_VERIFICATIONS: string;
@@ -11,6 +11,7 @@ export declare class AppDataStore {
11
11
  constructor(globalStore: GlobalStore);
12
12
  get appConfig(): AppConfig;
13
13
  get clientCommunicationProfile(): import('../types').ClientCommunicationProfile;
14
+ get clientInsightProfile(): import('../types/Client').ClientInsightProfile;
14
15
  get user(): User;
15
16
  get userCommunicationProfile(): UserCommunicationProfile;
16
17
  get userProfile(): UserProfile;
@@ -1,4 +1,4 @@
1
- import { Client, ClientColorScheme, ClientCommunicationProfile, ClientProfile, ClientStyleProfile } from './Client';
1
+ import { Client, ClientColorScheme, ClientCommunicationProfile, ClientInsightProfile, ClientProfile, ClientStyleProfile } from './Client';
2
2
  import { User, UserCommunicationProfile, UserFeature, UserProfile } from './User';
3
3
  export interface AppData {
4
4
  appConfig: AppConfig;
@@ -8,6 +8,7 @@ export interface AppData {
8
8
  client: Client;
9
9
  client_color_scheme: ClientColorScheme;
10
10
  client_communication_profile: ClientCommunicationProfile;
11
+ client_insight_profile: ClientInsightProfile;
11
12
  client_profile: ClientProfile;
12
13
  user: User;
13
14
  user_communication_profile: UserCommunicationProfile;
@@ -44,6 +44,12 @@ export interface ClientCommunicationProfile {
44
44
  verification_email_enabled: boolean;
45
45
  welcome_email_enabled: boolean;
46
46
  }
47
+ export interface ClientInsightProfile {
48
+ guid: string;
49
+ client_guid: string;
50
+ is_dark_mode_enabled: boolean;
51
+ is_enabled: boolean;
52
+ }
47
53
  export interface ClientProfile {
48
54
  account_verification_is_enabled: boolean;
49
55
  allow_accounts_widget: boolean;