@astrojs/starlight 0.41.11 → 0.42.0

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.
Files changed (402) hide show
  1. package/dist/_virtual/_rolldown/runtime.js +13 -0
  2. package/dist/components/MobileMenuToggle.astro +65 -0
  3. package/{components → dist/components}/PageFrame.astro +32 -8
  4. package/dist/components-internals/Icons.d.ts +415 -0
  5. package/dist/components-internals/Icons.js +140 -0
  6. package/dist/components-internals/SidebarPersistState.d.ts +1 -0
  7. package/dist/components-internals/SidebarPersistState.js +53 -0
  8. package/dist/components-internals/TableOfContents/starlight-toc.d.ts +18 -0
  9. package/dist/components-internals/TableOfContents/starlight-toc.js +88 -0
  10. package/dist/constants.d.ts +4 -0
  11. package/dist/constants.js +4 -0
  12. package/{expressive-code.d.ts → dist/expressive-code.d.ts} +6 -13
  13. package/dist/expressive-code.js +31 -0
  14. package/dist/global.d.ts +62 -0
  15. package/dist/global.js +2 -0
  16. package/dist/index.d.ts +7 -0
  17. package/dist/index.js +109 -0
  18. package/dist/integrations/aside-utils.d.ts +9 -0
  19. package/dist/integrations/aside-utils.js +35 -0
  20. package/dist/integrations/expressive-code/hast.d.ts +1 -0
  21. package/dist/integrations/expressive-code/hast.js +2 -0
  22. package/dist/integrations/expressive-code/index.d.ts +60 -0
  23. package/dist/integrations/expressive-code/index.js +48 -0
  24. package/dist/integrations/expressive-code/preprocessor.d.ts +17 -0
  25. package/dist/integrations/expressive-code/preprocessor.js +76 -0
  26. package/dist/integrations/expressive-code/themes/night-owl-dark.js +4 -0
  27. package/dist/integrations/expressive-code/themes/night-owl-light.js +4 -0
  28. package/dist/integrations/expressive-code/theming.d.ts +16 -0
  29. package/dist/integrations/expressive-code/theming.js +71 -0
  30. package/dist/integrations/expressive-code/translations.d.ts +8 -0
  31. package/dist/integrations/expressive-code/translations.js +26 -0
  32. package/dist/integrations/markdown-icon.d.ts +8 -0
  33. package/dist/integrations/markdown-icon.js +14 -0
  34. package/dist/integrations/markdown-plugins.d.ts +18 -0
  35. package/dist/integrations/markdown-plugins.js +36 -0
  36. package/dist/integrations/markdown-processor.d.ts +29 -0
  37. package/dist/integrations/markdown-processor.js +44 -0
  38. package/dist/integrations/pagefind.d.ts +7 -0
  39. package/dist/integrations/pagefind.js +34 -0
  40. package/dist/integrations/rehype-code-rtl-support.d.ts +21 -0
  41. package/dist/integrations/rehype-code-rtl-support.js +36 -0
  42. package/dist/integrations/rehype-heading-links.d.ts +10 -0
  43. package/dist/integrations/rehype-heading-links.js +57 -0
  44. package/dist/integrations/remark-asides.d.ts +32 -0
  45. package/dist/integrations/remark-asides.js +166 -0
  46. package/dist/integrations/remark-rehype.d.ts +17 -0
  47. package/dist/integrations/remark-rehype.js +51 -0
  48. package/dist/integrations/satteri.d.ts +13 -0
  49. package/dist/integrations/satteri.js +209 -0
  50. package/dist/integrations/shared/absolutePathToLang.d.ts +10 -0
  51. package/dist/integrations/shared/absolutePathToLang.js +13 -0
  52. package/dist/integrations/shared/localeToLang.d.ts +10 -0
  53. package/dist/integrations/shared/localeToLang.js +13 -0
  54. package/dist/integrations/shared/slugToLocale.d.ts +12 -0
  55. package/dist/integrations/shared/slugToLocale.js +15 -0
  56. package/dist/integrations/sitemap.d.ts +12 -0
  57. package/dist/integrations/sitemap.js +19 -0
  58. package/dist/integrations/vite-layer-order.d.ts +15 -0
  59. package/dist/integrations/vite-layer-order.js +56 -0
  60. package/dist/integrations/vite-lazy-barrel-optimization.d.ts +12 -0
  61. package/dist/integrations/vite-lazy-barrel-optimization.js +33 -0
  62. package/dist/integrations/vite-virtual-modules.d.ts +14 -0
  63. package/dist/integrations/vite-virtual-modules.js +108 -0
  64. package/dist/internal.d.ts +3 -0
  65. package/dist/internal.js +3 -0
  66. package/dist/loaders.d.ts +20 -0
  67. package/dist/loaders.js +49 -0
  68. package/dist/locals.d.ts +15 -0
  69. package/dist/locals.js +33 -0
  70. package/dist/package.js +4 -0
  71. package/{props.ts → dist/props.d.ts} +6 -4
  72. package/dist/props.js +1 -0
  73. package/dist/route-data.d.ts +7 -0
  74. package/dist/route-data.js +6 -0
  75. package/dist/schema.d.ts +426 -0
  76. package/dist/schema.js +103 -0
  77. package/dist/schemas/badge.d.ts +86 -0
  78. package/dist/schemas/badge.js +39 -0
  79. package/dist/schemas/components.d.ts +236 -0
  80. package/dist/schemas/components.js +36 -0
  81. package/dist/schemas/expressiveCode.d.ts +7 -0
  82. package/dist/schemas/expressiveCode.js +5 -0
  83. package/dist/schemas/favicon.d.ts +9 -0
  84. package/dist/schemas/favicon.js +32 -0
  85. package/dist/schemas/head.d.ts +33 -0
  86. package/dist/schemas/head.js +41 -0
  87. package/dist/schemas/hero.d.ts +319 -0
  88. package/dist/schemas/hero.js +73 -0
  89. package/dist/schemas/i18n.d.ts +125 -0
  90. package/dist/schemas/i18n.js +76 -0
  91. package/dist/schemas/icon.d.ts +284 -0
  92. package/dist/schemas/icon.js +7 -0
  93. package/dist/schemas/locale.d.ts +20 -0
  94. package/dist/schemas/locale.js +11 -0
  95. package/dist/schemas/logo.d.ts +32 -0
  96. package/dist/schemas/logo.js +14 -0
  97. package/dist/schemas/pagefind.d.ts +166 -0
  98. package/dist/schemas/pagefind.js +31 -0
  99. package/dist/schemas/prevNextLink.d.ts +10 -0
  100. package/dist/schemas/prevNextLink.js +14 -0
  101. package/dist/schemas/sidebar.d.ts +205 -0
  102. package/dist/schemas/sidebar.js +71 -0
  103. package/dist/schemas/site-title.d.ts +7 -0
  104. package/dist/schemas/site-title.js +17 -0
  105. package/dist/schemas/social.d.ts +292 -0
  106. package/dist/schemas/social.js +18 -0
  107. package/dist/schemas/tableOfContents.d.ts +24 -0
  108. package/dist/schemas/tableOfContents.js +16 -0
  109. package/dist/translations/ar.js +36 -0
  110. package/dist/translations/ca.js +46 -0
  111. package/dist/translations/cs.js +46 -0
  112. package/dist/translations/da.js +33 -0
  113. package/dist/translations/de.js +33 -0
  114. package/dist/translations/el.js +33 -0
  115. package/dist/translations/en.js +33 -0
  116. package/dist/translations/es.js +46 -0
  117. package/dist/translations/fa.js +33 -0
  118. package/dist/translations/fi.js +33 -0
  119. package/dist/translations/fr.js +36 -0
  120. package/dist/translations/gl.js +46 -0
  121. package/dist/translations/he.js +33 -0
  122. package/dist/translations/hi.js +36 -0
  123. package/dist/translations/hu.js +46 -0
  124. package/dist/translations/id.js +33 -0
  125. package/dist/translations/index.d.ts +48 -0
  126. package/dist/translations/index.js +75 -0
  127. package/dist/translations/it.js +36 -0
  128. package/dist/translations/ja.js +36 -0
  129. package/dist/translations/ko.js +36 -0
  130. package/dist/translations/lv.js +33 -0
  131. package/dist/translations/nb.js +33 -0
  132. package/dist/translations/nl.js +33 -0
  133. package/dist/translations/pl.js +36 -0
  134. package/dist/translations/pt.js +36 -0
  135. package/dist/translations/ro.js +33 -0
  136. package/dist/translations/ru.js +36 -0
  137. package/dist/translations/sk.js +33 -0
  138. package/dist/translations/sv.js +33 -0
  139. package/dist/translations/th.js +33 -0
  140. package/dist/translations/tr.js +33 -0
  141. package/dist/translations/uk.js +33 -0
  142. package/dist/translations/vi.js +33 -0
  143. package/dist/translations/zh-CN.js +36 -0
  144. package/dist/translations/zh-TW.js +36 -0
  145. package/dist/types.d.ts +4 -0
  146. package/dist/types.js +1 -0
  147. package/{user-components → dist/user-components}/FileTree.astro +1 -1
  148. package/{user-components → dist/user-components}/Steps.astro +1 -1
  149. package/{user-components → dist/user-components}/TabItem.astro +1 -1
  150. package/{user-components → dist/user-components}/Tabs.astro +1 -1
  151. package/dist/user-components/file-tree-icons.d.ts +178 -0
  152. package/dist/user-components/file-tree-icons.js +632 -0
  153. package/dist/user-components/file-tree-processor.d.ts +16 -0
  154. package/dist/user-components/file-tree-processor.js +132 -0
  155. package/dist/user-components/steps-processor.d.ts +10 -0
  156. package/dist/user-components/steps-processor.js +39 -0
  157. package/dist/user-components/tabs-processor.d.ts +23 -0
  158. package/dist/user-components/tabs-processor.js +70 -0
  159. package/dist/utils/base.d.ts +7 -0
  160. package/dist/utils/base.js +15 -0
  161. package/dist/utils/canonical.d.ts +10 -0
  162. package/dist/utils/canonical.js +14 -0
  163. package/dist/utils/collection-fs.d.ts +13 -0
  164. package/dist/utils/collection-fs.js +19 -0
  165. package/{utils/collection.ts → dist/utils/collection.d.ts} +9 -20
  166. package/dist/utils/collection.js +26 -0
  167. package/dist/utils/createPathFormatter.d.ts +9 -0
  168. package/dist/utils/createPathFormatter.js +35 -0
  169. package/dist/utils/createTranslationSystem.d.ts +23 -0
  170. package/dist/utils/createTranslationSystem.js +84 -0
  171. package/dist/utils/error-map.d.ts +23 -0
  172. package/dist/utils/error-map.js +125 -0
  173. package/dist/utils/format-path.d.ts +4 -0
  174. package/dist/utils/format-path.js +9 -0
  175. package/dist/utils/generateToC.d.ts +14 -0
  176. package/dist/utils/generateToC.js +25 -0
  177. package/dist/utils/git.d.ts +12 -0
  178. package/dist/utils/git.js +71 -0
  179. package/dist/utils/gitInlined.d.ts +6 -0
  180. package/dist/utils/gitInlined.js +11 -0
  181. package/dist/utils/head.d.ts +7 -0
  182. package/dist/utils/head.js +233 -0
  183. package/dist/utils/i18n.d.ts +50 -0
  184. package/dist/utils/i18n.js +141 -0
  185. package/dist/utils/localizedUrl.d.ts +8 -0
  186. package/dist/utils/localizedUrl.js +28 -0
  187. package/dist/utils/navigation.d.ts +19 -0
  188. package/dist/utils/navigation.js +353 -0
  189. package/dist/utils/path.d.ts +21 -0
  190. package/dist/utils/path.js +51 -0
  191. package/dist/utils/plugins.d.ts +721 -0
  192. package/dist/utils/plugins.js +174 -0
  193. package/dist/utils/routing/data.d.ts +20 -0
  194. package/dist/utils/routing/data.js +127 -0
  195. package/dist/utils/routing/index.d.ts +21 -0
  196. package/dist/utils/routing/index.js +106 -0
  197. package/dist/utils/routing/middleware.d.ts +11 -0
  198. package/dist/utils/routing/middleware.js +65 -0
  199. package/dist/utils/routing/types.d.ts +93 -0
  200. package/dist/utils/routing/types.js +1 -0
  201. package/dist/utils/slugs.d.ts +45 -0
  202. package/dist/utils/slugs.js +104 -0
  203. package/dist/utils/starlight-page.d.ts +36 -0
  204. package/dist/utils/starlight-page.js +120 -0
  205. package/dist/utils/translations-fs.d.ts +15 -0
  206. package/dist/utils/translations-fs.js +39 -0
  207. package/dist/utils/translations.d.ts +20 -0
  208. package/dist/utils/translations.js +29 -0
  209. package/dist/utils/types.d.ts +5 -0
  210. package/dist/utils/types.js +1 -0
  211. package/dist/utils/url.d.ts +7 -0
  212. package/{utils/url.ts → dist/utils/url.js} +5 -4
  213. package/dist/utils/user-config.d.ts +2055 -0
  214. package/dist/utils/user-config.js +136 -0
  215. package/dist/utils/validateLogoImports.d.ts +5 -0
  216. package/dist/utils/validateLogoImports.js +16 -0
  217. package/dist/utils/zodDeepMerge.d.ts +16 -0
  218. package/dist/utils/zodDeepMerge.js +53 -0
  219. package/package.json +60 -34
  220. package/CHANGELOG.md +0 -3051
  221. package/components/MobileMenuToggle.astro +0 -114
  222. package/components-internals/Icons.ts +0 -248
  223. package/components-internals/SidebarPersistState.ts +0 -71
  224. package/components-internals/TableOfContents/starlight-toc.ts +0 -127
  225. package/constants.ts +0 -4
  226. package/expressive-code.mjs +0 -23
  227. package/global.d.ts +0 -11
  228. package/i18n.d.ts +0 -18
  229. package/index.ts +0 -200
  230. package/integrations/aside-utils.ts +0 -41
  231. package/integrations/expressive-code/hast.d.ts +0 -5
  232. package/integrations/expressive-code/hast.mjs +0 -9
  233. package/integrations/expressive-code/index.ts +0 -125
  234. package/integrations/expressive-code/preprocessor.ts +0 -126
  235. package/integrations/expressive-code/themes/night-owl-dark.jsonc +0 -1796
  236. package/integrations/expressive-code/themes/night-owl-light.jsonc +0 -1695
  237. package/integrations/expressive-code/theming.ts +0 -105
  238. package/integrations/expressive-code/translations.ts +0 -36
  239. package/integrations/markdown-icon.ts +0 -13
  240. package/integrations/markdown-plugins.ts +0 -71
  241. package/integrations/markdown-processor.ts +0 -64
  242. package/integrations/pagefind.ts +0 -60
  243. package/integrations/rehype-code-rtl-support.ts +0 -37
  244. package/integrations/rehype-heading-links.ts +0 -79
  245. package/integrations/remark-asides.ts +0 -219
  246. package/integrations/remark-rehype.ts +0 -87
  247. package/integrations/satteri.ts +0 -265
  248. package/integrations/shared/absolutePathToLang.ts +0 -26
  249. package/integrations/shared/localeToLang.ts +0 -15
  250. package/integrations/shared/slugToLocale.ts +0 -18
  251. package/integrations/sitemap.ts +0 -23
  252. package/integrations/vite-layer-order.ts +0 -69
  253. package/integrations/vite-lazy-barrel-optimization.ts +0 -40
  254. package/integrations/vite-virtual-modules.ts +0 -175
  255. package/internal.ts +0 -6
  256. package/loaders.ts +0 -63
  257. package/locals.d.ts +0 -43
  258. package/locals.ts +0 -43
  259. package/route-data.ts +0 -11
  260. package/schema.ts +0 -167
  261. package/schemas/badge.ts +0 -40
  262. package/schemas/components.ts +0 -265
  263. package/schemas/expressiveCode.ts +0 -12
  264. package/schemas/favicon.ts +0 -40
  265. package/schemas/head.ts +0 -50
  266. package/schemas/hero.ts +0 -69
  267. package/schemas/i18n.ts +0 -244
  268. package/schemas/icon.ts +0 -7
  269. package/schemas/logo.ts +0 -28
  270. package/schemas/pagefind.ts +0 -128
  271. package/schemas/prevNextLink.ts +0 -18
  272. package/schemas/sidebar.ts +0 -163
  273. package/schemas/site-title.ts +0 -20
  274. package/schemas/social.ts +0 -23
  275. package/schemas/tableOfContents.ts +0 -21
  276. package/translations/README.md +0 -14
  277. package/translations/ar.json +0 -33
  278. package/translations/ca.json +0 -43
  279. package/translations/cs.json +0 -43
  280. package/translations/da.json +0 -30
  281. package/translations/de.json +0 -30
  282. package/translations/el.json +0 -30
  283. package/translations/en.json +0 -30
  284. package/translations/es.json +0 -43
  285. package/translations/fa.json +0 -30
  286. package/translations/fi.json +0 -30
  287. package/translations/fr.json +0 -33
  288. package/translations/gl.json +0 -43
  289. package/translations/he.json +0 -30
  290. package/translations/hi.json +0 -33
  291. package/translations/hu.json +0 -43
  292. package/translations/id.json +0 -30
  293. package/translations/index.ts +0 -76
  294. package/translations/it.json +0 -33
  295. package/translations/ja.json +0 -33
  296. package/translations/ko.json +0 -33
  297. package/translations/lv.json +0 -30
  298. package/translations/nb.json +0 -30
  299. package/translations/nl.json +0 -30
  300. package/translations/pl.json +0 -33
  301. package/translations/pt.json +0 -33
  302. package/translations/ro.json +0 -30
  303. package/translations/ru.json +0 -33
  304. package/translations/sk.json +0 -30
  305. package/translations/sv.json +0 -30
  306. package/translations/th.json +0 -30
  307. package/translations/tr.json +0 -30
  308. package/translations/uk.json +0 -30
  309. package/translations/vi.json +0 -30
  310. package/translations/zh-CN.json +0 -33
  311. package/translations/zh-TW.json +0 -33
  312. package/types.ts +0 -7
  313. package/user-components/file-tree-icons.ts +0 -782
  314. package/user-components/rehype-file-tree.ts +0 -251
  315. package/user-components/rehype-steps.ts +0 -85
  316. package/user-components/rehype-tabs.ts +0 -121
  317. package/utils/base.ts +0 -15
  318. package/utils/canonical.ts +0 -19
  319. package/utils/collection-fs.ts +0 -20
  320. package/utils/createPathFormatter.ts +0 -60
  321. package/utils/createTranslationSystem.ts +0 -137
  322. package/utils/error-map.ts +0 -222
  323. package/utils/format-path.ts +0 -7
  324. package/utils/generateToC.ts +0 -33
  325. package/utils/git.ts +0 -121
  326. package/utils/gitInlined.ts +0 -20
  327. package/utils/head.ts +0 -235
  328. package/utils/i18n.ts +0 -221
  329. package/utils/localizedUrl.ts +0 -51
  330. package/utils/navigation.ts +0 -574
  331. package/utils/path.ts +0 -58
  332. package/utils/plugins.ts +0 -498
  333. package/utils/routing/data.ts +0 -154
  334. package/utils/routing/index.ts +0 -139
  335. package/utils/routing/middleware.ts +0 -81
  336. package/utils/routing/types.ts +0 -101
  337. package/utils/slugs.ts +0 -119
  338. package/utils/starlight-page.ts +0 -205
  339. package/utils/translations-fs.ts +0 -54
  340. package/utils/translations.ts +0 -57
  341. package/utils/types.ts +0 -15
  342. package/utils/user-config.ts +0 -348
  343. package/utils/validateLogoImports.ts +0 -21
  344. package/utils/zodDeepMerge.ts +0 -144
  345. package/virtual-internal.d.ts +0 -149
  346. package/virtual.d.ts +0 -27
  347. /package/{components → dist/components}/AnchorHeading.astro +0 -0
  348. /package/{components → dist/components}/Banner.astro +0 -0
  349. /package/{components → dist/components}/ContentNotice.astro +0 -0
  350. /package/{components → dist/components}/ContentPanel.astro +0 -0
  351. /package/{components → dist/components}/DraftContentNotice.astro +0 -0
  352. /package/{components → dist/components}/EditLink.astro +0 -0
  353. /package/{components → dist/components}/FallbackContentNotice.astro +0 -0
  354. /package/{components → dist/components}/Footer.astro +0 -0
  355. /package/{components → dist/components}/Head.astro +0 -0
  356. /package/{components → dist/components}/Header.astro +0 -0
  357. /package/{components → dist/components}/Hero.astro +0 -0
  358. /package/{components → dist/components}/LanguageSelect.astro +0 -0
  359. /package/{components → dist/components}/LastUpdated.astro +0 -0
  360. /package/{components → dist/components}/MarkdownContent.astro +0 -0
  361. /package/{components → dist/components}/MobileMenuFooter.astro +0 -0
  362. /package/{components → dist/components}/MobileTableOfContents.astro +0 -0
  363. /package/{components → dist/components}/Page.astro +0 -0
  364. /package/{components → dist/components}/PageSidebar.astro +0 -0
  365. /package/{components → dist/components}/PageTitle.astro +0 -0
  366. /package/{components → dist/components}/Pagination.astro +0 -0
  367. /package/{components → dist/components}/Search.astro +0 -0
  368. /package/{components → dist/components}/Select.astro +0 -0
  369. /package/{components → dist/components}/Sidebar.astro +0 -0
  370. /package/{components → dist/components}/SidebarPersister.astro +0 -0
  371. /package/{components → dist/components}/SidebarRestorePoint.astro +0 -0
  372. /package/{components → dist/components}/SidebarSublist.astro +0 -0
  373. /package/{components → dist/components}/SiteTitle.astro +0 -0
  374. /package/{components → dist/components}/SkipLink.astro +0 -0
  375. /package/{components → dist/components}/SocialIcons.astro +0 -0
  376. /package/{components → dist/components}/StarlightPage.astro +0 -0
  377. /package/{components → dist/components}/TableOfContents.astro +0 -0
  378. /package/{components → dist/components}/ThemeProvider.astro +0 -0
  379. /package/{components → dist/components}/ThemeSelect.astro +0 -0
  380. /package/{components → dist/components}/TwoColumnContent.astro +0 -0
  381. /package/{components-internals → dist/components-internals}/TableOfContents/TableOfContentsList.astro +0 -0
  382. /package/{components.ts → dist/components.ts} +0 -0
  383. /package/{routes → dist/routes}/common.astro +0 -0
  384. /package/{routes → dist/routes}/ssr/404.astro +0 -0
  385. /package/{routes → dist/routes}/ssr/index.astro +0 -0
  386. /package/{routes → dist/routes}/static/404.astro +0 -0
  387. /package/{routes → dist/routes}/static/index.astro +0 -0
  388. /package/{style → dist/style}/anchor-links.css +0 -0
  389. /package/{style → dist/style}/asides.css +0 -0
  390. /package/{style → dist/style}/layers.css +0 -0
  391. /package/{style → dist/style}/markdown.css +0 -0
  392. /package/{style → dist/style}/print.css +0 -0
  393. /package/{style → dist/style}/props.css +0 -0
  394. /package/{style → dist/style}/reset.css +0 -0
  395. /package/{style → dist/style}/util.css +0 -0
  396. /package/{user-components → dist/user-components}/Aside.astro +0 -0
  397. /package/{user-components → dist/user-components}/Badge.astro +0 -0
  398. /package/{user-components → dist/user-components}/Card.astro +0 -0
  399. /package/{user-components → dist/user-components}/CardGrid.astro +0 -0
  400. /package/{user-components → dist/user-components}/Icon.astro +0 -0
  401. /package/{user-components → dist/user-components}/LinkButton.astro +0 -0
  402. /package/{user-components → dist/user-components}/LinkCard.astro +0 -0
