@dangl/angular-ava 1.1.2-beta0082 → 1.1.2-beta0089
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 +1 -1
- package/fesm2022/dangl-angular-ava.mjs +56 -54
- package/fesm2022/dangl-angular-ava.mjs.map +1 -1
- package/lib/ava-tree/invoice/invoice-display/invoice-display.component.d.ts +46 -37
- package/lib/ava-tree/tree/components/ava-tree/ava-tree.component.d.ts +2 -2
- package/lib/ava-tree/tree/constants/defaultTextWords.d.ts +12 -12
- package/lib/ava-tree/tree/model/invoice-words.model.d.ts +36 -36
- package/package.json +1 -1
|
@@ -8,45 +8,54 @@ export declare class InvoiceDisplayComponent {
|
|
|
8
8
|
* You can supply a map of strings to be used for the text in the tree. This allows you to translate
|
|
9
9
|
* the text in the tree to other languages.
|
|
10
10
|
* {
|
|
11
|
-
* invoiceTitle
|
|
12
|
-
* vatId
|
|
13
|
-
* detailsInvoiceNumber
|
|
14
|
-
* detailsInvoiceDate
|
|
15
|
-
* detailsPaymentDueDate
|
|
16
|
-
* detailsCurrencyCode
|
|
17
|
-
* detailsPaymentTerms
|
|
18
|
-
* referencesTopic
|
|
19
|
-
* referencesBuyerReference
|
|
20
|
-
* referencesProjectReference
|
|
21
|
-
* referencesContractReference
|
|
22
|
-
* referencesPurchaseOrderReference
|
|
23
|
-
* referencesSalesOrderReference
|
|
24
|
-
* referencesReceivingAdviceReference
|
|
25
|
-
* referencesDispatchAdviceReference
|
|
26
|
-
* referencesTenderOrLotReference
|
|
27
|
-
* referencesInvoicedObjectIdentifier
|
|
28
|
-
* tableHeadDescription
|
|
29
|
-
* tableHeadQuantity
|
|
30
|
-
* tableHeadUnit
|
|
31
|
-
* tableHeadNetPrice
|
|
32
|
-
* tableHeadNetAmount
|
|
33
|
-
* totalsTopic
|
|
34
|
-
* totalsTotalNet
|
|
35
|
-
* totalsTotalAllowances
|
|
36
|
-
* totalsTotalCharges
|
|
37
|
-
* totalsTotalAfterDeductions
|
|
38
|
-
* totalsTotalVatAmount
|
|
39
|
-
* totalsTotalGross
|
|
40
|
-
* totalsAlreadyPaidTotal
|
|
41
|
-
* totalsTotalToBePaid
|
|
42
|
-
* instructionsTopic
|
|
43
|
-
* instructionsAccountIdentifier
|
|
44
|
-
* instructionsAccountName
|
|
45
|
-
* instructionsServiceProviderIdentifier
|
|
46
|
-
* notesTopic
|
|
11
|
+
* invoiceTitle: string;
|
|
12
|
+
* vatId: string;
|
|
13
|
+
* detailsInvoiceNumber: string;
|
|
14
|
+
* detailsInvoiceDate: string;
|
|
15
|
+
* detailsPaymentDueDate: string;
|
|
16
|
+
* detailsCurrencyCode: string;
|
|
17
|
+
* detailsPaymentTerms: string;
|
|
18
|
+
* referencesTopic: string;
|
|
19
|
+
* referencesBuyerReference: string;
|
|
20
|
+
* referencesProjectReference: string;
|
|
21
|
+
* referencesContractReference: string;
|
|
22
|
+
* referencesPurchaseOrderReference: string;
|
|
23
|
+
* referencesSalesOrderReference: string;
|
|
24
|
+
* referencesReceivingAdviceReference: string;
|
|
25
|
+
* referencesDispatchAdviceReference: string;
|
|
26
|
+
* referencesTenderOrLotReference: string;
|
|
27
|
+
* referencesInvoicedObjectIdentifier: string;
|
|
28
|
+
* tableHeadDescription: string;
|
|
29
|
+
* tableHeadQuantity: string;
|
|
30
|
+
* tableHeadUnit: string;
|
|
31
|
+
* tableHeadNetPrice: string;
|
|
32
|
+
* tableHeadNetAmount: string;
|
|
33
|
+
* totalsTopic: string;
|
|
34
|
+
* totalsTotalNet: string;
|
|
35
|
+
* totalsTotalAllowances: string;
|
|
36
|
+
* totalsTotalCharges: string;
|
|
37
|
+
* totalsTotalAfterDeductions: string;
|
|
38
|
+
* totalsTotalVatAmount: string;
|
|
39
|
+
* totalsTotalGross: string;
|
|
40
|
+
* totalsAlreadyPaidTotal: string;
|
|
41
|
+
* totalsTotalToBePaid: string;
|
|
42
|
+
* instructionsTopic: string;
|
|
43
|
+
* instructionsAccountIdentifier: string;
|
|
44
|
+
* instructionsAccountName: string;
|
|
45
|
+
* instructionsServiceProviderIdentifier: string;
|
|
46
|
+
* notesTopic: string;
|
|
47
|
+
* attachmentsHeading: string;
|
|
48
|
+
* attachmentsName: string;
|
|
49
|
+
* attachmentsDescription: string;
|
|
50
|
+
* attachmentsUrl: string;
|
|
51
|
+
* attachmentsDataSize: string;
|
|
52
|
+
* attachmentsMimeType: string;
|
|
53
|
+
* attachmentsFileName: string;
|
|
54
|
+
* attachmentsDownloadButton: string;
|
|
55
|
+
*
|
|
47
56
|
* }
|
|
48
57
|
*/
|
|
49
|
-
set textWords(words: ITextWordInvoice
|
|
58
|
+
set textWords(words: ITextWordInvoice);
|
|
50
59
|
get textWords(): ITextWordInvoice;
|
|
51
60
|
constructor();
|
|
52
61
|
download(documentValue: SupportingDocument): void;
|
|
@@ -82,8 +82,8 @@ export declare class AvaTreeComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
82
82
|
* tooltipAllRemove: string,
|
|
83
83
|
* }
|
|
84
84
|
*/
|
|
85
|
-
set textWords(words: ITextWords
|
|
86
|
-
get textWords(): ITextWords
|
|
85
|
+
set textWords(words: ITextWords);
|
|
86
|
+
get textWords(): ITextWords;
|
|
87
87
|
private _textWords;
|
|
88
88
|
setTreeWords(): void;
|
|
89
89
|
/**
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export interface ITextWords {
|
|
2
|
-
textSearch
|
|
3
|
-
textNothing
|
|
4
|
-
textNothingFiltered
|
|
5
|
-
textAll
|
|
6
|
-
tooltipAllOpen
|
|
7
|
-
tooltipAllClose
|
|
8
|
-
tooltipAllAdd
|
|
9
|
-
tooltipAllRemove
|
|
10
|
-
defaultNameNoteText
|
|
11
|
-
defaultNameDescription
|
|
12
|
-
defaultNameGroup
|
|
13
|
-
defaultNamePosition
|
|
2
|
+
textSearch: string;
|
|
3
|
+
textNothing: string;
|
|
4
|
+
textNothingFiltered: string;
|
|
5
|
+
textAll: string;
|
|
6
|
+
tooltipAllOpen: string;
|
|
7
|
+
tooltipAllClose: string;
|
|
8
|
+
tooltipAllAdd: string;
|
|
9
|
+
tooltipAllRemove: string;
|
|
10
|
+
defaultNameNoteText: string;
|
|
11
|
+
defaultNameDescription: string;
|
|
12
|
+
defaultNameGroup: string;
|
|
13
|
+
defaultNamePosition: string;
|
|
14
14
|
}
|
|
15
15
|
export declare const DEFAULT_TEXT_WORDS: ITextWords;
|
|
16
16
|
export declare const germanTextsAva: ITextWords;
|
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
export interface ITextWordInvoice {
|
|
2
|
-
invoiceTitle
|
|
3
|
-
vatId
|
|
4
|
-
detailsInvoiceNumber
|
|
5
|
-
detailsInvoiceDate
|
|
6
|
-
detailsPaymentDueDate
|
|
7
|
-
detailsCurrencyCode
|
|
8
|
-
detailsPaymentTerms
|
|
9
|
-
referencesTopic
|
|
10
|
-
referencesBuyerReference
|
|
11
|
-
referencesProjectReference
|
|
12
|
-
referencesContractReference
|
|
13
|
-
referencesPurchaseOrderReference
|
|
14
|
-
referencesSalesOrderReference
|
|
15
|
-
referencesReceivingAdviceReference
|
|
16
|
-
referencesDispatchAdviceReference
|
|
17
|
-
referencesTenderOrLotReference
|
|
18
|
-
referencesInvoicedObjectIdentifier
|
|
19
|
-
tableHeadDescription
|
|
20
|
-
tableHeadQuantity
|
|
21
|
-
tableHeadUnit
|
|
22
|
-
tableHeadNetPrice
|
|
23
|
-
tableHeadNetAmount
|
|
24
|
-
totalsTopic
|
|
25
|
-
totalsTotalNet
|
|
26
|
-
totalsTotalAllowances
|
|
27
|
-
totalsTotalCharges
|
|
28
|
-
totalsTotalAfterDeductions
|
|
29
|
-
totalsTotalVatAmount
|
|
30
|
-
totalsTotalGross
|
|
31
|
-
totalsAlreadyPaidTotal
|
|
32
|
-
totalsTotalToBePaid
|
|
33
|
-
instructionsTopic
|
|
34
|
-
instructionsAccountIdentifier
|
|
35
|
-
instructionsAccountName
|
|
36
|
-
instructionsServiceProviderIdentifier
|
|
37
|
-
notesTopic
|
|
2
|
+
invoiceTitle: string;
|
|
3
|
+
vatId: string;
|
|
4
|
+
detailsInvoiceNumber: string;
|
|
5
|
+
detailsInvoiceDate: string;
|
|
6
|
+
detailsPaymentDueDate: string;
|
|
7
|
+
detailsCurrencyCode: string;
|
|
8
|
+
detailsPaymentTerms: string;
|
|
9
|
+
referencesTopic: string;
|
|
10
|
+
referencesBuyerReference: string;
|
|
11
|
+
referencesProjectReference: string;
|
|
12
|
+
referencesContractReference: string;
|
|
13
|
+
referencesPurchaseOrderReference: string;
|
|
14
|
+
referencesSalesOrderReference: string;
|
|
15
|
+
referencesReceivingAdviceReference: string;
|
|
16
|
+
referencesDispatchAdviceReference: string;
|
|
17
|
+
referencesTenderOrLotReference: string;
|
|
18
|
+
referencesInvoicedObjectIdentifier: string;
|
|
19
|
+
tableHeadDescription: string;
|
|
20
|
+
tableHeadQuantity: string;
|
|
21
|
+
tableHeadUnit: string;
|
|
22
|
+
tableHeadNetPrice: string;
|
|
23
|
+
tableHeadNetAmount: string;
|
|
24
|
+
totalsTopic: string;
|
|
25
|
+
totalsTotalNet: string;
|
|
26
|
+
totalsTotalAllowances: string;
|
|
27
|
+
totalsTotalCharges: string;
|
|
28
|
+
totalsTotalAfterDeductions: string;
|
|
29
|
+
totalsTotalVatAmount: string;
|
|
30
|
+
totalsTotalGross: string;
|
|
31
|
+
totalsAlreadyPaidTotal: string;
|
|
32
|
+
totalsTotalToBePaid: string;
|
|
33
|
+
instructionsTopic: string;
|
|
34
|
+
instructionsAccountIdentifier: string;
|
|
35
|
+
instructionsAccountName: string;
|
|
36
|
+
instructionsServiceProviderIdentifier: string;
|
|
37
|
+
notesTopic: string;
|
|
38
38
|
attachmentsHeading: string;
|
|
39
39
|
attachmentsName: string;
|
|
40
40
|
attachmentsDescription: string;
|