@radix-ui/themes
Version:
[](https://radix-ui.com/themes)
7 lines • 1.22 kB
TypeScript
type InputAttributes = 'accept' | 'alt' | 'autocapitalize' | 'autocomplete' | 'capture' | 'checked' | 'defaultChecked' | 'defaultValue' | 'disabled' | 'form' | 'formaction' | 'formenctype' | 'formmethod' | 'formnovalidate' | 'formtarget' | 'height' | 'list' | 'max' | 'maxlength' | 'min' | 'minlength' | 'multiple' | 'name' | 'pattern' | 'placeholder' | 'popovertarget' | 'popovertargetaction' | 'readonly' | 'required' | 'size' | 'src' | 'step' | 'type' | 'value' | 'width';
type InputTextualAttributes = 'autoCapitalize' | 'autoComplete' | 'defaultValue' | 'disabled' | 'form' | 'list' | 'maxLength' | 'minLength' | 'min' | 'multiple' | 'max' | 'name' | 'pattern' | 'placeholder' | 'readOnly' | 'required' | 'size' | 'step' | 'type' | 'value';
type InputRadioAttributes = 'checked' | 'defaultChecked' | 'defaultValue' | 'disabled' | 'form' | 'name' | 'required' | 'value';
type NotInputRadioAttributes = Exclude<InputAttributes, InputRadioAttributes>;
type NotInputTextualAttributes = Exclude<InputAttributes, InputTextualAttributes>;
export type { InputAttributes, InputRadioAttributes, InputTextualAttributes, NotInputRadioAttributes, NotInputTextualAttributes, };
//# sourceMappingURL=input-attributes.d.ts.map