From 18149c91ea8277213fc4d974c8888a471139987a Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Tue, 7 Mar 2023 11:44:51 -0500 Subject: [PATCH] docs(alert): alert input label is only for radio/checkbox --- core/src/components/alert/alert-interface.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/components/alert/alert-interface.ts b/core/src/components/alert/alert-interface.ts index 25ffd5e3912..adc854abad4 100644 --- a/core/src/components/alert/alert-interface.ts +++ b/core/src/components/alert/alert-interface.ts @@ -31,6 +31,9 @@ export interface AlertInput { name?: string; placeholder?: string; value?: any; // TODO(FW-2832): type + /** + * The label text to display next to the input, if the input type is `radio` or `checkbox`. + */ label?: string; checked?: boolean; disabled?: boolean;