igniteui-angular 21.2.6 → 21.2.8

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": "igniteui-angular",
3
- "version": "21.2.6",
3
+ "version": "21.2.8",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -891,12 +891,18 @@ declare class IgxComboItemComponent extends IgxDropDownItemComponent {
891
891
  * @hidden
892
892
  * @internal
893
893
  */
894
- get disableTransitions(): boolean;
894
+ ngDoCheck(): void;
895
895
  /**
896
896
  * @hidden
897
897
  */
898
898
  get selected(): boolean;
899
899
  set selected(value: boolean);
900
+ /**
901
+ * @hidden
902
+ * @internal
903
+ */
904
+ get disableTransitions(): boolean;
905
+ private _disableTransitions;
900
906
  /**
901
907
  * @hidden
902
908
  */
@@ -921,6 +927,7 @@ declare class IgxComboItemComponent extends IgxDropDownItemComponent {
921
927
  declare class IgxComboDropDownComponent extends IgxDropDownComponent implements IDropDownBase, OnDestroy, AfterViewInit {
922
928
  combo: IgxComboBase;
923
929
  protected comboAPI: IgxComboAPIService;
930
+ private _activeDescendantId;
924
931
  /** @hidden @internal */
925
932
  singleMode: boolean;
926
933
  /**
@@ -933,6 +940,20 @@ declare class IgxComboDropDownComponent extends IgxDropDownComponent implements
933
940
  protected get isScrolledToLast(): boolean;
934
941
  protected get lastVisibleIndex(): number;
935
942
  protected get sortedChildren(): IgxDropDownItemBaseDirective[];
943
+ /**
944
+ * @hidden @internal
945
+ */
946
+ get focusedItem(): IgxDropDownItemBaseDirective | null;
947
+ /**
948
+ * @hidden @internal
949
+ * Returns a stable aria-activedescendant id, unaffected by virtual scroll position.
950
+ * The base class computes this from the live focusedItem getter, which reads from the
951
+ * children QueryList. During virtual scroll the QueryList is recycled, so the getter
952
+ * can return null mid-CD-cycle causing NG0100 in zoneless apps. The id is cached instead.
953
+ */
954
+ get activeDescendant(): string | null;
955
+ /** @hidden @internal */
956
+ set focusedItem(item: IgxDropDownItemBaseDirective | null);
936
957
  /**
937
958
  * Get all non-header items
938
959
  *
@@ -500,7 +500,7 @@ declare abstract class IgxDropDownBaseDirective implements IDropDownList, OnInit
500
500
  * This is used to update the `aria-activedescendant` attribute of
501
501
  * the IgxDropDownNavigationDirective host element.
502
502
  */
503
- get activeDescendant(): string;
503
+ get activeDescendant(): string | null;
504
504
  /**
505
505
  * @hidden
506
506
  * @internal
@@ -9806,6 +9806,7 @@ declare class IgxGridBodyDirective {
9806
9806
  */
9807
9807
  interface RowEditPositionSettings extends PositionSettings {
9808
9808
  container?: HTMLElement;
9809
+ clipToVisibleArea?: boolean;
9809
9810
  }
9810
9811
  /**
9811
9812
  * @hidden
@@ -9820,6 +9821,8 @@ declare class RowEditPositionStrategy extends ConnectedPositioningStrategy {
9820
9821
  height: number;
9821
9822
  }, document?: Document, initialCall?: boolean, target?: Point | HTMLElement): void;
9822
9823
  private internalPosition;
9824
+ private updateContentClip;
9825
+ private getClippingRect;
9823
9826
  /**
9824
9827
  * Cleans up the IntersectionObserver and stored references
9825
9828
  */
@@ -765,6 +765,15 @@ declare class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirect
765
765
  * ```
766
766
  */
767
767
  get selectedCells(): CellType[];
768
+ /**
769
+ *
770
+ * Returns an array of the current cell selection in the form of `[{ column.field: cell.value }, ...]`.
771
+ *
772
+ * @remarks
773
+ * If `formatters` is enabled, the cell value will be formatted by its respective column formatter (if any).
774
+ * If `headers` is enabled, it will use the column header (if any) instead of the column field.
775
+ */
776
+ getSelectedData(formatters?: boolean, headers?: boolean): any[];
768
777
  /**
769
778
  * Returns a `CellType` object that matches the conditions.
770
779
  *