🔥 Delete unused files (#1359)

This commit is contained in:
Luke Vella 2024-09-21 11:01:53 +01:00 committed by GitHub
parent fcf42a4d65
commit 63725a0879
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 0 additions and 515 deletions

View file

@ -1,85 +0,0 @@
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attributes
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";
// Includes all text-like inputs, e.g. text, email, password, number, date, etc.
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,
};