@dangl/angular-ava 1.5.2-beta0086 → 1.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dangl/angular-ava",
3
- "version": "1.5.2-beta0086",
3
+ "version": "1.5.2-beta0089",
4
4
  "keywords": [
5
5
  "angular",
6
6
  "ava",
@@ -1512,6 +1512,11 @@ type ContextMenuDataType = {
1512
1512
  node: IElementDto;
1513
1513
  };
1514
1514
 
1515
+ interface TopLevelExpansionChangedEvent {
1516
+ elementId: string;
1517
+ isExpanded: boolean;
1518
+ }
1519
+
1515
1520
  declare enum ModeViewType {
1516
1521
  Tree = "Tree",
1517
1522
  List = "List",
@@ -1615,6 +1620,11 @@ declare class AvaTreeComponent implements OnInit, OnDestroy, AfterViewInit {
1615
1620
  * actually focussing them, e.g. for further processing.
1616
1621
  */
1617
1622
  selectedElementsChanged: _angular_core.OutputEmitterRef<SelectedElement[]>;
1623
+ /**
1624
+ * This is emitted in tree view mode when a top-level element's expansion state changes.
1625
+ * The event contains the element id and whether it is now expanded or collapsed.
1626
+ */
1627
+ topLevelExpansionChanged: _angular_core.OutputEmitterRef<TopLevelExpansionChangedEvent>;
1618
1628
  avaTreeWrapper: _angular_core.Signal<ElementRef<HTMLDivElement>>;
1619
1629
  avaMainWrapper: _angular_core.Signal<ElementRef<HTMLDivElement>>;
1620
1630
  avaTreeFilterInput: _angular_core.Signal<ElementRef<HTMLInputElement>>;
@@ -1648,7 +1658,7 @@ declare class AvaTreeComponent implements OnInit, OnDestroy, AfterViewInit {
1648
1658
  private initializeEventListeners;
1649
1659
  private selectElementById;
1650
1660
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AvaTreeComponent, never>;
1651
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AvaTreeComponent, "ava-tree", never, { "project": { "alias": "project"; "required": true; "isSignal": true; }; "expansionstate": { "alias": "expansionstate"; "required": false; "isSignal": true; }; "selectednodeid": { "alias": "selectednodeid"; "required": false; "isSignal": true; }; "modeview": { "alias": "modeview"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; }, { "selectClick": "selectClick"; "selectDblClick": "selectDblClick"; "contextMenuEvent": "contextMenuEvent"; "selectedElementsChanged": "selectedElementsChanged"; }, never, never, true, never>;
1661
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AvaTreeComponent, "ava-tree", never, { "project": { "alias": "project"; "required": true; "isSignal": true; }; "expansionstate": { "alias": "expansionstate"; "required": false; "isSignal": true; }; "selectednodeid": { "alias": "selectednodeid"; "required": false; "isSignal": true; }; "modeview": { "alias": "modeview"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; }, { "selectClick": "selectClick"; "selectDblClick": "selectDblClick"; "contextMenuEvent": "contextMenuEvent"; "selectedElementsChanged": "selectedElementsChanged"; "topLevelExpansionChanged": "topLevelExpansionChanged"; }, never, never, true, never>;
1652
1662
  }
1653
1663
 
1654
1664
  declare const DEFAULT_FILTERS: FilterFunction[];
@@ -1765,4 +1775,4 @@ declare const localeTypes: {
1765
1775
  };
1766
1776
 
1767
1777
  export { AttachmentMimeType, AvaTreeComponent, DEFAULT_CURRENCY_CODE, DEFAULT_DIGITS_INFO, DEFAULT_FILTERS, DEFAULT_LANGUAGE, DEFAULT_TEXT_WORDS, DEFAULT_TEXT_WORD_INVOICE, InvoiceDisplayComponent, InvoiceType, ModeViewType, VatCategory, defaults, germanTextsAva, germanTextsInvoice, localeTypes, version };
1768
- export type { ContextMenuDataType, IConfigurationInvoice, IConfigurationTree, IFunctionViewLine, ITextWordInvoice, IViewLine, Invoice, InvoiceAllowance, InvoiceCharge, InvoiceLineItem, InvoiceNote, InvoicePeriod, InvoiceTotals, LanguageType, LineItemAllowance, LineItemAttribute, LineItemCharge, LineItemInformation, LineItemPriceDetail, LineItemVatInformation, Organization, Payee, PaymentInstructions, PaymentMeans, PreviousInvoice, References, SelectedElement, SupportingDocument, TableColumnType, VatBreakdown };
1778
+ export type { ContextMenuDataType, IConfigurationInvoice, IConfigurationTree, IFunctionViewLine, ITextWordInvoice, IViewLine, Invoice, InvoiceAllowance, InvoiceCharge, InvoiceLineItem, InvoiceNote, InvoicePeriod, InvoiceTotals, LanguageType, LineItemAllowance, LineItemAttribute, LineItemCharge, LineItemInformation, LineItemPriceDetail, LineItemVatInformation, Organization, Payee, PaymentInstructions, PaymentMeans, PreviousInvoice, References, SelectedElement, SupportingDocument, TableColumnType, TopLevelExpansionChangedEvent, VatBreakdown };