File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -69,12 +69,6 @@ export class Combobox<V> {
6969 /** The filter mode for the combobox. */
7070 filterMode = input < 'manual' | 'auto-select' | 'highlight' > ( 'manual' ) ;
7171
72- /** Whether the combobox is focused. */
73- readonly isFocused = signal ( false ) ;
74-
75- /** Whether the combobox has received focus yet. */
76- private _hasBeenFocused = signal ( false ) ;
77-
7872 /** Whether the combobox is disabled. */
7973 readonly disabled = input ( false ) ;
8074
@@ -122,12 +116,6 @@ export class Combobox<V> {
122116 this . _deferredContentAware ?. contentVisible . set ( true ) ;
123117 }
124118 } ) ;
125-
126- afterRenderEffect ( ( ) => {
127- if ( ! this . _hasBeenFocused ( ) && this . _pattern . isFocused ( ) ) {
128- this . _hasBeenFocused . set ( true ) ;
129- }
130- } ) ;
131119 }
132120}
133121
You can’t perform that action at this time.
0 commit comments