Skip to content

Commit 22cb393

Browse files
authored
Merge branch 'main' into 1937
2 parents 79d2845 + 1a786e4 commit 22cb393

File tree

5 files changed

+72
-3
lines changed

5 files changed

+72
-3
lines changed

‎.github/ISSUE_TEMPLATE/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
blank_issues_enabled: true
2+
issue_templates:
3+
- name: Web API type definition issue
4+
description: Report inconsistencies between TypeScript's web API typings and browser behavior.
5+
labels: [lib.d.ts bug]
6+
file: web_api_type_definition_issue.yml
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: "Web API type definition issue"
2+
title: "[Web API type definition issue] "
3+
labels: [lib.d.ts bug]
4+
assignees: []
5+
description: "Report inconsistencies between TypeScript's web API typings and browser behavior."
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
## Web API Type Definition Issue
11+
Provide details of the issue.
12+
- type: input
13+
id: issue_summary
14+
attributes:
15+
label: "Summary"
16+
description: "Brief summary of the issue"
17+
placeholder: "e.g., Mismatch in event handling..."
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: expected_vs_actual
22+
attributes:
23+
label: "Expected vs. Actual Behavior"
24+
description: "Describe what you expected and what actually happened"
25+
placeholder: "Expected: ...\nActual: ..."
26+
validations:
27+
required: true
28+
- type: input
29+
id: playground_link
30+
attributes:
31+
label: "Playground Link"
32+
description: "Paste the TypeScript playground link"
33+
placeholder: "https://www.typescriptlang.org/play/..."
34+
- type: checkboxes
35+
id: browser_support
36+
attributes:
37+
label: "Browser Support"
38+
description: "Ensure that the API is supported in at least two major browser engines (not two Chromium-based browsers)."
39+
options:
40+
- label: "This API is supported in at least two major browser engines (not two Chromium-based browsers)."
41+
required: true
42+
- type: checkboxes
43+
id: tried_latest_releases
44+
attributes:
45+
label: "Have Tried The Latest Releases"
46+
description: "Make sure your problem is still reproducible on the latest releases."
47+
options:
48+
- label: "This issue applies to the latest release of TypeScript."
49+
required: true
50+
- label: "This issue applies to the latest release of `@types/web`."
51+
required: true
52+
- type: textarea
53+
id: additional_context
54+
attributes:
55+
label: "Additional Context"
56+
description: "Any extra information, logs, or references."
57+
placeholder: "Optional details..."

‎baselines/dom.generated.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21914,7 +21914,9 @@ declare var SVGFEPointLightElement: {
2191421914
interface SVGFESpecularLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
2191521915
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/in1) */
2191621916
readonly in1: SVGAnimatedString;
21917+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/kernelUnitLengthX) */
2191721918
readonly kernelUnitLengthX: SVGAnimatedNumber;
21919+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/kernelUnitLengthY) */
2191821920
readonly kernelUnitLengthY: SVGAnimatedNumber;
2191921921
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/specularConstant) */
2192021922
readonly specularConstant: SVGAnimatedNumber;
@@ -22690,6 +22692,7 @@ interface SVGRadialGradientElement extends SVGGradientElement {
2269022692
readonly cx: SVGAnimatedLength;
2269122693
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cy) */
2269222694
readonly cy: SVGAnimatedLength;
22695+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fr) */
2269322696
readonly fr: SVGAnimatedLength;
2269422697
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fx) */
2269522698
readonly fx: SVGAnimatedLength;

‎baselines/ts5.5/dom.generated.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21893,7 +21893,9 @@ declare var SVGFEPointLightElement: {
2189321893
interface SVGFESpecularLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
2189421894
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/in1) */
2189521895
readonly in1: SVGAnimatedString;
21896+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/kernelUnitLengthX) */
2189621897
readonly kernelUnitLengthX: SVGAnimatedNumber;
21898+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/kernelUnitLengthY) */
2189721899
readonly kernelUnitLengthY: SVGAnimatedNumber;
2189821900
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/specularConstant) */
2189921901
readonly specularConstant: SVGAnimatedNumber;
@@ -22669,6 +22671,7 @@ interface SVGRadialGradientElement extends SVGGradientElement {
2266922671
readonly cx: SVGAnimatedLength;
2267022672
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cy) */
2267122673
readonly cy: SVGAnimatedLength;
22674+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fr) */
2267222675
readonly fr: SVGAnimatedLength;
2267322676
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fx) */
2267422677
readonly fx: SVGAnimatedLength;

‎package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)