1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-27 10:03:23 +00:00

add more jsdoc class comments to libs/components

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Will Martin
2026-01-22 13:21:37 -05:00
parent b86a3d2026
commit b5e1ba3e35
57 changed files with 184 additions and 20 deletions

View File

@@ -34,6 +34,9 @@ import { SelectItemView } from "./models/select-item-view";
// Increments for each instance of this component
let nextId = 0;
/**
* Multi-select dropdown component with search and item management capabilities.
*/
// FIXME(https://bitwarden.atlassian.net/browse/CL-764): Migrate to OnPush
// eslint-disable-next-line @angular-eslint/prefer-on-push-component-change-detection
@Component({
@@ -52,9 +55,6 @@ let nextId = 0;
"[id]": "this.id()",
},
})
/**
* This component has been implemented to only support Multi-select list events
*/
export class MultiSelectComponent implements OnInit, BitFormFieldControl, ControlValueAccessor {
readonly select = viewChild.required(NgSelectComponent);