@mx-cartographer/experiences 6.3.15-alpha-ram1-budgetscssfix → 6.3.17-alpha.mega1
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,6 +1,14 @@
|
|
1
|
-
## [6.3.
|
1
|
+
## [6.3.17] - 06-13-2025
|
2
2
|
|
3
|
-
- **
|
3
|
+
- **UPDATED** - `Connect an Account` in the filter opens the `Link Accounts` flow.
|
4
|
+
|
5
|
+
## [6.3.16] - 06-12-2025
|
6
|
+
|
7
|
+
- **UPDATED** - Phone verification success toast logic.
|
8
|
+
|
9
|
+
## [6.3.15] - 06-12-2025
|
10
|
+
|
11
|
+
- **REMOVED** - Extra date icon above the date range selector.
|
4
12
|
|
5
13
|
## [6.3.14] - 06-12-2025
|
6
14
|
|
@@ -1,4 +1,7 @@
|
|
1
|
-
|
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 = {
|