@dangl/angular-ava 1.5.2-beta0101 → 1.5.3
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/package.json
CHANGED
|
@@ -1267,6 +1267,9 @@ declare enum SourceType {
|
|
|
1267
1267
|
type InvoiceTitleMap = {
|
|
1268
1268
|
[K in InvoiceType]: string;
|
|
1269
1269
|
};
|
|
1270
|
+
type InvoiceTotalsToBePaidMap = {
|
|
1271
|
+
[K in InvoiceType]: string;
|
|
1272
|
+
};
|
|
1270
1273
|
interface ITextWordInvoice {
|
|
1271
1274
|
invoiceTitle: InvoiceTitleMap;
|
|
1272
1275
|
invoiceBuyerTitle: string;
|
|
@@ -1302,7 +1305,7 @@ interface ITextWordInvoice {
|
|
|
1302
1305
|
totalsTotalVatAmount: string;
|
|
1303
1306
|
totalsTotalGross: string;
|
|
1304
1307
|
totalsAlreadyPaidTotal: string;
|
|
1305
|
-
|
|
1308
|
+
totalsTotalToBePaidMap: InvoiceTotalsToBePaidMap;
|
|
1306
1309
|
instructionsTopic: string;
|
|
1307
1310
|
instructionsAccountIdentifier: string;
|
|
1308
1311
|
instructionsAccountName: string;
|
|
@@ -1711,7 +1714,7 @@ declare class InvoiceDisplayComponent implements OnInit {
|
|
|
1711
1714
|
* You can supply a map of strings to be used for the text in the tree. This allows you to translate
|
|
1712
1715
|
* the text in the tree to other languages.
|
|
1713
1716
|
* {
|
|
1714
|
-
* invoiceTitle:
|
|
1717
|
+
* invoiceTitle: InvoiceTitleMap;
|
|
1715
1718
|
* vatId: string;
|
|
1716
1719
|
* detailsInvoiceNumber: string;
|
|
1717
1720
|
* detailsInvoiceDate: string;
|
|
@@ -1741,7 +1744,7 @@ declare class InvoiceDisplayComponent implements OnInit {
|
|
|
1741
1744
|
* totalsTotalVatAmount: string;
|
|
1742
1745
|
* totalsTotalGross: string;
|
|
1743
1746
|
* totalsAlreadyPaidTotal: string;
|
|
1744
|
-
*
|
|
1747
|
+
* totalsTotalToBePaidMap: InvoiceTotalsToBePaidMap;
|
|
1745
1748
|
* instructionsTopic: string;
|
|
1746
1749
|
* instructionsAccountIdentifier: string;
|
|
1747
1750
|
* instructionsAccountName: string;
|
|
@@ -1761,6 +1764,7 @@ declare class InvoiceDisplayComponent implements OnInit {
|
|
|
1761
1764
|
readonly config: _angular_core.InputSignalWithTransform<IConfigurationInvoice | null, IConfigurationInvoice>;
|
|
1762
1765
|
private readonly linkedConfig;
|
|
1763
1766
|
invoiceTitle: _angular_core.WritableSignal<string>;
|
|
1767
|
+
totalsTotalToBePaidTitle: _angular_core.WritableSignal<string>;
|
|
1764
1768
|
private destroyRef;
|
|
1765
1769
|
constructor();
|
|
1766
1770
|
ngOnInit(): void;
|