fromsrc 0.0.0 → 0.0.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.
Files changed (684) hide show
  1. package/README.md +49 -0
  2. package/dist/access.d.ts +23 -0
  3. package/dist/access.js +54 -0
  4. package/dist/adapter.d.ts +31 -0
  5. package/dist/adapter.js +59 -0
  6. package/dist/adapterastro.d.ts +6 -0
  7. package/dist/adapterastro.js +6 -0
  8. package/dist/adapterbrowser.d.ts +6 -0
  9. package/dist/adapterbrowser.js +38 -0
  10. package/dist/adapternext.d.ts +6 -0
  11. package/dist/adapternext.js +49 -0
  12. package/dist/adapterreactrouter.d.ts +6 -0
  13. package/dist/adapterreactrouter.js +37 -0
  14. package/dist/adapterremix.d.ts +6 -0
  15. package/dist/adapterremix.js +41 -0
  16. package/dist/adaptertanstack.d.ts +6 -0
  17. package/dist/adaptertanstack.js +38 -0
  18. package/dist/adaptervite.d.ts +6 -0
  19. package/dist/adaptervite.js +6 -0
  20. package/dist/algolia.d.ts +16 -0
  21. package/dist/algolia.js +83 -0
  22. package/dist/analytics.d.ts +31 -0
  23. package/dist/analytics.js +61 -0
  24. package/dist/ansi.d.ts +5 -0
  25. package/dist/ansi.js +192 -0
  26. package/dist/api.d.ts +30 -0
  27. package/dist/api.js +75 -0
  28. package/dist/astro.d.ts +3 -0
  29. package/dist/astro.js +3 -0
  30. package/dist/audit.d.ts +19 -0
  31. package/dist/audit.js +78 -0
  32. package/dist/autotype.d.ts +17 -0
  33. package/dist/autotype.js +73 -0
  34. package/dist/batch.d.ts +22 -0
  35. package/dist/batch.js +68 -0
  36. package/dist/browser.d.ts +5 -0
  37. package/dist/browser.js +53 -0
  38. package/dist/changelog.d.ts +27 -0
  39. package/dist/changelog.js +87 -0
  40. package/dist/changelogutil.d.ts +20 -0
  41. package/dist/changelogutil.js +84 -0
  42. package/dist/cli.d.ts +24 -0
  43. package/dist/cli.js +76 -0
  44. package/dist/client.d.ts +212 -0
  45. package/dist/client.js +202 -0
  46. package/dist/codesample.d.ts +20 -0
  47. package/dist/codesample.js +115 -0
  48. package/dist/collapse.d.ts +5 -0
  49. package/dist/collapse.js +101 -0
  50. package/dist/collections.d.ts +32 -0
  51. package/dist/collections.js +82 -0
  52. package/dist/components/accordion.d.ts +22 -0
  53. package/dist/components/accordion.js +54 -0
  54. package/dist/components/alert.d.ts +18 -0
  55. package/dist/components/alert.js +30 -0
  56. package/dist/components/announce.d.ts +11 -0
  57. package/dist/components/announce.js +38 -0
  58. package/dist/components/autofill.d.ts +27 -0
  59. package/dist/components/autofill.js +152 -0
  60. package/dist/components/avatar.d.ts +42 -0
  61. package/dist/components/avatar.js +67 -0
  62. package/dist/components/avatarstack.d.ts +23 -0
  63. package/dist/components/avatarstack.js +54 -0
  64. package/dist/components/backtotop.d.ts +20 -0
  65. package/dist/components/backtotop.js +42 -0
  66. package/dist/components/badge.d.ts +17 -0
  67. package/dist/components/badge.js +25 -0
  68. package/dist/components/banner.d.ts +21 -0
  69. package/dist/components/banner.js +63 -0
  70. package/dist/components/breadcrumb.d.ts +25 -0
  71. package/dist/components/breadcrumb.js +35 -0
  72. package/dist/components/breadcrumbnav.d.ts +15 -0
  73. package/dist/components/breadcrumbnav.js +60 -0
  74. package/dist/components/button.d.ts +22 -0
  75. package/dist/components/button.js +47 -0
  76. package/dist/components/callout.d.ts +26 -0
  77. package/dist/components/callout.js +91 -0
  78. package/dist/components/cards.d.ts +34 -0
  79. package/dist/components/cards.js +24 -0
  80. package/dist/components/changelog.d.ts +34 -0
  81. package/dist/components/changelog.js +50 -0
  82. package/dist/components/checkbox.d.ts +26 -0
  83. package/dist/components/checkbox.js +80 -0
  84. package/dist/components/code.d.ts +27 -0
  85. package/dist/components/code.js +36 -0
  86. package/dist/components/codeblock.d.ts +12 -0
  87. package/dist/components/codeblock.js +102 -0
  88. package/dist/components/codecopy.d.ts +12 -0
  89. package/dist/components/codecopy.js +56 -0
  90. package/dist/components/codegroup.d.ts +22 -0
  91. package/dist/components/codegroup.js +134 -0
  92. package/dist/components/collapsible.d.ts +29 -0
  93. package/dist/components/collapsible.js +64 -0
  94. package/dist/components/command.d.ts +22 -0
  95. package/dist/components/command.js +138 -0
  96. package/dist/components/compare.d.ts +54 -0
  97. package/dist/components/compare.js +88 -0
  98. package/dist/components/content.d.ts +12 -0
  99. package/dist/components/content.js +232 -0
  100. package/dist/components/copyable.d.ts +25 -0
  101. package/dist/components/copyable.js +51 -0
  102. package/dist/components/copybutton.d.ts +11 -0
  103. package/dist/components/copybutton.js +50 -0
  104. package/dist/components/countdown.d.ts +18 -0
  105. package/dist/components/countdown.js +112 -0
  106. package/dist/components/create.d.ts +10 -0
  107. package/dist/components/create.js +149 -0
  108. package/dist/components/definition.d.ts +43 -0
  109. package/dist/components/definition.js +46 -0
  110. package/dist/components/diffview.d.ts +12 -0
  111. package/dist/components/diffview.js +129 -0
  112. package/dist/components/divider.d.ts +19 -0
  113. package/dist/components/divider.js +24 -0
  114. package/dist/components/docheader.d.ts +17 -0
  115. package/dist/components/docheader.js +24 -0
  116. package/dist/components/doclinkcard.d.ts +19 -0
  117. package/dist/components/doclinkcard.js +37 -0
  118. package/dist/components/docslayout.d.ts +14 -0
  119. package/dist/components/docslayout.js +24 -0
  120. package/dist/components/dropdown.d.ts +23 -0
  121. package/dist/components/dropdown.js +134 -0
  122. package/dist/components/dynamiccode.d.ts +12 -0
  123. package/dist/components/dynamiccode.js +40 -0
  124. package/dist/components/editlink.d.ts +15 -0
  125. package/dist/components/editlink.js +45 -0
  126. package/dist/components/embed.d.ts +45 -0
  127. package/dist/components/embed.js +85 -0
  128. package/dist/components/endpoint.d.ts +58 -0
  129. package/dist/components/endpoint.js +100 -0
  130. package/dist/components/errormessage.d.ts +11 -0
  131. package/dist/components/errormessage.js +10 -0
  132. package/dist/components/expandcode.d.ts +13 -0
  133. package/dist/components/expandcode.js +58 -0
  134. package/dist/components/feature.d.ts +31 -0
  135. package/dist/components/feature.js +58 -0
  136. package/dist/components/featuregrid.d.ts +17 -0
  137. package/dist/components/featuregrid.js +36 -0
  138. package/dist/components/feedback.d.ts +14 -0
  139. package/dist/components/feedback.js +62 -0
  140. package/dist/components/feedbackwidget.d.ts +14 -0
  141. package/dist/components/feedbackwidget.js +106 -0
  142. package/dist/components/files.d.ts +21 -0
  143. package/dist/components/files.js +133 -0
  144. package/dist/components/folder.d.ts +15 -0
  145. package/dist/components/folder.js +102 -0
  146. package/dist/components/footer.d.ts +16 -0
  147. package/dist/components/footer.js +28 -0
  148. package/dist/components/formlabel.d.ts +24 -0
  149. package/dist/components/formlabel.js +27 -0
  150. package/dist/components/github.d.ts +14 -0
  151. package/dist/components/github.js +99 -0
  152. package/dist/components/graph.d.ts +36 -0
  153. package/dist/components/graph.js +210 -0
  154. package/dist/components/heading.d.ts +25 -0
  155. package/dist/components/heading.js +82 -0
  156. package/dist/components/headingcopy.d.ts +3 -0
  157. package/dist/components/headingcopy.js +31 -0
  158. package/dist/components/hero.d.ts +16 -0
  159. package/dist/components/hero.js +28 -0
  160. package/dist/components/highlight.d.ts +41 -0
  161. package/dist/components/highlight.js +42 -0
  162. package/dist/components/hover.d.ts +23 -0
  163. package/dist/components/hover.js +79 -0
  164. package/dist/components/icons.d.ts +30 -0
  165. package/dist/components/icons.js +419 -0
  166. package/dist/components/inlinetoc.d.ts +19 -0
  167. package/dist/components/inlinetoc.js +28 -0
  168. package/dist/components/input.d.ts +25 -0
  169. package/dist/components/input.js +42 -0
  170. package/dist/components/install.d.ts +10 -0
  171. package/dist/components/install.js +149 -0
  172. package/dist/components/kbd.d.ts +22 -0
  173. package/dist/components/kbd.js +30 -0
  174. package/dist/components/langicon.d.ts +8 -0
  175. package/dist/components/langicon.js +48 -0
  176. package/dist/components/language.d.ts +17 -0
  177. package/dist/components/language.js +123 -0
  178. package/dist/components/lastupdated.d.ts +12 -0
  179. package/dist/components/lastupdated.js +44 -0
  180. package/dist/components/link.d.ts +14 -0
  181. package/dist/components/link.js +53 -0
  182. package/dist/components/linkcard.d.ts +33 -0
  183. package/dist/components/linkcard.js +50 -0
  184. package/dist/components/list.d.ts +50 -0
  185. package/dist/components/list.js +55 -0
  186. package/dist/components/math.d.ts +34 -0
  187. package/dist/components/math.js +63 -0
  188. package/dist/components/mermaid.d.ts +19 -0
  189. package/dist/components/mermaid.js +79 -0
  190. package/dist/components/mobilenav.d.ts +17 -0
  191. package/dist/components/mobilenav.js +263 -0
  192. package/dist/components/modal.d.ts +18 -0
  193. package/dist/components/modal.js +69 -0
  194. package/dist/components/navbar.d.ts +19 -0
  195. package/dist/components/navbar.js +45 -0
  196. package/dist/components/navlink.d.ts +14 -0
  197. package/dist/components/navlink.js +77 -0
  198. package/dist/components/note.d.ts +28 -0
  199. package/dist/components/note.js +60 -0
  200. package/dist/components/openapi.d.ts +14 -0
  201. package/dist/components/openapi.js +145 -0
  202. package/dist/components/openapischema.d.ts +13 -0
  203. package/dist/components/openapischema.js +51 -0
  204. package/dist/components/openapitags.d.ts +13 -0
  205. package/dist/components/openapitags.js +20 -0
  206. package/dist/components/pagetransition.d.ts +13 -0
  207. package/dist/components/pagetransition.js +37 -0
  208. package/dist/components/pagination.d.ts +26 -0
  209. package/dist/components/pagination.js +68 -0
  210. package/dist/components/panel.d.ts +25 -0
  211. package/dist/components/panel.js +75 -0
  212. package/dist/components/playground.d.ts +14 -0
  213. package/dist/components/playground.js +89 -0
  214. package/dist/components/popover.d.ts +18 -0
  215. package/dist/components/popover.js +109 -0
  216. package/dist/components/prelink.d.ts +10 -0
  217. package/dist/components/prelink.js +46 -0
  218. package/dist/components/prevnext.d.ts +17 -0
  219. package/dist/components/prevnext.js +43 -0
  220. package/dist/components/progress.d.ts +30 -0
  221. package/dist/components/progress.js +74 -0
  222. package/dist/components/property.d.ts +24 -0
  223. package/dist/components/property.js +44 -0
  224. package/dist/components/quote.d.ts +44 -0
  225. package/dist/components/quote.js +41 -0
  226. package/dist/components/radio.d.ts +48 -0
  227. package/dist/components/radio.js +140 -0
  228. package/dist/components/rating.d.ts +22 -0
  229. package/dist/components/rating.js +100 -0
  230. package/dist/components/readtime.d.ts +17 -0
  231. package/dist/components/readtime.js +26 -0
  232. package/dist/components/recent.d.ts +12 -0
  233. package/dist/components/recent.js +23 -0
  234. package/dist/components/responsive.d.ts +35 -0
  235. package/dist/components/responsive.js +73 -0
  236. package/dist/components/results.d.ts +20 -0
  237. package/dist/components/results.js +72 -0
  238. package/dist/components/screenshot.d.ts +33 -0
  239. package/dist/components/screenshot.js +52 -0
  240. package/dist/components/scrollprogress.d.ts +12 -0
  241. package/dist/components/scrollprogress.js +56 -0
  242. package/dist/components/scrollspy.d.ts +18 -0
  243. package/dist/components/scrollspy.js +51 -0
  244. package/dist/components/search.d.ts +19 -0
  245. package/dist/components/search.js +228 -0
  246. package/dist/components/searchbutton.d.ts +10 -0
  247. package/dist/components/searchbutton.js +51 -0
  248. package/dist/components/searchdialog.d.ts +19 -0
  249. package/dist/components/searchdialog.js +108 -0
  250. package/dist/components/searcher.d.ts +12 -0
  251. package/dist/components/searcher.js +121 -0
  252. package/dist/components/select.d.ts +39 -0
  253. package/dist/components/select.js +162 -0
  254. package/dist/components/shortcuts.d.ts +17 -0
  255. package/dist/components/shortcuts.js +62 -0
  256. package/dist/components/sidebar.d.ts +35 -0
  257. package/dist/components/sidebar.js +215 -0
  258. package/dist/components/sidebarfilter.d.ts +13 -0
  259. package/dist/components/sidebarfilter.js +50 -0
  260. package/dist/components/skeleton.d.ts +40 -0
  261. package/dist/components/skeleton.js +59 -0
  262. package/dist/components/skiplink.d.ts +12 -0
  263. package/dist/components/skiplink.js +21 -0
  264. package/dist/components/spinner.d.ts +34 -0
  265. package/dist/components/spinner.js +56 -0
  266. package/dist/components/status.d.ts +27 -0
  267. package/dist/components/status.js +63 -0
  268. package/dist/components/steps.d.ts +30 -0
  269. package/dist/components/steps.js +15 -0
  270. package/dist/components/switch.d.ts +26 -0
  271. package/dist/components/switch.js +79 -0
  272. package/dist/components/table.d.ts +36 -0
  273. package/dist/components/table.js +138 -0
  274. package/dist/components/tabnav.d.ts +30 -0
  275. package/dist/components/tabnav.js +199 -0
  276. package/dist/components/tabs.d.ts +15 -0
  277. package/dist/components/tabs.js +96 -0
  278. package/dist/components/tag.d.ts +32 -0
  279. package/dist/components/tag.js +38 -0
  280. package/dist/components/terminal.d.ts +48 -0
  281. package/dist/components/terminal.js +62 -0
  282. package/dist/components/textarea.d.ts +30 -0
  283. package/dist/components/textarea.js +100 -0
  284. package/dist/components/theme.d.ts +11 -0
  285. package/dist/components/theme.js +66 -0
  286. package/dist/components/themeprovider.d.ts +19 -0
  287. package/dist/components/themeprovider.js +58 -0
  288. package/dist/components/toast.d.ts +31 -0
  289. package/dist/components/toast.js +107 -0
  290. package/dist/components/toc/default.d.ts +21 -0
  291. package/dist/components/toc/default.js +100 -0
  292. package/dist/components/toc/hook.d.ts +13 -0
  293. package/dist/components/toc/hook.js +125 -0
  294. package/dist/components/toc/index.d.ts +15 -0
  295. package/dist/components/toc/index.js +44 -0
  296. package/dist/components/toc/inline.d.ts +20 -0
  297. package/dist/components/toc/inline.js +75 -0
  298. package/dist/components/toc/minimal.d.ts +22 -0
  299. package/dist/components/toc/minimal.js +136 -0
  300. package/dist/components/toc/zigzag.d.ts +18 -0
  301. package/dist/components/toc/zigzag.js +57 -0
  302. package/dist/components/tocprogress.d.ts +17 -0
  303. package/dist/components/tocprogress.js +67 -0
  304. package/dist/components/tooltip.d.ts +19 -0
  305. package/dist/components/tooltip.js +76 -0
  306. package/dist/components/trigger.d.ts +8 -0
  307. package/dist/components/trigger.js +13 -0
  308. package/dist/components/twoslash.d.ts +9 -0
  309. package/dist/components/twoslash.js +52 -0
  310. package/dist/components/typetable.d.ts +21 -0
  311. package/dist/components/typetable.js +68 -0
  312. package/dist/components/typewriter.d.ts +20 -0
  313. package/dist/components/typewriter.js +50 -0
  314. package/dist/components/version.d.ts +29 -0
  315. package/dist/components/version.js +181 -0
  316. package/dist/components/video.d.ts +33 -0
  317. package/dist/components/video.js +147 -0
  318. package/dist/components/zoom.d.ts +9 -0
  319. package/dist/components/zoom.js +110 -0
  320. package/dist/config.d.ts +54 -0
  321. package/dist/config.js +102 -0
  322. package/dist/content.d.ts +83 -0
  323. package/dist/content.js +464 -0
  324. package/dist/contentcache.d.ts +28 -0
  325. package/dist/contentcache.js +76 -0
  326. package/dist/contentdiff.d.ts +19 -0
  327. package/dist/contentdiff.js +48 -0
  328. package/dist/contributors.d.ts +22 -0
  329. package/dist/contributors.js +64 -0
  330. package/dist/diff.d.ts +25 -0
  331. package/dist/diff.js +117 -0
  332. package/dist/draft.d.ts +33 -0
  333. package/dist/draft.js +62 -0
  334. package/dist/env.d.ts +12 -0
  335. package/dist/env.js +50 -0
  336. package/dist/export.d.ts +9 -0
  337. package/dist/export.js +32 -0
  338. package/dist/frontmatter.d.ts +19 -0
  339. package/dist/frontmatter.js +65 -0
  340. package/dist/github.d.ts +15 -0
  341. package/dist/github.js +254 -0
  342. package/dist/gitsource.d.ts +23 -0
  343. package/dist/gitsource.js +50 -0
  344. package/dist/hash.d.ts +21 -0
  345. package/dist/hash.js +65 -0
  346. package/dist/highlight.d.ts +18 -0
  347. package/dist/highlight.js +90 -0
  348. package/dist/hooks/anchor.d.ts +7 -0
  349. package/dist/hooks/anchor.js +44 -0
  350. package/dist/hooks/arrownav.d.ts +11 -0
  351. package/dist/hooks/arrownav.js +49 -0
  352. package/dist/hooks/async.d.ts +9 -0
  353. package/dist/hooks/async.js +28 -0
  354. package/dist/hooks/battery.d.ts +8 -0
  355. package/dist/hooks/battery.js +34 -0
  356. package/dist/hooks/breakpoint.d.ts +6 -0
  357. package/dist/hooks/breakpoint.js +34 -0
  358. package/dist/hooks/clickoutside.d.ts +11 -0
  359. package/dist/hooks/clickoutside.js +19 -0
  360. package/dist/hooks/clipboard-paste.d.ts +8 -0
  361. package/dist/hooks/clipboard-paste.js +18 -0
  362. package/dist/hooks/clipboard.d.ts +9 -0
  363. package/dist/hooks/clipboard.js +24 -0
  364. package/dist/hooks/colorscheme.d.ts +4 -0
  365. package/dist/hooks/colorscheme.js +18 -0
  366. package/dist/hooks/copy.d.ts +12 -0
  367. package/dist/hooks/copy.js +28 -0
  368. package/dist/hooks/countdown.d.ts +10 -0
  369. package/dist/hooks/countdown.js +41 -0
  370. package/dist/hooks/counter.d.ts +10 -0
  371. package/dist/hooks/counter.js +12 -0
  372. package/dist/hooks/debounce.d.ts +9 -0
  373. package/dist/hooks/debounce.js +16 -0
  374. package/dist/hooks/documenttitle.d.ts +3 -0
  375. package/dist/hooks/documenttitle.js +20 -0
  376. package/dist/hooks/documentvisibility.d.ts +4 -0
  377. package/dist/hooks/documentvisibility.js +19 -0
  378. package/dist/hooks/escapekey.d.ts +8 -0
  379. package/dist/hooks/escapekey.js +18 -0
  380. package/dist/hooks/eventlistener.d.ts +13 -0
  381. package/dist/hooks/eventlistener.js +15 -0
  382. package/dist/hooks/eventsource.d.ts +10 -0
  383. package/dist/hooks/eventsource.js +31 -0
  384. package/dist/hooks/eyedropper.d.ts +8 -0
  385. package/dist/hooks/eyedropper.js +23 -0
  386. package/dist/hooks/favicon.d.ts +3 -0
  387. package/dist/hooks/favicon.js +14 -0
  388. package/dist/hooks/fetch.d.ts +8 -0
  389. package/dist/hooks/fetch.js +29 -0
  390. package/dist/hooks/focustrap.d.ts +12 -0
  391. package/dist/hooks/focustrap.js +62 -0
  392. package/dist/hooks/focuswithin.d.ts +6 -0
  393. package/dist/hooks/focuswithin.js +24 -0
  394. package/dist/hooks/form.d.ts +20 -0
  395. package/dist/hooks/form.js +42 -0
  396. package/dist/hooks/fullscreen.d.ts +10 -0
  397. package/dist/hooks/fullscreen.js +34 -0
  398. package/dist/hooks/geolocation.d.ts +10 -0
  399. package/dist/hooks/geolocation.js +38 -0
  400. package/dist/hooks/hash.d.ts +3 -0
  401. package/dist/hooks/hash.js +21 -0
  402. package/dist/hooks/hotkeys.d.ts +11 -0
  403. package/dist/hooks/hotkeys.js +35 -0
  404. package/dist/hooks/hover.d.ts +3 -0
  405. package/dist/hooks/hover.js +22 -0
  406. package/dist/hooks/idle.d.ts +3 -0
  407. package/dist/hooks/idle.js +28 -0
  408. package/dist/hooks/infinitescroll.d.ts +9 -0
  409. package/dist/hooks/infinitescroll.js +31 -0
  410. package/dist/hooks/interval.d.ts +3 -0
  411. package/dist/hooks/interval.js +16 -0
  412. package/dist/hooks/inview.d.ts +10 -0
  413. package/dist/hooks/inview.js +28 -0
  414. package/dist/hooks/keyboard.d.ts +14 -0
  415. package/dist/hooks/keyboard.js +82 -0
  416. package/dist/hooks/keypress.d.ts +3 -0
  417. package/dist/hooks/keypress.js +23 -0
  418. package/dist/hooks/list.d.ts +14 -0
  419. package/dist/hooks/list.js +28 -0
  420. package/dist/hooks/longpress.d.ts +10 -0
  421. package/dist/hooks/longpress.js +24 -0
  422. package/dist/hooks/map.d.ts +12 -0
  423. package/dist/hooks/map.js +23 -0
  424. package/dist/hooks/measure.d.ts +16 -0
  425. package/dist/hooks/measure.js +34 -0
  426. package/dist/hooks/media.d.ts +33 -0
  427. package/dist/hooks/media.js +35 -0
  428. package/dist/hooks/mediarecorder.d.ts +11 -0
  429. package/dist/hooks/mediarecorder.js +37 -0
  430. package/dist/hooks/mounted.d.ts +3 -0
  431. package/dist/hooks/mounted.js +12 -0
  432. package/dist/hooks/mouseposition.d.ts +7 -0
  433. package/dist/hooks/mouseposition.js +16 -0
  434. package/dist/hooks/networkstate.d.ts +10 -0
  435. package/dist/hooks/networkstate.js +34 -0
  436. package/dist/hooks/online.d.ts +3 -0
  437. package/dist/hooks/online.js +20 -0
  438. package/dist/hooks/orientation.d.ts +8 -0
  439. package/dist/hooks/orientation.js +20 -0
  440. package/dist/hooks/os.d.ts +4 -0
  441. package/dist/hooks/os.js +15 -0
  442. package/dist/hooks/pageleave.d.ts +3 -0
  443. package/dist/hooks/pageleave.js +18 -0
  444. package/dist/hooks/pagination.d.ts +26 -0
  445. package/dist/hooks/pagination.js +49 -0
  446. package/dist/hooks/permission.d.ts +5 -0
  447. package/dist/hooks/permission.js +29 -0
  448. package/dist/hooks/preferredlanguage.d.ts +3 -0
  449. package/dist/hooks/preferredlanguage.js +17 -0
  450. package/dist/hooks/previous.d.ts +3 -0
  451. package/dist/hooks/previous.js +12 -0
  452. package/dist/hooks/queue.d.ts +11 -0
  453. package/dist/hooks/queue.js +23 -0
  454. package/dist/hooks/readprogress.d.ts +6 -0
  455. package/dist/hooks/readprogress.js +32 -0
  456. package/dist/hooks/resizeobserver.d.ts +10 -0
  457. package/dist/hooks/resizeobserver.js +25 -0
  458. package/dist/hooks/script.d.ts +4 -0
  459. package/dist/hooks/script.js +30 -0
  460. package/dist/hooks/scrolldirection.d.ts +4 -0
  461. package/dist/hooks/scrolldirection.js +33 -0
  462. package/dist/hooks/scrolllock.d.ts +3 -0
  463. package/dist/hooks/scrolllock.js +38 -0
  464. package/dist/hooks/scrollspy.d.ts +7 -0
  465. package/dist/hooks/scrollspy.js +28 -0
  466. package/dist/hooks/scrolltop.d.ts +7 -0
  467. package/dist/hooks/scrolltop.js +19 -0
  468. package/dist/hooks/selection.d.ts +12 -0
  469. package/dist/hooks/selection.js +32 -0
  470. package/dist/hooks/share.d.ts +13 -0
  471. package/dist/hooks/share.js +37 -0
  472. package/dist/hooks/speechrecognition.d.ts +10 -0
  473. package/dist/hooks/speechrecognition.js +34 -0
  474. package/dist/hooks/stepper.d.ts +13 -0
  475. package/dist/hooks/stepper.js +31 -0
  476. package/dist/hooks/storage.d.ts +5 -0
  477. package/dist/hooks/storage.js +57 -0
  478. package/dist/hooks/stylesheet.d.ts +4 -0
  479. package/dist/hooks/stylesheet.js +30 -0
  480. package/dist/hooks/textselection.d.ts +7 -0
  481. package/dist/hooks/textselection.js +24 -0
  482. package/dist/hooks/throttle.d.ts +3 -0
  483. package/dist/hooks/throttle.js +28 -0
  484. package/dist/hooks/toggle.d.ts +13 -0
  485. package/dist/hooks/toggle.js +10 -0
  486. package/dist/hooks/undoredo.d.ts +12 -0
  487. package/dist/hooks/undoredo.js +50 -0
  488. package/dist/hooks/vibrate.d.ts +7 -0
  489. package/dist/hooks/vibrate.js +15 -0
  490. package/dist/hooks/viewtransition.d.ts +9 -0
  491. package/dist/hooks/viewtransition.js +38 -0
  492. package/dist/hooks/wakelock.d.ts +9 -0
  493. package/dist/hooks/wakelock.js +32 -0
  494. package/dist/hooks/websocket.d.ts +10 -0
  495. package/dist/hooks/websocket.js +30 -0
  496. package/dist/hooks/windowsize.d.ts +7 -0
  497. package/dist/hooks/windowsize.js +17 -0
  498. package/dist/i18n.d.ts +30 -0
  499. package/dist/i18n.js +73 -0
  500. package/dist/index.d.ts +115 -0
  501. package/dist/index.js +107 -0
  502. package/dist/lastmodified.d.ts +4 -0
  503. package/dist/lastmodified.js +24 -0
  504. package/dist/linkcheck.d.ts +26 -0
  505. package/dist/linkcheck.js +113 -0
  506. package/dist/llms.d.ts +14 -0
  507. package/dist/llms.js +39 -0
  508. package/dist/manifest.d.ts +24 -0
  509. package/dist/manifest.js +31 -0
  510. package/dist/mcp.d.ts +56 -0
  511. package/dist/mcp.js +74 -0
  512. package/dist/mdtoc.d.ts +16 -0
  513. package/dist/mdtoc.js +59 -0
  514. package/dist/mdxscope.d.ts +17 -0
  515. package/dist/mdxscope.js +58 -0
  516. package/dist/meta.d.ts +19 -0
  517. package/dist/meta.js +71 -0
  518. package/dist/migrate.d.ts +17 -0
  519. package/dist/migrate.js +108 -0
  520. package/dist/navgen.d.ts +31 -0
  521. package/dist/navgen.js +147 -0
  522. package/dist/navtree.d.ts +28 -0
  523. package/dist/navtree.js +93 -0
  524. package/dist/next.d.ts +3 -0
  525. package/dist/next.js +3 -0
  526. package/dist/oembed.d.ts +20 -0
  527. package/dist/oembed.js +62 -0
  528. package/dist/ogimage.d.ts +45 -0
  529. package/dist/ogimage.js +62 -0
  530. package/dist/openapi.d.ts +6 -0
  531. package/dist/openapi.js +141 -0
  532. package/dist/openapiguard.d.ts +22 -0
  533. package/dist/openapiguard.js +87 -0
  534. package/dist/openapiutil.d.ts +72 -0
  535. package/dist/openapiutil.js +61 -0
  536. package/dist/orama.d.ts +16 -0
  537. package/dist/orama.js +100 -0
  538. package/dist/pipeline.d.ts +19 -0
  539. package/dist/pipeline.js +40 -0
  540. package/dist/preload.d.ts +15 -0
  541. package/dist/preload.js +19 -0
  542. package/dist/ranking.d.ts +28 -0
  543. package/dist/ranking.js +95 -0
  544. package/dist/reactrouter.d.ts +3 -0
  545. package/dist/reactrouter.js +3 -0
  546. package/dist/readtime.d.ts +3 -0
  547. package/dist/readtime.js +8 -0
  548. package/dist/redirects.d.ts +27 -0
  549. package/dist/redirects.js +74 -0
  550. package/dist/rehype.d.ts +5 -0
  551. package/dist/rehype.js +30 -0
  552. package/dist/rehypeautolink.d.ts +11 -0
  553. package/dist/rehypeautolink.js +43 -0
  554. package/dist/rehypecode.d.ts +6 -0
  555. package/dist/rehypecode.js +68 -0
  556. package/dist/rehypecopy.d.ts +6 -0
  557. package/dist/rehypecopy.js +29 -0
  558. package/dist/rehypeinline.d.ts +6 -0
  559. package/dist/rehypeinline.js +32 -0
  560. package/dist/rehypelinks.d.ts +10 -0
  561. package/dist/rehypelinks.js +49 -0
  562. package/dist/rehyperaw.d.ts +6 -0
  563. package/dist/rehyperaw.js +27 -0
  564. package/dist/rehypeslug.d.ts +7 -0
  565. package/dist/rehypeslug.js +39 -0
  566. package/dist/rehypetablewrap.d.ts +9 -0
  567. package/dist/rehypetablewrap.js +24 -0
  568. package/dist/rehypetoc.d.ts +16 -0
  569. package/dist/rehypetoc.js +61 -0
  570. package/dist/remark.d.ts +6 -0
  571. package/dist/remark.js +48 -0
  572. package/dist/remarkadmonition.d.ts +6 -0
  573. package/dist/remarkadmonition.js +78 -0
  574. package/dist/remarkannotation.d.ts +10 -0
  575. package/dist/remarkannotation.js +65 -0
  576. package/dist/remarkbadge.d.ts +6 -0
  577. package/dist/remarkbadge.js +40 -0
  578. package/dist/remarkblockmath.d.ts +6 -0
  579. package/dist/remarkblockmath.js +57 -0
  580. package/dist/remarkcallout.d.ts +6 -0
  581. package/dist/remarkcallout.js +65 -0
  582. package/dist/remarkcaption.d.ts +6 -0
  583. package/dist/remarkcaption.js +48 -0
  584. package/dist/remarkcodetitle.d.ts +6 -0
  585. package/dist/remarkcodetitle.js +39 -0
  586. package/dist/remarkcolumns.d.ts +6 -0
  587. package/dist/remarkcolumns.js +67 -0
  588. package/dist/remarkdetails.d.ts +6 -0
  589. package/dist/remarkdetails.js +61 -0
  590. package/dist/remarkdirective.d.ts +7 -0
  591. package/dist/remarkdirective.js +98 -0
  592. package/dist/remarkembed.d.ts +6 -0
  593. package/dist/remarkembed.js +72 -0
  594. package/dist/remarkfiletree.d.ts +6 -0
  595. package/dist/remarkfiletree.js +67 -0
  596. package/dist/remarkfootnote.d.ts +6 -0
  597. package/dist/remarkfootnote.js +63 -0
  598. package/dist/remarkgfm.d.ts +6 -0
  599. package/dist/remarkgfm.js +60 -0
  600. package/dist/remarkheadingid.d.ts +6 -0
  601. package/dist/remarkheadingid.js +40 -0
  602. package/dist/remarkimage.d.ts +11 -0
  603. package/dist/remarkimage.js +91 -0
  604. package/dist/remarkinclude.d.ts +10 -0
  605. package/dist/remarkinclude.js +49 -0
  606. package/dist/remarkinstall.d.ts +6 -0
  607. package/dist/remarkinstall.js +52 -0
  608. package/dist/remarklinkcard.d.ts +6 -0
  609. package/dist/remarklinkcard.js +38 -0
  610. package/dist/remarkmath.d.ts +6 -0
  611. package/dist/remarkmath.js +69 -0
  612. package/dist/remarkmermaid.d.ts +6 -0
  613. package/dist/remarkmermaid.js +21 -0
  614. package/dist/remarkmeta.d.ts +15 -0
  615. package/dist/remarkmeta.js +63 -0
  616. package/dist/remarkreadingtime.d.ts +11 -0
  617. package/dist/remarkreadingtime.js +44 -0
  618. package/dist/remarksteps.d.ts +6 -0
  619. package/dist/remarksteps.js +56 -0
  620. package/dist/remarkstructure.d.ts +18 -0
  621. package/dist/remarkstructure.js +53 -0
  622. package/dist/remarktabs.d.ts +6 -0
  623. package/dist/remarktabs.js +42 -0
  624. package/dist/remarktoc.d.ts +6 -0
  625. package/dist/remarktoc.js +47 -0
  626. package/dist/remarkts2js.d.ts +6 -0
  627. package/dist/remarkts2js.js +88 -0
  628. package/dist/remarktwoslash.d.ts +20 -0
  629. package/dist/remarktwoslash.js +86 -0
  630. package/dist/remarkvideo.d.ts +16 -0
  631. package/dist/remarkvideo.js +59 -0
  632. package/dist/remix.d.ts +3 -0
  633. package/dist/remix.js +3 -0
  634. package/dist/schema.d.ts +54 -0
  635. package/dist/schema.js +17 -0
  636. package/dist/search.d.ts +24 -0
  637. package/dist/search.js +155 -0
  638. package/dist/searchindex.d.ts +28 -0
  639. package/dist/searchindex.js +184 -0
  640. package/dist/searchpolicy.d.ts +5 -0
  641. package/dist/searchpolicy.js +9 -0
  642. package/dist/searchscore.d.ts +30 -0
  643. package/dist/searchscore.js +54 -0
  644. package/dist/searchtypo.d.ts +3 -0
  645. package/dist/searchtypo.js +47 -0
  646. package/dist/seo.d.ts +26 -0
  647. package/dist/seo.js +69 -0
  648. package/dist/shortcodes.d.ts +13 -0
  649. package/dist/shortcodes.js +61 -0
  650. package/dist/sitemap.d.ts +25 -0
  651. package/dist/sitemap.js +69 -0
  652. package/dist/snippets.d.ts +18 -0
  653. package/dist/snippets.js +89 -0
  654. package/dist/source.d.ts +23 -0
  655. package/dist/source.js +188 -0
  656. package/dist/stats.d.ts +25 -0
  657. package/dist/stats.js +81 -0
  658. package/dist/tanstack.d.ts +3 -0
  659. package/dist/tanstack.js +3 -0
  660. package/dist/testing.d.ts +35 -0
  661. package/dist/testing.js +134 -0
  662. package/dist/themeutil.d.ts +31 -0
  663. package/dist/themeutil.js +92 -0
  664. package/dist/typegen.d.ts +10 -0
  665. package/dist/typegen.js +74 -0
  666. package/dist/types.d.ts +267 -0
  667. package/dist/types.js +1 -0
  668. package/dist/validate.d.ts +13 -0
  669. package/dist/validate.js +78 -0
  670. package/dist/validator.d.ts +35 -0
  671. package/dist/validator.js +53 -0
  672. package/dist/versioning.d.ts +32 -0
  673. package/dist/versioning.js +62 -0
  674. package/dist/vite.d.ts +3 -0
  675. package/dist/vite.js +3 -0
  676. package/dist/watcher.d.ts +19 -0
  677. package/dist/watcher.js +82 -0
  678. package/dist/webhook.d.ts +25 -0
  679. package/dist/webhook.js +67 -0
  680. package/dist/workspace.d.ts +26 -0
  681. package/dist/workspace.js +81 -0
  682. package/package.json +138 -11
  683. package/styles/reset.css +3 -0
  684. package/index.js +0 -3
