taxtank-core 2.0.77 → 2.0.79
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/fesm2022/taxtank-core.mjs +20 -14
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +4 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2016,10 +2016,6 @@ declare class ChartSerie {
|
|
|
2016
2016
|
value: number;
|
|
2017
2017
|
}
|
|
2018
2018
|
|
|
2019
|
-
/**
|
|
2020
|
-
* Chart data class
|
|
2021
|
-
* @TODO consider rename to ChartSerie
|
|
2022
|
-
*/
|
|
2023
2019
|
declare class ChartData {
|
|
2024
2020
|
name: string;
|
|
2025
2021
|
data: ChartSerie[];
|
|
@@ -5002,6 +4998,9 @@ declare class CalendarEvent implements EventInput {
|
|
|
5002
4998
|
};
|
|
5003
4999
|
title: string;
|
|
5004
5000
|
date: Date;
|
|
5001
|
+
private today;
|
|
5002
|
+
get isOverdue(): boolean;
|
|
5003
|
+
get isUpcoming(): boolean;
|
|
5005
5004
|
}
|
|
5006
5005
|
|
|
5007
5006
|
/**
|
|
@@ -12051,7 +12050,7 @@ declare function toArray<T>(data: T | T[]): T[];
|
|
|
12051
12050
|
* - Iteratively adds the appropriate duration (week/month) until the end date is reached.
|
|
12052
12051
|
* - Returns all occurrence dates including the start date and the last valid recurrence.
|
|
12053
12052
|
*/
|
|
12054
|
-
declare function recurringDates(
|
|
12053
|
+
declare function recurringDates(frequency: DailyFrequencyEnum, startDate: Date, endDate?: Date): Date[];
|
|
12055
12054
|
|
|
12056
12055
|
declare const ADBLOCK_ERROR_HTML: InjectionToken<string>;
|
|
12057
12056
|
declare const ADBLOCK_ERROR_HTML_VALUE = "\n <div class=\"text-center\">\n <strong>Action needed - Your adblocker is blocking CoreLogic</strong>\n To add a property in TaxTank we need to fetch data from CoreLogic \u2014 but your ad blocker is getting in the way.\n Please disable your adblocker or whitelist TaxTank to continue.\n <a class=\"btn\" target=\"_blank\" href=\"https://support.taxtank.com.au/en/articles/10505609-how-to-ensure-seamless-functionality-while-using-ad-blockers-with-taxtank\">Learn more</a>\n </div>\n";
|