taxtank-core 3.0.4 → 3.0.6
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-common.mjs +20 -20
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +481 -476
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +16 -15
- package/{index.d.ts → types/taxtank-core.d.ts} +1 -0
- package/types/taxtank-core.d.ts.map +1 -0
- package/index.d.ts.map +0 -1
- /package/{common/index.d.ts → types/taxtank-core-common.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taxtank-core",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@angular/common": "^
|
|
7
|
-
"@angular/compiler": "^
|
|
8
|
-
"@angular/core": "^
|
|
9
|
-
"@angular/forms": "^
|
|
10
|
-
"@angular/platform-browser": "^
|
|
11
|
-
"@angular/platform-browser-dynamic": "^
|
|
12
|
-
"@angular/router": "^
|
|
6
|
+
"@angular/common": "^22.0.0",
|
|
7
|
+
"@angular/compiler": "^22.0.0",
|
|
8
|
+
"@angular/core": "^22.0.0",
|
|
9
|
+
"@angular/forms": "^22.0.0",
|
|
10
|
+
"@angular/platform-browser": "^22.0.0",
|
|
11
|
+
"@angular/platform-browser-dynamic": "^22.0.0",
|
|
12
|
+
"@angular/router": "^22.0.0",
|
|
13
13
|
"@auth0/angular-jwt": "^5.2.0",
|
|
14
14
|
"@rxweb/reactive-form-validators": "^13.0.1",
|
|
15
15
|
"@types/facebook-js-sdk": "^3.3.10",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"class-transformer": "^0.5.1",
|
|
23
23
|
"event-source-polyfill": "^1.0.31",
|
|
24
24
|
"file-saver": "^2.0.5",
|
|
25
|
-
"html2pdf.js": "^0.
|
|
26
|
-
"jspdf": "^
|
|
25
|
+
"html2pdf.js": "^0.14.0",
|
|
26
|
+
"jspdf": "^4.2.1",
|
|
27
27
|
"jspdf-autotable": "^5.0.2",
|
|
28
28
|
"lodash": "^4.17.21",
|
|
29
29
|
"mixpanel-browser": "^2.49.0",
|
|
@@ -33,25 +33,26 @@
|
|
|
33
33
|
"ngx-pipes": "^3.2.2",
|
|
34
34
|
"rxjs": "~7.8.0",
|
|
35
35
|
"@e965/xlsx": "^0.20.3",
|
|
36
|
-
"primeng": "^
|
|
36
|
+
"primeng": "^21.0.0 || ^22.0.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"tslib": "^2.8.1"
|
|
40
40
|
},
|
|
41
41
|
"module": "fesm2022/taxtank-core.mjs",
|
|
42
|
-
"typings": "
|
|
42
|
+
"typings": "types/taxtank-core.d.ts",
|
|
43
43
|
"exports": {
|
|
44
44
|
"./package.json": {
|
|
45
45
|
"default": "./package.json"
|
|
46
46
|
},
|
|
47
47
|
".": {
|
|
48
|
-
"types": "./
|
|
48
|
+
"types": "./types/taxtank-core.d.ts",
|
|
49
49
|
"default": "./fesm2022/taxtank-core.mjs"
|
|
50
50
|
},
|
|
51
51
|
"./common": {
|
|
52
|
-
"types": "./common
|
|
52
|
+
"types": "./types/taxtank-core-common.d.ts",
|
|
53
53
|
"default": "./fesm2022/taxtank-core-common.mjs"
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
|
-
"sideEffects": false
|
|
56
|
+
"sideEffects": false,
|
|
57
|
+
"type": "module"
|
|
57
58
|
}
|
|
@@ -10447,6 +10447,7 @@ declare class MyTaxEstimate {
|
|
|
10447
10447
|
percentageOfTaxPaid: number;
|
|
10448
10448
|
taxOffsets: number;
|
|
10449
10449
|
netRefund: number;
|
|
10450
|
+
studentLoanRepayment: number;
|
|
10450
10451
|
static fromTaxSummary(taxSummary: TaxSummary): MyTaxEstimate;
|
|
10451
10452
|
static getLowMiddleIncomeTaxOffsets(taxOffsetsReportItem: ReportItem): number;
|
|
10452
10453
|
static getTaxOffsets(taxOffsetsReportItemAmount: number, lowMiddleIncomeTaxOffsets: number): number;
|