@@ -0,0 +1,13 @@
1
+ type ToggleResult = [
2
+ open: boolean,
3
+ toggle: () => void,
4
+ setOpen: React.Dispatch<React.SetStateAction<boolean>>
5
+ ];
6
+ /**
7
+ * Hook for managing toggle state
8
+ * @param defaultOpen - Initial open state (default: false)
9
+ * @returns Tuple of [open, toggle, setOpen]
10
+ */
11
+ declare function useToggle(defaultOpen?: boolean): ToggleResult;
12
+
13
+ export { type ToggleResult, useToggle };
@@ -0,0 +1,10 @@
1
+ "use client";
2
+ import { useState, useCallback } from 'react';
3
+
4
+ function useToggle(defaultOpen = false) {
5
+ const [open, setOpen] = useState(defaultOpen);
6
+ const toggle = useCallback(() => setOpen((prev) => !prev), []);
7
+ return [open, toggle, setOpen];
8
+ }
9
+
10
+ export { useToggle };
@@ -0,0 +1,12 @@
1
+ interface UndoRedoResult<T> {
2
+ state: T;
3
+ set: (value: T) => void;
4
+ undo: () => void;
5
+ redo: () => void;
6
+ canUndo: boolean;
7
+ canRedo: boolean;
8
+ reset: (value: T) => void;
9
+ }
10
+ declare function useUndoRedo<T>(initial: T): UndoRedoResult<T>;
11
+
12
+ export { type UndoRedoResult, useUndoRedo };
@@ -0,0 +1,50 @@
1
+ "use client";
2
+ import { useState, useRef, useCallback } from 'react';
3
+
4
+ function useUndoRedo(initial) {
5
+ const [state, setState] = useState(initial);
6
+ const pastRef = useRef([]);
7
+ const futureRef = useRef([]);
8
+ const set = useCallback(
9
+ (value) => {
10
+ pastRef.current = [...pastRef.current, state];
11
+ futureRef.current = [];
12
+ setState(value);
13
+ },
14
+ [state]
15
+ );
16
+ const undo = useCallback(() => {
17
+ const past = pastRef.current;
18
+ if (past.length === 0) return;
19
+ const prev = past[past.length - 1];
20
+ if (prev === void 0) return;
21
+ pastRef.current = past.slice(0, -1);
22
+ futureRef.current = [state, ...futureRef.current];
23
+ setState(prev);
24
+ }, [state]);
25
+ const redo = useCallback(() => {
26
+ const future = futureRef.current;
27
+ if (future.length === 0) return;
28
+ const next = future[0];
29
+ if (next === void 0) return;
30
+ futureRef.current = future.slice(1);
31
+ pastRef.current = [...pastRef.current, state];
32
+ setState(next);
33
+ }, [state]);
34
+ const reset = useCallback((value) => {
35
+ pastRef.current = [];
36
+ futureRef.current = [];
37
+ setState(value);
38
+ }, []);
39
+ return {
40
+ state,
41
+ set,
42
+ undo,
43
+ redo,
44
+ canUndo: pastRef.current.length > 0,
45
+ canRedo: futureRef.current.length > 0,
46
+ reset
47
+ };
48
+ }
49
+
50
+ export { useUndoRedo };
@@ -0,0 +1,7 @@
1
+ interface VibrateResult {
2
+ supported: boolean;
3
+ vibrate: (pattern?: number | number[]) => void;
4
+ }
5
+ declare function useVibrate(): VibrateResult;
6
+
7
+ export { type VibrateResult, useVibrate };
@@ -0,0 +1,15 @@
1
+ "use client";
2
+ import { useCallback } from 'react';
3
+
4
+ function useVibrate() {
5
+ const supported = typeof navigator !== "undefined" && "vibrate" in navigator;
6
+ const vibrate = useCallback(
7
+ (pattern = 200) => {
8
+ if (supported) navigator.vibrate(pattern);
9
+ },
10
+ [supported]
11
+ );
12
+ return { supported, vibrate };
13
+ }
14
+
15
+ export { useVibrate };
@@ -0,0 +1,9 @@
1
+ interface ViewTransitionResult {
2
+ startTransition: (callback: () => void) => void;
3
+ isTransitioning: boolean;
4
+ supported: boolean;
5
+ }
6
+ declare function useViewTransition(): ViewTransitionResult;
7
+ declare function usePageTransition(): void;
8
+
9
+ export { type ViewTransitionResult, usePageTransition, useViewTransition };
@@ -0,0 +1,38 @@
1
+ "use client";
2
+ import { useState, useCallback, useRef, useEffect } from 'react';
3
+ import { usePathname } from 'next/navigation';
4
+
5
+ function useViewTransition() {
6
+ const [isTransitioning, setIsTransitioning] = useState(false);
7
+ const supported = typeof document !== "undefined" && typeof document.startViewTransition === "function";
8
+ const startTransition = useCallback(
9
+ (callback) => {
10
+ if (!supported) {
11
+ callback();
12
+ return;
13
+ }
14
+ setIsTransitioning(true);
15
+ const transition = document.startViewTransition?.(callback);
16
+ if (!transition) {
17
+ setIsTransitioning(false);
18
+ return;
19
+ }
20
+ transition.finished.finally(() => setIsTransitioning(false));
21
+ },
22
+ [supported]
23
+ );
24
+ return { startTransition, isTransitioning, supported };
25
+ }
26
+ function usePageTransition() {
27
+ const pathname = usePathname();
28
+ const previous = useRef(pathname);
29
+ const supported = typeof document !== "undefined" && typeof document.startViewTransition === "function";
30
+ useEffect(() => {
31
+ if (!supported || pathname === previous.current) return;
32
+ previous.current = pathname;
33
+ document.startViewTransition?.(() => {
34
+ });
35
+ }, [pathname, supported]);
36
+ }
37
+
38
+ export { usePageTransition, useViewTransition };
@@ -0,0 +1,9 @@
1
+ interface WakeLockResult {
2
+ active: boolean;
3
+ supported: boolean;
4
+ request: () => Promise<void>;
5
+ release: () => Promise<void>;
6
+ }
7
+ declare function useWakeLock(): WakeLockResult;
8
+
9
+ export { type WakeLockResult, useWakeLock };
@@ -0,0 +1,32 @@
1
+ "use client";
2
+ import { useState, useRef, useCallback, useEffect } from 'react';
3
+
4
+ function useWakeLock() {
5
+ const [active, setActive] = useState(false);
6
+ const supported = typeof navigator !== "undefined" && "wakeLock" in navigator;
7
+ const sentinelRef = useRef(null);
8
+ const request = useCallback(async () => {
9
+ if (!supported) return;
10
+ try {
11
+ const lock = navigator.wakeLock;
12
+ if (!lock) return;
13
+ sentinelRef.current = await lock.request("screen");
14
+ sentinelRef.current.addEventListener("release", () => setActive(false));
15
+ setActive(true);
16
+ } catch {
17
+ }
18
+ }, [supported]);
19
+ const release = useCallback(async () => {
20
+ await sentinelRef.current?.release();
21
+ sentinelRef.current = null;
22
+ setActive(false);
23
+ }, []);
24
+ useEffect(() => {
25
+ return () => {
26
+ sentinelRef.current?.release();
27
+ };
28
+ }, []);
29
+ return { active, supported, request, release };
30
+ }
31
+
32
+ export { useWakeLock };
@@ -0,0 +1,10 @@
1
+ type WebSocketStatus = "connecting" | "open" | "closing" | "closed";
2
+ interface WebSocketResult {
3
+ status: WebSocketStatus;
4
+ lastMessage: string | null;
5
+ send: (data: string) => void;
6
+ close: () => void;
7
+ }
8
+ declare function useWebSocket(url: string | null): WebSocketResult;
9
+
10
+ export { type WebSocketResult, type WebSocketStatus, useWebSocket };
@@ -0,0 +1,30 @@
1
+ "use client";
2
+ import { useState, useRef, useCallback, useEffect } from 'react';
3
+
4
+ function useWebSocket(url) {
5
+ const [status, setStatus] = useState("closed");
6
+ const [lastMessage, setLastMessage] = useState(null);
7
+ const wsRef = useRef(null);
8
+ const send = useCallback((data) => {
9
+ wsRef.current?.send(data);
10
+ }, []);
11
+ const close = useCallback(() => {
12
+ wsRef.current?.close();
13
+ }, []);
14
+ useEffect(() => {
15
+ if (!url) return;
16
+ setStatus("connecting");
17
+ const ws = new WebSocket(url);
18
+ wsRef.current = ws;
19
+ ws.onopen = () => setStatus("open");
20
+ ws.onclose = () => setStatus("closed");
21
+ ws.onmessage = (e) => setLastMessage(e.data);
22
+ ws.onerror = () => setStatus("closed");
23
+ return () => {
24
+ ws.close();
25
+ };
26
+ }, [url]);
27
+ return { status, lastMessage, send, close };
28
+ }
29
+
30
+ export { useWebSocket };
@@ -0,0 +1,7 @@
1
+ interface WindowSize {
2
+ width: number;
3
+ height: number;
4
+ }
5
+ declare function useWindowSize(): WindowSize;
6
+
7
+ export { type WindowSize, useWindowSize };
@@ -0,0 +1,17 @@
1
+ "use client";
2
+ import { useState, useEffect } from 'react';
3
+
4
+ function useWindowSize() {
5
+ const [size, setSize] = useState({ width: 0, height: 0 });
6
+ useEffect(() => {
7
+ function update() {
8
+ setSize({ width: window.innerWidth, height: window.innerHeight });
9
+ }
10
+ update();
11
+ window.addEventListener("resize", update, { passive: true });
12
+ return () => window.removeEventListener("resize", update);
13
+ }, []);
14
+ return size;
15
+ }
16
+
17
+ export { useWindowSize };
package/dist/i18n.d.ts ADDED
@@ -0,0 +1,30 @@
1
+ interface I18nConfig {
2
+ defaultLocale: string;
3
+ locales: string[];
4
+ pathPrefix?: boolean;
5
+ }
6
+ interface LocalizedPath {
7
+ locale: string;
8
+ path: string;
9
+ originalPath: string;
10
+ }
11
+ interface I18nResult {
12
+ locale: string;
13
+ path: string;
14
+ alternates: {
15
+ locale: string;
16
+ path: string;
17
+ }[];
18
+ }
19
+ declare function detectLocale(acceptLanguage: string, locales: string[], fallback: string): string;
20
+ declare function localizePath(path: string, locale: string, config: I18nConfig): string;
21
+ declare function delocalizePath(path: string, config: I18nConfig): LocalizedPath;
22
+ declare function resolveContent(path: string, locale: string, config: I18nConfig): string[];
23
+ declare function generateAlternates(path: string, config: I18nConfig): I18nResult;
24
+ declare function createI18n(config: I18nConfig): {
25
+ resolve: (path: string, locale: string) => string[];
26
+ localize: (path: string, locale: string) => string;
27
+ delocalize: (path: string) => LocalizedPath;
28
+ };
29
+
30
+ export { type I18nConfig, type I18nResult, type LocalizedPath, createI18n, delocalizePath, detectLocale, generateAlternates, localizePath, resolveContent };
package/dist/i18n.js ADDED
@@ -0,0 +1,73 @@
1
+ function detectLocale(acceptLanguage, locales, fallback) {
2
+ if (!acceptLanguage) return fallback;
3
+ const set = new Set(locales);
4
+ const entries = acceptLanguage.split(",").map((part) => {
5
+ const [lang, ...params] = part.trim().split(";");
6
+ const qp = params.find((p) => p.trim().startsWith("q="));
7
+ const q = qp ? Number.parseFloat(qp.trim().slice(2)) : 1;
8
+ return { lang: (lang ?? "").trim().toLowerCase(), q: Number.isNaN(q) ? 0 : q };
9
+ }).sort((a, b) => b.q - a.q);
10
+ for (const { lang } of entries) {
11
+ if (set.has(lang)) return lang;
12
+ const base = lang.split("-")[0];
13
+ if (!base) continue;
14
+ if (set.has(base)) return base;
15
+ }
16
+ return fallback;
17
+ }
18
+ function localizePath(path, locale, config) {
19
+ const clean = path.startsWith("/") ? path : `/${path}`;
20
+ if (locale === config.defaultLocale && !config.pathPrefix) return clean;
21
+ return `/${locale}${clean === "/" ? "" : clean}`;
22
+ }
23
+ function delocalizePath(path, config) {
24
+ const clean = path.startsWith("/") ? path : `/${path}`;
25
+ const segments = clean.replace(/^\//, "").split("/");
26
+ const first = segments[0];
27
+ if (first && config.locales.includes(first)) {
28
+ const rest = segments.slice(1).join("/");
29
+ return {
30
+ locale: first,
31
+ path: `/${rest}` || "/",
32
+ originalPath: clean
33
+ };
34
+ }
35
+ return {
36
+ locale: config.defaultLocale,
37
+ path: clean,
38
+ originalPath: clean
39
+ };
40
+ }
41
+ function resolveContent(path, locale, config) {
42
+ const clean = path.startsWith("/") ? path.slice(1) : path;
43
+ const paths = [];
44
+ if (locale !== config.defaultLocale) {
45
+ paths.push(`${locale}/${clean}`);
46
+ }
47
+ paths.push(clean);
48
+ if (locale !== config.defaultLocale) {
49
+ paths.push(`${config.defaultLocale}/${clean}`);
50
+ }
51
+ return paths;
52
+ }
53
+ function generateAlternates(path, config) {
54
+ const { locale, path: stripped } = delocalizePath(path, config);
55
+ const alternates = config.locales.filter((l) => l !== locale).map((l) => ({
56
+ locale: l,
57
+ path: localizePath(stripped, l, config)
58
+ }));
59
+ return {
60
+ locale,
61
+ path: localizePath(stripped, locale, config),
62
+ alternates
63
+ };
64
+ }
65
+ function createI18n(config) {
66
+ return {
67
+ resolve: (path, locale) => resolveContent(path, locale, config),
68
+ localize: (path, locale) => localizePath(path, locale, config),
69
+ delocalize: (path) => delocalizePath(path, config)
70
+ };
71
+ }
72
+
73
+ export { createI18n, delocalizePath, detectLocale, generateAlternates, localizePath, resolveContent };
@@ -0,0 +1,115 @@
1
+ export { calcReadTime } from './readtime.js';
2
+ export { ReadTime } from './components/readtime.js';
3
+ export { ContentConfig, Doc, DocMeta, Heading, SearchDoc, clearContentCache, defineContent, extractHeadings, getAllDocs, getDoc, getNavigation, getSearchDocs } from './content.js';
4
+ export { FrontmatterError, FrontmatterResult, parseFrontmatter, validateAllFrontmatter } from './frontmatter.js';
5
+ export { MetaFile, PageTreeItem, clearMetaCache, loadMeta, sortByMeta } from './meta.js';
6
+ export { InferSchema, baseSchema, defineSchema, extendSchema } from './schema.js';
7
+ export { SearchAdapter, SearchResult, createSearchAdapter, localSearch } from './search.js';
8
+ export { lastModified, lastModifiedAll } from './lastmodified.js';
9
+ export { LlmsConfig, generateLlmsFull, generateLlmsIndex } from './llms.js';
10
+ export { ContentSource, RemoteSourceConfig, createRemoteSource } from './source.js';
11
+ export { GithubSourceConfig, createGithubSource } from './github.js';
12
+ export { McpConfig, createMcpHandler, generateMcpManifest } from './mcp.js';
13
+ export { default as rehypeAnchors } from './rehype.js';
14
+ export { rehypeInlineCode } from './rehypeinline.js';
15
+ export { RehypeLinksOptions, rehypeExternalLinks } from './rehypelinks.js';
16
+ export { default as remarkAlerts } from './remark.js';
17
+ export { remarkTs2Js } from './remarkts2js.js';
18
+ export { RemarkImageOptions, remarkImage } from './remarkimage.js';
19
+ export { LinkIssue, ValidateOptions, validateLinks } from './validate.js';
20
+ export { preloadConfig, preloadPage, preloadSearch } from './preload.js';
21
+ export { transformerCollapse } from './collapse.js';
22
+ export { transformerAnsi } from './ansi.js';
23
+ export { DocManifest, ManifestPage, generateManifest, generateManifestJson } from './manifest.js';
24
+ export { exportCsv, exportJson, exportMarkdown } from './export.js';
25
+ export { IndexConfig, SearchDocument, SearchIndex, addDocument, createIndex, deserializeIndex, removeDocument, search, serializeIndex, tokenize } from './searchindex.js';
26
+ export { TypeDefinition, TypeProperty, parseTypeFile, parseTypes } from './autotype.js';
27
+ export { parseOpenApi } from './openapi.js';
28
+ export { remarkInstall } from './remarkinstall.js';
29
+ export { IncludeOptions, remarkInclude } from './remarkinclude.js';
30
+ export { TocHeading, TocNode, buildTocTree, remarkStructure } from './remarkstructure.js';
31
+ export { I18nConfig, I18nResult, LocalizedPath, createI18n, delocalizePath, detectLocale, generateAlternates, localizePath, resolveContent } from './i18n.js';
32
+ export { remarkMath } from './remarkmath.js';
33
+ export { remarkSteps } from './remarksteps.js';
34
+ export { generateSlug, rehypeSlug } from './rehypeslug.js';
35
+ export { WatchEvent, WatchHandler, WatcherConfig, clearAllCaches, createWatcher } from './watcher.js';
36
+ export { SitemapConfig, SitemapEntry, docsToEntries, entriesToRss, generateSitemap, generateSitemapIndex } from './sitemap.js';
37
+ export { remarkGfm } from './remarkgfm.js';
38
+ export { DocVersion, VersionConfig, VersionedPage, compareVersions, createVersionSwitcher, getLatestVersion, isVersionedPath, parseVersion, resolveVersion, sortVersions } from './versioning.js';
39
+ export { Redirect, RedirectConfig, createRedirects, parseRedirectsFile } from './redirects.js';
40
+ export { rehypeCode } from './rehypecode.js';
41
+ export { ChangelogConfig, ChangelogEntry, ChangelogItem, filterByType, generateChangelogRss, hasBreaking, latestVersion, parseChangelog } from './changelog.js';
42
+ export { AnalyticsConfig, AnalyticsEvent, aggregateEvents, createAnalytics, generateScript } from './analytics.js';
43
+ export { PageSeo, SeoConfig, createSeo } from './seo.js';
44
+ export { defineCollection, defineCollections } from './collections.js';
45
+ export { RehypeTocOptions, TocEntry, rehypeToc } from './rehypetoc.js';
46
+ export { Pipeline, PipelineContext, Transform, composeTransforms, conditionalTransform, createPipeline, mapContent, mapFrontmatter } from './pipeline.js';
47
+ export { NavNode, NavTreeConfig, buildNavTree, findNavNode, flattenNavTree, getNavBreadcrumbs, getPrevNext } from './navtree.js';
48
+ export { Snippet, SnippetConfig, extractFileSnippet, extractSnippets, generateSnippetMap, getSnippet } from './snippets.js';
49
+ export { TypegenConfig, generateTypes, inferType, writeTypes } from './typegen.js';
50
+ export { LinkCheckConfig, LinkCheckReport, LinkCheckResult, checkInternalLinks, extractLinks, formatReport, isInternalLink, resolveLink } from './linkcheck.js';
51
+ export { OgImageConfig, OgImageMeta, defaultTemplate, generateOgMeta, ogImageUrl, socialMeta } from './ogimage.js';
52
+ export { WorkspaceConfig, WorkspaceNavItem, WorkspacePackage, WorkspaceResult, buildWorkspaceNav, discoverPackages, mergeNavigation, resolveWorkspacePath } from './workspace.js';
53
+ export { MigrateConfig, MigrateResult, MigrateSource, MigrateTransform, migrate, migrateDocusaurus, migrateMintlify, migrateNextra } from './migrate.js';
54
+ export { DraftConfig, DraftFilter, DraftInfo, createDraftMode, filterDrafts, isDraft, scheduledDraft } from './draft.js';
55
+ export { AuditConfig, AuditIssue, AuditResult, audit, formatAudit } from './audit.js';
56
+ export { TestCase, TestResult, TestSuite, assertFrontmatter, assertHeadings, assertLength, assertLinks, createTestSuite, formatTestSuite } from './testing.js';
57
+ export { DiffLine, DiffOptions, DiffResult, diffFrontmatter, diffLines, formatDiff, summarizeDiff } from './diff.js';
58
+ export { BatchConfig, BatchError, BatchResult, batch, batchFiles, forEachDoc, mapFiles } from './batch.js';
59
+ export { CodeLanguage, CodeSample, CodeSampleConfig, generateSample, generateSamples } from './codesample.js';
60
+ export { DocsStats, PageStats, analyzeDocs, analyzePage, compareStats, formatStats } from './stats.js';
61
+ export { Changes, ContentHash, HashManifest, detectChanges, generateHashManifest, hashContent, hashFile, hashFrontmatter } from './hash.js';
62
+ export { ShortcodeConfig, ShortcodeDefinition, builtinShortcodes, parseAttrs, processShortcodes, registerShortcode } from './shortcodes.js';
63
+ export { remarkTabs } from './remarktabs.js';
64
+ export { remarkCallout } from './remarkcallout.js';
65
+ export { ApiError, ApiResponse, CorsConfig, cache, cors, error, json, rateLimiter, withCors } from './api.js';
66
+ export { ThemeColors, ThemeConfig, ThemePreset, contrastRatio, cssVariables, generateCss, mergeTheme, presets } from './themeutil.js';
67
+ export { FromsrcConfig, ResolvedConfig, defineConfig, loadConfig, mergeConfig, resolveConfig } from './config.js';
68
+ export { CliCommand, CliConfig, createCli, formatHelp, parseArgs, spinner } from './cli.js';
69
+ export { OembedData, OembedProvider, extractUrls, providers, resolve, resolveMany } from './oembed.js';
70
+ export { HighlightResult, SnippetOptions, fuzzyHighlight, generateSnippet, highlightHtml, highlightMatches, tokenize as highlightTokenize } from './highlight.js';
71
+ export { TocItem, TocOptions, extractToc, generateTocMarkdown, injectToc, removeToc } from './mdtoc.js';
72
+ export { RankOptions, RankResult, RankableItem, bm25, boostRecent, rank } from './ranking.js';
73
+ export { AccessConfig, AccessResult, AccessRule, createAccess, matchPattern, mergeRoles } from './access.js';
74
+ export { WebhookConfig, WebhookEvent, WebhookResult, createEventFromChange, createWebhook, filterEvents, verifySignature } from './webhook.js';
75
+ export { ChangelogData, ChangelogEntry as ChangelogUtilEntry, formatChangelog, getLatestVersion as getLatestChangelog, getVersionsBetween, groupByType, parseChangelog as parseChangelogFile } from './changelogutil.js';
76
+ export { CacheConfig, CacheEntry, CacheStats, createCache } from './contentcache.js';
77
+ export { GitFile, GitSourceConfig, createGitSource, getFileHash, gitExec, getLastModified as gitLastModified, listFiles as gitListFiles, readFile as gitReadFile } from './gitsource.js';
78
+ export { remarkAdmonition } from './remarkadmonition.js';
79
+ export { NavConfig, NavItem, NavTree, breadcrumbFromPath, findNavItem, flattenNav, generateNav, navToSidebar, sortNav } from './navgen.js';
80
+ export { AutolinkOptions, rehypeAutolink } from './rehypeautolink.js';
81
+ export { CodeMeta, parseMeta, remarkMeta } from './remarkmeta.js';
82
+ export { remarkCaption } from './remarkcaption.js';
83
+ export { MdxComponent, MdxScope, MdxScopeConfig, createScope, filterScope, listComponents, mergeScopes, scopeFromImports, withDefaults } from './mdxscope.js';
84
+ export { remarkEmbed } from './remarkembed.js';
85
+ export { ValidationIssue, ValidationResult, ValidationRule, ValidatorConfig, builtinRules, createRule, validate, validateAll } from './validator.js';
86
+ export { Contributor, ContributorConfig, formatContributors, getContributors, getEditHistory, getLastAuthor } from './contributors.js';
87
+ export { remarkHeadingId } from './remarkheadingid.js';
88
+ export { ReadingTimeOptions, countWords, remarkReadingTime } from './remarkreadingtime.js';
89
+ export { Environment, FeatureFlags, getBaseUrl, getEnv, getFeatureFlags, isDev, isPreview, isProd, optionalEnv, requireEnv } from './env.js';
90
+ export { TableWrapOptions, rehypeTableWrap } from './rehypetablewrap.js';
91
+ export { rehypeCopy } from './rehypecopy.js';
92
+ export { TwoslashAnnotation, TwoslashResult, parseannotations, remarkTwoslash, serialize as serializeTwoslash } from './remarktwoslash.js';
93
+ export { DirectiveType, remarkDirective } from './remarkdirective.js';
94
+ export { remarkFileTree } from './remarkfiletree.js';
95
+ export { rehypeRaw } from './rehyperaw.js';
96
+ export { Annotation, remarkAnnotation } from './remarkannotation.js';
97
+ export { RemarkVideoOptions, remarkVideo } from './remarkvideo.js';
98
+ export { remarkMermaid } from './remarkmermaid.js';
99
+ export { remarkBlockMath } from './remarkblockmath.js';
100
+ export { remarkCodeTitle } from './remarkcodetitle.js';
101
+ export { ContentChange, ContentDiff, contentFromDocs, diffContent, formatChangelog as formatContentDiff } from './contentdiff.js';
102
+ export { remarkLinkCard } from './remarklinkcard.js';
103
+ export { remarkDetails } from './remarkdetails.js';
104
+ export { remarkToc } from './remarktoc.js';
105
+ export { remarkFootnote } from './remarkfootnote.js';
106
+ export { remarkBadge } from './remarkbadge.js';
107
+ export { remarkColumns } from './remarkcolumns.js';
108
+ export { OpenApiEndpoint, OpenApiParameter, OpenApiRequestBody, OpenApiResponse, OpenApiSchema, OpenApiSpec, OpenApiTag, generateEndpointSlug } from './openapiutil.js';
109
+ export { z } from 'zod';
110
+ import 'react';
111
+ import './searchscore.js';
112
+ import 'hast';
113
+ import 'unified';
114
+ import 'mdast';
115
+ import '@shikijs/types';
package/dist/index.js ADDED
@@ -0,0 +1,107 @@
1
+ export { calcReadTime } from './readtime';
2
+ export { ReadTime } from './components/readtime';
3
+ export { clearContentCache, defineContent, extractHeadings, getAllDocs, getDoc, getNavigation, getSearchDocs } from './content';
4
+ export { parseFrontmatter, validateAllFrontmatter } from './frontmatter';
5
+ export { clearMetaCache, loadMeta, sortByMeta } from './meta';
6
+ export { baseSchema, defineSchema, extendSchema, z } from './schema';
7
+ export { createSearchAdapter, localSearch } from './search';
8
+ export { lastModified, lastModifiedAll } from './lastmodified';
9
+ export { generateLlmsFull, generateLlmsIndex } from './llms';
10
+ export { createRemoteSource } from './source';
11
+ export { createGithubSource } from './github';
12
+ export { createMcpHandler, generateMcpManifest } from './mcp';
13
+ export { rehypeAnchors } from './rehype';
14
+ export { rehypeInlineCode } from './rehypeinline';
15
+ export { rehypeExternalLinks } from './rehypelinks';
16
+ export { remarkAlerts } from './remark';
17
+ export { remarkTs2Js } from './remarkts2js';
18
+ export { remarkImage } from './remarkimage';
19
+ export { validateLinks } from './validate';
20
+ export { preloadConfig, preloadPage, preloadSearch } from './preload';
21
+ export { transformerCollapse } from './collapse';
22
+ export { transformerAnsi } from './ansi';
23
+ export { generateManifest, generateManifestJson } from './manifest';
24
+ export { exportCsv, exportJson, exportMarkdown } from './export';
25
+ export { addDocument, createIndex, deserializeIndex, removeDocument, search, serializeIndex, tokenize } from './searchindex';
26
+ export { parseTypeFile, parseTypes } from './autotype';
27
+ export { generateEndpointSlug, parseOpenApi } from './openapi';
28
+ export { remarkInstall } from './remarkinstall';
29
+ export { remarkInclude } from './remarkinclude';
30
+ export { buildTocTree, remarkStructure } from './remarkstructure';
31
+ export { createI18n, delocalizePath, detectLocale, generateAlternates, localizePath, resolveContent } from './i18n';
32
+ export { remarkMath } from './remarkmath';
33
+ export { remarkSteps } from './remarksteps';
34
+ export { generateSlug, rehypeSlug } from './rehypeslug';
35
+ export { clearAllCaches, createWatcher } from './watcher';
36
+ export { docsToEntries, entriesToRss, generateSitemap, generateSitemapIndex } from './sitemap';
37
+ export { remarkGfm } from './remarkgfm';
38
+ export { compareVersions, createVersionSwitcher, getLatestVersion, isVersionedPath, parseVersion, resolveVersion, sortVersions } from './versioning';
39
+ export { createRedirects, parseRedirectsFile } from './redirects';
40
+ export { rehypeCode } from './rehypecode';
41
+ export { filterByType, generateChangelogRss, hasBreaking, latestVersion, parseChangelog } from './changelog';
42
+ export { aggregateEvents, createAnalytics, generateScript } from './analytics';
43
+ export { createSeo } from './seo';
44
+ export { defineCollection, defineCollections } from './collections';
45
+ export { rehypeToc } from './rehypetoc';
46
+ export { composeTransforms, conditionalTransform, createPipeline, mapContent, mapFrontmatter } from './pipeline';
47
+ export { buildNavTree, findNavNode, flattenNavTree, getNavBreadcrumbs, getPrevNext } from './navtree';
48
+ export { extractFileSnippet, extractSnippets, generateSnippetMap, getSnippet } from './snippets';
49
+ export { generateTypes, inferType, writeTypes } from './typegen';
50
+ export { checkInternalLinks, extractLinks, formatReport, isInternalLink, resolveLink } from './linkcheck';
51
+ export { defaultTemplate, generateOgMeta, ogImageUrl, socialMeta } from './ogimage';
52
+ export { buildWorkspaceNav, discoverPackages, mergeNavigation, resolveWorkspacePath } from './workspace';
53
+ export { migrate, migrateDocusaurus, migrateMintlify, migrateNextra } from './migrate';
54
+ export { createDraftMode, filterDrafts, isDraft, scheduledDraft } from './draft';
55
+ export { audit, formatAudit } from './audit';
56
+ export { assertFrontmatter, assertHeadings, assertLength, assertLinks, createTestSuite, formatTestSuite } from './testing';
57
+ export { diffFrontmatter, diffLines, formatDiff, summarizeDiff } from './diff';
58
+ export { batch, batchFiles, forEachDoc, mapFiles } from './batch';
59
+ export { generateSample, generateSamples } from './codesample';
60
+ export { analyzeDocs, analyzePage, compareStats, formatStats } from './stats';
61
+ export { detectChanges, generateHashManifest, hashContent, hashFile, hashFrontmatter } from './hash';
62
+ export { builtinShortcodes, parseAttrs, processShortcodes, registerShortcode } from './shortcodes';
63
+ export { remarkTabs } from './remarktabs';
64
+ export { remarkCallout } from './remarkcallout';
65
+ export { cache, cors, error, json, rateLimiter, withCors } from './api';
66
+ export { contrastRatio, cssVariables, generateCss, mergeTheme, presets } from './themeutil';
67
+ export { defineConfig, loadConfig, mergeConfig, resolveConfig } from './config';
68
+ export { createCli, formatHelp, parseArgs, spinner } from './cli';
69
+ export { extractUrls, providers, resolve, resolveMany } from './oembed';
70
+ export { fuzzyHighlight, generateSnippet, highlightHtml, highlightMatches, tokenize as highlightTokenize } from './highlight';
71
+ export { extractToc, generateTocMarkdown, injectToc, removeToc } from './mdtoc';
72
+ export { bm25, boostRecent, rank } from './ranking';
73
+ export { createAccess, matchPattern, mergeRoles } from './access';
74
+ export { createEventFromChange, createWebhook, filterEvents, verifySignature } from './webhook';
75
+ export { formatChangelog, getLatestVersion as getLatestChangelog, getVersionsBetween, groupByType, parseChangelog as parseChangelogFile } from './changelogutil';
76
+ export { createCache } from './contentcache';
77
+ export { createGitSource, getFileHash, gitExec, getLastModified as gitLastModified, listFiles as gitListFiles, readFile as gitReadFile } from './gitsource';
78
+ export { remarkAdmonition } from './remarkadmonition';
79
+ export { breadcrumbFromPath, findNavItem, flattenNav, generateNav, navToSidebar, sortNav } from './navgen';
80
+ export { rehypeAutolink } from './rehypeautolink';
81
+ export { parseMeta, remarkMeta } from './remarkmeta';
82
+ export { remarkCaption } from './remarkcaption';
83
+ export { createScope, filterScope, listComponents, mergeScopes, scopeFromImports, withDefaults } from './mdxscope';
84
+ export { remarkEmbed } from './remarkembed';
85
+ export { builtinRules, createRule, validate, validateAll } from './validator';
86
+ export { formatContributors, getContributors, getEditHistory, getLastAuthor } from './contributors';
87
+ export { remarkHeadingId } from './remarkheadingid';
88
+ export { countWords, remarkReadingTime } from './remarkreadingtime';
89
+ export { getBaseUrl, getEnv, getFeatureFlags, isDev, isPreview, isProd, optionalEnv, requireEnv } from './env';
90
+ export { rehypeTableWrap } from './rehypetablewrap';
91
+ export { rehypeCopy } from './rehypecopy';
92
+ export { parseannotations, remarkTwoslash, serialize as serializeTwoslash } from './remarktwoslash';
93
+ export { remarkDirective } from './remarkdirective';
94
+ export { remarkFileTree } from './remarkfiletree';
95
+ export { rehypeRaw } from './rehyperaw';
96
+ export { remarkAnnotation } from './remarkannotation';
97
+ export { remarkVideo } from './remarkvideo';
98
+ export { remarkMermaid } from './remarkmermaid';
99
+ export { remarkBlockMath } from './remarkblockmath';
100
+ export { remarkCodeTitle } from './remarkcodetitle';
101
+ export { contentFromDocs, diffContent, formatChangelog as formatContentDiff } from './contentdiff';
102
+ export { remarkLinkCard } from './remarklinkcard';
103
+ export { remarkDetails } from './remarkdetails';
104
+ export { remarkToc } from './remarktoc';
105
+ export { remarkFootnote } from './remarkfootnote';
106
+ export { remarkBadge } from './remarkbadge';
107
+ export { remarkColumns } from './remarkcolumns';
@@ -0,0 +1,4 @@
1
+ declare function lastModified(filepath: string): Date | null;
2
+ declare function lastModifiedAll(filepaths: string[]): Map<string, Date | null>;
3
+
4
+ export { lastModified, lastModifiedAll };
@@ -0,0 +1,24 @@
1
+ import { execFileSync } from 'node:child_process';
2
+
3
+ function lastModified(filepath) {
4
+ try {
5
+ const result = execFileSync("git", ["log", "-1", "--format=%cI", filepath], {
6
+ encoding: "utf-8",
7
+ stdio: ["pipe", "pipe", "pipe"]
8
+ }).trim();
9
+ if (!result) return null;
10
+ const value = new Date(result);
11
+ return Number.isNaN(value.getTime()) ? null : value;
12
+ } catch {
13
+ return null;
14
+ }
15
+ }
16
+ function lastModifiedAll(filepaths) {
17
+ const results = /* @__PURE__ */ new Map();
18
+ for (const filepath of filepaths) {
19
+ results.set(filepath, lastModified(filepath));
20
+ }
21
+ return results;
22
+ }
23
+
24
+ export { lastModified, lastModifiedAll };