diff --git a/files/en-us/learn_web_development/extensions/forms/advanced_form_styling/index.md b/files/en-us/learn_web_development/extensions/forms/advanced_form_styling/index.md
index dd687ac07292f7b..a216b6970ef125c 100644
--- a/files/en-us/learn_web_development/extensions/forms/advanced_form_styling/index.md
+++ b/files/en-us/learn_web_development/extensions/forms/advanced_form_styling/index.md
@@ -186,9 +186,50 @@ input[type="search"]:not(:focus, :active)::-webkit-search-cancel-button {
}
```
+### Setting form control color tints using `accent-color`
+
+If you only want to style the primary tint color of checkboxes, radio buttons, or range sliders, the {{cssxref("accent-color")}} will do it without requiring `appearance: none`. This is useful for basic styling cases, as the controls maintain their OS-level styling, but with an altered main color.
+
+```html live-sample___accent-color
+
+```
+
+```css live-sample___accent-color
+input {
+ accent-color: rebeccapurple;
+}
+```
+
+{{EmbedLiveSample("accent-color", '100%', 200)}}
+
+Because the controls keep their native appearance, they follow platform conventions — including forced-colors modes — with no further work on your part. In addition, the browser automatically chooses a complementary secondary color with enough contrast to the `accent-color` to keep the control accessible. Play with the above live example and set some light and dark `accent-color` values to see the effects.
+
### Styling checkboxes and radio buttons using `appearance`
-Styling a checkbox or a radio button is tricky by default. The sizes of checkbox and radio button default styles are not meant to be changed, and browsers react very differently when you try. Some increase the size of the control, and some keep the control the same size and add extra space around it.
+Further styling of a checkbox or a radio button requires more effort. The default sizes of checkboxes and radio buttons were not meant to be changed, and browsers react very differently when you try. Some increase the control size, and some keep it the same and add extra space around the control.
A much better approach is to remove the default appearance of checkboxes and radio buttons altogether with {{cssxref("appearance", "appearance: none;")}}, and then add your own styles to their various states.
@@ -558,7 +599,7 @@ The date/time input types ([`datetime-local`](/en-US/docs/Web/HTML/Reference/Ele
However, the internal parts of the control (e.g., the popup calendar that you use to pick a date, the spinner that you can use to increment/decrement values) are not stylable at all, and you can't get rid of them using `appearance: none;`. If you really need full control over the styling, you'll have to either use a library to generate a custom control or build your own.
> [!NOTE]
-> It is worth mentioning [` `](/en-US/docs/Web/HTML/Reference/Elements/input/number) here too — this also has a spinner that you can use to increment/decrement values, so potentially suffers from the same problem. However, in the case of the `number` type the data being collected is simpler, and it is easy to just use a `tel` input type instead, which has the appearance of `text`, but displays the numeric keypad in devices with touch keyboards.
+> [` `](/en-US/docs/Web/HTML/Reference/Elements/input/number) has a spinner too, and its internal parts are no easier to style. If you want to remove the spinner, use [` `](/en-US/docs/Web/HTML/Reference/Elements/input/text) with [`inputmode="numeric"`](/en-US/docs/Web/HTML/Reference/Global_attributes/inputmode) set to display a numeric keypad on devices with touch keyboards and a [`pattern`](/en-US/docs/Web/HTML/Reference/Attributes/pattern) attribute that limits input values to a number. See also [` ` > Accessibility](/en-US/docs/Web/HTML/Reference/Elements/input/number#accessibility).
### Range input types
@@ -593,11 +634,32 @@ However, a custom solution is the only way to get anything significantly differe
### File input types
-Inputs of type file are generally OK — as you saw in our example, it is fairly easy to create something that fits in OK with the rest of the page — the output line that is part of the control will inherit the parent font if you tell the input to do so, and you can style the custom list of file names and sizes in any way you want; we created it after all.
+Inputs of type file are generally OK — it is fairly easy to create something that fits in OK with the rest of the page. The output line that is part of the control will inherit the parent font if you tell the input to do so, and you can style the custom list of file names and sizes in any way you want.
-The only problem with file pickers is that the button you press to open the file picker is completely unstylable — it can't be sized or colored, and it won't even accept a different font.
+The button you press to open the file picker can be styled with the {{cssxref("::file-selector-button")}} pseudo-element, which accepts the same properties as any other button:
-One way around this is to take advantage of the fact that if you have a label associated with a form control, clicking the label will activate the control. So you could hide the actual form input using something like this:
+```html live-sample___file-selector-button
+
+```
+
+```css live-sample___file-selector-button
+input[type="file"]::file-selector-button {
+ border: 1px solid darkgrey;
+ border-radius: 5px;
+ background: linear-gradient(to bottom, #eeeeee, #cccccc);
+ padding: 0.25em 0.75em;
+ font: inherit;
+}
+```
+
+{{EmbedLiveSample("file-selector-button", '100%', 100)}}
+
+You can't style the text beside the button — the "no file chosen" message — or the displayed filename once chosen. The browser generates that text and doesn't expose it to CSS. To work around this problem, use the control's label and the fact that clicking the label activates the control.
+
+You can hide the actual form input using something like this:
```css
input[type="file"] {
@@ -730,18 +792,18 @@ function returnFileSize(number) {
{{EmbedLiveSample("styled-file-picker", '100%', 200)}}
-You can also press the **Play** button to run the example in MDN Playground and edit the source code.
+You can also press the **Play** button to run the example in MDN Playground and check out the full source code.
### Meters and progress bars
-[``](/en-US/docs/Web/HTML/Reference/Elements/meter) and [``](/en-US/docs/Web/HTML/Reference/Elements/progress) are possibly the worst of the lot. As you saw in the earlier example, we can set them to the desired width relatively accurately. But beyond that, they are really difficult to style in any way. They don't handle height settings consistently between each other and between browsers, you can color the background but not the foreground bar, and setting `appearance: none` on them makes things worse, not better.
+[``](/en-US/docs/Web/HTML/Reference/Elements/meter) and [``](/en-US/docs/Web/HTML/Reference/Elements/progress) are possibly the worst of the lot. As you saw in the earlier example, we can set them to the desired width relatively accurately. But beyond that, they are really difficult to style. They don't handle height settings consistently between each other and between browsers, you can color the background but not the foreground bar, and setting `appearance: none` on them makes things worse, not better.
-It is easier to create your own custom solution for these features if you want to control the styling, or use a third-party solution such as [progressbar.js](https://kimmobrunfeldt.github.io/progressbar.js/#examples).
+It is easier to create your own custom solution to control the styling for these features, or use a third-party solution such as [progressbar.js](https://kimmobrunfeldt.github.io/progressbar.js/#examples).
## Summary
-While there are still difficulties using CSS with HTML forms, there are ways to get around many of the problems. There are no clean, universal solutions, but modern browsers offer new possibilities. For now, the best solution is to learn more about the way the different browsers support CSS when applied to HTML form controls.
+Styling HTML forms presents some challenges; there are however ways to get around many of them. There are no clean, universal solutions, but modern browsers offer new possibilities. For now, the best solution is to learn more about how different browsers support CSS when applied to HTML form controls.
-In the next article of this module, we will explore creating [fully-customized `` elements](/en-US/docs/Learn_web_development/Extensions/Forms/Customizable_select) using the dedicated, modern HTML and CSS features available for this purpose.
+In the next article, we will explore creating [fully-customized `` elements](/en-US/docs/Learn_web_development/Extensions/Forms/Customizable_select) using the dedicated, modern HTML and CSS features available for this purpose.
{{PreviousMenuNext("Learn_web_development/Extensions/Forms/Styling_web_forms", "Learn_web_development/Extensions/Forms/Customizable_select", "Learn_web_development/Extensions/Forms")}}
diff --git a/files/en-us/learn_web_development/extensions/forms/styling_web_forms/index.md b/files/en-us/learn_web_development/extensions/forms/styling_web_forms/index.md
index 4d229f64bc07fdb..0e4e84fcc8ac4c5 100644
--- a/files/en-us/learn_web_development/extensions/forms/styling_web_forms/index.md
+++ b/files/en-us/learn_web_development/extensions/forms/styling_web_forms/index.md
@@ -62,6 +62,8 @@ The article [Advanced form styling](/en-US/docs/Learn_web_development/Extensions
- Date-related controls such as [` `](/en-US/docs/Web/HTML/Reference/Elements/input/datetime-local)
- [` `](/en-US/docs/Web/HTML/Reference/Elements/input/range)
- [` `](/en-US/docs/Web/HTML/Reference/Elements/input/file)
+ > [!NOTE]
+ > The button that opens the file picker can be styled with {{cssxref("::file-selector-button")}}. The text beside it, which names the selected file, cannot.
- Elements involved in creating dropdown widgets, including {{HTMLElement("select")}}, {{HTMLElement("option")}}, {{HTMLElement("optgroup")}} and {{HTMLElement("datalist")}}.
> [!NOTE]
> Some browsers now support [Customizable select elements](/en-US/docs/Learn_web_development/Extensions/Forms/Customizable_select), a set of HTML and CSS features that together enable full customization of `` elements and their contents just like any regular DOM elements.
diff --git a/files/en-us/mozilla/firefox/experimental_features/index.md b/files/en-us/mozilla/firefox/experimental_features/index.md
index fbaa5979cf291f1..697a2b7fab65c29 100644
--- a/files/en-us/mozilla/firefox/experimental_features/index.md
+++ b/files/en-us/mozilla/firefox/experimental_features/index.md
@@ -435,6 +435,20 @@ The {{cssxref("text-decoration-inset")}} CSS property now supports percentages a
- `layout.css.text-decoration-inset-percentage.enabled`
- : Set to `true` to enable.
+### `view-timeline` includes `view-timeline-inset`
+
+The {{cssxref("view-timeline")}} shorthand property now supports the {{cssxref("view-timeline-inset")}} property. The shorthand lets you specify start and/or end inset (or outset) values to adjust the position of the view progress timeline. ([Firefox bug 2046602](https://bugzil.la/2046602)).
+
+| Release channel | Version added | Enabled by default? |
+| ----------------- | ------------- | ------------------- |
+| Nightly | 155 | Yes |
+| Developer Edition | 155 | No |
+| Beta | 155 | No |
+| Release | 155 | No |
+
+- `layout.css.scroll-driven-animations.enabled`
+ - : Set to `true` to enable.
+
## SVG
**No experimental features in this release cycle.**
diff --git a/files/en-us/mozilla/firefox/releases/155/index.md b/files/en-us/mozilla/firefox/releases/155/index.md
index 28532beba224ba5..83e83a6473fcdf5 100644
--- a/files/en-us/mozilla/firefox/releases/155/index.md
+++ b/files/en-us/mozilla/firefox/releases/155/index.md
@@ -179,3 +179,7 @@ You can find more such features on the [Experimental features](/en-US/docs/Mozil
- **`border-area` value for `background-clip`**: `layout.css.background-clip.border-area.enabled`
The [`border-area`](/en-US/docs/Web/CSS/Reference/Properties/background-clip#border-area) value of the {{cssxref("background-clip")}} CSS property clips the background to the area painted by the element's border, which makes it possible to use a gradient or image as a border. ([Firefox bug 2045230](https://bugzil.la/2045230)).
+
+- **`view-timeline` includes `view-timeline-inset`**: `layout.css.scroll-driven-animations.enabled`
+
+ The {{cssxref("view-timeline")}} shorthand property now supports the {{cssxref("view-timeline-inset")}} property. The shorthand lets you specify start and/or end inset (or outset) values to adjust the position of the view progress timeline. ([Firefox bug 2046602](https://bugzil.la/2046602)).
diff --git a/files/en-us/mozilla/firefox/releases/61/index.md b/files/en-us/mozilla/firefox/releases/61/index.md
index 116dd848eea1ec7..fe83b54438675f1 100644
--- a/files/en-us/mozilla/firefox/releases/61/index.md
+++ b/files/en-us/mozilla/firefox/releases/61/index.md
@@ -71,7 +71,7 @@ _No changes._
- The [Fetch API](/en-US/docs/Web/API/Fetch_API)'s {{domxref("Request.credentials")}} property now defaults to `"same-origin"` per the latest revision of the specification ([Firefox bug 1394399](https://bugzil.la/1394399)).
- The {{domxref("Request.destination")}} property has been implemented ([Firefox bug 1402892](https://bugzil.la/1402892)).
- The {{domxref("MutationObserver")}} option dictionary, `MutationObserverInit`, no longer has `false` as the default value of all of its Boolean properties. Now, only `childList` and `subtree` have default values (of `false` still). The other properties have no default values ([Firefox bug 973638](https://bugzil.la/973638)).
-- The [Payment Request API](/en-US/docs/Web/API/Payment_Request_API) method {{domxref("PaymentRequest.show()")}} now supports using a {{jsxref("Promise")}} to let the client side code provide updated payment details prior to activating the payment interface ([Firefox bug 1441709](https://bugzil.la/1441709)).
+- The [Payment Request API](/en-US/docs/Web/API/Payment_Request_API) method {{domxref("PaymentRequest.show()")}} now supports using a {{jsxref("Promise")}} to let the client-side code provide updated payment details prior to activating the payment interface ([Firefox bug 1441709](https://bugzil.la/1441709)).
#### DOM events
diff --git a/files/en-us/related/imsc/mapping_video_time_codes_to_imsc/index.md b/files/en-us/related/imsc/mapping_video_time_codes_to_imsc/index.md
index 8e50ef2f00e57f2..4f81962d1c7034c 100644
--- a/files/en-us/related/imsc/mapping_video_time_codes_to_imsc/index.md
+++ b/files/en-us/related/imsc/mapping_video_time_codes_to_imsc/index.md
@@ -33,7 +33,7 @@ In a single second this is not a big deal. As you extend to a few minutes, howev
3600 (seconds in 1 hour) \* 1.001 (velocity) = 3603.6 real time seconds
-This is especially important to understand with IMSC files, since all of the timings in the document represent real time values. For example, if you want to describe an event that synchronizes with 23.976fps video that begins at 01:00:00:00 time code in the video, and ends 1 second later, it would look like this:
+This is especially important to understand with IMSC files, since all of the timings in the document represent real-time values. For example, if you want to describe an event that synchronizes with 23.976fps video that begins at 01:00:00:00 time code in the video, and ends 1 second later, it would look like this:
`Hello, I am Mork from Ork
`
diff --git a/files/en-us/web/accessibility/guides/cognitive_accessibility/index.md b/files/en-us/web/accessibility/guides/cognitive_accessibility/index.md
index 1d5f46f3955da55..9a0d7ee7608d3f3 100644
--- a/files/en-us/web/accessibility/guides/cognitive_accessibility/index.md
+++ b/files/en-us/web/accessibility/guides/cognitive_accessibility/index.md
@@ -224,7 +224,7 @@ Input Assistance guidelines aim to reduce the likelihood that users, especially
### Convey automated error detection
-Users need to be alerted to the error and informed of what is wrong. If there is client side error detection, observe the following guidelines to make the error as effective as possible when conveyed to the user:
+Users need to be alerted to the error and informed of what is wrong. If there is client-side error detection, observe the following guidelines to make the error as effective as possible when conveyed to the user:
- The error must be described in the text.
- Ensure that the error message is as specific as possible.
diff --git a/files/en-us/web/accessibility/guides/understanding_wcag/operable/index.md b/files/en-us/web/accessibility/guides/understanding_wcag/operable/index.md
index f1df832f7183073..dab3268af5e60d3 100644
--- a/files/en-us/web/accessibility/guides/understanding_wcag/operable/index.md
+++ b/files/en-us/web/accessibility/guides/understanding_wcag/operable/index.md
@@ -127,7 +127,7 @@ This guideline covers situations in which functionality may have a time limit. F
Exceptions to this are activities with time limits longer than 20
- hours, real time events (e.g., live multiplayer games), and any other
+ hours, real-time events (e.g., live multiplayer games), and any other
activity that requires a time limit and would be invalidated if it
were turned off.
diff --git a/files/en-us/web/api/cssfontfeaturevaluesrule/index.md b/files/en-us/web/api/cssfontfeaturevaluesrule/index.md
index df556e09d1a9609..55d1a864c94c80a 100644
--- a/files/en-us/web/api/cssfontfeaturevaluesrule/index.md
+++ b/files/en-us/web/api/cssfontfeaturevaluesrule/index.md
@@ -20,19 +20,19 @@ This is convenient, because it allows the same name to be used of represent a se
_Inherits properties from its ancestor {{domxref("CSSRule")}}._
- {{domxref("CSSFontFeatureValuesRule.annotation")}} {{experimental_inline}}
- - : A user defined value definition and value that applies an alternate annotation of the font.
+ - : A user-defined value definition and value that applies an alternate annotation of the font.
- {{domxref("CSSFontFeatureValuesRule.characterVariant")}} {{experimental_inline}}
- - : A user defined value definition and value that applies stylistic alternatives for characters of the font.
+ - : A user-defined value definition and value that applies stylistic alternatives for characters of the font.
- {{domxref("CSSFontFeatureValuesRule.fontFamily")}}
- : A string that identifies the font family this rule applies to.
- {{domxref("CSSFontFeatureValuesRule.ornaments")}} {{experimental_inline}}
- - : A user defined value definition and value that applies alternative ornaments of the font.
+ - : A user-defined value definition and value that applies alternative ornaments of the font.
- {{domxref("CSSFontFeatureValuesRule.styleset")}} {{experimental_inline}}
- - : A user defined value definition and value that applies alternate style sets of the font.
+ - : A user-defined value definition and value that applies alternate style sets of the font.
- {{domxref("CSSFontFeatureValuesRule.stylistic")}} {{experimental_inline}}
- - : A user defined value definition and value that applies alternative glyphs of the font.
+ - : A user-defined value definition and value that applies alternative glyphs of the font.
- {{domxref("CSSFontFeatureValuesRule.swash")}} {{experimental_inline}}
- - : A user defined value definition and value that applies alternative swashes of the font.
+ - : A user-defined value definition and value that applies alternative swashes of the font.
## Instance methods
diff --git a/files/en-us/web/api/htmlscriptelement/textcontent/index.md b/files/en-us/web/api/htmlscriptelement/textcontent/index.md
index 010b093307f66ee..74fd6ef4f744fc4 100644
--- a/files/en-us/web/api/htmlscriptelement/textcontent/index.md
+++ b/files/en-us/web/api/htmlscriptelement/textcontent/index.md
@@ -54,7 +54,7 @@ scriptElement.textContent = untrustedCode; // shows the alert
You can mitigate these issues by always assigning {{domxref("TrustedScript")}} objects instead of strings, and [enforcing trusted types](/en-US/docs/Web/API/Trusted_Types_API#using_a_csp_to_enforce_trusted_types) using the [`require-trusted-types-for`](/en-US/docs/Web/HTTP/Reference/Headers/Content-Security-Policy/require-trusted-types-for) CSP directive.
This ensures that the input is passed through a transformation function, which has the chance to [sanitize](/en-US/docs/Web/Security/Attacks/XSS#sanitization) or reject the text before it is injected.
-The behavior of the transformation function will depend on the specific use case that requires a user provided script.
+The behavior of the transformation function will depend on the specific use case that requires a user-provided script.
If possible you should lock the allowed scripts to exactly the code that you trust to run.
If that is not possible, you might allow or block the use of certain functions within the provided string.
diff --git a/files/en-us/web/api/server-sent_events/using_server-sent_events/index.md b/files/en-us/web/api/server-sent_events/using_server-sent_events/index.md
index e7e2e28d1dcc19c..68c58b7fffe75b1 100644
--- a/files/en-us/web/api/server-sent_events/using_server-sent_events/index.md
+++ b/files/en-us/web/api/server-sent_events/using_server-sent_events/index.md
@@ -7,7 +7,7 @@ browser-compat: api.EventSource
{{DefaultAPISidebar("Server Sent Events")}}
-Developing a web application that uses [server-sent events](/en-US/docs/Web/API/Server-sent_events) is straightforward. You'll need a bit of code on the server to stream events to the front-end, but the client side code works almost identically to [websockets](/en-US/docs/Web/API/WebSockets_API) in part of handling incoming events. This is a one-way connection, so you can't send events from a client to a server.
+Developing a web application that uses [server-sent events](/en-US/docs/Web/API/Server-sent_events) is straightforward. You'll need a bit of code on the server to stream events to the front-end, but the client-side code works almost identically to [websockets](/en-US/docs/Web/API/WebSockets_API) in part of handling incoming events. This is a one-way connection, so you can't send events from a client to a server.
## Receiving events from the server
diff --git a/files/en-us/web/api/window/setinterval/index.md b/files/en-us/web/api/window/setinterval/index.md
index c3a126000352fd6..2993d8762c3cb73 100644
--- a/files/en-us/web/api/window/setinterval/index.md
+++ b/files/en-us/web/api/window/setinterval/index.md
@@ -210,7 +210,7 @@ For example, the required CSP for your site might look like this:
Content-Security-Policy: require-trusted-types-for 'script'; script-src '' 'trusted-types-eval'
```
-The behavior of the transformation function will depend on the specific use case that requires a user provided script.
+The behavior of the transformation function will depend on the specific use case that requires a user-provided script.
If possible you should lock the allowed scripts to exactly the code that you trust to run.
If that is not possible, you might allow or block the use of certain functions within the provided string.
diff --git a/files/en-us/web/api/window/settimeout/index.md b/files/en-us/web/api/window/settimeout/index.md
index b31a3cafd198b06..3186027fd9b4d23 100644
--- a/files/en-us/web/api/window/settimeout/index.md
+++ b/files/en-us/web/api/window/settimeout/index.md
@@ -406,7 +406,7 @@ For example, the required CSP for your site might look like this:
Content-Security-Policy: require-trusted-types-for 'script'; script-src '' 'trusted-types-eval'
```
-The behavior of the transformation function will depend on the specific use case that requires a user provided script.
+The behavior of the transformation function will depend on the specific use case that requires a user-provided script.
If possible you should lock the allowed scripts to exactly the code that you trust to run.
If that is not possible, you might allow or block the use of certain functions within the provided string.
diff --git a/files/en-us/web/javascript/reference/global_objects/eval/index.md b/files/en-us/web/javascript/reference/global_objects/eval/index.md
index 4ba3e5417916c29..7bfa618c7bced93 100644
--- a/files/en-us/web/javascript/reference/global_objects/eval/index.md
+++ b/files/en-us/web/javascript/reference/global_objects/eval/index.md
@@ -376,7 +376,7 @@ For example, the required CSP for your site might look like this:
Content-Security-Policy: require-trusted-types-for 'script'; script-src '' 'trusted-types-eval'
```
-The behavior of the transformation function implemented in your trusted types policy depends on the specific use case that requires a user provided script. If possible, you should lock the allowed scripts to exactly the code that you trust to run. If that is not possible, you might allow or block the use of certain functions within the provided input.
+The behavior of the transformation function implemented in your trusted types policy depends on the specific use case that requires a user-provided script. If possible, you should lock the allowed scripts to exactly the code that you trust to run. If that is not possible, you might allow or block the use of certain functions within the provided input.
## Examples
diff --git a/files/en-us/web/javascript/reference/global_objects/function/function/index.md b/files/en-us/web/javascript/reference/global_objects/function/function/index.md
index 9637fb9aae16f76..d4b620c87f21846 100644
--- a/files/en-us/web/javascript/reference/global_objects/function/function/index.md
+++ b/files/en-us/web/javascript/reference/global_objects/function/function/index.md
@@ -119,7 +119,7 @@ For example, the required CSP for your site might look like this:
Content-Security-Policy: require-trusted-types-for 'script'; script-src '' 'trusted-types-eval'
```
-The behavior of the transformation function depends on the specific use case that requires a user provided script. If possible, you should lock the allowed scripts to exactly the code that you trust to run. If that is not possible, you might allow or block the use of certain functions within the provided string.
+The behavior of the transformation function depends on the specific use case that requires a user-provided script. If possible, you should lock the allowed scripts to exactly the code that you trust to run. If that is not possible, you might allow or block the use of certain functions within the provided string.
## Examples
diff --git a/files/en-us/web/javascript/reference/statements/import/index.md b/files/en-us/web/javascript/reference/statements/import/index.md
index 55facb7cff7ea8a..9c9481958453a49 100644
--- a/files/en-us/web/javascript/reference/statements/import/index.md
+++ b/files/en-us/web/javascript/reference/statements/import/index.md
@@ -31,7 +31,7 @@ import "module-name";
- `defaultExport`
- : Name that will refer to the default export from the module. Must be a valid JavaScript identifier.
- `module-name`
- - : The module to import from. Only single quoted and double quoted string literals are allowed. The evaluation of the specifier is host-specified. Most hosts align with browsers and resolve the specifiers as URLs relative to the current module URL (see [`import.meta.url`](/en-US/docs/Web/JavaScript/Reference/Operators/import.meta)). Node, bundlers, and other non-browser environments often define their own features on top of this, so you should find documentation for them to understand the exact rules. The [module specifier resolution](#module_specifier_resolution) section also has more information.
+ - : The module to import from. Only single- and double-quoted string literals are allowed. The evaluation of the specifier is host-specified. Most hosts align with browsers and resolve the specifiers as URLs relative to the current module URL (see [`import.meta.url`](/en-US/docs/Web/JavaScript/Reference/Operators/import.meta)). Node, bundlers, and other non-browser environments often define their own features on top of this, so you should find documentation for them to understand the exact rules. The [module specifier resolution](#module_specifier_resolution) section also has more information.
- `name`
- : Name of the module object that will be used as a kind of namespace when referring to the imports. Must be a valid JavaScript identifier.
- `exportN`
diff --git a/files/en-us/web/security/authentication/passkeys/index.md b/files/en-us/web/security/authentication/passkeys/index.md
index 5cf79e20f964bf5..75112229ee228fc 100644
--- a/files/en-us/web/security/authentication/passkeys/index.md
+++ b/files/en-us/web/security/authentication/passkeys/index.md
@@ -48,7 +48,7 @@ Next, the RP's front-end code calls {{domxref("CredentialsContainer.create()")}}
- **Challenge**: The [challenge](#challenges) generated by the RP's server. This helps protect against {{glossary("replay attack", "replay attacks")}}.
-- **Website information**: A human readable name and ID for the RP that will be associated with the new passkey. The ID determines the [scope](#passkey_scope) of the resulting passkey.
+- **Website information**: A human-readable name and ID for the RP that will be associated with the new passkey. The ID determines the [scope](#passkey_scope) of the resulting passkey.
- **User information**: Information about the user that will be associated with the new passkey, including a human-readable display name, an account identifier, and a human-readable account identifier such as an email address or username.
diff --git a/package-lock.json b/package-lock.json
index c39534b0e454ac0..23bbc8da2d8eadc 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -18,7 +18,7 @@
"cheerio": "1.2.0",
"cli-progress": "^3.12.0",
"cross-env": "10.1.0",
- "cspell": "10.2.0",
+ "cspell": "10.2.1",
"cspell-group-by-file-reporter": "^1.0.1",
"env-cmd": "11.0.0",
"fdir": "^6.5.0",
@@ -33,7 +33,7 @@
"lefthook": "^2.1.12",
"markdownlint-cli2": "0.23.2",
"markdownlint-rule-search-replace": "1.2.0",
- "node-html-parser": "^9.0.2",
+ "node-html-parser": "^9.0.3",
"parse-diff": "^0.12.0",
"prettier": "3.9.6",
"tempy": "^3.2.0",
@@ -262,9 +262,9 @@
}
},
"node_modules/@cspell/cspell-bundled-dicts": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-10.2.0.tgz",
- "integrity": "sha512-pNdBzc3+njM1A8cp0t/az+FbwBoiIzKCJ15gHVdEtynGOH+GLKzpbNeRAXe3ci+BYUjQQXlQrCKalXaa+ZXVtQ==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-10.2.1.tgz",
+ "integrity": "sha512-SG2JTrfPrQUApSvYmfuj6dtIY5i+UHgzPsZPVHu+xbuKxca9E3ic4W74YnwmVNl0Qrs5nxUiBGlkwRd58sL6uw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -309,7 +309,7 @@
"@cspell/dict-markdown": "^2.0.18",
"@cspell/dict-monkeyc": "^1.1.0",
"@cspell/dict-node": "^5.0.9",
- "@cspell/dict-npm": "^5.2.47",
+ "@cspell/dict-npm": "^5.2.48",
"@cspell/dict-php": "^4.1.1",
"@cspell/dict-powershell": "^5.0.15",
"@cspell/dict-public-licenses": "^2.0.16",
@@ -333,22 +333,22 @@
}
},
"node_modules/@cspell/cspell-json-reporter": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-10.2.0.tgz",
- "integrity": "sha512-2iKTU/UPkSV9O4EzWSFreqM4/RTLoYnvCA9dmh9hJnmarYu/eDJk1CIVu+HgMlOiyCI3cgVux+649vJ0T2dHrA==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-10.2.1.tgz",
+ "integrity": "sha512-X/sut5Prad3pwSURckszEjfNiObmlia9jC4pTbQl1o1dOBstQ0cqYf23Zr5YtOGqCVoL34XdI+MsUQSSL4szAw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@cspell/cspell-types": "10.2.0"
+ "@cspell/cspell-types": "10.2.1"
},
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/@cspell/cspell-performance-monitor": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/cspell-performance-monitor/-/cspell-performance-monitor-10.2.0.tgz",
- "integrity": "sha512-Wzh984VNI+nkNiVSC4yXbzdVhVnxtxcvtCmslVhk7wc0nmwN5r9M4TQ1k5tSOihVMJn4iV3+fy3TUjkrSsppFA==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/cspell-performance-monitor/-/cspell-performance-monitor-10.2.1.tgz",
+ "integrity": "sha512-0/vDTp8EatMGHnZg/Ha5/LuvgH9qglOOTLgnN5T8WIGIN7c2yrP0kIMzRiGqweaTPm8zfX1uZAYV7Uz4Yy/DIg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -356,9 +356,9 @@
}
},
"node_modules/@cspell/cspell-pipe": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-10.2.0.tgz",
- "integrity": "sha512-BlA7k9kjgH7LxA3DZGRvOo2Cs9wArR0ux6gvmweoyD+zbOsZquTfrCwnU9IoctTy7HjuYrsE7mvCCN6xP11E7g==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-10.2.1.tgz",
+ "integrity": "sha512-IKuqlCzWfqIfYGLnhTw29neBPCg3Q6rkRInspfbLmonYXrPYC0sWKJnvIchV05JaXhiT1kvUey19MsE1U1bQiQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -366,9 +366,9 @@
}
},
"node_modules/@cspell/cspell-resolver": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-10.2.0.tgz",
- "integrity": "sha512-m94I4iTzWaklOr+eNxy/kgpcJYS9dMzeEsZKV6uprVCPNLNn63Ic+ChadNErwV2ii3tiNLAkn8VJy84oe2h1YA==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-10.2.1.tgz",
+ "integrity": "sha512-AKRof1VT5u3FxEK/np+0dFNZt3DGyQhu/AL7Nwvph5HpP6JZhRiqdcTION0iv0fal3RI0tKo93pQekhAiIaPzQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -379,9 +379,9 @@
}
},
"node_modules/@cspell/cspell-service-bus": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-10.2.0.tgz",
- "integrity": "sha512-r061UxqmEwZK+XiW0dnbE6r7nKHNavQJ4PVw2zqzBVtcFj9YU9LCpOZx4mL49IlmCWxy7jf2jAD9w8nFPn1pWg==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-10.2.1.tgz",
+ "integrity": "sha512-foUAEQ/VsH/JXCddjAo84KZwkwBDP23hJ2/rjFxcoj2zEKYzkgjbwt2Pfsgv+pmMwtDu+zKyLLV4uuY2JnngiA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -389,9 +389,9 @@
}
},
"node_modules/@cspell/cspell-types": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-10.2.0.tgz",
- "integrity": "sha512-tkmOVCm2XzPUipa8eIu88ShRogjJ5RIen3y9kzBn51re5Nmjw4HDWRLbeBP1WTGFYR7bMi2h0ybnH0BuBCA29g==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-10.2.1.tgz",
+ "integrity": "sha512-R9agOEKdMy1rl12YdOkp+WQK27+SW/RvmtHOf1qASbDfFsVTq9oAbxTTiVXKu3MW67dqFr8gGLRaSQYjVKG2fA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -399,13 +399,13 @@
}
},
"node_modules/@cspell/cspell-worker": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/cspell-worker/-/cspell-worker-10.2.0.tgz",
- "integrity": "sha512-6yom68ucNQIUA56gEsXtoquM55AeQBKaMe/a35a91HIvB7AyhrTRTTeheuE/Gl2FUyszHecdewC6sbYELaAsvA==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/cspell-worker/-/cspell-worker-10.2.1.tgz",
+ "integrity": "sha512-64XywkoHgj6pHtpWemoTHw1NG7ZRIc5P7m0zQrAJ6bIYTh3AypTnOWSjEaFw3F6v6GovuRMLFdUXAPIxoamr/g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "cspell-lib": "10.2.0"
+ "cspell-lib": "10.2.1"
},
"engines": {
"node": ">=22.18.0"
@@ -837,13 +837,13 @@
"license": "MIT"
},
"node_modules/@cspell/dynamic-import": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-10.2.0.tgz",
- "integrity": "sha512-FpmedZcu9qcN14/awVPISEBi3A1nPR2zyLslvSRhp6GPJt0YsRVBR5BDKxbLNIGqvM2xg3ZLjo2eGTjThiyHxA==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-10.2.1.tgz",
+ "integrity": "sha512-9+CLdw6blUYV2RWx5F+DumYiFmb19uUTlYPwd/iIw6hf+KsxblPfpCjUAn8Jt9CVhg1gPY8rRR2QPLpEAGbG0g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@cspell/url": "10.2.0",
+ "@cspell/url": "10.2.1",
"import-meta-resolve": "^4.2.0"
},
"engines": {
@@ -851,9 +851,9 @@
}
},
"node_modules/@cspell/filetypes": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-10.2.0.tgz",
- "integrity": "sha512-1I1wnjGqJkQqoHWZ8I28HuMPLG7yzJOh//rGGHBZE6Ly2loJWhk4+/Fa4wEoZ71Ss1HQii9d7smB0B/w1dqGDA==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/filetypes/-/filetypes-10.2.1.tgz",
+ "integrity": "sha512-uXmrQs+S2G38q5crUA29RVHK37nnoxAXG10eU8u5yTtVKdQ+4TF7sUY0gr8RbKp6bZVCFkQ10Z/GC/ikupoYgQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -861,9 +861,9 @@
}
},
"node_modules/@cspell/rpc": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/rpc/-/rpc-10.2.0.tgz",
- "integrity": "sha512-K8g80OcuhsGqFQvX2kjhgCGs7mOQf5lSeR2Jg34Uq6VQQ/WapJ9pE7CK6R3RKFjhWT8hlrbALiByk9Mj+7GyeQ==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/rpc/-/rpc-10.2.1.tgz",
+ "integrity": "sha512-BbxmkiHkbYB5jsARTImrkQvDUMq/pSxhvwFySVL4KxvFqGgisTJt9fnP3VoAPpxkGhIpLX/V70oGNlZfE/Ydww==",
"dev": true,
"license": "MIT",
"engines": {
@@ -871,9 +871,9 @@
}
},
"node_modules/@cspell/strong-weak-map": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-10.2.0.tgz",
- "integrity": "sha512-fBLmVOakQ42Wy+7ZnIdnOSk4/WtJFoNLMEG4yqX/cGML3tIh06PTd9UphwltuwPDCL/tXJQsN/LOY8iLx6hmfw==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-10.2.1.tgz",
+ "integrity": "sha512-P05H3wLn9B41DZ1v4dmNurvLdV0X1lCezqV7xqjSQ4J3fUCshk9paBboK6XSScvC4oXhmeOHrLpaORrKvxPgwg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -881,9 +881,9 @@
}
},
"node_modules/@cspell/url": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/@cspell/url/-/url-10.2.0.tgz",
- "integrity": "sha512-TIgG/pCkgo3SiayAbV0CorYPdnaNkYWfJFKHhSBTKIdBDwK4YwcbbDlXWGCTJ6gxhhwnrNhcw4jDjz8jejKS4A==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/@cspell/url/-/url-10.2.1.tgz",
+ "integrity": "sha512-QRds4VhWjSL3iKaXYlXoasQt2eSN622xIJlfwyD4aeB8x8zmzJEP29C8YQFt1Jsde6/smNMvYWhIETFcdDSkJA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2838,29 +2838,29 @@
}
},
"node_modules/cspell": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/cspell/-/cspell-10.2.0.tgz",
- "integrity": "sha512-BZaciNlTSZ72IQtju46JlVXyXIMOdoqjU/i1KamisH1uYw1OO4HgG6T0Y8doB99s6v1WJH7W2RL2kqpfq7e1Kw==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/cspell/-/cspell-10.2.1.tgz",
+ "integrity": "sha512-GbuGONUmSGfPtwUw1D63p5tEElAZ7PWp8EFDteyubxJHzS8VgHCmZ37fNP2uRrkqEvE3goYFIAGFhGwphQVfbw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@cspell/cspell-json-reporter": "10.2.0",
- "@cspell/cspell-performance-monitor": "10.2.0",
- "@cspell/cspell-pipe": "10.2.0",
- "@cspell/cspell-types": "10.2.0",
- "@cspell/cspell-worker": "10.2.0",
- "@cspell/dynamic-import": "10.2.0",
- "@cspell/url": "10.2.0",
+ "@cspell/cspell-json-reporter": "10.2.1",
+ "@cspell/cspell-performance-monitor": "10.2.1",
+ "@cspell/cspell-pipe": "10.2.1",
+ "@cspell/cspell-types": "10.2.1",
+ "@cspell/cspell-worker": "10.2.1",
+ "@cspell/dynamic-import": "10.2.1",
+ "@cspell/url": "10.2.1",
"ansi-regex": "^6.3.0",
"chalk": "^6.0.0",
"chalk-template": "^1.1.2",
"commander": "^15.0.0",
- "cspell-config-lib": "10.2.0",
- "cspell-dictionary": "10.2.0",
- "cspell-gitignore": "10.2.0",
- "cspell-glob": "10.2.0",
- "cspell-io": "10.2.0",
- "cspell-lib": "10.2.0",
+ "cspell-config-lib": "10.2.1",
+ "cspell-dictionary": "10.2.1",
+ "cspell-gitignore": "10.2.1",
+ "cspell-glob": "10.2.1",
+ "cspell-io": "10.2.1",
+ "cspell-lib": "10.2.1",
"fast-json-stable-stringify": "^2.1.0",
"flatted": "^3.4.4",
"semver": "^7.8.5",
@@ -2878,13 +2878,13 @@
}
},
"node_modules/cspell-config-lib": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-10.2.0.tgz",
- "integrity": "sha512-QweJ6dtHm1UkguapTm3Csra6p87HiOmLKiVRAxn75tW9Yojb5fGnqLxErO5sGQZvwgWAqQeT9lrqm3ohvCJjVw==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-10.2.1.tgz",
+ "integrity": "sha512-KVykJLj+MewODWDT0CqyBKQZU9jlPoT293ody4Nj5P3t5SCxYxVCpCosDNrwMcJj+ePWaufPX7KnRWVBg63l1Q==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@cspell/cspell-types": "10.2.0",
+ "@cspell/cspell-types": "10.2.1",
"comment-json": "^5.0.0",
"smol-toml": "^1.8.0",
"yaml": "^2.9.0"
@@ -2907,16 +2907,16 @@
}
},
"node_modules/cspell-dictionary": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-10.2.0.tgz",
- "integrity": "sha512-5r7HBf3nkST6mwsFvRV51i3ETcqFuDQoYK03EqzZYTX4ZLVR/nGrRSOZuFW+d9yU3IKjLWgY14Ab4dDKmBcw7A==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-10.2.1.tgz",
+ "integrity": "sha512-yc6KUP6SvZq8fEAmmQvIKkX127skqxUcTfx3eTc9frr6hkzX3bLgGv1nJWiG0QXkXyFyZKJI95NvlDHT7urBDA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@cspell/cspell-performance-monitor": "10.2.0",
- "@cspell/cspell-pipe": "10.2.0",
- "@cspell/cspell-types": "10.2.0",
- "cspell-trie-lib": "10.2.0",
+ "@cspell/cspell-performance-monitor": "10.2.1",
+ "@cspell/cspell-pipe": "10.2.1",
+ "@cspell/cspell-types": "10.2.1",
+ "cspell-trie-lib": "10.2.1",
"fast-equals": "^6.0.2"
},
"engines": {
@@ -2924,9 +2924,9 @@
}
},
"node_modules/cspell-dictionary/node_modules/fast-equals": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-6.0.2.tgz",
- "integrity": "sha512-sAjhj9ZhOxYCGiNMnZLaucOqf5ZeFnHNoKoAZiD9thhJ0N8RP85qJK759/97C/3L7NzzmGVB5uiX9AUpySZmUQ==",
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-6.0.3.tgz",
+ "integrity": "sha512-IECu4C0fFZFoUC2cA2rDaNUuVIfWIZMwh3tY+ng924vOuD9OaUFFrcIrVwCKbV7TJDkGmrHfhwZ7R0AnHfVhyw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2934,15 +2934,15 @@
}
},
"node_modules/cspell-gitignore": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-10.2.0.tgz",
- "integrity": "sha512-2/b64Niu5wNlUOW6N7QBRnU8dpnCdvRfZbOgcCO5f5m0OuIbrXTsnrfHJk25w/9M9H2yv2VS8LRKPWuxGXiZpA==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-10.2.1.tgz",
+ "integrity": "sha512-7MH+/O8E3nQ1pf1WCruiwR5D+3m5ipCl7mWehd/rzUdCLbYlVfybsLtyVeb2TruRhaizVEHsXV5kMip7qCCa7w==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@cspell/url": "10.2.0",
- "cspell-glob": "10.2.0",
- "cspell-io": "10.2.0"
+ "@cspell/url": "10.2.1",
+ "cspell-glob": "10.2.1",
+ "cspell-io": "10.2.1"
},
"bin": {
"cspell-gitignore": "bin.mjs"
@@ -2952,13 +2952,13 @@
}
},
"node_modules/cspell-glob": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-10.2.0.tgz",
- "integrity": "sha512-b6H3zFMkqM5OUVabAvdd4sqyziEo3fFlss73Jn2RsHY2h5PH8gOwM1WsWQOcbDSEn7tj5NsA9a3iETXMkY1thw==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-10.2.1.tgz",
+ "integrity": "sha512-VaEpSORqOpqJMISaMpCEf8ERGwUNYIYEvSJlJ4/7pVHELwt50aCWCncmvg1RLc53eRff5FtP8xSL04x/a4fg5Q==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@cspell/url": "10.2.0",
+ "@cspell/url": "10.2.1",
"picomatch": "^4.0.7"
},
"engines": {
@@ -2966,14 +2966,14 @@
}
},
"node_modules/cspell-grammar": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-10.2.0.tgz",
- "integrity": "sha512-CrMM0Qoh9WuputdD08n3qrJKtzoLEZArT7QhMaeZkl58fARYqmx8JgtrE9X0+GSV4Uden0zVa5o4KcdXtXUSAQ==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-10.2.1.tgz",
+ "integrity": "sha512-l5FG12w0WuxKDkYYSvvl0yc7INyFTyqubQFHmEcihNjammGHb4pi1Pu+U1ADu/r+XAIHw9D6eWVaVwJnsux23A==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@cspell/cspell-pipe": "10.2.0",
- "@cspell/cspell-types": "10.2.0"
+ "@cspell/cspell-pipe": "10.2.1",
+ "@cspell/cspell-types": "10.2.1"
},
"bin": {
"cspell-grammar": "bin.mjs"
@@ -2993,42 +2993,42 @@
}
},
"node_modules/cspell-io": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-10.2.0.tgz",
- "integrity": "sha512-UqZcOCH+W9DhcjQGRiKJIwQaeNLGA+PKBHVmw4hvmBvuWGCH7uSiHuOeO+WrvJbolFDfZ9f7gV5ItmITgSANHg==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-10.2.1.tgz",
+ "integrity": "sha512-7aWbYnwsEMjWxUfYDqXYUE+cxHhy58njRlm2gtHQXYRrwy5GxyTDM8S8kRFFuiP/p7SKSQ3EctgVKRkVXRIE4Q==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@cspell/cspell-service-bus": "10.2.0",
- "@cspell/url": "10.2.0"
+ "@cspell/cspell-service-bus": "10.2.1",
+ "@cspell/url": "10.2.1"
},
"engines": {
"node": ">=22.18.0"
}
},
"node_modules/cspell-lib": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-10.2.0.tgz",
- "integrity": "sha512-uIU4RtUzodzlS39O26Q1g0AxdHNB7CndkaN40Ekmb19kKrOf49umsXhRhdzrYc/uQ9dsp4AFp/mQI5Yc1MK1NA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@cspell/cspell-bundled-dicts": "10.2.0",
- "@cspell/cspell-performance-monitor": "10.2.0",
- "@cspell/cspell-pipe": "10.2.0",
- "@cspell/cspell-resolver": "10.2.0",
- "@cspell/cspell-types": "10.2.0",
- "@cspell/dynamic-import": "10.2.0",
- "@cspell/filetypes": "10.2.0",
- "@cspell/rpc": "10.2.0",
- "@cspell/strong-weak-map": "10.2.0",
- "@cspell/url": "10.2.0",
- "cspell-config-lib": "10.2.0",
- "cspell-dictionary": "10.2.0",
- "cspell-glob": "10.2.0",
- "cspell-grammar": "10.2.0",
- "cspell-io": "10.2.0",
- "cspell-trie-lib": "10.2.0",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-10.2.1.tgz",
+ "integrity": "sha512-CLU0Jh5qLQVofZOM8peexMzUE27FqXZqnXU9nvSGzH8v/BxgPLVgoBeJKdgJgUnArg2MmO30HBobXcekuvk/5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@cspell/cspell-bundled-dicts": "10.2.1",
+ "@cspell/cspell-performance-monitor": "10.2.1",
+ "@cspell/cspell-pipe": "10.2.1",
+ "@cspell/cspell-resolver": "10.2.1",
+ "@cspell/cspell-types": "10.2.1",
+ "@cspell/dynamic-import": "10.2.1",
+ "@cspell/filetypes": "10.2.1",
+ "@cspell/rpc": "10.2.1",
+ "@cspell/strong-weak-map": "10.2.1",
+ "@cspell/url": "10.2.1",
+ "cspell-config-lib": "10.2.1",
+ "cspell-dictionary": "10.2.1",
+ "cspell-glob": "10.2.1",
+ "cspell-grammar": "10.2.1",
+ "cspell-io": "10.2.1",
+ "cspell-trie-lib": "10.2.1",
"env-paths": "^4.0.0",
"gensequence": "^8.0.8",
"import-fresh": "^4.0.0",
@@ -3042,16 +3042,16 @@
}
},
"node_modules/cspell-trie-lib": {
- "version": "10.2.0",
- "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-10.2.0.tgz",
- "integrity": "sha512-lvEfGc/SfNfkdq9LZYQENDMuPoILsLwo2o4QHqdyic65MvmL1fZLi77O/qgSJ4aKgVja0/A8cbsdtKnFuruHbw==",
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-10.2.1.tgz",
+ "integrity": "sha512-nNvx9qVKfHzqV3Yy0TIv5haRS2IRNRimocOa/7K0yoB4OHS984HOtgYJPtArUs8G3LZvYuakcN35R7DpxcLXVA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=22.18.0"
},
"peerDependencies": {
- "@cspell/cspell-types": "10.2.0"
+ "@cspell/cspell-types": "10.2.1"
}
},
"node_modules/cspell/node_modules/chalk": {
@@ -4088,9 +4088,9 @@
"license": "MIT"
},
"node_modules/fast-uri": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.5.tgz",
- "integrity": "sha512-gHwA1O9LDIcKunMKhObS/HimwtehO1nPUECKAu5TpKgaO19fcWEl4bliWe1jWxVFvIXztJjjQ4L8XQ1EU9f7Jw==",
+ "version": "3.1.7",
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.7.tgz",
+ "integrity": "sha512-dOvZVzjdZdz7phd9v6jCbwxrBW3fK6n8Rc0CtdmM4bumzMnxywBYhuph6J819RRw/ku+rLbelwfMunktuzVVHg==",
"dev": true,
"funding": [
{
@@ -7290,9 +7290,9 @@
}
},
"node_modules/node-html-parser": {
- "version": "9.0.2",
- "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-9.0.2.tgz",
- "integrity": "sha512-XhM0CTeF4Hkw3el7VCyasGJCEvp500Xf0s1J3ZigYfTOkVqZRQRY3EiAw1CbJzNrxaKSDthXiT9c/4CBwIJyfw==",
+ "version": "9.0.3",
+ "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-9.0.3.tgz",
+ "integrity": "sha512-iaQ9rokcYNp99IY0h82q04Wtc27SObRT+OEytdJh0bFv2IN0fypnU63KUNVavkPSiwsmIELG1eUenajGhzrvpg==",
"dev": true,
"license": "MIT",
"dependencies": {
diff --git a/package.json b/package.json
index 1aa6a872a1d878d..e44fed6ada7e8b8 100644
--- a/package.json
+++ b/package.json
@@ -58,7 +58,7 @@
"cheerio": "1.2.0",
"cli-progress": "^3.12.0",
"cross-env": "10.1.0",
- "cspell": "10.2.0",
+ "cspell": "10.2.1",
"cspell-group-by-file-reporter": "^1.0.1",
"env-cmd": "11.0.0",
"fdir": "^6.5.0",
@@ -73,7 +73,7 @@
"lefthook": "^2.1.12",
"markdownlint-cli2": "0.23.2",
"markdownlint-rule-search-replace": "1.2.0",
- "node-html-parser": "^9.0.2",
+ "node-html-parser": "^9.0.3",
"parse-diff": "^0.12.0",
"prettier": "3.9.6",
"tempy": "^3.2.0",