taxtank-core 3.0.6 → 3.0.8
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 +20 -20
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +501 -492
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/{types/taxtank-core.d.ts → index.d.ts} +4 -0
- package/package.json +15 -16
- package/types/taxtank-core.d.ts.map +0 -1
- /package/{types/taxtank-core-common.d.ts → common/index.d.ts} +0 -0
|
@@ -4653,6 +4653,10 @@ declare class Transaction extends Transaction$1 implements Expense {
|
|
|
4653
4653
|
get claimableTax(): number;
|
|
4654
4654
|
get month(): number;
|
|
4655
4655
|
inBudget(rule: BudgetRule): boolean;
|
|
4656
|
+
/**
|
|
4657
|
+
* @TODO claimAmount from backend shouldn't include share%(sharedClaimAmount should), the method is workaround
|
|
4658
|
+
*/
|
|
4659
|
+
get grossClaimAmount(): number;
|
|
4656
4660
|
}
|
|
4657
4661
|
|
|
4658
4662
|
declare class AllocationRule extends AllocationRule$1 {
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taxtank-core",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.8",
|
|
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": "^20.1.3",
|
|
7
|
+
"@angular/compiler": "^20.1.3",
|
|
8
|
+
"@angular/core": "^20.1.3",
|
|
9
|
+
"@angular/forms": "^20.1.3",
|
|
10
|
+
"@angular/platform-browser": "^20.1.3",
|
|
11
|
+
"@angular/platform-browser-dynamic": "^20.1.3",
|
|
12
|
+
"@angular/router": "^20.1.3",
|
|
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.12.1",
|
|
26
|
+
"jspdf": "^3.0.3",
|
|
27
27
|
"jspdf-autotable": "^5.0.2",
|
|
28
28
|
"lodash": "^4.17.21",
|
|
29
29
|
"mixpanel-browser": "^2.49.0",
|
|
@@ -33,26 +33,25 @@
|
|
|
33
33
|
"ngx-pipes": "^3.2.2",
|
|
34
34
|
"rxjs": "~7.8.0",
|
|
35
35
|
"@e965/xlsx": "^0.20.3",
|
|
36
|
-
"primeng": "^
|
|
36
|
+
"primeng": "^20.4.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": "index.d.ts",
|
|
43
43
|
"exports": {
|
|
44
44
|
"./package.json": {
|
|
45
45
|
"default": "./package.json"
|
|
46
46
|
},
|
|
47
47
|
".": {
|
|
48
|
-
"types": "./
|
|
48
|
+
"types": "./index.d.ts",
|
|
49
49
|
"default": "./fesm2022/taxtank-core.mjs"
|
|
50
50
|
},
|
|
51
51
|
"./common": {
|
|
52
|
-
"types": "./
|
|
52
|
+
"types": "./common/index.d.ts",
|
|
53
53
|
"default": "./fesm2022/taxtank-core-common.mjs"
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
|
-
"sideEffects": false
|
|
57
|
-
"type": "module"
|
|
56
|
+
"sideEffects": false
|
|
58
57
|
}
|