taxtank-core 0.18.1 → 0.19.2
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/bundles/taxtank-core.umd.js +1091 -115
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/collections/collection.js +2 -1
- package/esm2015/lib/collections/depreciation.collection.js +6 -3
- package/esm2015/lib/collections/transaction/transaction.collection.js +11 -7
- package/esm2015/lib/db/Enums/chart-accounts-heading-list.enum.js +20 -1
- package/esm2015/lib/db/Enums/chart-accounts-list.enum.js +37 -1
- package/esm2015/lib/db/Enums/chart-accounts-metadata-list.enum.js +4 -1
- package/esm2015/lib/forms/bank/bank-account.form.js +16 -3
- package/esm2015/lib/forms/index.js +2 -1
- package/esm2015/lib/forms/report/my-tax/index.js +14 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-business-or-losses.form.js +10 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-deductions.form.js +75 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-dividends.form.js +23 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-employee-share-schemes.form.js +14 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-income-statements.form.js +92 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-income-tests.form.js +10 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-interest.form.js +12 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-losses.form.js +10 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-medicare.form.js +33 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-offsets.form.js +10 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-other-income.form.js +38 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-partnerships-and-trusts.form.js +32 -0
- package/esm2015/lib/forms/report/my-tax/my-tax-rent.form.js +13 -0
- package/esm2015/lib/models/bank/bank-account-property.js +2 -2
- package/esm2015/lib/models/pdf/pdf-settings.js +3 -1
- package/esm2015/lib/models/report/my-tax/ato-links.js +11 -0
- package/esm2015/lib/models/report/my-tax/my-tax-business-or-losses/my-tax-business-or-losses.js +8 -0
- package/esm2015/lib/models/report/my-tax/my-tax-deductions/deduction-clothing-type.enum.js +13 -0
- package/esm2015/lib/models/report/my-tax/my-tax-deductions/deduction-fields.const.js +57 -0
- package/esm2015/lib/models/report/my-tax/my-tax-deductions/deduction-self-education-type.enum.js +10 -0
- package/esm2015/lib/models/report/my-tax/my-tax-deductions/my-tax-deductions.js +72 -0
- package/esm2015/lib/models/report/my-tax/my-tax-dividends/my-tax-dividends.js +18 -0
- package/esm2015/lib/models/report/my-tax/my-tax-employee-share-schemes/my-tax-employee-share-schemes.js +24 -0
- package/esm2015/lib/models/report/my-tax/my-tax-income-statements/my-tax-income-statements.js +68 -0
- package/esm2015/lib/models/report/my-tax/my-tax-income-tests/my-tax-income-tests.js +8 -0
- package/esm2015/lib/models/report/my-tax/my-tax-interest/my-tax-interest.js +11 -0
- package/esm2015/lib/models/report/my-tax/my-tax-losses/my-tax-losses.js +10 -0
- package/esm2015/lib/models/report/my-tax/my-tax-offsets/my-tax-offsets.js +8 -0
- package/esm2015/lib/models/report/my-tax/my-tax-other-income/my-tax-other-income.js +28 -0
- package/esm2015/lib/models/report/my-tax/my-tax-partnerships-and-trusts/my-tax-partnerships-and-trusts.js +31 -0
- package/esm2015/lib/models/report/my-tax/my-tax-rent/my-tax-rent.js +24 -0
- package/esm2015/lib/models/transaction/transaction.js +2 -1
- package/esm2015/lib/services/event/sse.service.js +4 -1
- package/esm2015/lib/services/http/user/user.service.js +1 -1
- package/esm2015/lib/services/pdf/pdf-from-dom-element/file-settings.js +19 -0
- package/esm2015/lib/services/pdf/pdf-from-dom-element/pdf-from-dom-element.service.js +35 -0
- package/esm2015/lib/services/pdf/pdf-from-table/file-settings.js +31 -0
- package/esm2015/lib/services/pdf/pdf-from-table/pdf-from-data-table/pdf-from-data-table.service.js +40 -0
- package/esm2015/lib/services/pdf/pdf-from-table/pdf-from-html-table/pdf-from-html-table.service.js +40 -0
- package/esm2015/lib/services/pdf/pdf-from-table/pdf-from-table.service.js +53 -0
- package/esm2015/lib/validators/index.js +2 -1
- package/esm2015/lib/validators/require-select.validator.js +15 -0
- package/esm2015/public-api.js +21 -2
- package/fesm2015/taxtank-core.js +995 -105
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/collections/collection.d.ts +2 -2
- package/lib/collections/depreciation.collection.d.ts +3 -2
- package/lib/collections/transaction/transaction.collection.d.ts +5 -4
- package/lib/db/Enums/chart-accounts-heading-list.enum.d.ts +20 -1
- package/lib/db/Enums/chart-accounts-list.enum.d.ts +37 -1
- package/lib/db/Enums/chart-accounts-metadata-list.enum.d.ts +4 -1
- package/lib/forms/bank/bank-account.form.d.ts +7 -0
- package/lib/forms/index.d.ts +1 -0
- package/lib/forms/report/my-tax/index.d.ts +13 -0
- package/lib/forms/report/my-tax/my-tax-business-or-losses.form.d.ts +8 -0
- package/lib/forms/report/my-tax/my-tax-deductions.form.d.ts +5 -0
- package/lib/forms/report/my-tax/my-tax-dividends.form.d.ts +5 -0
- package/lib/forms/report/my-tax/my-tax-employee-share-schemes.form.d.ts +5 -0
- package/lib/forms/report/my-tax/my-tax-income-statements.form.d.ts +7 -0
- package/lib/forms/report/my-tax/my-tax-income-tests.form.d.ts +8 -0
- package/lib/forms/report/my-tax/my-tax-interest.form.d.ts +5 -0
- package/lib/forms/report/my-tax/my-tax-losses.form.d.ts +8 -0
- package/lib/forms/report/my-tax/my-tax-medicare.form.d.ts +9 -0
- package/lib/forms/report/my-tax/my-tax-offsets.form.d.ts +8 -0
- package/lib/forms/report/my-tax/my-tax-other-income.form.d.ts +5 -0
- package/lib/forms/report/my-tax/my-tax-partnerships-and-trusts.form.d.ts +5 -0
- package/lib/forms/report/my-tax/my-tax-rent.form.d.ts +5 -0
- package/lib/models/report/my-tax/ato-links.d.ts +6 -0
- package/lib/models/report/my-tax/my-tax-business-or-losses/my-tax-business-or-losses.d.ts +7 -0
- package/lib/models/report/my-tax/my-tax-deductions/deduction-clothing-type.enum.d.ts +11 -0
- package/lib/models/report/my-tax/my-tax-deductions/deduction-fields.const.d.ts +8 -0
- package/lib/models/report/my-tax/my-tax-deductions/deduction-self-education-type.enum.d.ts +8 -0
- package/lib/models/report/my-tax/my-tax-deductions/my-tax-deductions.d.ts +39 -0
- package/lib/models/report/my-tax/my-tax-dividends/my-tax-dividends.d.ts +9 -0
- package/lib/models/report/my-tax/my-tax-employee-share-schemes/my-tax-employee-share-schemes.d.ts +10 -0
- package/lib/models/report/my-tax/my-tax-income-statements/my-tax-income-statements.d.ts +30 -0
- package/lib/models/report/my-tax/my-tax-income-tests/my-tax-income-tests.d.ts +7 -0
- package/lib/models/report/my-tax/my-tax-interest/my-tax-interest.d.ts +9 -0
- package/lib/models/report/my-tax/my-tax-losses/my-tax-losses.d.ts +8 -0
- package/lib/models/report/my-tax/my-tax-offsets/my-tax-offsets.d.ts +7 -0
- package/lib/models/report/my-tax/my-tax-other-income/my-tax-other-income.d.ts +13 -0
- package/lib/models/report/my-tax/my-tax-partnerships-and-trusts/my-tax-partnerships-and-trusts.d.ts +17 -0
- package/lib/models/report/my-tax/my-tax-rent/my-tax-rent.d.ts +11 -0
- package/lib/models/transaction/transaction.d.ts +3 -1
- package/lib/services/event/sse.service.d.ts +3 -0
- package/lib/services/pdf/pdf-from-dom-element/file-settings.d.ts +6 -0
- package/lib/services/pdf/pdf-from-dom-element/pdf-from-dom-element.service.d.ts +13 -0
- package/lib/services/pdf/pdf-from-table/file-settings.d.ts +8 -0
- package/lib/services/pdf/pdf-from-table/pdf-from-data-table/pdf-from-data-table.service.d.ts +19 -0
- package/lib/services/pdf/pdf-from-table/pdf-from-html-table/pdf-from-html-table.service.d.ts +15 -0
- package/lib/services/pdf/pdf-from-table/pdf-from-table.service.d.ts +16 -0
- package/lib/validators/index.d.ts +1 -0
- package/lib/validators/require-select.validator.d.ts +5 -0
- package/package.json +2 -1
- package/public-api.d.ts +20 -1
- package/esm2015/lib/models/pdf/pdf-config.js +0 -43
- package/esm2015/lib/services/pdf/pdf.service.js +0 -99
- package/lib/models/pdf/pdf-config.d.ts +0 -8
- package/lib/services/pdf/pdf.service.d.ts +0 -29
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.