Update TriStateCheckbox.d.ts
parent
556412d925
commit
c8f3c3692a
|
@ -6,13 +6,21 @@ export interface TriStateCheckboxProps {
|
||||||
*/
|
*/
|
||||||
modelValue?: Nullable<boolean>;
|
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.
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue