@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 +8 -0
- package/components/Search.astro +2 -1
- package/package.json +1 -1
- package/translations/cs.json +7 -7
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
|
package/components/Search.astro
CHANGED
|
@@ -197,7 +197,7 @@ const pagefindTranslations = {
|
|
|
197
197
|
box-shadow: var(--sl-shadow-lg);
|
|
198
198
|
}
|
|
199
199
|
dialog[open] {
|
|
200
|
-
display:
|
|
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
package/translations/cs.json
CHANGED
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"page.lastUpdated": "Poslední aktualizace:",
|
|
19
19
|
"page.previousLink": "Předchozí",
|
|
20
20
|
"page.nextLink": "Další",
|
|
21
|
-
"page.draft": "
|
|
22
|
-
"404.text": "Stránka nenalezena. Zkontrolujte adresu
|
|
23
|
-
"aside.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": "
|
|
26
|
-
"aside.danger": "
|
|
27
|
-
"fileTree.directory": "
|
|
28
|
-
"builtWithStarlight.label": "
|
|
25
|
+
"aside.caution": "Upozornění",
|
|
26
|
+
"aside.danger": "Nebezpečí",
|
|
27
|
+
"fileTree.directory": "Adresář",
|
|
28
|
+
"builtWithStarlight.label": "Postavené s Starlight"
|
|
29
29
|
}
|