@energycap/components 0.45.2-multi-select-component.20260303-0733 → 0.45.2-multi-select-component.20260303-0736

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": "@energycap/components",
3
- "version": "0.45.2-multi-select-component.20260303-0733",
3
+ "version": "0.45.2-multi-select-component.20260303-0736",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "dependencies": {
6
6
  "tslib": "^2.0.0"
@@ -1707,6 +1707,15 @@ declare class MenuComponent implements AfterContentInit, OnDestroy, OnChanges {
1707
1707
  * @param menuComponentId Used to prefix the generated ID. This should be the ID of the menu component the item is present in.
1708
1708
  * @memberof MenuComponent
1709
1709
  */
1710
+ /**
1711
+ * Filter an array of MenuItems by label or caption (contains match).
1712
+ * Supports grouped items under headings and divided-sections.
1713
+ *
1714
+ * @param options The full list of MenuItems to filter
1715
+ * @param filterText The search text to filter by
1716
+ * @returns The filtered list of MenuItems
1717
+ */
1718
+ static filterOptions(options: MenuItem[], filterText: string): MenuItem[];
1710
1719
  static getIndexedItemId(items: MenuItem[], item?: MenuItem | null, menuComponentId?: string): string | null;
1711
1720
  constructor(el: ElementRef, renderer: Renderer2, windowService: WindowService, scrollService: ScrollService);
1712
1721
  ngOnChanges(changes: SimpleChanges): void;
@@ -2470,15 +2479,6 @@ declare class ComboboxComponent extends FormControlBase implements OnInit, OnCha
2470
2479
  * @memberof ComboboxComponent
2471
2480
  */
2472
2481
  private onArrowDownUp;
2473
- /**
2474
-
2475
- * Filter array of options by label or caption (contains)
2476
- *
2477
- * @param filterText The value of textbox that we will filter our options by
2478
- *
2479
- * @memberof ComboboxComponent
2480
- */
2481
- private filterOptionsArray;
2482
2482
  /**
2483
2483
  * Find a given item's index in the filtered items array.
2484
2484
  *
@@ -6146,10 +6146,6 @@ declare class MultiselectComponent extends FormControlBase implements OnInit, On
6146
6146
  * Scroll menu to a specific item
6147
6147
  */
6148
6148
  private scrollToItem;
6149
- /**
6150
- * Filter options by label (contains)
6151
- */
6152
- private filterOptionsArray;
6153
6149
  /**
6154
6150
  * React to formModel changes from outside the component
6155
6151
  */