@@ -0,0 +1,284 @@
1
+ import { StarlightIcon } from "../components-internals/Icons.js";
2
+ import { z } from "astro/zod";
3
+ //#region src/schemas/icon.d.ts
4
+ /** String that matches the name of one of Starlight’s built-in icons. */
5
+ type IconUserConfig = StarlightIcon;
6
+ declare const IconSchema: () => z.ZodEnum<{
7
+ server: "server";
8
+ external: "external";
9
+ error: "error";
10
+ link: "link";
11
+ "up-caret": "up-caret";
12
+ "down-caret": "down-caret";
13
+ "right-caret": "right-caret";
14
+ "left-caret": "left-caret";
15
+ "up-arrow": "up-arrow";
16
+ "down-arrow": "down-arrow";
17
+ "right-arrow": "right-arrow";
18
+ "left-arrow": "left-arrow";
19
+ bars: "bars";
20
+ translate: "translate";
21
+ pencil: "pencil";
22
+ pen: "pen";
23
+ document: "document";
24
+ "add-document": "add-document";
25
+ setting: "setting";
26
+ "link-alt": "link-alt";
27
+ download: "download";
28
+ "cloud-download": "cloud-download";
29
+ moon: "moon";
30
+ sun: "sun";
31
+ clock: "clock";
32
+ laptop: "laptop";
33
+ desktop: "desktop";
34
+ "mobile-android": "mobile-android";
35
+ window: "window";
36
+ database: "database";
37
+ "code-branch": "code-branch";
38
+ "open-book": "open-book";
39
+ notes: "notes";
40
+ information: "information";
41
+ magnifier: "magnifier";
42
+ "forward-slash": "forward-slash";
43
+ close: "close";
44
+ warning: "warning";
45
+ "approve-check-circle": "approve-check-circle";
46
+ "approve-check": "approve-check";
47
+ "question-circle": "question-circle";
48
+ question: "question";
49
+ rocket: "rocket";
50
+ star: "star";
51
+ puzzle: "puzzle";
52
+ "list-format": "list-format";
53
+ analytics: "analytics";
54
+ random: "random";
55
+ padlock: "padlock";
56
+ comment: "comment";
57
+ "comment-alt": "comment-alt";
58
+ heart: "heart";
59
+ github: "github";
60
+ gitlab: "gitlab";
61
+ bitbucket: "bitbucket";
62
+ forgejo: "forgejo";
63
+ codePen: "codePen";
64
+ farcaster: "farcaster";
65
+ discord: "discord";
66
+ gitter: "gitter";
67
+ twitter: "twitter";
68
+ "x.com": "x.com";
69
+ mastodon: "mastodon";
70
+ codeberg: "codeberg";
71
+ youtube: "youtube";
72
+ threads: "threads";
73
+ linkedin: "linkedin";
74
+ twitch: "twitch";
75
+ azureDevOps: "azureDevOps";
76
+ microsoftTeams: "microsoftTeams";
77
+ instagram: "instagram";
78
+ stackOverflow: "stackOverflow";
79
+ telegram: "telegram";
80
+ whatsApp: "whatsApp";
81
+ rss: "rss";
82
+ facebook: "facebook";
83
+ email: "email";
84
+ phone: "phone";
85
+ reddit: "reddit";
86
+ patreon: "patreon";
87
+ signal: "signal";
88
+ slack: "slack";
89
+ matrix: "matrix";
90
+ hackerOne: "hackerOne";
91
+ openCollective: "openCollective";
92
+ blueSky: "blueSky";
93
+ discourse: "discourse";
94
+ zulip: "zulip";
95
+ pinterest: "pinterest";
96
+ tiktok: "tiktok";
97
+ goodreads: "goodreads";
98
+ hypothesis: "hypothesis";
99
+ astro: "astro";
100
+ solidjs: "solidjs";
101
+ alpine: "alpine";
102
+ pnpm: "pnpm";
103
+ biome: "biome";
104
+ bun: "bun";
105
+ mdx: "mdx";
106
+ apple: "apple";
107
+ linux: "linux";
108
+ homebrew: "homebrew";
109
+ nix: "nix";
110
+ starlight: "starlight";
111
+ pkl: "pkl";
112
+ node: "node";
113
+ cloudflare: "cloudflare";
114
+ vercel: "vercel";
115
+ netlify: "netlify";
116
+ deno: "deno";
117
+ jsr: "jsr";
118
+ nostr: "nostr";
119
+ backstage: "backstage";
120
+ confluence: "confluence";
121
+ jira: "jira";
122
+ storybook: "storybook";
123
+ vscode: "vscode";
124
+ jetbrains: "jetbrains";
125
+ zed: "zed";
126
+ vim: "vim";
127
+ figma: "figma";
128
+ sketch: "sketch";
129
+ npm: "npm";
130
+ npmx: "npmx";
131
+ sourcehut: "sourcehut";
132
+ substack: "substack";
133
+ chrome: "chrome";
134
+ edge: "edge";
135
+ firefox: "firefox";
136
+ safari: "safari";
137
+ "seti:folder": "seti:folder";
138
+ "seti:bsl": "seti:bsl";
139
+ "seti:mdo": "seti:mdo";
140
+ "seti:salesforce": "seti:salesforce";
141
+ "seti:asm": "seti:asm";
142
+ "seti:bicep": "seti:bicep";
143
+ "seti:bazel": "seti:bazel";
144
+ "seti:c": "seti:c";
145
+ "seti:c-sharp": "seti:c-sharp";
146
+ "seti:html": "seti:html";
147
+ "seti:cpp": "seti:cpp";
148
+ "seti:clojure": "seti:clojure";
149
+ "seti:coldfusion": "seti:coldfusion";
150
+ "seti:config": "seti:config";
151
+ "seti:crystal": "seti:crystal";
152
+ "seti:crystal_embedded": "seti:crystal_embedded";
153
+ "seti:json": "seti:json";
154
+ "seti:css": "seti:css";
155
+ "seti:csv": "seti:csv";
156
+ "seti:xls": "seti:xls";
157
+ "seti:cu": "seti:cu";
158
+ "seti:cake": "seti:cake";
159
+ "seti:cake_php": "seti:cake_php";
160
+ "seti:d": "seti:d";
161
+ "seti:word": "seti:word";
162
+ "seti:elixir": "seti:elixir";
163
+ "seti:elixir_script": "seti:elixir_script";
164
+ "seti:hex": "seti:hex";
165
+ "seti:elm": "seti:elm";
166
+ "seti:favicon": "seti:favicon";
167
+ "seti:f-sharp": "seti:f-sharp";
168
+ "seti:git": "seti:git";
169
+ "seti:go": "seti:go";
170
+ "seti:godot": "seti:godot";
171
+ "seti:gradle": "seti:gradle";
172
+ "seti:grails": "seti:grails";
173
+ "seti:graphql": "seti:graphql";
174
+ "seti:hacklang": "seti:hacklang";
175
+ "seti:haml": "seti:haml";
176
+ "seti:mustache": "seti:mustache";
177
+ "seti:haskell": "seti:haskell";
178
+ "seti:haxe": "seti:haxe";
179
+ "seti:jade": "seti:jade";
180
+ "seti:java": "seti:java";
181
+ "seti:javascript": "seti:javascript";
182
+ "seti:jinja": "seti:jinja";
183
+ "seti:julia": "seti:julia";
184
+ "seti:karma": "seti:karma";
185
+ "seti:kotlin": "seti:kotlin";
186
+ "seti:dart": "seti:dart";
187
+ "seti:liquid": "seti:liquid";
188
+ "seti:livescript": "seti:livescript";
189
+ "seti:lua": "seti:lua";
190
+ "seti:markdown": "seti:markdown";
191
+ "seti:argdown": "seti:argdown";
192
+ "seti:info": "seti:info";
193
+ "seti:clock": "seti:clock";
194
+ "seti:maven": "seti:maven";
195
+ "seti:nim": "seti:nim";
196
+ "seti:github": "seti:github";
197
+ "seti:notebook": "seti:notebook";
198
+ "seti:nunjucks": "seti:nunjucks";
199
+ "seti:npm": "seti:npm";
200
+ "seti:ocaml": "seti:ocaml";
201
+ "seti:odata": "seti:odata";
202
+ "seti:perl": "seti:perl";
203
+ "seti:php": "seti:php";
204
+ "seti:pipeline": "seti:pipeline";
205
+ "seti:pddl": "seti:pddl";
206
+ "seti:plan": "seti:plan";
207
+ "seti:happenings": "seti:happenings";
208
+ "seti:powershell": "seti:powershell";
209
+ "seti:prisma": "seti:prisma";
210
+ "seti:pug": "seti:pug";
211
+ "seti:puppet": "seti:puppet";
212
+ "seti:purescript": "seti:purescript";
213
+ "seti:python": "seti:python";
214
+ "seti:react": "seti:react";
215
+ "seti:rescript": "seti:rescript";
216
+ "seti:R": "seti:R";
217
+ "seti:ruby": "seti:ruby";
218
+ "seti:rust": "seti:rust";
219
+ "seti:sass": "seti:sass";
220
+ "seti:spring": "seti:spring";
221
+ "seti:slim": "seti:slim";
222
+ "seti:smarty": "seti:smarty";
223
+ "seti:sbt": "seti:sbt";
224
+ "seti:scala": "seti:scala";
225
+ "seti:ethereum": "seti:ethereum";
226
+ "seti:stylus": "seti:stylus";
227
+ "seti:svelte": "seti:svelte";
228
+ "seti:swift": "seti:swift";
229
+ "seti:db": "seti:db";
230
+ "seti:terraform": "seti:terraform";
231
+ "seti:tex": "seti:tex";
232
+ "seti:default": "seti:default";
233
+ "seti:twig": "seti:twig";
234
+ "seti:typescript": "seti:typescript";
235
+ "seti:tsconfig": "seti:tsconfig";
236
+ "seti:vala": "seti:vala";
237
+ "seti:vite": "seti:vite";
238
+ "seti:vue": "seti:vue";
239
+ "seti:wasm": "seti:wasm";
240
+ "seti:wat": "seti:wat";
241
+ "seti:xml": "seti:xml";
242
+ "seti:yml": "seti:yml";
243
+ "seti:prolog": "seti:prolog";
244
+ "seti:zig": "seti:zig";
245
+ "seti:zip": "seti:zip";
246
+ "seti:wgt": "seti:wgt";
247
+ "seti:illustrator": "seti:illustrator";
248
+ "seti:photoshop": "seti:photoshop";
249
+ "seti:pdf": "seti:pdf";
250
+ "seti:font": "seti:font";
251
+ "seti:image": "seti:image";
252
+ "seti:svg": "seti:svg";
253
+ "seti:sublime": "seti:sublime";
254
+ "seti:code-search": "seti:code-search";
255
+ "seti:shell": "seti:shell";
256
+ "seti:video": "seti:video";
257
+ "seti:audio": "seti:audio";
258
+ "seti:windows": "seti:windows";
259
+ "seti:jenkins": "seti:jenkins";
260
+ "seti:babel": "seti:babel";
261
+ "seti:bower": "seti:bower";
262
+ "seti:docker": "seti:docker";
263
+ "seti:code-climate": "seti:code-climate";
264
+ "seti:eslint": "seti:eslint";
265
+ "seti:firebase": "seti:firebase";
266
+ "seti:firefox": "seti:firefox";
267
+ "seti:gitlab": "seti:gitlab";
268
+ "seti:grunt": "seti:grunt";
269
+ "seti:gulp": "seti:gulp";
270
+ "seti:ionic": "seti:ionic";
271
+ "seti:platformio": "seti:platformio";
272
+ "seti:rollup": "seti:rollup";
273
+ "seti:stylelint": "seti:stylelint";
274
+ "seti:yarn": "seti:yarn";
275
+ "seti:webpack": "seti:webpack";
276
+ "seti:lock": "seti:lock";
277
+ "seti:license": "seti:license";
278
+ "seti:makefile": "seti:makefile";
279
+ "seti:heroku": "seti:heroku";
280
+ "seti:todo": "seti:todo";
281
+ "seti:ignored": "seti:ignored";
282
+ }>;
283
+ //#endregion
284
+ export { IconSchema, IconUserConfig };
@@ -0,0 +1,7 @@
1
+ import { Icons } from "../components-internals/Icons.js";
2
+ import { z } from "astro/zod";
3
+ //#region src/schemas/icon.ts
4
+ const iconNames = Object.keys(Icons);
5
+ const IconSchema = () => z.enum(iconNames);
6
+ //#endregion
7
+ export { IconSchema };
@@ -0,0 +1,20 @@
1
+ import { z } from "astro/zod";
2
+ //#region src/schemas/locale.d.ts
3
+ interface LocaleUserConfig {
4
+ /** The label for this language to show in UI, e.g. `"English"`, `"العربية"`, or `"简体中文"`. */
5
+ label: string;
6
+ /** The BCP-47 tag for this language, e.g. `"en"`, `"ar"`, or `"zh-CN"`. */
7
+ lang?: string | undefined;
8
+ /** The writing direction of this language; `"ltr"` for left-to-right (the default) or `"rtl"` for right-to-left. */
9
+ dir?: 'rtl' | 'ltr' | undefined;
10
+ }
11
+ declare function LocaleConfigSchema(): z.ZodObject<{
12
+ label: z.ZodString;
13
+ lang: z.ZodOptional<z.ZodString>;
14
+ dir: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
15
+ rtl: "rtl";
16
+ ltr: "ltr";
17
+ }>>>;
18
+ }, z.core.$strip>;
19
+ //#endregion
20
+ export { LocaleConfigSchema, LocaleUserConfig };
@@ -0,0 +1,11 @@
1
+ import { z } from "astro/zod";
2
+ //#region src/schemas/locale.ts
3
+ function LocaleConfigSchema() {
4
+ return z.object({
5
+ label: z.string(),
6
+ lang: z.string().optional(),
7
+ dir: z.enum(["rtl", "ltr"]).optional().default("ltr")
8
+ });
9
+ }
10
+ //#endregion
11
+ export { LocaleConfigSchema };
@@ -0,0 +1,32 @@
1
+ import { z } from "astro/zod";
2
+ //#region src/schemas/logo.d.ts
3
+ type LogoUserConfig = {
4
+ /** Source of the image file to use. */
5
+ src: string;
6
+ /** Alternative text description of the logo. */
7
+ alt?: string | undefined;
8
+ /** Set to `true` to hide the site title text and only show the logo. */
9
+ replacesTitle?: boolean | undefined;
10
+ } | {
11
+ /** Source of the image file to use in dark mode. */
12
+ dark: string;
13
+ /** Source of the image file to use in light mode. */
14
+ light: string;
15
+ /** Alternative text description of the logo. */
16
+ alt?: string | undefined;
17
+ /** Set to `true` to hide the site title text and only show the logo. */
18
+ replacesTitle?: boolean | undefined;
19
+ } | undefined;
20
+ declare const LogoConfigSchema: () => z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
21
+ src: z.ZodString;
22
+ alt: z.ZodDefault<z.ZodString>;
23
+ replacesTitle: z.ZodDefault<z.ZodBoolean>;
24
+ }, z.core.$strip>, z.ZodObject<{
25
+ dark: z.ZodString;
26
+ light: z.ZodString;
27
+ alt: z.ZodDefault<z.ZodString>;
28
+ replacesTitle: z.ZodDefault<z.ZodBoolean>;
29
+ }, z.core.$strip>]>>;
30
+ type LogoConfig = z.output<ReturnType<typeof LogoConfigSchema>>;
31
+ //#endregion
32
+ export { LogoConfig, LogoConfigSchema, LogoUserConfig };
@@ -0,0 +1,14 @@
1
+ import { z } from "astro/zod";
2
+ //#region src/schemas/logo.ts
3
+ const LogoConfigSchema = () => z.union([z.object({
4
+ src: z.string(),
5
+ alt: z.string().default(""),
6
+ replacesTitle: z.boolean().default(false)
7
+ }), z.object({
8
+ dark: z.string(),
9
+ light: z.string(),
10
+ alt: z.string().default(""),
11
+ replacesTitle: z.boolean().default(false)
12
+ })]).optional();
13
+ //#endregion
14
+ export { LogoConfigSchema };
@@ -0,0 +1,166 @@
1
+ import { z } from "astro/zod";
2
+ //#region src/schemas/pagefind.d.ts
3
+ interface PagefindUserConfig {
4
+ /**
5
+ * Configure how search results from the current website are weighted by Pagefind
6
+ * compared to results from other sites when using the `mergeIndex` option.
7
+ *
8
+ * @see https://pagefind.app/docs/multisite/#changing-the-weighting-of-individual-indexes
9
+ */
10
+ indexWeight?: number | undefined;
11
+ /** Configure how search result rankings are calculated by Pagefind. */
12
+ ranking?: PagefindRankingUserConfig | undefined;
13
+ /**
14
+ * Configure how search indexes from different sites are merged by Pagefind.
15
+ * Each entry of this array represents a `PagefindIndexOptions` from pagefind.
16
+ *
17
+ * @see https://pagefind.app/docs/multisite/#searching-additional-sites-from-pagefind-ui
18
+ * @see https://github.com/CloudCannon/pagefind/blob/v1.3.0/pagefind_web_js/lib/coupled_search.ts#L549
19
+ */
20
+ mergeIndex?: {
21
+ /**
22
+ * Set Pagefind’s `bundlePath` mergeIndex option.
23
+ *
24
+ * @see https://pagefind.app/docs/multisite/#searching-additional-sites-from-pagefind-ui
25
+ */
26
+ bundlePath: string;
27
+ /**
28
+ * Overrides the URL path that Pagefind uses to load its search bundle
29
+ */
30
+ basePath?: string | undefined;
31
+ /**
32
+ * Appends the given baseURL to all search results. May be a path, or a full domain
33
+ */
34
+ baseUrl?: string | undefined;
35
+ /**
36
+ * Multiply all rankings for this index by the given weight.
37
+ *
38
+ * @see https://pagefind.app/docs/multisite/#changing-the-weighting-of-individual-indexes
39
+ */
40
+ indexWeight?: number | undefined;
41
+ /**
42
+ * Apply this filter configuration to all search results from this index.
43
+ *
44
+ * Only applies in multisite setups.
45
+ *
46
+ * @see https://pagefind.app/docs/multisite/#filtering-results-by-index
47
+ */
48
+ mergeFilter?: Record<string, string | [string, ...string[]]> | undefined;
49
+ /**
50
+ * Language of this index.
51
+ *
52
+ * @see https://pagefind.app/docs/multisite/#merging-a-specific-language-index
53
+ */
54
+ language?: string | undefined;
55
+ /**
56
+ * Configure how search result rankings are calculated by Pagefind.
57
+ */
58
+ ranking?: PagefindRankingUserConfig | undefined;
59
+ }[] | undefined;
60
+ }
61
+ interface PagefindRankingUserConfig {
62
+ /**
63
+ * Set Pagefind’s `pageLength` ranking option.
64
+ *
65
+ * The default value is `0.1` and values must be in the range `0` to `1`.
66
+ *
67
+ * @see https://pagefind.app/docs/ranking/#configuring-page-length
68
+ */
69
+ pageLength?: number | undefined;
70
+ /**
71
+ * Set Pagefind’s `termFrequency` ranking option.
72
+ *
73
+ * The default value is `0.1` and values must be in the range `0` to `1`.
74
+ *
75
+ * @see https://pagefind.app/docs/ranking/#configuring-term-frequency
76
+ */
77
+ termFrequency?: number | undefined;
78
+ /**
79
+ * Set Pagefind’s `termSaturation` ranking option.
80
+ *
81
+ * The default value is `2` and values must be in the range `0` to `2`.
82
+ *
83
+ * @see https://pagefind.app/docs/ranking/#configuring-term-saturation
84
+ */
85
+ termSaturation?: number | undefined;
86
+ /**
87
+ * Set Pagefind’s `termSimilarity` ranking option.
88
+ *
89
+ * The default value is `9` and values must be greater than or equal to `0`.
90
+ *
91
+ * @see https://pagefind.app/docs/ranking/#configuring-term-similarity
92
+ */
93
+ termSimilarity?: number | undefined;
94
+ /**
95
+ * Set Pagefind’s `diacriticSimilarity` ranking option.
96
+ *
97
+ * The default value is `0.8` and values must be greater than or equal to `0`.
98
+ *
99
+ * @see https://pagefind.app/docs/ranking/#configuring-diacritic-similarity
100
+ */
101
+ diacriticSimilarity?: number | undefined;
102
+ /**
103
+ * Set Pagefind’s `metaWeights` ranking option.
104
+ *
105
+ * This is a map of metadata keys to their corresponding weights, with a default value of `{ title: 5 }`.
106
+ *
107
+ * @see https://pagefind.app/docs/ranking/#configuring-metadata-weights
108
+ */
109
+ metaWeights?: Record<string, number> | undefined;
110
+ }
111
+ declare const PagefindConfigSchema: () => z.ZodObject<{
112
+ indexWeight: z.ZodOptional<z.ZodNumber>;
113
+ ranking: z.ZodPrefault<z.ZodObject<{
114
+ pageLength: z.ZodDefault<z.ZodNumber>;
115
+ termFrequency: z.ZodDefault<z.ZodNumber>;
116
+ termSaturation: z.ZodDefault<z.ZodNumber>;
117
+ termSimilarity: z.ZodDefault<z.ZodNumber>;
118
+ diacriticSimilarity: z.ZodDefault<z.ZodNumber>;
119
+ metaWeights: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
120
+ }, z.core.$strip>>;
121
+ mergeIndex: z.ZodOptional<z.ZodArray<z.ZodObject<{
122
+ bundlePath: z.ZodString;
123
+ basePath: z.ZodOptional<z.ZodString>;
124
+ baseUrl: z.ZodOptional<z.ZodString>;
125
+ indexWeight: z.ZodOptional<z.ZodNumber>;
126
+ mergeFilter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString], z.ZodString>]>>>;
127
+ language: z.ZodOptional<z.ZodString>;
128
+ ranking: z.ZodPrefault<z.ZodObject<{
129
+ pageLength: z.ZodDefault<z.ZodNumber>;
130
+ termFrequency: z.ZodDefault<z.ZodNumber>;
131
+ termSaturation: z.ZodDefault<z.ZodNumber>;
132
+ termSimilarity: z.ZodDefault<z.ZodNumber>;
133
+ diacriticSimilarity: z.ZodDefault<z.ZodNumber>;
134
+ metaWeights: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
135
+ }, z.core.$strip>>;
136
+ }, z.core.$strip>>>;
137
+ }, z.core.$strip>;
138
+ declare const PagefindConfigDefaults: () => {
139
+ ranking: {
140
+ pageLength: number;
141
+ termFrequency: number;
142
+ termSaturation: number;
143
+ termSimilarity: number;
144
+ diacriticSimilarity: number;
145
+ metaWeights?: Record<string, number> | undefined;
146
+ };
147
+ indexWeight?: number | undefined;
148
+ mergeIndex?: {
149
+ bundlePath: string;
150
+ ranking: {
151
+ pageLength: number;
152
+ termFrequency: number;
153
+ termSaturation: number;
154
+ termSimilarity: number;
155
+ diacriticSimilarity: number;
156
+ metaWeights?: Record<string, number> | undefined;
157
+ };
158
+ basePath?: string | undefined;
159
+ baseUrl?: string | undefined;
160
+ indexWeight?: number | undefined;
161
+ mergeFilter?: Record<string, string | [string, ...string[]]> | undefined;
162
+ language?: string | undefined;
163
+ }[] | undefined;
164
+ };
165
+ //#endregion
166
+ export { PagefindConfigDefaults, PagefindConfigSchema, PagefindUserConfig };
@@ -0,0 +1,31 @@
1
+ import { z } from "astro/zod";
2
+ //#region src/schemas/pagefind.ts
3
+ const indexWeightSchema = z.number().nonnegative().optional();
4
+ const pagefindRankingWeightsSchema = z.object({
5
+ pageLength: z.number().min(0).max(1).default(.1),
6
+ termFrequency: z.number().min(0).max(1).default(.1),
7
+ termSaturation: z.number().min(0).max(2).default(2),
8
+ termSimilarity: z.number().min(0).default(9),
9
+ diacriticSimilarity: z.number().min(0).default(.8),
10
+ metaWeights: z.record(z.string(), z.number().min(0)).optional()
11
+ });
12
+ const pagefindIndexOptionsSchema = z.object({
13
+ basePath: z.string().optional(),
14
+ baseUrl: z.string().optional(),
15
+ indexWeight: indexWeightSchema,
16
+ mergeFilter: z.record(z.string(), z.string().or(z.tuple([z.string()], z.string()))).optional(),
17
+ language: z.string().optional(),
18
+ ranking: pagefindRankingWeightsSchema.prefault({})
19
+ });
20
+ const pagefindSchema = z.object({
21
+ indexWeight: indexWeightSchema,
22
+ ranking: pagefindRankingWeightsSchema.prefault({}),
23
+ mergeIndex: z.array(z.object({
24
+ ...pagefindIndexOptionsSchema.shape,
25
+ bundlePath: z.string()
26
+ })).optional()
27
+ });
28
+ const PagefindConfigSchema = () => pagefindSchema;
29
+ const PagefindConfigDefaults = () => pagefindSchema.parse({});
30
+ //#endregion
31
+ export { PagefindConfigDefaults, PagefindConfigSchema };
@@ -0,0 +1,10 @@
1
+ import { z } from "astro/zod";
2
+ //#region src/schemas/prevNextLink.d.ts
3
+ declare const PrevNextLinkConfigSchema: () => z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString, z.ZodObject<{
4
+ link: z.ZodOptional<z.ZodString>;
5
+ label: z.ZodOptional<z.ZodString>;
6
+ }, z.core.$strict>]>>;
7
+ type PrevNextLinkUserConfig = z.input<ReturnType<typeof PrevNextLinkConfigSchema>>;
8
+ type PrevNextLinkConfig = z.output<ReturnType<typeof PrevNextLinkConfigSchema>>;
9
+ //#endregion
10
+ export { PrevNextLinkConfig, PrevNextLinkConfigSchema, PrevNextLinkUserConfig };
@@ -0,0 +1,14 @@
1
+ import { z } from "astro/zod";
2
+ //#region src/schemas/prevNextLink.ts
3
+ const PrevNextLinkConfigSchema = () => z.union([
4
+ z.boolean(),
5
+ z.string(),
6
+ z.strictObject({
7
+ /** The navigation link URL. */
8
+ link: z.string().optional(),
9
+ /** The navigation link text. */
10
+ label: z.string().optional()
11
+ })
12
+ ]).optional();
13
+ //#endregion
14
+ export { PrevNextLinkConfigSchema };