@@ -31,16 +31,10 @@ export class IgxComboDropDownComponent extends IgxDropDownComponent implements I
31
31
super ( elementRef , cdr , selection ) ;
32
32
}
33
33
34
- /**
35
- * @hidden
36
- */
37
34
protected get scrollContainer ( ) {
38
35
return this . verticalScrollContainer . dc . location . nativeElement ;
39
36
}
40
37
41
- /**
42
- * @hidden
43
- */
44
38
protected get isScrolledToLast ( ) : boolean {
45
39
const scrollTop = this . verticalScrollContainer . getVerticalScroll ( ) . scrollTop ;
46
40
const scrollHeight = this . verticalScrollContainer . getVerticalScroll ( ) . scrollHeight ;
@@ -63,13 +57,13 @@ export class IgxComboDropDownComponent extends IgxDropDownComponent implements I
63
57
public children : QueryList < IgxDropDownItemBase > = null ;
64
58
65
59
/**
66
- * @hidden
60
+ * @hidden @internal
67
61
*/
68
62
@ContentChild ( forwardRef ( ( ) => IgxForOfDirective ) , { read : IgxForOfDirective } )
69
63
public verticalScrollContainer : IgxForOfDirective < any > ;
70
64
71
65
/**
72
- * @hidden
66
+ * @hidden @internal
73
67
*/
74
68
public onFocus ( ) {
75
69
this . _focusedItem = this . _focusedItem || this . items [ 0 ] ;
@@ -79,7 +73,7 @@ export class IgxComboDropDownComponent extends IgxDropDownComponent implements I
79
73
}
80
74
81
75
/**
82
- * @hidden
76
+ * @hidden @internal
83
77
*/
84
78
public onBlur ( evt ?) {
85
79
if ( this . _focusedItem ) {
@@ -89,7 +83,7 @@ export class IgxComboDropDownComponent extends IgxDropDownComponent implements I
89
83
}
90
84
91
85
/**
92
- * @hidden
86
+ * @hidden @internal
93
87
*/
94
88
public onToggleOpened ( ) {
95
89
this . onOpened . emit ( ) ;
@@ -106,7 +100,7 @@ export class IgxComboDropDownComponent extends IgxDropDownComponent implements I
106
100
}
107
101
108
102
/**
109
- * @hidden
103
+ * @hidden @internal
110
104
*/
111
105
public navigateFirst ( ) {
112
106
const vContainer = this . verticalScrollContainer ;
@@ -123,7 +117,7 @@ export class IgxComboDropDownComponent extends IgxDropDownComponent implements I
123
117
}
124
118
125
119
/**
126
- * @hidden
120
+ * @hidden @internal
127
121
*/
128
122
public navigateLast ( ) {
129
123
const vContainer = this . verticalScrollContainer ;
@@ -142,9 +136,6 @@ export class IgxComboDropDownComponent extends IgxDropDownComponent implements I
142
136
} ) ;
143
137
}
144
138
145
- /**
146
- * @hidden
147
- */
148
139
private navigateRemoteItem ( direction ) {
149
140
this . verticalScrollContainer . addScrollTop ( direction * this . combo . itemHeight ) ;
150
141
this . subscribeNext ( this . verticalScrollContainer , ( ) => {
@@ -157,7 +148,7 @@ export class IgxComboDropDownComponent extends IgxDropDownComponent implements I
157
148
}
158
149
159
150
/**
160
- * @hidden
151
+ * @hidden @internal
161
152
*/
162
153
public selectItem ( item : IgxDropDownItemBase ) {
163
154
if ( item === null || item === undefined ) {
@@ -244,9 +235,6 @@ export class IgxComboDropDownComponent extends IgxDropDownComponent implements I
244
235
}
245
236
}
246
237
247
- /**
248
- * @hidden
249
- */
250
238
protected navigate ( direction : Navigate , currentIndex ?: number ) {
251
239
let index = - 1 ;
252
240
if ( this . _focusedItem ) {
@@ -303,16 +291,10 @@ export class IgxComboDropDownComponent extends IgxDropDownComponent implements I
303
291
304
292
protected scrollToHiddenItem ( newItem : any ) : void { }
305
293
306
- /**
307
- * @hidden
308
- */
309
294
protected scrollHandler = ( ) => {
310
295
this . comboAPI . disableTransitions = true ;
311
296
}
312
297
313
- /**
314
- * @hidden
315
- */
316
298
protected get sortedChildren ( ) : IgxDropDownItemBase [ ] {
317
299
if ( this . children !== undefined ) {
318
300
return this . children . toArray ( )
@@ -344,28 +326,25 @@ export class IgxComboDropDownComponent extends IgxDropDownComponent implements I
344
326
return items ;
345
327
}
346
328
347
- /**
348
- * @hidden
349
- */
350
329
protected scrollToItem ( ) {
351
330
}
352
331
/**
353
- * @hidden
332
+ * @hidden @internal
354
333
*/
355
334
onToggleClosing ( e : CancelableBrowserEventArgs ) {
356
335
super . onToggleClosing ( e ) ;
357
336
this . _scrollPosition = this . verticalScrollContainer . getVerticalScroll ( ) . scrollTop ;
358
337
}
359
338
360
339
/**
361
- * @hidden
340
+ * @hidden @internal
362
341
*/
363
342
updateScrollPosition ( ) {
364
343
this . verticalScrollContainer . getVerticalScroll ( ) . scrollTop = this . _scrollPosition ;
365
344
}
366
345
367
346
/**
368
- * @hidden
347
+ * @hidden @internal
369
348
*/
370
349
public onItemActionKey ( key : DropDownActionKey ) {
371
350
switch ( key ) {
@@ -405,7 +384,7 @@ export class IgxComboDropDownComponent extends IgxDropDownComponent implements I
405
384
}
406
385
407
386
/**
408
- *@hidden
387
+ *@hidden @internal
409
388
*/
410
389
public ngOnDestroy ( ) : void {
411
390
this . verticalScrollContainer . getVerticalScroll ( ) . removeEventListener ( 'scroll' , this . scrollHandler ) ;
0 commit comments