@astrojs/starlight 0.39.1 → 0.39.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @astrojs/starlight
2
2
 
3
+ ## 0.39.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3890](https://github.com/withastro/starlight/pull/3890) [`2d05e18`](https://github.com/withastro/starlight/commit/2d05e1802ac81f1db1220fc7a2c775e0c0bba9bc) Thanks [@tats-u](https://github.com/tats-u)! - Fixes CSS selector for `text-autospace` styles in Chromium browsers
8
+
3
9
  ## 0.39.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrojs/starlight",
3
- "version": "0.39.1",
3
+ "version": "0.39.2",
4
4
  "description": "Build beautiful, high-performance documentation websites with Astro",
5
5
  "keywords": [
6
6
  "docs",
package/style/reset.css CHANGED
@@ -28,11 +28,12 @@
28
28
  background-color: var(--sl-color-bg);
29
29
  }
30
30
 
31
- [lang]:where(:lang(zh, ja)) {
31
+ /* :lang(zh, ja) has not been supported by non-Firefox browsers at the time of writing (2026-05) */
32
+ [lang]:where(:lang(zh), :lang(ja)) {
32
33
  text-autospace: normal;
33
34
  }
34
35
 
35
- [lang]:where(:not(:lang(zh, ja))) {
36
+ [lang]:where(:not(:lang(zh), :lang(ja))) {
36
37
  text-autospace: initial;
37
38
  }
38
39