Skip to content

Commit 6a87c4c

Browse files
Update core dependencies (#2392)
Co-authored-by: saschanaz <saschanaz@users.noreply.github.com>
1 parent 9362ed4 commit 6a87c4c

File tree

6 files changed

+34
-34
lines changed

6 files changed

+34
-34
lines changed

baselines/dom.generated.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16853,13 +16853,13 @@ interface HTMLDialogElement extends HTMLElement {
1685316853
*/
1685416854
requestClose(returnValue?: string): void;
1685516855
/**
16856-
* The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.
16856+
* The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
1685716857
*
1685816858
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
1685916859
*/
1686016860
show(): void;
1686116861
/**
16862-
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive.
16862+
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
1686316863
*
1686416864
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
1686516865
*/
@@ -24271,13 +24271,13 @@ interface MouseEvent extends UIEvent {
2427124271
*/
2427224272
readonly metaKey: boolean;
2427324273
/**
24274-
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX.
24274+
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
2427524275
*
2427624276
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
2427724277
*/
2427824278
readonly movementX: number;
2427924279
/**
24280-
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
24280+
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
2428124281
*
2428224282
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
2428324283
*/

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16837,13 +16837,13 @@ interface HTMLDialogElement extends HTMLElement {
1683716837
*/
1683816838
requestClose(returnValue?: string): void;
1683916839
/**
16840-
* The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.
16840+
* The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
1684116841
*
1684216842
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
1684316843
*/
1684416844
show(): void;
1684516845
/**
16846-
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive.
16846+
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
1684716847
*
1684816848
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
1684916849
*/
@@ -24247,13 +24247,13 @@ interface MouseEvent extends UIEvent {
2424724247
*/
2424824248
readonly metaKey: boolean;
2424924249
/**
24250-
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX.
24250+
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
2425124251
*
2425224252
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
2425324253
*/
2425424254
readonly movementX: number;
2425524255
/**
24256-
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
24256+
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
2425724257
*
2425824258
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
2425924259
*/

baselines/ts5.6/dom.generated.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16850,13 +16850,13 @@ interface HTMLDialogElement extends HTMLElement {
1685016850
*/
1685116851
requestClose(returnValue?: string): void;
1685216852
/**
16853-
* The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.
16853+
* The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
1685416854
*
1685516855
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
1685616856
*/
1685716857
show(): void;
1685816858
/**
16859-
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive.
16859+
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
1686016860
*
1686116861
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
1686216862
*/
@@ -24268,13 +24268,13 @@ interface MouseEvent extends UIEvent {
2426824268
*/
2426924269
readonly metaKey: boolean;
2427024270
/**
24271-
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX.
24271+
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
2427224272
*
2427324273
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
2427424274
*/
2427524275
readonly movementX: number;
2427624276
/**
24277-
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
24277+
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
2427824278
*
2427924279
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
2428024280
*/

baselines/ts5.9/dom.generated.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16850,13 +16850,13 @@ interface HTMLDialogElement extends HTMLElement {
1685016850
*/
1685116851
requestClose(returnValue?: string): void;
1685216852
/**
16853-
* The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.
16853+
* The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
1685416854
*
1685516855
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
1685616856
*/
1685716857
show(): void;
1685816858
/**
16859-
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive.
16859+
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
1686016860
*
1686116861
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
1686216862
*/
@@ -24268,13 +24268,13 @@ interface MouseEvent extends UIEvent {
2426824268
*/
2426924269
readonly metaKey: boolean;
2427024270
/**
24271-
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX.
24271+
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
2427224272
*
2427324273
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
2427424274
*/
2427524275
readonly movementX: number;
2427624276
/**
24277-
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
24277+
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
2427824278
*
2427924279
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
2428024280
*/

inputfiles/mdn.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12622,7 +12622,7 @@
1262212622
{
1262312623
"mdn_url": "/en-US/docs/Web/API/HTMLDialogElement/cancel_event",
1262412624
"pageType": "web-api-event",
12625-
"summary": "The cancel event fires on a <dialog> element when the user instructs the browser that they wish to dismiss the current open dialog. The browser fires this event when the user presses the Esc key."
12625+
"summary": "The cancel event fires on a <dialog> element when the user triggers a close request."
1262612626
},
1262712627
{
1262812628
"mdn_url": "/en-US/docs/Web/API/HTMLDialogElement/close",
@@ -12657,12 +12657,12 @@
1265712657
{
1265812658
"mdn_url": "/en-US/docs/Web/API/HTMLDialogElement/show",
1265912659
"pageType": "web-api-instance-method",
12660-
"summary": "The show() method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog."
12660+
"summary": "The show() method of the HTMLDialogElement interface displays the dialog as a non-modal dialog."
1266112661
},
1266212662
{
1266312663
"mdn_url": "/en-US/docs/Web/API/HTMLDialogElement/showModal",
1266412664
"pageType": "web-api-instance-method",
12665-
"summary": "The showModal() method of the\nHTMLDialogElement interface displays the dialog as a modal, over the top\nof any other dialogs that might be present. It displays in the top layer, along with a\n::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive."
12665+
"summary": "The showModal() method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible."
1266612666
},
1266712667
{
1266812668
"mdn_url": "/en-US/docs/Web/API/HTMLDivElement",
@@ -19047,12 +19047,12 @@
1904719047
{
1904819048
"mdn_url": "/en-US/docs/Web/API/MouseEvent/movementX",
1904919049
"pageType": "web-api-instance-property",
19050-
"summary": "The movementX read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event.\nIn other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX."
19050+
"summary": "The movementX read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type."
1905119051
},
1905219052
{
1905319053
"mdn_url": "/en-US/docs/Web/API/MouseEvent/movementY",
1905419054
"pageType": "web-api-instance-property",
19055-
"summary": "The movementY read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event.\nIn other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY."
19055+
"summary": "The movementY read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type."
1905619056
},
1905719057
{
1905819058
"mdn_url": "/en-US/docs/Web/API/MouseEvent/mozInputSource",
@@ -19697,7 +19697,7 @@
1969719697
{
1969819698
"mdn_url": "/en-US/docs/Web/API/Navigator/deviceMemory",
1969919699
"pageType": "web-api-instance-property",
19700-
"summary": "The deviceMemory read-only\nproperty of the Navigator interface returns the approximate amount of\ndevice memory in gigabytes."
19700+
"summary": "The deviceMemory read-only property of the Navigator interface returns the approximate amount of device memory in gigabytes."
1970119701
},
1970219702
{
1970319703
"mdn_url": "/en-US/docs/Web/API/Navigator/devicePosture",
@@ -20012,7 +20012,7 @@
2001220012
{
2001320013
"mdn_url": "/en-US/docs/Web/API/NavigatorUAData/getHighEntropyValues",
2001420014
"pageType": "web-api-instance-method",
20015-
"summary": "The getHighEntropyValues() method of the NavigatorUAData interface is a Promise that resolves with a dictionary object containing the high entropy values the user-agent returns."
20015+
"summary": "The getHighEntropyValues() method of the NavigatorUAData interface returns a Promise that resolves with a dictionary object containing low entropy information and requested high entropy information about the browser."
2001620016
},
2001720017
{
2001820018
"mdn_url": "/en-US/docs/Web/API/NavigatorUAData/mobile",
@@ -21137,7 +21137,7 @@
2113721137
{
2113821138
"mdn_url": "/en-US/docs/Web/API/Path2D/Path2D",
2113921139
"pageType": "web-api-constructor",
21140-
"summary": "The Path2D() constructor returns a newly instantiated\nPath2D object, optionally with another path as an argument (creates a\ncopy), or optionally with a string consisting of SVG path data."
21140+
"summary": "The Path2D() constructor returns a newly instantiated Path2D object, optionally with another path as an argument (creates a copy), or optionally with a string consisting of SVG path data."
2114121141
},
2114221142
{
2114321143
"mdn_url": "/en-US/docs/Web/API/Payment_Handler_API",
@@ -37567,7 +37567,7 @@
3756737567
{
3756837568
"mdn_url": "/en-US/docs/Web/API/WorkerNavigator/deviceMemory",
3756937569
"pageType": "web-api-instance-property",
37570-
"summary": "The deviceMemory read-only\nproperty of the WorkerNavigator interface returns the approximate amount of\ndevice memory in gigabytes."
37570+
"summary": "The deviceMemory read-only property of the WorkerNavigator interface returns the approximate amount of device memory in gigabytes."
3757137571
},
3757237572
{
3757337573
"mdn_url": "/en-US/docs/Web/API/WorkerNavigator/globalPrivacyControl",

package-lock.json

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

0 commit comments

Comments
 (0)