@mx-cartographer/experiences 6.26.10-alpha.san1 → 6.26.10

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/index.es.js CHANGED
@@ -9541,43 +9541,43 @@ class dm {
9541
9541
  * Calculates the total amount of all expenses for the current month.
9542
9542
  */
9543
9543
  get expenseTotal() {
9544
- return this.expenses.reduce(zn, 0);
9544
+ return this.currentMonthExpenses.reduce(zn, 0);
9545
9545
  }
9546
9546
  /**
9547
9547
  * Calculates the total amount of all paid expenses for the current month.
9548
9548
  */
9549
9549
  get paidExpenseTotal() {
9550
- return this.expenses.filter((n) => n.status === Je.Paid).reduce(zn, 0);
9550
+ return this.currentMonthExpenses.filter((n) => n.status === Je.Paid).reduce(zn, 0);
9551
9551
  }
9552
9552
  /**
9553
9553
  * Calculates the total amount of all missed expenses for the current month.
9554
9554
  */
9555
9555
  get missedExpenseTotal() {
9556
- return this.expenses.filter((n) => n.status === Je.Missed).reduce(zn, 0);
9556
+ return this.currentMonthExpenses.filter((n) => n.status === Je.Missed).reduce(zn, 0);
9557
9557
  }
9558
9558
  /**
9559
9559
  * Calculates the total amount of all upcoming expenses for the current month.
9560
9560
  */
9561
9561
  get upcomingExpenseTotal() {
9562
- return this.expenses.filter((n) => n.status === Je.Upcoming).reduce(zn, 0);
9562
+ return this.currentMonthExpenses.filter((n) => n.status === Je.Upcoming).reduce(zn, 0);
9563
9563
  }
9564
9564
  /**
9565
9565
  * Calculates the total amount of all income for the current month.
9566
9566
  */
9567
9567
  get incomeTotal() {
9568
- return this.income.reduce(zn, 0);
9568
+ return this.currentMonthIncome.reduce(zn, 0);
9569
9569
  }
9570
9570
  /**
9571
9571
  * Calculates the total amount of all paid income for the current month.
9572
9572
  */
9573
9573
  get paidIncomeTotal() {
9574
- return this.income.filter((n) => n.status === Je.Paid).reduce(zn, 0);
9574
+ return this.currentMonthIncome.filter((n) => n.status === Je.Paid).reduce(zn, 0);
9575
9575
  }
9576
9576
  /**
9577
9577
  * Calculates the total amount of all upcoming income for the current month.
9578
9578
  */
9579
9579
  get upcomingIncomeTotal() {
9580
- return this.income.filter((n) => n.status === Je.Upcoming).reduce(zn, 0);
9580
+ return this.currentMonthIncome.filter((n) => n.status === Je.Upcoming).reduce(zn, 0);
9581
9581
  }
9582
9582
  /**
9583
9583
  * Get the recurrences for the currently selected day.