mirror of
https://github.com/bitwarden/web
synced 2025-12-10 05:13:40 +00:00
* Break form controls up into reusable components * Add proper form styling, validation, inline error messages, etc * Move control options into class instead of template * Add accessibility
11 lines
353 B
TypeScript
11 lines
353 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { BaseCvaComponent } from "./base-cva.component";
|
|
|
|
/** For use in the SSO Config Form only - will be deprecated by the Component Library */
|
|
@Component({
|
|
selector: "app-input-checkbox",
|
|
templateUrl: "input-checkbox.component.html",
|
|
})
|
|
export class InputCheckboxComponent extends BaseCvaComponent {}
|