We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0206d6f commit 279983bCopy full SHA for 279983b
src/lib/autocomplete/autocomplete.ts
@@ -51,8 +51,13 @@ export class MdAutocomplete implements AfterContentInit {
51
/** Whether the autocomplete panel should be visible, depending on option length. */
52
showPanel = false;
53
54
+ /** @docs-private */
55
@ViewChild(TemplateRef) template: TemplateRef<any>;
56
+
57
+ /** Element for the panel containing the autocomplete options. */
58
@ViewChild('panel') panel: ElementRef;
59
60
61
@ContentChildren(MdOption) options: QueryList<MdOption>;
62
63
/** Function that maps an option's control value to its display value in the trigger. */
0 commit comments