From 4d1b14da84233623dfc1dce498d251aed94aaa4d Mon Sep 17 00:00:00 2001 From: orta <49038+orta@users.noreply.github.com> Date: Thu, 29 Jan 2026 08:18:52 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Update=20core=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- baselines/dom.generated.d.ts | 8 ++++---- baselines/ts5.5/dom.generated.d.ts | 8 ++++---- baselines/ts5.6/dom.generated.d.ts | 8 ++++---- baselines/ts5.9/dom.generated.d.ts | 8 ++++---- inputfiles/mdn.json | 18 +++++++++--------- package-lock.json | 18 +++++++++--------- 6 files changed, 34 insertions(+), 34 deletions(-) diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index 18a13c41f..306ff0962 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -16853,13 +16853,13 @@ interface HTMLDialogElement extends HTMLElement { */ requestClose(returnValue?: string): void; /** - * The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog. + * The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show) */ show(): void; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal) */ @@ -24271,13 +24271,13 @@ interface MouseEvent extends UIEvent { */ readonly metaKey: boolean; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX) */ readonly movementX: number; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY) */ diff --git a/baselines/ts5.5/dom.generated.d.ts b/baselines/ts5.5/dom.generated.d.ts index 781f96c35..ec54541bc 100644 --- a/baselines/ts5.5/dom.generated.d.ts +++ b/baselines/ts5.5/dom.generated.d.ts @@ -16837,13 +16837,13 @@ interface HTMLDialogElement extends HTMLElement { */ requestClose(returnValue?: string): void; /** - * The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog. + * The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show) */ show(): void; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal) */ @@ -24247,13 +24247,13 @@ interface MouseEvent extends UIEvent { */ readonly metaKey: boolean; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX) */ readonly movementX: number; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY) */ diff --git a/baselines/ts5.6/dom.generated.d.ts b/baselines/ts5.6/dom.generated.d.ts index 0cf98a763..c7e427cb2 100644 --- a/baselines/ts5.6/dom.generated.d.ts +++ b/baselines/ts5.6/dom.generated.d.ts @@ -16850,13 +16850,13 @@ interface HTMLDialogElement extends HTMLElement { */ requestClose(returnValue?: string): void; /** - * The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog. + * The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show) */ show(): void; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal) */ @@ -24268,13 +24268,13 @@ interface MouseEvent extends UIEvent { */ readonly metaKey: boolean; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX) */ readonly movementX: number; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY) */ diff --git a/baselines/ts5.9/dom.generated.d.ts b/baselines/ts5.9/dom.generated.d.ts index c63dc3c7a..1e2b7650b 100644 --- a/baselines/ts5.9/dom.generated.d.ts +++ b/baselines/ts5.9/dom.generated.d.ts @@ -16850,13 +16850,13 @@ interface HTMLDialogElement extends HTMLElement { */ requestClose(returnValue?: string): void; /** - * The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog. + * The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show) */ show(): void; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal) */ @@ -24268,13 +24268,13 @@ interface MouseEvent extends UIEvent { */ readonly metaKey: boolean; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX) */ readonly movementX: number; /** - * 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. + * 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. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY) */ diff --git a/inputfiles/mdn.json b/inputfiles/mdn.json index 128a83004..5fbbdd00c 100644 --- a/inputfiles/mdn.json +++ b/inputfiles/mdn.json @@ -12622,7 +12622,7 @@ { "mdn_url": "/en-US/docs/Web/API/HTMLDialogElement/cancel_event", "pageType": "web-api-event", - "summary": "The cancel event fires on a 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." + "summary": "The cancel event fires on a element when the user triggers a close request." }, { "mdn_url": "/en-US/docs/Web/API/HTMLDialogElement/close", @@ -12657,12 +12657,12 @@ { "mdn_url": "/en-US/docs/Web/API/HTMLDialogElement/show", "pageType": "web-api-instance-method", - "summary": "The show() method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog." + "summary": "The show() method of the HTMLDialogElement interface displays the dialog as a non-modal dialog." }, { "mdn_url": "/en-US/docs/Web/API/HTMLDialogElement/showModal", "pageType": "web-api-instance-method", - "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." + "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." }, { "mdn_url": "/en-US/docs/Web/API/HTMLDivElement", @@ -19047,12 +19047,12 @@ { "mdn_url": "/en-US/docs/Web/API/MouseEvent/movementX", "pageType": "web-api-instance-property", - "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." + "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." }, { "mdn_url": "/en-US/docs/Web/API/MouseEvent/movementY", "pageType": "web-api-instance-property", - "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." + "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." }, { "mdn_url": "/en-US/docs/Web/API/MouseEvent/mozInputSource", @@ -19697,7 +19697,7 @@ { "mdn_url": "/en-US/docs/Web/API/Navigator/deviceMemory", "pageType": "web-api-instance-property", - "summary": "The deviceMemory read-only\nproperty of the Navigator interface returns the approximate amount of\ndevice memory in gigabytes." + "summary": "The deviceMemory read-only property of the Navigator interface returns the approximate amount of device memory in gigabytes." }, { "mdn_url": "/en-US/docs/Web/API/Navigator/devicePosture", @@ -20012,7 +20012,7 @@ { "mdn_url": "/en-US/docs/Web/API/NavigatorUAData/getHighEntropyValues", "pageType": "web-api-instance-method", - "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." + "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." }, { "mdn_url": "/en-US/docs/Web/API/NavigatorUAData/mobile", @@ -21137,7 +21137,7 @@ { "mdn_url": "/en-US/docs/Web/API/Path2D/Path2D", "pageType": "web-api-constructor", - "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." + "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." }, { "mdn_url": "/en-US/docs/Web/API/Payment_Handler_API", @@ -37567,7 +37567,7 @@ { "mdn_url": "/en-US/docs/Web/API/WorkerNavigator/deviceMemory", "pageType": "web-api-instance-property", - "summary": "The deviceMemory read-only\nproperty of the WorkerNavigator interface returns the approximate amount of\ndevice memory in gigabytes." + "summary": "The deviceMemory read-only property of the WorkerNavigator interface returns the approximate amount of device memory in gigabytes." }, { "mdn_url": "/en-US/docs/Web/API/WorkerNavigator/globalPrivacyControl", diff --git a/package-lock.json b/package-lock.json index b332b49da..88f7ff3db 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1177,9 +1177,9 @@ ] }, "node_modules/@webref/css": { - "version": "8.2.1", - "resolved": "https://registry.npmjs.org/@webref/css/-/css-8.2.1.tgz", - "integrity": "sha512-0R2ntGONXUBoULWDEJc9/JC75Yo15+z5D3G4EYH6SvGhs3tqBWFh/ujKKBMyitVZ0iZQDNm/MSuIBZJhUrMYvw==", + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/@webref/css/-/css-8.2.3.tgz", + "integrity": "sha512-d6xT5JnSR1CJZom+1PRZGQ1XQ1inTcWDsXGYWVZJ9jxB3k2eHmqUiGZt8Y4ct3GlWI87XM/AowL3w3L+CwJg9g==", "dev": true, "license": "MIT", "peerDependencies": { @@ -1194,16 +1194,16 @@ "license": "MIT" }, "node_modules/@webref/events": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/@webref/events/-/events-1.20.0.tgz", - "integrity": "sha512-yAwTO+rE6roP3+Pw375hluVe5OKXAkcFvu8fuRc7QRxccVaBaoEilpNmJpletL1OA1xFnjCYlHUf8s7kiEYrZw==", + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/@webref/events/-/events-1.20.1.tgz", + "integrity": "sha512-FDs6hvJb4QlLgu6XQQdY8BIZx0R0doqqqAUMFeDh31waqkbySjwr2Dy/OcH03EQPoAK2JRUXWFJbAugSlyR/BQ==", "dev": true, "license": "MIT" }, "node_modules/@webref/idl": { - "version": "3.71.1", - "resolved": "https://registry.npmjs.org/@webref/idl/-/idl-3.71.1.tgz", - "integrity": "sha512-dBeXSjaN1+kANsQjWI3koNqJK63jxbXBThdLM14AWG/FptXeeVU8cEtbsLub9qJMJkmG6Ua46knLyo5w5+SowQ==", + "version": "3.72.0", + "resolved": "https://registry.npmjs.org/@webref/idl/-/idl-3.72.0.tgz", + "integrity": "sha512-AMPRP29HMorl/sU1J778v7im+rDrjBlncIGOJB/LL/1FxT/C14N3j4vSpzJq8ck9HIs3BDXi13nl4B/UWI5GlQ==", "dev": true, "license": "MIT", "peer": true,