@mx-cartographer/experiences 6.3.12 → 6.3.13
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 +5 -0
- package/dist/common/components/Select.d.ts +12 -0
- package/dist/common/components/index.d.ts +1 -0
- package/dist/common/constants/Analytics.d.ts +2 -0
- package/dist/common/types/localization/RecurringCopy.d.ts +20 -0
- package/dist/index.es.js +4443 -4412
- package/dist/index.es.js.map +1 -1
- package/dist/recurringtransactions/components/PaymentSchedule.d.ts +11 -0
- package/dist/recurringtransactions/components/actions/{FrequencyAction.d.ts → PaymentScheduleAction.d.ts} +1 -1
- package/dist/recurringtransactions/components/shared/recurringsettings/AddRecurringTransactionDetails.d.ts +5 -4
- package/dist/recurringtransactions/util/RecurringTransactions.d.ts +2 -1
- package/package.json +1 -1
- package/dist/recurringtransactions/components/actions/PaymentDateAction.d.ts +0 -8
package/CHANGELOG.md
CHANGED
@@ -0,0 +1,12 @@
|
|
1
|
+
export type SelectOption = {
|
2
|
+
id: number;
|
3
|
+
label: string;
|
4
|
+
};
|
5
|
+
interface SelectProps {
|
6
|
+
label: string;
|
7
|
+
onChange: (value: number) => void;
|
8
|
+
options: SelectOption[];
|
9
|
+
value: number;
|
10
|
+
}
|
11
|
+
export declare const Select: ({ label, onChange, options, value }: SelectProps) => import("react/jsx-runtime").JSX.Element;
|
12
|
+
export {};
|
@@ -23,5 +23,6 @@ export { CurrencyText } from './CurrencyText';
|
|
23
23
|
export { EmptyState } from './EmptyState';
|
24
24
|
export { ListItemAction } from './ListItemAction';
|
25
25
|
export { ListItemWrapper } from './ListItemWrapper';
|
26
|
+
export { Select } from './Select';
|
26
27
|
export { ToggleButtonListItem } from './listitems/ToggleButtonListItem';
|
27
28
|
export { ToggleListItem } from './listitems/ToggleListItem';
|
@@ -61,6 +61,8 @@ export declare const ANALYTICS_EVENTS: {
|
|
61
61
|
RECURRING_TRANSACTIONS_CLICK_PAID: string;
|
62
62
|
RECURRING_TRANSACTIONS_CLICK_SETTINGS: string;
|
63
63
|
RECURRING_TRANSACTIONS_CLICK_UPCOMING: string;
|
64
|
+
RECURRING_TRANSACTIONS_DETAILS_CLICK_DELETE: string;
|
65
|
+
RECURRING_TRANSACTIONS_DETAILS_CLICK_PAYMENT_SCHEDULE: string;
|
64
66
|
SPENDING_CLICK_FILTER: string;
|
65
67
|
SPENDING_VIEW: string;
|
66
68
|
TRANSACTIONS_ADD_MANUAL_ACCOUNT_MODAL: string;
|
@@ -12,6 +12,8 @@ export interface RecurringCopy {
|
|
12
12
|
category: string;
|
13
13
|
close_drawer_aria: string;
|
14
14
|
day_transactions: string;
|
15
|
+
day_of_the_month: string;
|
16
|
+
day_of_the_week: string;
|
15
17
|
delete_expense_title: string;
|
16
18
|
delete_expense_description: string;
|
17
19
|
delete_income_title: string;
|
@@ -29,6 +31,7 @@ export interface RecurringCopy {
|
|
29
31
|
expense_details: string;
|
30
32
|
expense: string;
|
31
33
|
expenses: string;
|
34
|
+
first_day_of_the_month: string;
|
32
35
|
frequency: string;
|
33
36
|
frequency_every_week: string;
|
34
37
|
frequency_every_other_week: string;
|
@@ -37,11 +40,13 @@ export interface RecurringCopy {
|
|
37
40
|
frequency_every_quarter: string;
|
38
41
|
frequency_every_other_quarter: string;
|
39
42
|
frequency_every_year: string;
|
43
|
+
frequency_twice_a_month: string;
|
40
44
|
frequency_title: string;
|
41
45
|
income: string;
|
42
46
|
income_date_label: string;
|
43
47
|
income_details: string;
|
44
48
|
income_schedule: string;
|
49
|
+
last_day_of_month: string;
|
45
50
|
manage_expenses: string;
|
46
51
|
manage_income: string;
|
47
52
|
mini_title: string;
|
@@ -56,21 +61,36 @@ export interface RecurringCopy {
|
|
56
61
|
paid_activity: string;
|
57
62
|
paid_on: string;
|
58
63
|
paid_transactions: string;
|
64
|
+
payment_schedule: string;
|
59
65
|
primary_cta: string;
|
60
66
|
quarterly: string;
|
61
67
|
quarterly_ordinal: string;
|
68
|
+
recurrence_day_label: string;
|
69
|
+
recurrence_days_label: string;
|
62
70
|
reset: string;
|
71
|
+
second_day_of_the_month: string;
|
72
|
+
select_day_label: string;
|
73
|
+
select_days_label: string;
|
63
74
|
select_transaction_search_aria: string;
|
64
75
|
select_transaction_search_cancel_aria: string;
|
65
76
|
select_transaction_search_placeholder: string;
|
66
77
|
settings: string;
|
67
78
|
sub_title: string;
|
68
79
|
title: string;
|
80
|
+
twice_a_month: string;
|
81
|
+
twice_a_month_ordinal: string;
|
69
82
|
transaction_details_drawer_title: string;
|
70
83
|
upcoming: string;
|
71
84
|
upcoming_activity: string;
|
72
85
|
upcoming_on: string;
|
73
86
|
unknown: string;
|
87
|
+
weekday_sunday: string;
|
88
|
+
weekday_monday: string;
|
89
|
+
weekday_tuesday: string;
|
90
|
+
weekday_wednesday: string;
|
91
|
+
weekday_thursday: string;
|
92
|
+
weekday_friday: string;
|
93
|
+
weekday_saturday: string;
|
74
94
|
weekly: string;
|
75
95
|
weekly_ordinal: string;
|
76
96
|
}
|