From f6ad193db7143ddba9512a1ef273b24a0ae9a107 Mon Sep 17 00:00:00 2001 From: William Chelman Date: Fri, 27 Dec 2024 14:13:41 +0100 Subject: [PATCH] feat(legi-shared): adding multiple attribute to select (cherry picked from commit 80765b6270dcbaff1636c58f8ac22a9a02e0dea5) (cherry picked from commit 7f4301d52ce0b0f5292f0fd76b1b88eed42f9126) --- libs/legi-shared/select/select.component.html | 7 ++++++- libs/legi-shared/select/select.component.ts | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/libs/legi-shared/select/select.component.html b/libs/legi-shared/select/select.component.html index eac28d4d..081ac842 100644 --- a/libs/legi-shared/select/select.component.html +++ b/libs/legi-shared/select/select.component.html @@ -2,7 +2,12 @@ {{ label }} {{ label }} - + {{ 'global.none' | czTranslate }} extends ControlComponent implements HasOption @Input() hint?: string; + @Input() + multiple: boolean = false; @Output() selectionChange: EventEmitter = new EventEmitter();