Skip to content

Commit

Permalink
chore(jsx-generated): add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
maiieul committed May 30, 2024
1 parent 74e5af5 commit fef8da4
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/qwik/src/core/render/jsx/types/jsx-generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -582,11 +582,14 @@ type SpecialAttrs = {
children?: undefined;
};
input: {
autoComplete?:
| HTMLInputAutocompleteAttribute
| Omit<HTMLInputAutocompleteAttribute, string>
/** For type: HTMLInputTypeAttribute, excluding 'button' | 'color' | 'file' | 'hidden' | 'image'| 'range' | 'reset' | 'submit' | 'checkbox' | 'radio' */
autoComplete?:
| HTMLInputAutocompleteAttribute
| Omit<HTMLInputAutocompleteAttribute, string>
| undefined;
/** For type: 'checkbox' | 'radio' */
'bind:checked'?: Signal<boolean | undefined>;
/** For type: HTMLInputTypeAttribute, excluding 'button' | 'reset' | 'submit' | 'checkbox' | 'radio' */
'bind:value'?: Signal<string | undefined>;
enterKeyHint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send' | undefined;
height?: Size | undefined;
Expand All @@ -599,6 +602,7 @@ type SpecialAttrs = {
value?: string | ReadonlyArray<string> | number | undefined | null | FormDataEntryValue;
width?: Size | undefined;
children?: undefined;
/** For type: 'button' */
popovertarget?: string | undefined;
popovertargetaction?: PopoverTargetAction | undefined;
};
Expand Down

0 comments on commit fef8da4

Please sign in to comment.