Update TriStateCheckbox.d.ts

pull/2809/head
Tuğçe Küçükoğlu 2022-07-22 22:42:47 +03:00
parent 556412d925
commit c8f3c3692a
1 changed files with 12 additions and 4 deletions

View File

@ -6,13 +6,21 @@ export interface TriStateCheckboxProps {
*/
modelValue?: Nullable<boolean>;
/**
* 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.
*/