@mx-cartographer/experiences 6.4.0-alpha.bb1 → 6.4.0

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,20 @@
1
+ ## [6.4.0] - 06-12-2025
2
+
3
+ - **UPDATED** - All Card & Paper components to use the default MXUI border radius
4
+ - **UPDATED** - Client Theme creation to set fonts for all font variants
5
+
6
+ ## [6.3.17] - 06-13-2025
7
+
8
+ - **UPDATED** - `Connect an Account` in the filter opens the `Link Accounts` flow.
9
+
10
+ ## [6.3.16] - 06-12-2025
11
+
12
+ - **UPDATED** - Phone verification success toast logic.
13
+
14
+ ## [6.3.15] - 06-12-2025
15
+
16
+ - **REMOVED** - Extra date icon above the date range selector.
17
+
1
18
  ## [6.3.14] - 06-12-2025
2
19
 
3
20
  - **CHANGED** - Recurring Transactions header to show current month info
@@ -1,4 +1,7 @@
1
- declare const _default: (() => import("react/jsx-runtime").JSX.Element) & {
1
+ interface AddAccountsProps {
2
+ handleConnectClick: () => void;
3
+ }
4
+ declare const _default: (({ handleConnectClick }: AddAccountsProps) => import("react/jsx-runtime").JSX.Element) & {
2
5
  displayName: string;
3
6
  };
4
7
  export default _default;
@@ -21,7 +21,6 @@ export interface DateRangeSelectorProps {
21
21
  copy: DateRangeSelectorCopy;
22
22
  range?: DateRange<Date>;
23
23
  shouldShrinkToIcon?: boolean;
24
- toolTipContent?: string;
25
24
  variant?: 'outlined' | 'text' | 'readonly' | 'timeframebuttons' | 'timeframetabs';
26
25
  }
27
26
  export type Timeframe = {
@@ -82,6 +82,7 @@ export interface ClientProfile {
82
82
  }
83
83
  export interface ClientStyleProfile {
84
84
  primary_color?: string;
85
+ primary_font_regular?: string;
85
86
  secondary_color?: string;
86
87
  neutral_color?: string;
87
88
  success_color?: string;