We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 963a4c3 commit 1497bcaCopy full SHA for 1497bca
2 files changed
src/aria/accordion/accordion-group.ts
@@ -116,7 +116,6 @@ export class AccordionGroup {
116
element: () => this.element,
117
activeItem: signal(undefined),
118
items: this._triggerPatterns,
119
- // TODO(ok7sai): Investigate whether an accordion should support horizontal mode.
120
orientation: () => 'vertical',
121
});
122
src/aria/menu/menu-item.ts
@@ -62,8 +62,6 @@ export class MenuItem<V> {
62
/** Whether the menu item is disabled. */
63
readonly disabled = input<boolean>(false);
64
65
- // TODO(wagnermaciel): Discuss whether all inputs should be models.
66
-
67
/** The search term associated with the menu item. */
68
readonly searchTerm = model<string>('');
69
0 commit comments