mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-28 09:22:42 -05:00
Consistently ignore attributes with hyphenated names in JSX (#44873)
* Consistently skip attributes with hyphenated names in JSX * Add regression test * Accept new baselines * Fix tests * Accept new baselines
This commit is contained in:
22
tests/cases/compiler/ignoredJsxAttributes.tsx
Normal file
22
tests/cases/compiler/ignoredJsxAttributes.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
// @strict: true
|
||||
// @jsx: react
|
||||
/// <reference path="/.lib/react16.d.ts" />
|
||||
|
||||
// Repro from #44797
|
||||
|
||||
import * as React from "react";
|
||||
|
||||
interface Props {
|
||||
foo: string;
|
||||
[dataProp: string]: string;
|
||||
}
|
||||
|
||||
declare function Yadda(props: Props): JSX.Element;
|
||||
|
||||
let props: Props = {
|
||||
foo: "",
|
||||
"data-yadda": 42, // Error
|
||||
};
|
||||
|
||||
let x1 = <Yadda foo="hello" data-yadda={42}/>;
|
||||
let x2 = <Yadda bar="hello" data-yadda={42}/>; // Error
|
||||
Reference in New Issue
Block a user