diff --git a/packages/dom-expressions/src/jsx-h.d.ts b/packages/dom-expressions/src/jsx-h.d.ts index b9056251..0065db12 100644 --- a/packages/dom-expressions/src/jsx-h.d.ts +++ b/packages/dom-expressions/src/jsx-h.d.ts @@ -741,7 +741,7 @@ export namespace JSX { name?: FunctionMaybe; } interface FormHTMLAttributes extends HTMLAttributes { - acceptcharset?: FunctionMaybe; + "accept-charset"?: FunctionMaybe; action?: FunctionMaybe; autocomplete?: FunctionMaybe; encoding?: FunctionMaybe; @@ -750,7 +750,6 @@ export namespace JSX { name?: FunctionMaybe; novalidate?: FunctionMaybe; target?: FunctionMaybe; - acceptCharset?: FunctionMaybe; noValidate?: FunctionMaybe; } interface IframeHTMLAttributes extends HTMLAttributes { @@ -885,9 +884,8 @@ export namespace JSX { interface MetaHTMLAttributes extends HTMLAttributes { charset?: FunctionMaybe; content?: FunctionMaybe; - httpequiv?: FunctionMaybe; + "http-equiv"?: FunctionMaybe; name?: FunctionMaybe; - httpEquiv?: FunctionMaybe; } interface MeterHTMLAttributes extends HTMLAttributes { form?: FunctionMaybe; diff --git a/packages/dom-expressions/src/jsx.d.ts b/packages/dom-expressions/src/jsx.d.ts index 9cd2447a..f80caa8c 100644 --- a/packages/dom-expressions/src/jsx.d.ts +++ b/packages/dom-expressions/src/jsx.d.ts @@ -839,7 +839,7 @@ export namespace JSX { name?: string; } interface FormHTMLAttributes extends HTMLAttributes { - acceptcharset?: string; + "accept-charset"?: string; action?: string; autocomplete?: string; encoding?: HTMLFormEncType; @@ -848,7 +848,6 @@ export namespace JSX { name?: string; novalidate?: boolean; target?: string; - acceptCharset?: string; noValidate?: boolean; } interface IframeHTMLAttributes extends HTMLAttributes { @@ -989,9 +988,8 @@ export namespace JSX { interface MetaHTMLAttributes extends HTMLAttributes { charset?: string; content?: string; - httpequiv?: string; + "http-equiv"?: string; name?: string; - httpEquiv?: string; } interface MeterHTMLAttributes extends HTMLAttributes { form?: string;