From 288008e5d9c4020e6bb15566ae2b9d0fa75d3508 Mon Sep 17 00:00:00 2001 From: Paul Valerie GOMA Date: Wed, 23 Jul 2025 12:29:06 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20=20Updated=20checkbox?= =?UTF-8?q?=20component=20interface=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/checkbox/IVCheckbox.type.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/checkbox/IVCheckbox.type.ts b/src/components/checkbox/IVCheckbox.type.ts index 6b82ce3..ed4f537 100644 --- a/src/components/checkbox/IVCheckbox.type.ts +++ b/src/components/checkbox/IVCheckbox.type.ts @@ -81,4 +81,9 @@ export default interface IVCheckBox { * Visual style of the checkbox, can be 'normal', 'error', or 'success'. */ type?: 'normal' | 'error' | 'success'; + + /** + * If true, the checkbox operates in binary mode (boolean value). + */ + binary?: boolean; }