From 3c2e8c005cdcb2e76b7a0e354430e4e0db9cdab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Wed, 10 May 2023 11:26:12 +0300 Subject: [PATCH] Hidden input renaming for PT --- components/lib/checkbox/Checkbox.d.ts | 8 ++++---- components/lib/checkbox/Checkbox.vue | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/lib/checkbox/Checkbox.d.ts b/components/lib/checkbox/Checkbox.d.ts index 46d1cf3f4..166750db9 100755 --- a/components/lib/checkbox/Checkbox.d.ts +++ b/components/lib/checkbox/Checkbox.d.ts @@ -38,13 +38,13 @@ export interface CheckboxPassThroughOptions { */ icon?: CheckboxPassThroughOptionType; /** - * Uses to pass attributes to the hidden accessible DOM element. + * Uses to pass attributes to the hidden input wrapper's DOM element. */ - hiddenAccessible?: CheckboxPassThroughOptionType; + hiddenInputWrapper?: CheckboxPassThroughOptionType; /** - * Uses to pass attributes to the input aria's DOM element. + * Uses to pass attributes to the hidden input's DOM element. */ - inputAria?: CheckboxPassThroughOptionType; + hiddenInput?: CheckboxPassThroughOptionType; } /** diff --git a/components/lib/checkbox/Checkbox.vue b/components/lib/checkbox/Checkbox.vue index c9821ff83..760c6c05e 100755 --- a/components/lib/checkbox/Checkbox.vue +++ b/components/lib/checkbox/Checkbox.vue @@ -1,6 +1,6 @@