From 563cba34f684d1d0c8893226f82a7912203a26e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Barfleur?= <39409397+kevinbarfleur@users.noreply.github.com> Date: Wed, 1 Jul 2026 04:54:40 +0200 Subject: [PATCH] feat(WW-4179): make left/right icon toggles bindable --- ww-config.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ww-config.js b/ww-config.js index 4f54d0f..98a286c 100644 --- a/ww-config.js +++ b/ww-config.js @@ -122,6 +122,13 @@ export default { label: { en: 'Left icon', fr: 'Icône gauche' }, section: 'settings', type: 'OnOff', + bindable: true, + /* wwEditor:start */ + bindingValidation: { + type: 'boolean', + tooltip: 'A boolean that shows/hides the left icon: `true | false`', + }, + /* wwEditor:end */ }, leftIcon: { hidden: true, @@ -131,6 +138,13 @@ export default { label: { en: 'Right icon', fr: 'Icône droite' }, type: 'OnOff', section: 'settings', + bindable: true, + /* wwEditor:start */ + bindingValidation: { + type: 'boolean', + tooltip: 'A boolean that shows/hides the right icon: `true | false`', + }, + /* wwEditor:end */ }, rightIcon: { hidden: true,