taxtank-core 2.0.77 → 2.0.78
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/README.md +5 -5
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +21 -11
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5002,6 +5002,9 @@ declare class CalendarEvent implements EventInput {
|
|
|
5002
5002
|
};
|
|
5003
5003
|
title: string;
|
|
5004
5004
|
date: Date;
|
|
5005
|
+
private today;
|
|
5006
|
+
get isOverdue(): boolean;
|
|
5007
|
+
get isUpcoming(): boolean;
|
|
5005
5008
|
}
|
|
5006
5009
|
|
|
5007
5010
|
/**
|
|
@@ -12051,7 +12054,7 @@ declare function toArray<T>(data: T | T[]): T[];
|
|
|
12051
12054
|
* - Iteratively adds the appropriate duration (week/month) until the end date is reached.
|
|
12052
12055
|
* - Returns all occurrence dates including the start date and the last valid recurrence.
|
|
12053
12056
|
*/
|
|
12054
|
-
declare function recurringDates(
|
|
12057
|
+
declare function recurringDates(frequency: DailyFrequencyEnum, startDate: Date, endDate?: Date): Date[];
|
|
12055
12058
|
|
|
12056
12059
|
declare const ADBLOCK_ERROR_HTML: InjectionToken<string>;
|
|
12057
12060
|
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";
|