@astrojs/starlight 0.24.2 → 0.24.3

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,13 @@
1
1
  # @astrojs/starlight
2
2
 
3
+ ## 0.24.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2028](https://github.com/withastro/starlight/pull/2028) [`af81ad3`](https://github.com/withastro/starlight/commit/af81ad38fd26c375c0372718fd3e152b7f1a0fa6) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Fixes a search dialog height issue in Safari.
8
+
9
+ - [#2022](https://github.com/withastro/starlight/pull/2022) [`80f82b1`](https://github.com/withastro/starlight/commit/80f82b15afae1366676e0c25e674210a19606df5) Thanks [@playmr365](https://github.com/playmr365)! - Updates Czech UI translations
10
+
3
11
  ## 0.24.2
4
12
 
5
13
  ### Patch Changes
@@ -197,7 +197,7 @@ const pagefindTranslations = {
197
197
  box-shadow: var(--sl-shadow-lg);
198
198
  }
199
199
  dialog[open] {
200
- display: grid;
200
+ display: flex;
201
201
  }
202
202
 
203
203
  dialog::backdrop {
@@ -208,6 +208,7 @@ const pagefindTranslations = {
208
208
 
209
209
  .dialog-frame {
210
210
  flex-direction: column;
211
+ flex-grow: 1;
211
212
  gap: 1rem;
212
213
  padding: 1rem;
213
214
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrojs/starlight",
3
- "version": "0.24.2",
3
+ "version": "0.24.3",
4
4
  "description": "Build beautiful, high-performance documentation websites with Astro",
5
5
  "keywords": [
6
6
  "docs",
@@ -18,12 +18,12 @@
18
18
  "page.lastUpdated": "Poslední aktualizace:",
19
19
  "page.previousLink": "Předchozí",
20
20
  "page.nextLink": "Další",
21
- "page.draft": "This content is a draft and will not be included in production builds.",
22
- "404.text": "Stránka nenalezena. Zkontrolujte adresu URL nebo zkuste použít vyhledávací pole.",
23
- "aside.note": "Note",
21
+ "page.draft": "Tento obsah je koncept a nebude zahrnutý v produkčním sestavení.",
22
+ "404.text": "Stránka nenalezena. Zkontrolujte adresu nebo zkuste použít vyhledávač",
23
+ "aside.note": "Poznámka",
24
24
  "aside.tip": "Tip",
25
- "aside.caution": "Caution",
26
- "aside.danger": "Danger",
27
- "fileTree.directory": "Directory",
28
- "builtWithStarlight.label": "Built with Starlight"
25
+ "aside.caution": "Upozornění",
26
+ "aside.danger": "Nebezpečí",
27
+ "fileTree.directory": "Adresář",
28
+ "builtWithStarlight.label": "Postavené s Starlight"
29
29
  }