Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added types for the search tag #256

Merged
merged 3 commits into from
Dec 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions src/jsx/jsx.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,11 @@
ruby: HTMLProps<JSXTE.RubyTagProps>;
s: HTMLProps<JSXTE.STagProps>;
samp: HTMLProps<JSXTE.SampTagProps>;
slot: HTMLProps<JSXTE.SlotTagProps>;
search: HTMLProps<JSXTE.SearchTagProps>;
script: HTMLProps<JSXTE.ScriptTagProps>;
section: HTMLProps<JSXTE.SectionTagProps>;
select: HTMLProps<JSXTE.SelectTagProps>;
slot: HTMLProps<JSXTE.SlotTagProps>;
small: HTMLProps<JSXTE.SmallTagProps>;
source: HTMLProps<JSXTE.SourceTagProps>;
span: HTMLProps<JSXTE.SpanTagProps>;
Expand All @@ -170,9 +171,9 @@
summary: HTMLProps<JSXTE.SummaryTagProps>;
sup: HTMLProps<JSXTE.SupTagProps>;
table: HTMLProps<JSXTE.TableTagProps>;
template: HTMLProps<JSXTE.TemplateTagProps>;
tbody: HTMLProps<JSXTE.TbodyTagProps>;
td: HTMLProps<JSXTE.TdTagProps>;
template: HTMLProps<JSXTE.TemplateTagProps>;
textarea: HTMLProps<JSXTE.TextareaTagProps>;
tfoot: HTMLProps<JSXTE.TfootTagProps>;
th: HTMLProps<JSXTE.ThTagProps>;
Expand All @@ -197,15 +198,15 @@

// Interfaces for HTML tags that do not have any additional attributes defined
namespace JSXTE {
interface AbbrTagProps {}

Check warning on line 201 in src/jsx/jsx.types.ts

View workflow job for this annotation

GitHub Actions / run-tests

An empty interface is equivalent to `{}`
interface AddressTagProps {}

Check warning on line 202 in src/jsx/jsx.types.ts

View workflow job for this annotation

GitHub Actions / run-tests

An empty interface is equivalent to `{}`
interface ArticleTagProps {}

Check warning on line 203 in src/jsx/jsx.types.ts

View workflow job for this annotation

GitHub Actions / run-tests

An empty interface is equivalent to `{}`
interface AsideTagProps {}

Check warning on line 204 in src/jsx/jsx.types.ts

View workflow job for this annotation

GitHub Actions / run-tests

An empty interface is equivalent to `{}`
interface BTagProps {}
interface BdiTagProps {}

Check warning on line 205 in src/jsx/jsx.types.ts

View workflow job for this annotation

GitHub Actions / run-tests

An empty interface is equivalent to `{}`
interface BigTagProps {}

Check warning on line 206 in src/jsx/jsx.types.ts

View workflow job for this annotation

GitHub Actions / run-tests

An empty interface is equivalent to `{}`
interface BodyTagProps {}

Check warning on line 207 in src/jsx/jsx.types.ts

View workflow job for this annotation

GitHub Actions / run-tests

An empty interface is equivalent to `{}`
interface BrTagProps {}

Check warning on line 208 in src/jsx/jsx.types.ts

View workflow job for this annotation

GitHub Actions / run-tests

An empty interface is equivalent to `{}`
interface BTagProps {}

Check warning on line 209 in src/jsx/jsx.types.ts

View workflow job for this annotation

GitHub Actions / run-tests

An empty interface is equivalent to `{}`
interface CaptionTagProps {}
interface CiteTagProps {}
interface CodeTagProps {}
Expand All @@ -225,8 +226,8 @@
interface H4TagProps {}
interface H5TagProps {}
interface H6TagProps {}
interface HeadTagProps {}
interface HeaderTagProps {}
interface HeadTagProps {}
interface HgroupTagProps {}
interface HrTagProps {}
interface ITagProps {}
Expand All @@ -235,8 +236,8 @@
interface LegendTagProps {}
interface MainTagProps {}
interface MarkTagProps {}
interface MenuTagProps {}
interface MenuitemTagProps {}
interface MenuTagProps {}
interface NavTagProps {}
interface NoindexTagProps {}
interface NoscriptTagProps {}
Expand All @@ -246,28 +247,29 @@
interface RpTagProps {}
interface RtTagProps {}
interface RubyTagProps {}
interface STagProps {}
interface SampTagProps {}
interface SlotTagProps {}
interface SearchTagProps {}
interface SectionTagProps {}
interface SlotTagProps {}
interface SmallTagProps {}
interface SpanTagProps {}
interface STagProps {}
interface StrongTagProps {}
interface SubTagProps {}
interface SummaryTagProps {}
interface SupTagProps {}
interface SvgTagProps {}
interface TableTagProps {}
interface TemplateTagProps {}
interface TbodyTagProps {}
interface TemplateTagProps {}
interface TfootTagProps {}
interface TheadTagProps {}
interface TitleTagProps {}
interface TrTagProps {}
interface UTagProps {}
interface UlTagProps {}
interface UTagProps {}
interface VarTagProps {}
interface WbrTagProps {}
interface WebviewTagProps {}
interface SvgTagProps {}
}
}
Loading