mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
* Adjust radio groups margin * Move hint margin to input field * Tweak field spacing * Add story for hint, and fix hint display * Fix label ssue * Revert input margin * Re-add margin to hint * Change font weight * Fix required placement * Add support for required * Change margin of radio group * Remove unnecessary div * Fix long inputs cutting off * Fix radio story * Remove newline --------- Co-authored-by: Will Martin <contact@willmartian.com>
17 lines
666 B
TypeScript
17 lines
666 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
|
|
import { FormControlModule } from "../form-control";
|
|
import { SharedModule } from "../shared";
|
|
|
|
import { RadioButtonComponent } from "./radio-button.component";
|
|
import { RadioGroupComponent } from "./radio-group.component";
|
|
import { RadioInputComponent } from "./radio-input.component";
|
|
|
|
@NgModule({
|
|
imports: [CommonModule, SharedModule, FormControlModule],
|
|
declarations: [RadioInputComponent, RadioButtonComponent, RadioGroupComponent],
|
|
exports: [FormControlModule, RadioInputComponent, RadioButtonComponent, RadioGroupComponent],
|
|
})
|
|
export class RadioButtonModule {}
|