From 93fccc88bb3f5cc4765918a1c98654ef457cd587 Mon Sep 17 00:00:00 2001 From: Paul Valerie GOMA Date: Mon, 21 Jul 2025 23:38:16 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20=20Updated=20label=20co?= =?UTF-8?q?mponent=20interface?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/label/IVLabel.type.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/components/label/IVLabel.type.ts b/src/components/label/IVLabel.type.ts index d9e975a..caad633 100644 --- a/src/components/label/IVLabel.type.ts +++ b/src/components/label/IVLabel.type.ts @@ -35,5 +35,12 @@ export default interface IVLabel { * @default false */ required?: boolean; + + /** + * The ID of the input element that this label is associated with. + * This helps improve accessibility by linking the label to its corresponding input. + */ + for: string; + }