We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8bf5c6 commit cdf303fCopy full SHA for cdf303f
1 file changed
src/aria/combobox/combobox.ts
@@ -69,12 +69,6 @@ export class Combobox<V> {
69
/** The filter mode for the combobox. */
70
filterMode = input<'manual' | 'auto-select' | 'highlight'>('manual');
71
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
78
/** Whether the combobox is disabled. */
79
readonly disabled = input(false);
80
@@ -122,12 +116,6 @@ export class Combobox<V> {
122
116
this._deferredContentAware?.contentVisible.set(true);
123
117
}
124
118
});
125
126
- afterRenderEffect(() => {
127
- if (!this._hasBeenFocused() && this._pattern.isFocused()) {
128
- this._hasBeenFocused.set(true);
129
- }
130
- });
131
119
132
120
133
121
0 commit comments