igniteui-webcomponents-grids 4.3.0 → 4.3.2

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.
@@ -790,6 +790,7 @@ public set selectedRows(value: any[]);
790
790
 
791
791
 
792
792
 
793
+ /* csSuppress */
793
794
  /**
794
795
  * A list of `IgxGridRowComponent`.
795
796
  *
@@ -802,6 +803,7 @@ public set selectedRows(value: any[]);
802
803
 
803
804
 
804
805
 
806
+ /* csSuppress */
805
807
  /**
806
808
  * A list of currently rendered `IgxGridRowComponent`'s.
807
809
  *
@@ -961,18 +963,6 @@ public set selectedRows(value: any[]);
961
963
  */
962
964
  public get virtualizationState(): IgcForOfState;
963
965
 
964
-
965
-
966
- /**
967
- * Gets the native element.
968
- *
969
- * @example
970
- * ```typescript
971
- * const nativeEl = this.grid.nativeElement.
972
- * ```
973
- */
974
- public get nativeElement(): HTMLElement;
975
-
976
966
 
977
967
 
978
968
  /**
@@ -1038,6 +1028,7 @@ public set selectedRows(value: any[]);
1038
1028
 
1039
1029
 
1040
1030
 
1031
+ /* csSuppress */
1041
1032
  /**
1042
1033
  * Gets an array of the pinned `IgxRowComponent`s.
1043
1034
  *
@@ -48,11 +48,6 @@ import { IgcGridBaseDirective } from './igc-grid-base-directive';
48
48
  public set grid(value: IgcGridBaseDirective);
49
49
  public get grid(): IgcGridBaseDirective;
50
50
 
51
-
52
-
53
- /** Returns the native DOM element of the toolbar component */
54
- public get nativeElement(): HTMLElement;
55
-
56
51
  }
57
52
 
58
53
 
@@ -141,10 +141,6 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
141
141
  */
142
142
  public get isLastPageDisabled(): boolean;
143
143
 
144
-
145
-
146
- public get nativeElement(): any;
147
-
148
144
 
149
145
  /**
150
146
  * Goes to the next page of the `IgxPaginatorComponent`, if the paginator is not already at the last page.
@@ -140,10 +140,12 @@ public set pivotConfiguration(value: IgcPivotConfiguration);
140
140
 
141
141
 
142
142
 
143
+ /* csSuppress */
143
144
  public get selectedRows(): any[];
144
145
 
145
146
 
146
147
 
148
+ /* csSuppress */
147
149
  /**
148
150
  * Gets the default row height.
149
151
  *
@@ -117,18 +117,6 @@ import { IgcCellType } from './igc-cell-type';
117
117
  */
118
118
  public get key(): any;
119
119
 
120
-
121
-
122
- /**
123
- * The native DOM element representing the row. Could be null in certain environments.
124
- *
125
- * ```typescript
126
- * // get the nativeElement of the second selected row
127
- * let selectedRowNativeElement = this.grid.selectedRows[1].nativeElement;
128
- * ```
129
- */
130
- public get nativeElement(): HTMLElement;
131
-
132
120
 
133
121
 
134
122
  /**