From c8f3c3692a7db3f0231831c2d0635ba5ac0c736c 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: Fri, 22 Jul 2022 22:42:47 +0300 Subject: [PATCH] Update TriStateCheckbox.d.ts --- .../tristatecheckbox/TriStateCheckbox.d.ts | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/components/tristatecheckbox/TriStateCheckbox.d.ts b/src/components/tristatecheckbox/TriStateCheckbox.d.ts index e9a857626..600493285 100755 --- a/src/components/tristatecheckbox/TriStateCheckbox.d.ts +++ b/src/components/tristatecheckbox/TriStateCheckbox.d.ts @@ -6,13 +6,21 @@ export interface TriStateCheckboxProps { */ modelValue?: Nullable; /** - * Inline style of the component. + * When present, it specifies that the component should be disabled. */ - style?: any; + disabled?: boolean | undefined; /** - * Style class of the component. + * Index of the element in tabbing order. */ - class?: any; + tabindex?: string | undefined; + /** + * Identifier of the underlying input element. + */ + inputId?: string | undefined; + /** + * + */ + inputProps?: object | undefined; /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */