@dangl/angular-ava 1.5.2-beta0052 → 1.5.2-beta0062

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-beta0052",
3
+ "version": "1.5.2-beta0062",
4
4
  "keywords": [
5
5
  "angular",
6
6
  "ava",
@@ -1489,6 +1489,16 @@ interface IConfigurationTree {
1489
1489
  * }
1490
1490
  */
1491
1491
  functionView?: IFunctionViewLine[];
1492
+ /**
1493
+ * Optional, defaults to false. If this is enabled, item numbers (stringRepresentation) will hide parent level prefixes based on the actual depth in the tree hierarchy.
1494
+ * For example, an item with number "1.2.3.4":
1495
+ * - At depth 0 (root level): shows "1.2.3.4" (full item number)
1496
+ * - At depth 1 (first child level): shows "2.3.4" (hides first number)
1497
+ * - At depth 2 (second child level): shows "3.4" (hides first two numbers)
1498
+ * - At depth 3 (third child level): shows "4" (hides first three numbers)
1499
+ * Note: This only affects tree view. In table view, full item numbers are always displayed.
1500
+ */
1501
+ hideParentItemNumbers?: boolean;
1492
1502
  }
1493
1503
  type FilterFunction = (element: IElementDto, filter: string) => boolean | undefined | null;
1494
1504
 
@@ -1605,6 +1615,7 @@ declare class AvaTreeComponent implements OnInit, OnDestroy, AfterViewInit {
1605
1615
  avaTreeFilterInput: _angular_core.Signal<ElementRef<HTMLInputElement>>;
1606
1616
  private selectedElement;
1607
1617
  serviceSpecification: _angular_core.WritableSignal<_dangl_ava_model.ServiceSpecificationDto | null>;
1618
+ elements: _angular_core.WritableSignal<IElementDto[]>;
1608
1619
  private isEmiteSelectedElements;
1609
1620
  private selectingElementsTreeData;
1610
1621
  flatElements: IElementDto[] | null;