@mx-cartographer/experiences 6.2.2 → 6.2.3-alpha.bb1
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/dist/cashflow/components/DetailsExpenseRow.d.ts +2 -2
- package/dist/cashflow/stores/UiStore.d.ts +6 -6
- package/dist/cashflow/util/Filters.d.ts +2 -2
- package/dist/index.es.js +17689 -17684
- package/dist/index.es.js.map +1 -1
- package/dist/recurringtransactions/stores/RecurringTransactionsStore.d.ts +2 -0
- package/package.json +1 -1
@@ -1,11 +1,11 @@
|
|
1
1
|
import { default as React } from 'react';
|
2
|
-
import {
|
2
|
+
import { Recurrence } from '../../common';
|
3
3
|
export declare enum ExpenseType {
|
4
4
|
EXPENSE = "expense",
|
5
5
|
INCOME = "income"
|
6
6
|
}
|
7
7
|
interface DetailsExpenseRowType {
|
8
|
-
|
8
|
+
recurrence: Recurrence;
|
9
9
|
}
|
10
10
|
declare const _default: React.FunctionComponent<DetailsExpenseRowType>;
|
11
11
|
export default _default;
|
@@ -1,17 +1,17 @@
|
|
1
|
-
import { Account,
|
1
|
+
import { Account, Recurrence } from '../../common';
|
2
2
|
export declare class UiStore {
|
3
3
|
dateRange: {
|
4
4
|
start: Date;
|
5
5
|
end: Date;
|
6
6
|
};
|
7
7
|
isDirty: boolean;
|
8
|
-
nextIncome:
|
9
|
-
upcomingExpenses:
|
8
|
+
nextIncome: Recurrence | undefined;
|
9
|
+
upcomingExpenses: Recurrence[];
|
10
10
|
selectedCashAccounts: Account[];
|
11
11
|
constructor();
|
12
12
|
get daysUntilNextIncome(): number;
|
13
|
-
get expensesTilNextIncome():
|
14
|
-
setNextIncome: (nextIncome:
|
15
|
-
setUpcomingExpenses: (expenses:
|
13
|
+
get expensesTilNextIncome(): Recurrence[];
|
14
|
+
setNextIncome: (nextIncome: Recurrence) => void;
|
15
|
+
setUpcomingExpenses: (expenses: Recurrence[]) => void;
|
16
16
|
setSelectedCashAccounts: (accounts: Account[]) => Account[];
|
17
17
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Account,
|
1
|
+
import { Account, Recurrence } from '../../common';
|
2
2
|
/**
|
3
3
|
* Returns activities that match the given account and date range
|
4
4
|
* @param account The account
|
@@ -7,4 +7,4 @@ import { Account, Activity } from '../../common';
|
|
7
7
|
export declare const activityFilter: (account: Account, dateRange: {
|
8
8
|
start: Date;
|
9
9
|
end: Date;
|
10
|
-
}) => (
|
10
|
+
}) => (r: Recurrence) => boolean;
|