Skip to content

Commit fc8dc7e

Browse files
committed
fixup! docs: create aria autocomplete docs
1 parent 5d728d2 commit fc8dc7e

File tree

4 files changed

+0
-28
lines changed

4 files changed

+0
-28
lines changed

src/components-examples/aria/autocomplete/autocomplete-auto-select/autocomplete-auto-select-example.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import {
1919
Component,
2020
computed,
2121
signal,
22-
viewChild,
2322
viewChildren,
2423
} from '@angular/core';
2524
import {COUNTRIES} from '../countries';
@@ -44,15 +43,9 @@ import {FormsModule} from '@angular/forms';
4443
changeDetection: ChangeDetectionStrategy.OnPush,
4544
})
4645
export class AutocompleteAutoSelectExample {
47-
/** The combobox listbox popup. */
48-
listbox = viewChild<Listbox<string>>(Listbox);
49-
5046
/** The options available in the listbox. */
5147
options = viewChildren<Option<string>>(Option);
5248

53-
/** A reference to the ng aria combobox. */
54-
combobox = viewChild<Combobox<string>>(Combobox);
55-
5649
/** The query string used to filter the list of countries. */
5750
query = signal('');
5851

src/components-examples/aria/autocomplete/autocomplete-disabled/autocomplete-disabled-example.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import {
1919
Component,
2020
computed,
2121
signal,
22-
viewChild,
2322
viewChildren,
2423
} from '@angular/core';
2524
import {COUNTRIES} from '../countries';
@@ -44,15 +43,9 @@ import {FormsModule} from '@angular/forms';
4443
changeDetection: ChangeDetectionStrategy.OnPush,
4544
})
4645
export class AutocompleteDisabledExample {
47-
/** The combobox listbox popup. */
48-
listbox = viewChild<Listbox<string>>(Listbox);
49-
5046
/** The options available in the listbox. */
5147
options = viewChildren<Option<string>>(Option);
5248

53-
/** A reference to the ng aria combobox. */
54-
combobox = viewChild<Combobox<string>>(Combobox);
55-
5649
/** The query string used to filter the list of countries. */
5750
query = signal('United States of America');
5851

src/components-examples/aria/autocomplete/autocomplete-highlight/autocomplete-highlight-example.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import {
1919
Component,
2020
computed,
2121
signal,
22-
viewChild,
2322
viewChildren,
2423
} from '@angular/core';
2524
import {COUNTRIES} from '../countries';
@@ -44,15 +43,9 @@ import {FormsModule} from '@angular/forms';
4443
changeDetection: ChangeDetectionStrategy.OnPush,
4544
})
4645
export class AutocompleteHighlightExample {
47-
/** The combobox listbox popup. */
48-
listbox = viewChild<Listbox<string>>(Listbox);
49-
5046
/** The options available in the listbox. */
5147
options = viewChildren<Option<string>>(Option);
5248

53-
/** A reference to the ng aria combobox. */
54-
combobox = viewChild<Combobox<string>>(Combobox);
55-
5649
/** The query string used to filter the list of countries. */
5750
query = signal('');
5851

src/components-examples/aria/autocomplete/autocomplete-manual/autocomplete-manual-example.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import {
1919
Component,
2020
computed,
2121
signal,
22-
viewChild,
2322
viewChildren,
2423
} from '@angular/core';
2524
import {COUNTRIES} from '../countries';
@@ -44,15 +43,9 @@ import {FormsModule} from '@angular/forms';
4443
changeDetection: ChangeDetectionStrategy.OnPush,
4544
})
4645
export class AutocompleteManualExample {
47-
/** The combobox listbox popup. */
48-
listbox = viewChild<Listbox<string>>(Listbox);
49-
5046
/** The options available in the listbox. */
5147
options = viewChildren<Option<string>>(Option);
5248

53-
/** A reference to the ng aria combobox. */
54-
combobox = viewChild<Combobox<string>>(Combobox);
55-
5649
/** The query string used to filter the list of countries. */
5750
query = signal('');
5851

0 commit comments

Comments
 (0)