File tree Expand file tree Collapse file tree 4 files changed +0
-28
lines changed
src/components-examples/aria/autocomplete Expand file tree Collapse file tree 4 files changed +0
-28
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import {
1919 Component ,
2020 computed ,
2121 signal ,
22- viewChild ,
2322 viewChildren ,
2423} from '@angular/core' ;
2524import { COUNTRIES } from '../countries' ;
@@ -44,15 +43,9 @@ import {FormsModule} from '@angular/forms';
4443 changeDetection : ChangeDetectionStrategy . OnPush ,
4544} )
4645export 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
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import {
1919 Component ,
2020 computed ,
2121 signal ,
22- viewChild ,
2322 viewChildren ,
2423} from '@angular/core' ;
2524import { COUNTRIES } from '../countries' ;
@@ -44,15 +43,9 @@ import {FormsModule} from '@angular/forms';
4443 changeDetection : ChangeDetectionStrategy . OnPush ,
4544} )
4645export 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
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import {
1919 Component ,
2020 computed ,
2121 signal ,
22- viewChild ,
2322 viewChildren ,
2423} from '@angular/core' ;
2524import { COUNTRIES } from '../countries' ;
@@ -44,15 +43,9 @@ import {FormsModule} from '@angular/forms';
4443 changeDetection : ChangeDetectionStrategy . OnPush ,
4544} )
4645export 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
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import {
1919 Component ,
2020 computed ,
2121 signal ,
22- viewChild ,
2322 viewChildren ,
2423} from '@angular/core' ;
2524import { COUNTRIES } from '../countries' ;
@@ -44,15 +43,9 @@ import {FormsModule} from '@angular/forms';
4443 changeDetection : ChangeDetectionStrategy . OnPush ,
4544} )
4645export 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
You can’t perform that action at this time.
0 commit comments