@dangl/angular-ava 1.3.0 → 1.3.1-beta0014
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/fesm2022/dangl-angular-ava.mjs +24 -23
- package/fesm2022/dangl-angular-ava.mjs.map +1 -1
- package/lib/invoice/components/invoice-line-items-table/invoice-line-items-table.component.d.ts +10 -3
- package/package.json +1 -1
- package/lib/ava-tree/components/tree-structure/tree-structure.component.d.ts +0 -7
package/lib/invoice/components/invoice-line-items-table/invoice-line-items-table.component.d.ts
CHANGED
|
@@ -1,18 +1,25 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { Observable } from 'rxjs';
|
|
2
3
|
import { InvoiceLineItem } from '../../model/invoice-models';
|
|
3
4
|
import { ITextWordInvoice } from '../../model/invoice-words.model';
|
|
4
5
|
import { IColorSettings } from 'projects/angular-ava/src/lib/invoice/model/configInvoice.model';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
|
-
export
|
|
7
|
+
export interface IInvoiceLineItemsPuls extends InvoiceLineItem {
|
|
8
|
+
indentLevel: number | undefined;
|
|
9
|
+
}
|
|
10
|
+
export declare class InvoiceLineItemsTableComponent implements OnInit {
|
|
7
11
|
lineItems: import("@angular/core").InputSignal<InvoiceLineItem[]>;
|
|
12
|
+
flatLineItems: IInvoiceLineItemsPuls[];
|
|
8
13
|
private configurationInvoiceService;
|
|
9
14
|
readonly textWords$: Observable<ITextWordInvoice | null>;
|
|
10
15
|
readonly pdfViewEnabled$: Observable<boolean>;
|
|
11
16
|
readonly colorSettings$: Observable<IColorSettings | null>;
|
|
12
17
|
readonly displayedColumns: string[];
|
|
13
18
|
private expandedElements;
|
|
14
|
-
|
|
15
|
-
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
toggleRow(row: IInvoiceLineItemsPuls): void;
|
|
21
|
+
isRowExpanded(row: IInvoiceLineItemsPuls): boolean;
|
|
22
|
+
private getFlatLineItems;
|
|
16
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<InvoiceLineItemsTableComponent, never>;
|
|
17
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<InvoiceLineItemsTableComponent, "ava-invoice-line-items-table", never, { "lineItems": { "alias": "lineItems"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
25
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { ServiceSpecificationDto } from '../../model';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class TreeStructureComponent {
|
|
4
|
-
serviceSpecification: import("@angular/core").InputSignal<ServiceSpecificationDto | null>;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TreeStructureComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TreeStructureComponent, "ava-tree-structure", never, { "serviceSpecification": { "alias": "serviceSpecification"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7
|
-
}
|