1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

[CL-451] Add option for full width chip select (#11135)

This commit is contained in:
Victoria League
2024-09-20 09:52:12 -04:00
committed by GitHub
parent c13131acd1
commit 1262623fac
3 changed files with 48 additions and 4 deletions

View File

@@ -65,6 +65,9 @@ export class ChipSelectComponent<T = unknown> implements ControlValueAccessor, A
/** Disables the entire chip */
@Input({ transform: booleanAttribute }) disabled = false;
/** Chip will stretch to full width of its container */
@Input({ transform: booleanAttribute }) fullWidth?: boolean;
/**
* We have `:focus-within` and `:focus-visible` but no `:focus-visible-within`
*/