@mx-cartographer/experiences 7.0.58-alpha.sms1 → 7.0.59-alpha.al1

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.
@@ -1,6 +1,7 @@
1
1
  import { SxProps } from '@mui/material/styles';
2
2
  export interface MiniWidgetProps {
3
3
  onPrimaryCtaClick?: () => void;
4
+ onSecondaryCtaClick?: () => void;
4
5
  sx?: SxProps;
5
6
  }
6
7
  export interface WidgetProps {
@@ -25,6 +25,8 @@ export interface CashflowCopy extends AccountFilterCopy {
25
25
  close_settings_aria: string;
26
26
  confirm_error: string;
27
27
  confirm_income_button: string;
28
+ create: string;
29
+ create_description: string;
28
30
  current_balance: string;
29
31
  days: string;
30
32
  days_of_week_label: string;
@@ -30,7 +30,7 @@ import Ue from "@mui/material/AccordionSummary";
30
30
  import Ve from "@mui/material/CardHeader";
31
31
  import { u as Ye } from "../useDimensions-27p2evRx.mjs";
32
32
  import { C as qe } from "../ConnectionsDrawer-CU3E2RLw.mjs";
33
- import { R as Je } from "../RecurringSettings-qv7DNYac.mjs";
33
+ import { R as Je } from "../RecurringSettings-B486z99o.mjs";
34
34
  import Qe from "@mui/material/TextField";
35
35
  import { u as Ce } from "../useScreenSize-B6JyS_Lj.mjs";
36
36
  import { a as Ze } from "../Dialog-CWW597AF.mjs";
@@ -48,9 +48,9 @@ import { isValid as ut } from "date-fns/isValid";
48
48
  import { AdapterDateFns as _t } from "@mui/x-date-pickers/AdapterDateFnsV3";
49
49
  import { DatePicker as pt } from "@mui/x-date-pickers";
50
50
  import { LocalizationProvider as ht } from "@mui/x-date-pickers/LocalizationProvider";
51
- import { E as gt } from "../EmptyState-w2yYDuKG.mjs";
52
- import { A as Y, W as bt } from "../WidgetContainer-B8MRJ5Y1.mjs";
51
+ import { A as Y, W as gt } from "../WidgetContainer-B8MRJ5Y1.mjs";
53
52
  import { L as Ke } from "../Loader-DUaFpDGv.mjs";
53
+ import { E as bt } from "../EmptyState-w2yYDuKG.mjs";
54
54
  import ft from "@mui/material/Stack/Stack";
55
55
  import yt from "@mui/material/Box";
56
56
  import At from "@mui/material/styles/useTheme";
@@ -948,7 +948,7 @@ const St = (t, n) => n ? v(t, t < 1e3 ? "0" : "0.00a").replace(
948
948
  [m, c, S]
949
949
  );
950
950
  return !c || !a || !_ ? /* @__PURE__ */ e(Ke, {}) : /* @__PURE__ */ r(
951
- bt,
951
+ gt,
952
952
  {
953
953
  accountOptions: p,
954
954
  actions: [
@@ -998,7 +998,7 @@ const St = (t, n) => n ? v(t, t < 1e3 ? "0" : "0.00a").replace(
998
998
  }
999
999
  ),
1000
1000
  O ? /* @__PURE__ */ e(
1001
- gt,
1001
+ bt,
1002
1002
  {
1003
1003
  header: l.create_goals_header,
1004
1004
  icon: "trophy",
@@ -0,0 +1,9 @@
1
+ interface RecurringSettingsDrawerProps {
2
+ isOpen: boolean;
3
+ onClose: () => void;
4
+ selectedTab?: number;
5
+ }
6
+ export declare const RecurringSettingsDrawer: (({ isOpen, onClose, selectedTab }: RecurringSettingsDrawerProps) => import("react/jsx-runtime").JSX.Element) & {
7
+ displayName: string;
8
+ };
9
+ export {};
@@ -1,3 +1,7 @@
1
- export declare const RecurringSettings: (() => import("react/jsx-runtime").JSX.Element) & {
1
+ interface RecurringSettingsProps {
2
+ defaultSelectedTab?: number;
3
+ }
4
+ export declare const RecurringSettings: (({ defaultSelectedTab }: RecurringSettingsProps) => import("react/jsx-runtime").JSX.Element) & {
2
5
  displayName: string;
3
6
  };
7
+ export {};
@@ -7,3 +7,4 @@ export { ManageIncome } from './components/shared/recurringsettings/ManageIncome
7
7
  export { ManageExpenses } from './components/shared/recurringsettings/ManageExpenses';
8
8
  export { SelectTransaction } from './components/shared/recurringsettings/SelectTransaction';
9
9
  export { AddRecurringTransactionDetails } from './components/shared/recurringsettings/AddRecurringTransactionDetails';
10
+ export { RecurringSettingsDrawer } from './components/RecurringSettingsDrawer';