mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
Updating chipSelect to be the new styling (#11593)
This commit is contained in:
@@ -1,8 +1,12 @@
|
|||||||
<div role="toolbar" [ariaLabel]="'filters' | i18n">
|
<div role="toolbar" [ariaLabel]="'filters' | i18n">
|
||||||
<form [formGroup]="filterForm" class="tw-flex tw-flex-wrap tw-gap-2 tw-mt-2">
|
<form
|
||||||
|
[formGroup]="filterForm"
|
||||||
|
class="tw-gap-2 tw-mt-2 tw-grid tw-grid-cols-2 sm:tw-grid-cols-3 lg:tw-grid-cols-4"
|
||||||
|
>
|
||||||
<ng-container *ngIf="organizations$ | async as organizations">
|
<ng-container *ngIf="organizations$ | async as organizations">
|
||||||
<bit-chip-select
|
<bit-chip-select
|
||||||
*ngIf="organizations.length"
|
*ngIf="organizations.length"
|
||||||
|
fullWidth
|
||||||
formControlName="organization"
|
formControlName="organization"
|
||||||
placeholderIcon="bwi-vault"
|
placeholderIcon="bwi-vault"
|
||||||
[placeholderText]="'vault' | i18n"
|
[placeholderText]="'vault' | i18n"
|
||||||
@@ -13,6 +17,7 @@
|
|||||||
<ng-container *ngIf="collections$ | async as collections">
|
<ng-container *ngIf="collections$ | async as collections">
|
||||||
<bit-chip-select
|
<bit-chip-select
|
||||||
*ngIf="collections.length"
|
*ngIf="collections.length"
|
||||||
|
fullWidth
|
||||||
formControlName="collection"
|
formControlName="collection"
|
||||||
placeholderIcon="bwi-collection"
|
placeholderIcon="bwi-collection"
|
||||||
[placeholderText]="'collection' | i18n"
|
[placeholderText]="'collection' | i18n"
|
||||||
@@ -23,6 +28,7 @@
|
|||||||
<ng-container *ngIf="folders$ | async as folders">
|
<ng-container *ngIf="folders$ | async as folders">
|
||||||
<bit-chip-select
|
<bit-chip-select
|
||||||
*ngIf="folders.length"
|
*ngIf="folders.length"
|
||||||
|
fullWidth
|
||||||
placeholderIcon="bwi-folder"
|
placeholderIcon="bwi-folder"
|
||||||
formControlName="folder"
|
formControlName="folder"
|
||||||
[placeholderText]="'folder' | i18n"
|
[placeholderText]="'folder' | i18n"
|
||||||
@@ -32,6 +38,7 @@
|
|||||||
</ng-container>
|
</ng-container>
|
||||||
<bit-chip-select
|
<bit-chip-select
|
||||||
formControlName="cipherType"
|
formControlName="cipherType"
|
||||||
|
fullWidth
|
||||||
placeholderIcon="bwi-list"
|
placeholderIcon="bwi-list"
|
||||||
[placeholderText]="'type' | i18n"
|
[placeholderText]="'type' | i18n"
|
||||||
[options]="cipherTypes"
|
[options]="cipherTypes"
|
||||||
|
|||||||
Reference in New Issue
Block a user