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. */