Skip to content

Update core dependencies #2041

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

Merged
merged 1 commit into from
Jun 9, 2025
Merged
Show file tree
Hide file tree
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
14 changes: 7 additions & 7 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29014,7 +29014,7 @@ declare var SVGPatternElement: {
};

/**
* The **`SVGPointList`** interface represents a list of SVGPoint objects.
* The **`SVGPointList`** interface represents a list of DOMPoint objects.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList)
*/
Expand All @@ -29032,7 +29032,7 @@ interface SVGPointList {
*/
readonly numberOfItems: number;
/**
* The **`appendItem()`** method of the SVGPointList interface adds a SVGPoint to the end of the list.
* The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem)
*/
Expand All @@ -29050,25 +29050,25 @@ interface SVGPointList {
*/
getItem(index: number): DOMPoint;
/**
* The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new SVGPoint object to the list.
* The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize)
*/
initialize(newItem: DOMPoint): DOMPoint;
/**
* The **`insertItemBefore()`** method of the SVGPointList interface inserts a SVGPoint before another item in the list.
* The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore)
*/
insertItemBefore(newItem: DOMPoint, index: number): DOMPoint;
/**
* The **`removeItem()`** method of the SVGPointList interface removes a SVGPoint from the list.
* The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem)
*/
removeItem(index: number): DOMPoint;
/**
* The **`replaceItem()`** method of the SVGPointList interface replaces a SVGPoint in the list.
* The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem)
*/
Expand Down Expand Up @@ -29362,7 +29362,7 @@ interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEvent
*/
createSVGNumber(): SVGNumber;
/**
* The `createSVGPoint()` method of the SVGSVGElement interface creates an SVGPoint object outside of any document trees.
* The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint)
*/
Expand Down
14 changes: 7 additions & 7 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28993,7 +28993,7 @@ declare var SVGPatternElement: {
};

/**
* The **`SVGPointList`** interface represents a list of SVGPoint objects.
* The **`SVGPointList`** interface represents a list of DOMPoint objects.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList)
*/
Expand All @@ -29011,7 +29011,7 @@ interface SVGPointList {
*/
readonly numberOfItems: number;
/**
* The **`appendItem()`** method of the SVGPointList interface adds a SVGPoint to the end of the list.
* The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem)
*/
Expand All @@ -29029,25 +29029,25 @@ interface SVGPointList {
*/
getItem(index: number): DOMPoint;
/**
* The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new SVGPoint object to the list.
* The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize)
*/
initialize(newItem: DOMPoint): DOMPoint;
/**
* The **`insertItemBefore()`** method of the SVGPointList interface inserts a SVGPoint before another item in the list.
* The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore)
*/
insertItemBefore(newItem: DOMPoint, index: number): DOMPoint;
/**
* The **`removeItem()`** method of the SVGPointList interface removes a SVGPoint from the list.
* The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem)
*/
removeItem(index: number): DOMPoint;
/**
* The **`replaceItem()`** method of the SVGPointList interface replaces a SVGPoint in the list.
* The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem)
*/
Expand Down Expand Up @@ -29341,7 +29341,7 @@ interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEvent
*/
createSVGNumber(): SVGNumber;
/**
* The `createSVGPoint()` method of the SVGSVGElement interface creates an SVGPoint object outside of any document trees.
* The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint)
*/
Expand Down
14 changes: 7 additions & 7 deletions baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29014,7 +29014,7 @@ declare var SVGPatternElement: {
};

/**
* The **`SVGPointList`** interface represents a list of SVGPoint objects.
* The **`SVGPointList`** interface represents a list of DOMPoint objects.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList)
*/
Expand All @@ -29032,7 +29032,7 @@ interface SVGPointList {
*/
readonly numberOfItems: number;
/**
* The **`appendItem()`** method of the SVGPointList interface adds a SVGPoint to the end of the list.
* The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem)
*/
Expand All @@ -29050,25 +29050,25 @@ interface SVGPointList {
*/
getItem(index: number): DOMPoint;
/**
* The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new SVGPoint object to the list.
* The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize)
*/
initialize(newItem: DOMPoint): DOMPoint;
/**
* The **`insertItemBefore()`** method of the SVGPointList interface inserts a SVGPoint before another item in the list.
* The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore)
*/
insertItemBefore(newItem: DOMPoint, index: number): DOMPoint;
/**
* The **`removeItem()`** method of the SVGPointList interface removes a SVGPoint from the list.
* The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem)
*/
removeItem(index: number): DOMPoint;
/**
* The **`replaceItem()`** method of the SVGPointList interface replaces a SVGPoint in the list.
* The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem)
*/
Expand Down Expand Up @@ -29362,7 +29362,7 @@ interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEvent
*/
createSVGNumber(): SVGNumber;
/**
* The `createSVGPoint()` method of the SVGSVGElement interface creates an SVGPoint object outside of any document trees.
* The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint)
*/
Expand Down