@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.
@@ -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?: 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;
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 | null);
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 | null);
86
- get textWords(): ITextWords | null;
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?: 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;
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?: 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;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dangl/angular-ava",
3
- "version": "1.1.2-beta0082",
3
+ "version": "1.1.2-beta0089",
4
4
  "keywords": [
5
5
  "angular",
6
6
  "ava",