taxtank-core 2.0.65 → 2.0.67
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 +72 -22
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +5 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5501,12 +5501,13 @@ declare class FinancialGoal extends AbstractModel implements FinancialGoalInterf
|
|
|
5501
5501
|
startDate: Date;
|
|
5502
5502
|
endDate: Date;
|
|
5503
5503
|
bankAccount: BankAccount$1;
|
|
5504
|
-
paymentFrequency:
|
|
5504
|
+
paymentFrequency: any;
|
|
5505
5505
|
paymentAmount: number;
|
|
5506
5506
|
inCalendar: boolean;
|
|
5507
5507
|
properties: Property$1[];
|
|
5508
5508
|
file: AppFile;
|
|
5509
5509
|
isCompleted(): boolean;
|
|
5510
|
+
isPropertyType(): boolean;
|
|
5510
5511
|
/**
|
|
5511
5512
|
* today's forecasted progress
|
|
5512
5513
|
*/
|
|
@@ -8637,6 +8638,8 @@ declare class PdfFromDomElementService {
|
|
|
8637
8638
|
private init;
|
|
8638
8639
|
download(elements: NodeListOf<HTMLElement>, fileSettings?: PdfSettings): Observable<unknown>;
|
|
8639
8640
|
export(elements: NodeListOf<HTMLElement>, filename?: string): Observable<unknown>;
|
|
8641
|
+
private collectScopeTokens;
|
|
8642
|
+
private syncComponentStyles;
|
|
8640
8643
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdfFromDomElementService, never>;
|
|
8641
8644
|
static ɵprov: i0.ɵɵInjectableDeclaration<PdfFromDomElementService>;
|
|
8642
8645
|
}
|
|
@@ -9016,9 +9019,9 @@ declare class LoanForm extends AbstractForm<Loan> {
|
|
|
9016
9019
|
declare class FinancialGoalForm extends AbstractForm<FinancialGoal> implements IEventListener {
|
|
9017
9020
|
includeDisabledFields: boolean;
|
|
9018
9021
|
bankAccountTypes: BankAccountTypeEnum[];
|
|
9019
|
-
isDebit: boolean;
|
|
9020
9022
|
constructor(goal?: FinancialGoal);
|
|
9021
9023
|
listenEvents(): void;
|
|
9024
|
+
isPropertyType(): boolean;
|
|
9022
9025
|
listenTypeChanges(): void;
|
|
9023
9026
|
/**
|
|
9024
9027
|
* Watch payment fields and auto-recalculate endDate when form is valid
|
|
@@ -9042,7 +9045,6 @@ declare class FinancialGoalForm extends AbstractForm<FinancialGoal> implements I
|
|
|
9042
9045
|
*/
|
|
9043
9046
|
calculatePaymentsByAmount(): number;
|
|
9044
9047
|
getBankAccountTypes(type: FinancialGoalTypeEnum): BankAccountTypeEnum[];
|
|
9045
|
-
getIsDebit(type: FinancialGoalTypeEnum): boolean;
|
|
9046
9048
|
}
|
|
9047
9049
|
|
|
9048
9050
|
declare class FirmForm extends AbstractForm<Firm> {
|