@depup/nextra 4.6.1-depup.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 (293) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +56 -0
  3. package/changes.json +110 -0
  4. package/dist/client/components/banner/close-banner-button.d.ts +8 -0
  5. package/dist/client/components/banner/close-banner-button.js +45 -0
  6. package/dist/client/components/banner/index.client.d.ts +5 -0
  7. package/dist/client/components/banner/index.client.js +46 -0
  8. package/dist/client/components/banner/index.d.ts +51 -0
  9. package/dist/client/components/banner/index.js +93 -0
  10. package/dist/client/components/bleed.d.ts +63 -0
  11. package/dist/client/components/bleed.js +54 -0
  12. package/dist/client/components/button.d.ts +9 -0
  13. package/dist/client/components/button.js +55 -0
  14. package/dist/client/components/callout.d.ts +136 -0
  15. package/dist/client/components/callout.js +99 -0
  16. package/dist/client/components/cards.d.ts +104 -0
  17. package/dist/client/components/cards.js +132 -0
  18. package/dist/client/components/collapse.d.ts +12 -0
  19. package/dist/client/components/collapse.js +143 -0
  20. package/dist/client/components/file-tree/file.d.ts +9 -0
  21. package/dist/client/components/file-tree/file.js +43 -0
  22. package/dist/client/components/file-tree/folder.d.ts +12 -0
  23. package/dist/client/components/file-tree/folder.js +94 -0
  24. package/dist/client/components/file-tree/index.d.ts +57 -0
  25. package/dist/client/components/file-tree/index.js +12 -0
  26. package/dist/client/components/file-tree/tree.d.ts +5 -0
  27. package/dist/client/components/file-tree/tree.js +41 -0
  28. package/dist/client/components/head.d.ts +139 -0
  29. package/dist/client/components/head.js +202 -0
  30. package/dist/client/components/image-zoom.d.ts +6 -0
  31. package/dist/client/components/image-zoom.js +79 -0
  32. package/dist/client/components/index.d.ts +56 -0
  33. package/dist/client/components/index.js +42 -0
  34. package/dist/client/components/playground.d.ts +90 -0
  35. package/dist/client/components/playground.js +103 -0
  36. package/dist/client/components/popup/index.client.d.ts +7 -0
  37. package/dist/client/components/popup/index.client.js +83 -0
  38. package/dist/client/components/popup/index.d.ts +12 -0
  39. package/dist/client/components/popup/index.js +11 -0
  40. package/dist/client/components/search.d.ts +88 -0
  41. package/dist/client/components/search.js +426 -0
  42. package/dist/client/components/select.d.ts +19 -0
  43. package/dist/client/components/select.js +109 -0
  44. package/dist/client/components/skip-nav/index.client.d.ts +5 -0
  45. package/dist/client/components/skip-nav/index.client.js +45 -0
  46. package/dist/client/components/skip-nav/index.d.ts +6 -0
  47. package/dist/client/components/skip-nav/index.js +24 -0
  48. package/dist/client/components/steps.d.ts +64 -0
  49. package/dist/client/components/steps.js +74 -0
  50. package/dist/client/components/tabs/index.client.d.ts +21 -0
  51. package/dist/client/components/tabs/index.client.js +243 -0
  52. package/dist/client/components/tabs/index.d.ts +53 -0
  53. package/dist/client/components/tabs/index.js +9 -0
  54. package/dist/client/evaluate.d.ts +30 -0
  55. package/dist/client/evaluate.js +17 -0
  56. package/dist/client/hocs/index.d.ts +4 -0
  57. package/dist/client/hocs/index.js +6 -0
  58. package/dist/client/hocs/with-github-alert.d.ts +11 -0
  59. package/dist/client/hocs/with-github-alert.js +30 -0
  60. package/dist/client/hocs/with-icons.d.ts +6 -0
  61. package/dist/client/hocs/with-icons.js +76 -0
  62. package/dist/client/hooks/index.d.ts +4 -0
  63. package/dist/client/hooks/index.js +10 -0
  64. package/dist/client/hooks/use-copy.d.ts +9 -0
  65. package/dist/client/hooks/use-copy.js +77 -0
  66. package/dist/client/hooks/use-fs-route.d.ts +3 -0
  67. package/dist/client/hooks/use-fs-route.js +20 -0
  68. package/dist/client/hooks/use-hash.d.ts +3 -0
  69. package/dist/client/hooks/use-hash.js +20 -0
  70. package/dist/client/hooks/use-mounted.d.ts +3 -0
  71. package/dist/client/hooks/use-mounted.js +13 -0
  72. package/dist/client/icons/arrow-right.d.ts +5 -0
  73. package/dist/client/icons/arrow-right.js +24 -0
  74. package/dist/client/icons/chatgpt.d.ts +2 -0
  75. package/dist/client/icons/chatgpt.js +24 -0
  76. package/dist/client/icons/check.d.ts +2 -0
  77. package/dist/client/icons/check.js +24 -0
  78. package/dist/client/icons/claude.d.ts +2 -0
  79. package/dist/client/icons/claude.js +81 -0
  80. package/dist/client/icons/copy.d.ts +2 -0
  81. package/dist/client/icons/copy.js +31 -0
  82. package/dist/client/icons/cpp.d.ts +2 -0
  83. package/dist/client/icons/cpp.js +24 -0
  84. package/dist/client/icons/cross-circled.d.ts +2 -0
  85. package/dist/client/icons/cross-circled.js +24 -0
  86. package/dist/client/icons/csharp.d.ts +2 -0
  87. package/dist/client/icons/csharp.js +24 -0
  88. package/dist/client/icons/css.d.ts +2 -0
  89. package/dist/client/icons/css.js +24 -0
  90. package/dist/client/icons/discord.d.ts +2 -0
  91. package/dist/client/icons/discord.js +24 -0
  92. package/dist/client/icons/expand.d.ts +2 -0
  93. package/dist/client/icons/expand.js +31 -0
  94. package/dist/client/icons/file.d.ts +2 -0
  95. package/dist/client/icons/file.js +24 -0
  96. package/dist/client/icons/folder-open.d.ts +2 -0
  97. package/dist/client/icons/folder-open.js +24 -0
  98. package/dist/client/icons/folder.d.ts +2 -0
  99. package/dist/client/icons/folder.js +24 -0
  100. package/dist/client/icons/github-caution.d.ts +2 -0
  101. package/dist/client/icons/github-caution.js +24 -0
  102. package/dist/client/icons/github-important.d.ts +2 -0
  103. package/dist/client/icons/github-important.js +24 -0
  104. package/dist/client/icons/github-note.d.ts +2 -0
  105. package/dist/client/icons/github-note.js +24 -0
  106. package/dist/client/icons/github-tip.d.ts +2 -0
  107. package/dist/client/icons/github-tip.js +24 -0
  108. package/dist/client/icons/github-warning.d.ts +2 -0
  109. package/dist/client/icons/github-warning.js +24 -0
  110. package/dist/client/icons/github.d.ts +2 -0
  111. package/dist/client/icons/github.js +24 -0
  112. package/dist/client/icons/globe.d.ts +2 -0
  113. package/dist/client/icons/globe.js +24 -0
  114. package/dist/client/icons/go.d.ts +2 -0
  115. package/dist/client/icons/go.js +46 -0
  116. package/dist/client/icons/graphql.d.ts +2 -0
  117. package/dist/client/icons/graphql.js +56 -0
  118. package/dist/client/icons/index.d.ts +2 -0
  119. package/dist/client/icons/index.js +92 -0
  120. package/dist/client/icons/javascript.d.ts +2 -0
  121. package/dist/client/icons/javascript.js +24 -0
  122. package/dist/client/icons/json.d.ts +2 -0
  123. package/dist/client/icons/json.js +41 -0
  124. package/dist/client/icons/link-arrow.d.ts +2 -0
  125. package/dist/client/icons/link-arrow.js +31 -0
  126. package/dist/client/icons/link.d.ts +2 -0
  127. package/dist/client/icons/link.js +24 -0
  128. package/dist/client/icons/markdown.d.ts +2 -0
  129. package/dist/client/icons/markdown.js +24 -0
  130. package/dist/client/icons/mdx.d.ts +2 -0
  131. package/dist/client/icons/mdx.js +24 -0
  132. package/dist/client/icons/menu.d.ts +2 -0
  133. package/dist/client/icons/menu.js +36 -0
  134. package/dist/client/icons/moon.d.ts +2 -0
  135. package/dist/client/icons/moon.js +24 -0
  136. package/dist/client/icons/move.d.ts +2 -0
  137. package/dist/client/icons/move.js +24 -0
  138. package/dist/client/icons/python.d.ts +2 -0
  139. package/dist/client/icons/python.js +31 -0
  140. package/dist/client/icons/react.d.ts +2 -0
  141. package/dist/client/icons/react.js +38 -0
  142. package/dist/client/icons/rust.d.ts +2 -0
  143. package/dist/client/icons/rust.js +31 -0
  144. package/dist/client/icons/spinner.d.ts +2 -0
  145. package/dist/client/icons/spinner.js +31 -0
  146. package/dist/client/icons/sun.d.ts +2 -0
  147. package/dist/client/icons/sun.js +24 -0
  148. package/dist/client/icons/svelte.d.ts +2 -0
  149. package/dist/client/icons/svelte.js +31 -0
  150. package/dist/client/icons/terminal.d.ts +2 -0
  151. package/dist/client/icons/terminal.js +24 -0
  152. package/dist/client/icons/terraform.d.ts +2 -0
  153. package/dist/client/icons/terraform.js +24 -0
  154. package/dist/client/icons/typescript.d.ts +2 -0
  155. package/dist/client/icons/typescript.js +24 -0
  156. package/dist/client/icons/word-wrap.d.ts +2 -0
  157. package/dist/client/icons/word-wrap.js +24 -0
  158. package/dist/client/icons/x.d.ts +2 -0
  159. package/dist/client/icons/x.js +24 -0
  160. package/dist/client/mdx-components/anchor.d.ts +10 -0
  161. package/dist/client/mdx-components/anchor.js +109 -0
  162. package/dist/client/mdx-components/code.d.ts +7 -0
  163. package/dist/client/mdx-components/code.js +52 -0
  164. package/dist/client/mdx-components/details.d.ts +5 -0
  165. package/dist/client/mdx-components/details.js +166 -0
  166. package/dist/client/mdx-components/image.d.ts +28 -0
  167. package/dist/client/mdx-components/image.js +39 -0
  168. package/dist/client/mdx-components/index.d.ts +11 -0
  169. package/dist/client/mdx-components/index.js +16 -0
  170. package/dist/client/mdx-components/pre/copy-to-clipboard.d.ts +5 -0
  171. package/dist/client/mdx-components/pre/copy-to-clipboard.js +49 -0
  172. package/dist/client/mdx-components/pre/index.d.ts +16 -0
  173. package/dist/client/mdx-components/pre/index.js +156 -0
  174. package/dist/client/mdx-components/pre/toggle-word-wrap-button.d.ts +7 -0
  175. package/dist/client/mdx-components/pre/toggle-word-wrap-button.js +31 -0
  176. package/dist/client/mdx-components/summary.d.ts +5 -0
  177. package/dist/client/mdx-components/summary.js +80 -0
  178. package/dist/client/mdx-components/table.d.ts +57 -0
  179. package/dist/client/mdx-components/table.js +95 -0
  180. package/dist/client/mdx-components.d.ts +89 -0
  181. package/dist/client/mdx-components.js +15 -0
  182. package/dist/client/mdx-remote.d.ts +62 -0
  183. package/dist/client/mdx-remote.js +36 -0
  184. package/dist/client/normalize-pages.d.ts +84 -0
  185. package/dist/client/normalize-pages.js +232 -0
  186. package/dist/client/package.json +1 -0
  187. package/dist/client/pages.d.ts +131 -0
  188. package/dist/client/pages.js +39 -0
  189. package/dist/client/remove-links.d.ts +6 -0
  190. package/dist/client/remove-links.js +35 -0
  191. package/dist/client/setup-page.d.ts +18 -0
  192. package/dist/client/setup-page.js +14 -0
  193. package/dist/server/compile-metadata.d.ts +12 -0
  194. package/dist/server/compile-metadata.js +39 -0
  195. package/dist/server/compile.d.ts +39 -0
  196. package/dist/server/compile.js +158 -0
  197. package/dist/server/constants.d.ts +15 -0
  198. package/dist/server/constants.js +22 -0
  199. package/dist/server/fetch-filepaths-from-github.d.ts +10 -0
  200. package/dist/server/fetch-filepaths-from-github.js +36 -0
  201. package/dist/server/index.d.ts +39 -0
  202. package/dist/server/index.js +203 -0
  203. package/dist/server/loader.d.ts +18 -0
  204. package/dist/server/loader.js +155 -0
  205. package/dist/server/locales.d.ts +22 -0
  206. package/dist/server/locales.js +38 -0
  207. package/dist/server/page-map/find-meta-and-page-file-paths.d.ts +8 -0
  208. package/dist/server/page-map/find-meta-and-page-file-paths.js +32 -0
  209. package/dist/server/page-map/get.d.ts +50 -0
  210. package/dist/server/page-map/get.js +28 -0
  211. package/dist/server/page-map/index-page.d.ts +21 -0
  212. package/dist/server/page-map/index-page.js +57 -0
  213. package/dist/server/page-map/index.d.ts +26 -0
  214. package/dist/server/page-map/index.js +24 -0
  215. package/dist/server/page-map/merge-meta-with-page-map.d.ts +17 -0
  216. package/dist/server/page-map/merge-meta-with-page-map.js +74 -0
  217. package/dist/server/page-map/normalize.d.ts +17 -0
  218. package/dist/server/page-map/normalize.js +122 -0
  219. package/dist/server/page-map/placeholder.d.ts +2 -0
  220. package/dist/server/page-map/placeholder.js +0 -0
  221. package/dist/server/page-map/to-ast.d.ts +18 -0
  222. package/dist/server/page-map/to-ast.js +47 -0
  223. package/dist/server/page-map/to-js.d.ts +21 -0
  224. package/dist/server/page-map/to-js.js +72 -0
  225. package/dist/server/page-map/to-page-map.d.ts +26 -0
  226. package/dist/server/page-map/to-page-map.js +101 -0
  227. package/dist/server/recma-plugins/index.d.ts +3 -0
  228. package/dist/server/recma-plugins/index.js +4 -0
  229. package/dist/server/recma-plugins/recma-rewrite.d.ts +11 -0
  230. package/dist/server/recma-plugins/recma-rewrite.js +98 -0
  231. package/dist/server/rehype-plugins/index.d.ts +18 -0
  232. package/dist/server/rehype-plugins/index.js +16 -0
  233. package/dist/server/rehype-plugins/rehype-better-react-mathjax.d.ts +24 -0
  234. package/dist/server/rehype-plugins/rehype-better-react-mathjax.js +96 -0
  235. package/dist/server/rehype-plugins/rehype-extract-toc-content.d.ts +6 -0
  236. package/dist/server/rehype-plugins/rehype-extract-toc-content.js +119 -0
  237. package/dist/server/rehype-plugins/rehype-twoslash-popup.d.ts +6 -0
  238. package/dist/server/rehype-plugins/rehype-twoslash-popup.js +50 -0
  239. package/dist/server/rehype-plugins/rehype.d.ts +21 -0
  240. package/dist/server/rehype-plugins/rehype.js +84 -0
  241. package/dist/server/remark-plugins/index.d.ts +15 -0
  242. package/dist/server/remark-plugins/index.js +26 -0
  243. package/dist/server/remark-plugins/remark-assign-frontmatter.d.ts +10 -0
  244. package/dist/server/remark-plugins/remark-assign-frontmatter.js +24 -0
  245. package/dist/server/remark-plugins/remark-custom-heading-id.d.ts +9 -0
  246. package/dist/server/remark-plugins/remark-custom-heading-id.js +18 -0
  247. package/dist/server/remark-plugins/remark-export-only-metadata.d.ts +6 -0
  248. package/dist/server/remark-plugins/remark-export-only-metadata.js +18 -0
  249. package/dist/server/remark-plugins/remark-export-source-code.d.ts +6 -0
  250. package/dist/server/remark-plugins/remark-export-source-code.js +35 -0
  251. package/dist/server/remark-plugins/remark-headings.d.ts +12 -0
  252. package/dist/server/remark-plugins/remark-headings.js +133 -0
  253. package/dist/server/remark-plugins/remark-link-rewrite.d.ts +11 -0
  254. package/dist/server/remark-plugins/remark-link-rewrite.js +12 -0
  255. package/dist/server/remark-plugins/remark-mdx-disable-explicit-jsx.d.ts +10 -0
  256. package/dist/server/remark-plugins/remark-mdx-disable-explicit-jsx.js +10 -0
  257. package/dist/server/remark-plugins/remark-mdx-frontmatter.d.ts +6 -0
  258. package/dist/server/remark-plugins/remark-mdx-frontmatter.js +37 -0
  259. package/dist/server/remark-plugins/remark-mdx-title.d.ts +10 -0
  260. package/dist/server/remark-plugins/remark-mdx-title.js +53 -0
  261. package/dist/server/remark-plugins/remark-remove-imports.d.ts +6 -0
  262. package/dist/server/remark-plugins/remark-remove-imports.js +12 -0
  263. package/dist/server/remark-plugins/remark-static-image.d.ts +6 -0
  264. package/dist/server/remark-plugins/remark-static-image.js +107 -0
  265. package/dist/server/schemas.d.ts +352 -0
  266. package/dist/server/schemas.js +240 -0
  267. package/dist/server/tsdoc/base.d.ts +38 -0
  268. package/dist/server/tsdoc/base.js +284 -0
  269. package/dist/server/tsdoc/index.d.ts +6 -0
  270. package/dist/server/tsdoc/index.js +10 -0
  271. package/dist/server/tsdoc/tsdoc.d.ts +102 -0
  272. package/dist/server/tsdoc/tsdoc.js +262 -0
  273. package/dist/server/tsdoc/types.d.ts +64 -0
  274. package/dist/server/tsdoc/types.js +0 -0
  275. package/dist/server/tsdoc/zod-to-ts.d.ts +5 -0
  276. package/dist/server/tsdoc/zod-to-ts.js +107 -0
  277. package/dist/server/twoslash.d.ts +6 -0
  278. package/dist/server/twoslash.js +60 -0
  279. package/dist/server/utils.d.ts +12 -0
  280. package/dist/server/utils.js +45 -0
  281. package/dist/types.d.ts +128 -0
  282. package/dist/types.generated.d.ts +203 -0
  283. package/dist/types.generated.js +0 -0
  284. package/dist/types.js +0 -0
  285. package/loader.cjs +24 -0
  286. package/package.json +265 -0
  287. package/styles/cards.css +24 -0
  288. package/styles/code-block.css +266 -0
  289. package/styles/default.css +55 -0
  290. package/styles/react-medium-image-zoom.css +101 -0
  291. package/styles/scrollbar.css +14 -0
  292. package/styles/steps.css +22 -0
  293. package/styles/subheading-anchor.css +25 -0
@@ -0,0 +1,36 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgMenu = (props) => {
4
+ const $ = _c(5);
5
+ let t0;
6
+ let t1;
7
+ let t2;
8
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
9
+ t0 = /* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsx("path", { d: "M4 6h16" }) });
10
+ t1 = /* @__PURE__ */ jsx("path", { d: "M4 12h16" });
11
+ t2 = /* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsx("path", { d: "M4 18h16" }) });
12
+ $[0] = t0;
13
+ $[1] = t1;
14
+ $[2] = t2;
15
+ } else {
16
+ t0 = $[0];
17
+ t1 = $[1];
18
+ t2 = $[2];
19
+ }
20
+ let t3;
21
+ if ($[3] !== props) {
22
+ t3 = /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", ...props, children: [
23
+ t0,
24
+ t1,
25
+ t2
26
+ ] });
27
+ $[3] = props;
28
+ $[4] = t3;
29
+ } else {
30
+ t3 = $[4];
31
+ }
32
+ return t3;
33
+ };
34
+ export {
35
+ SvgMenu as ReactComponent
36
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgMoon = (props) => {
4
+ const $ = _c(3);
5
+ let t0;
6
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
7
+ t0 = /* @__PURE__ */ jsx("path", { strokeLinejoin: "round", strokeWidth: 2, d: "M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z" });
8
+ $[0] = t0;
9
+ } else {
10
+ t0 = $[0];
11
+ }
12
+ let t1;
13
+ if ($[1] !== props) {
14
+ t1 = /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "2 2 20 20", stroke: "currentColor", ...props, children: t0 });
15
+ $[1] = props;
16
+ $[2] = t1;
17
+ } else {
18
+ t1 = $[2];
19
+ }
20
+ return t1;
21
+ };
22
+ export {
23
+ SvgMoon as ReactComponent
24
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgMove = (props) => {
4
+ const $ = _c(3);
5
+ let t0;
6
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
7
+ t0 = /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.08696 0C1.53346 0 1.00264 0.219875 0.611255 0.611255C0.219875 1.00264 0 1.53346 0 2.08696L0 21.913C0 22.4665 0.219875 22.9974 0.611255 23.3887C1.00264 23.7801 1.53346 24 2.08696 24H72C72.5535 24 73.0843 23.7801 73.4757 23.3887C73.8671 22.9974 74.087 22.4665 74.087 21.913V2.08696C74.087 1.53346 73.8671 1.00264 73.4757 0.611255C73.0843 0.219875 72.5535 0 72 0L2.08696 0ZM34.1259 7.5287C34.0864 7.57116 34.0387 7.60504 33.9855 7.6282C33.9324 7.65136 33.875 7.66331 33.817 7.6633H26.0348C27.3631 5.86122 29.4751 4.69565 31.8553 4.69565C34.2344 4.69565 36.3475 5.86122 37.6758 7.6633H36.2807C36.2066 7.66307 36.1334 7.64693 36.0661 7.61596C35.9987 7.585 35.9388 7.53994 35.8904 7.48383L35.3697 6.88383C35.3319 6.83974 35.285 6.80433 35.2322 6.78001C35.1795 6.7557 35.1221 6.74306 35.064 6.74296H35.0379C34.9827 6.7431 34.9281 6.75456 34.8775 6.77663C34.8269 6.79871 34.7813 6.83093 34.7437 6.8713L34.1259 7.5287ZM34.6873 9.64278C34.6139 9.64328 34.5412 9.62903 34.4735 9.60089C34.4057 9.57275 34.3443 9.53128 34.2929 9.47896L33.769 8.93322C33.7289 8.8923 33.681 8.85986 33.6282 8.83781C33.5753 8.81576 33.5185 8.80456 33.4612 8.80487C33.4037 8.8043 33.3467 8.81538 33.2937 8.83744C33.2406 8.8595 33.1925 8.89208 33.1523 8.93322L32.7037 9.40278C32.6278 9.47971 32.5373 9.54061 32.4374 9.58184C32.3376 9.62307 32.2305 9.64379 32.1224 9.64278H25.0497C24.8455 10.1801 24.7159 10.7429 24.6647 11.3155H31.343C31.4598 11.3155 31.5725 11.2717 31.6529 11.1923L32.2748 10.5934C32.3397 10.5309 32.4232 10.4913 32.5127 10.4807C32.5321 10.478 32.5516 10.4766 32.5711 10.4765H32.5972C32.6546 10.4753 32.7117 10.4861 32.7647 10.5082C32.8177 10.5303 32.8655 10.5632 32.905 10.6049L33.4299 11.1517C33.481 11.2041 33.5422 11.2456 33.6099 11.2738C33.6775 11.302 33.7501 11.3161 33.8233 11.3155H39.2734C39.222 10.7433 39.0924 10.1808 38.8883 9.64383L34.6873 9.64278ZM28.7635 15.1941C28.8206 15.1942 28.877 15.1825 28.9295 15.1599C28.9819 15.1373 29.0291 15.1042 29.0682 15.0626L29.6797 14.4136C29.717 14.3734 29.7622 14.3414 29.8125 14.3195C29.8628 14.2976 29.917 14.2863 29.9718 14.2863H29.9969C30.1117 14.2863 30.2223 14.3363 30.2995 14.425L30.8139 15.0177C30.912 15.1304 31.0529 15.1951 31.2 15.1951H38.4553C38.7313 14.6139 38.9295 13.9989 39.0449 13.3659H32.0817C32.0085 13.3656 31.9361 13.3496 31.8695 13.319C31.8029 13.2884 31.7436 13.2439 31.6957 13.1885L31.1802 12.5958C31.1426 12.5525 31.0961 12.5177 31.0439 12.4939C30.9917 12.4701 30.9349 12.4578 30.8776 12.4578C30.8202 12.4578 30.7635 12.4701 30.7113 12.4939C30.6591 12.5177 30.6126 12.5525 30.575 12.5958L30.1336 13.104C30.0627 13.186 29.9751 13.2518 29.8766 13.297C29.7782 13.3422 29.6711 13.3657 29.5628 13.3659H24.8932C25.009 13.9991 25.2073 14.6144 25.4828 15.1962L28.7635 15.1951V15.1941ZM29.087 17.0045C29.0128 17.0043 28.9395 16.9886 28.8717 16.9584C28.804 16.9283 28.7433 16.8842 28.6936 16.8292L28.1687 16.2449C28.1298 16.2019 28.0823 16.1675 28.0292 16.144C27.9762 16.1205 27.9189 16.1083 27.8609 16.1083C27.8029 16.1083 27.7455 16.1205 27.6925 16.144C27.6395 16.1675 27.592 16.2019 27.553 16.2449L27.1023 16.7468C27.0288 16.828 26.9391 16.8929 26.839 16.9373C26.7389 16.9817 26.6306 17.0046 26.521 17.0045H26.4908C27.1809 17.7331 28.0127 18.3129 28.935 18.7083C29.8573 19.1038 30.8507 19.3066 31.8543 19.3043C33.9725 19.3043 35.88 18.4195 37.2188 17.0045H29.087ZM9.45704 4.88557H6.26087V19.3043H8.7673V9.37774H8.90087L12.887 19.2616H14.759L18.744 9.39861H18.8776V19.3043H21.384V4.88557H18.1878L13.9064 15.3339H13.7374L9.45704 4.88557ZM44.8758 4.88557L48.6282 16.2344H48.7763L52.5224 4.88557H55.3941L50.3113 19.3043H47.087L42.0104 4.88557H44.8758ZM58.2845 4.88557V19.3043H67.7197V17.1151H60.8974V13.1791H67.177V10.9899H60.8974V7.07478H67.6633V4.88557H58.2845Z" });
8
+ $[0] = t0;
9
+ } else {
10
+ t0 = $[0];
11
+ }
12
+ let t1;
13
+ if ($[1] !== props) {
14
+ t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 75 24", fill: "currentColor", ...props, children: t0 });
15
+ $[1] = props;
16
+ $[2] = t1;
17
+ } else {
18
+ t1 = $[2];
19
+ }
20
+ return t1;
21
+ };
22
+ export {
23
+ SvgMove as ReactComponent
24
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,31 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgPython = (props) => {
4
+ const $ = _c(4);
5
+ let t0;
6
+ let t1;
7
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
+ t0 = /* @__PURE__ */ jsx("path", { d: "M11.8972 0.00675201C5.81981 0.00675201 6.19928 2.64229 6.19928 2.64229L6.20603 5.37278H12.0056V6.19254H3.90253C3.90253 6.19254 0.0135803 5.75149 0.0135803 11.8836C0.0135803 18.0158 3.40795 17.7984 3.40795 17.7984H5.43369V14.9528C5.43369 14.9528 5.32449 11.5584 8.77388 11.5584H14.526C14.526 11.5584 17.7578 11.6106 17.7578 8.43502V3.18439C17.7578 3.18439 18.2486 0.00675201 11.8972 0.00675201ZM8.69936 1.84295C8.8364 1.84283 8.97213 1.86973 9.09877 1.92212C9.22541 1.97451 9.34048 2.05136 9.43738 2.14827C9.53429 2.24517 9.61114 2.36024 9.66353 2.48688C9.71592 2.61352 9.74282 2.74925 9.7427 2.88629C9.74282 3.02334 9.71592 3.15907 9.66353 3.28571C9.61114 3.41235 9.53429 3.52741 9.43738 3.62432C9.34048 3.72123 9.22541 3.79808 9.09877 3.85046C8.97213 3.90285 8.8364 3.92976 8.69936 3.92963C8.56231 3.92976 8.42658 3.90285 8.29994 3.85046C8.1733 3.79808 8.05824 3.72123 7.96133 3.62432C7.86442 3.52741 7.78757 3.41235 7.73519 3.28571C7.6828 3.15907 7.65589 3.02334 7.65602 2.88629C7.65589 2.74925 7.6828 2.61352 7.73519 2.48688C7.78757 2.36024 7.86442 2.24517 7.96133 2.14827C8.05824 2.05136 8.1733 1.97451 8.29994 1.92212C8.42658 1.86973 8.56231 1.84283 8.69936 1.84295Z" });
9
+ t1 = /* @__PURE__ */ jsx("path", { d: "M12.0698 23.8221C18.1473 23.8221 17.7678 21.1865 17.7678 21.1865L17.761 18.4561H11.9614V17.6364H20.0645C20.0645 17.6364 23.9534 18.0774 23.9534 11.9452C23.9534 5.81299 20.559 6.03046 20.559 6.03046H18.5333V8.87598C18.5333 8.87598 18.6425 12.2703 15.1931 12.2703H9.44096C9.44096 12.2703 6.20923 12.2181 6.20923 15.3938V20.6445C6.20923 20.6445 5.7185 23.8221 12.0697 23.8221H12.0698ZM15.2677 21.9861C15.1307 21.9862 14.9949 21.9593 14.8683 21.9069C14.7417 21.8545 14.6266 21.7777 14.5297 21.6807C14.4328 21.5838 14.3559 21.4688 14.3036 21.3421C14.2512 21.2155 14.2243 21.0798 14.2244 20.9427C14.2242 20.8057 14.2511 20.6699 14.3035 20.5433C14.3559 20.4166 14.4328 20.3015 14.5297 20.2046C14.6266 20.1077 14.7416 20.0309 14.8683 19.9785C14.9949 19.9261 15.1307 19.8992 15.2677 19.8993C15.4048 19.8992 15.5405 19.9261 15.6671 19.9785C15.7938 20.0308 15.9088 20.1077 16.0057 20.2046C16.1027 20.3015 16.1795 20.4166 16.2319 20.5432C16.2843 20.6698 16.3112 20.8056 16.3111 20.9426C16.3112 21.0797 16.2843 21.2154 16.2319 21.342C16.1795 21.4687 16.1027 21.5837 16.0057 21.6806C15.9088 21.7776 15.7938 21.8544 15.6671 21.9068C15.5405 21.9592 15.4048 21.9862 15.2677 21.9861Z" });
10
+ $[0] = t0;
11
+ $[1] = t1;
12
+ } else {
13
+ t0 = $[0];
14
+ t1 = $[1];
15
+ }
16
+ let t2;
17
+ if ($[2] !== props) {
18
+ t2 = /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [
19
+ t0,
20
+ t1
21
+ ] });
22
+ $[2] = props;
23
+ $[3] = t2;
24
+ } else {
25
+ t2 = $[3];
26
+ }
27
+ return t2;
28
+ };
29
+ export {
30
+ SvgPython as ReactComponent
31
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,38 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgReact = (props) => {
4
+ const $ = _c(4);
5
+ let t0;
6
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
7
+ t0 = /* @__PURE__ */ jsx("circle", { cx: 0, cy: 0, r: 2, stroke: "none" });
8
+ $[0] = t0;
9
+ } else {
10
+ t0 = $[0];
11
+ }
12
+ let t1;
13
+ if ($[1] === Symbol.for("react.memo_cache_sentinel")) {
14
+ t1 = /* @__PURE__ */ jsxs("g", { strokeWidth: 1, fill: "none", children: [
15
+ /* @__PURE__ */ jsx("ellipse", { rx: 10, ry: 4.5 }),
16
+ /* @__PURE__ */ jsx("ellipse", { rx: 10, ry: 4.5, transform: "rotate(60)" }),
17
+ /* @__PURE__ */ jsx("ellipse", { rx: 10, ry: 4.5, transform: "rotate(120)" })
18
+ ] });
19
+ $[1] = t1;
20
+ } else {
21
+ t1 = $[1];
22
+ }
23
+ let t2;
24
+ if ($[2] !== props) {
25
+ t2 = /* @__PURE__ */ jsxs("svg", { viewBox: "-10.5 -9.45 21 18.9", fill: "currentColor", stroke: "currentColor", ...props, children: [
26
+ t0,
27
+ t1
28
+ ] });
29
+ $[2] = props;
30
+ $[3] = t2;
31
+ } else {
32
+ t2 = $[3];
33
+ }
34
+ return t2;
35
+ };
36
+ export {
37
+ SvgReact as ReactComponent
38
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,31 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgRust = (props) => {
4
+ const $ = _c(4);
5
+ let t0;
6
+ let t1;
7
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
+ t0 = /* @__PURE__ */ jsx("path", { d: "M11.8848 1.15479C5.97908 1.15479 1.17212 5.96447 1.17212 11.8674C1.17212 17.7704 5.98044 22.5801 11.8848 22.5801C17.7891 22.5801 22.5974 17.7718 22.5974 11.8674C22.5974 5.96311 17.7878 1.15479 11.8848 1.15479ZM11.8685 2.10666C12.0516 2.11163 12.2256 2.18803 12.3533 2.31959C12.4811 2.45116 12.5525 2.62749 12.5525 2.81105C12.5525 2.99804 12.4782 3.17738 12.3459 3.3096C12.2137 3.44183 12.0344 3.51611 11.8474 3.51611C11.6604 3.51611 11.4811 3.44183 11.3488 3.3096C11.2166 3.17738 11.1423 2.99804 11.1423 2.81105C11.1423 2.7168 11.1612 2.62351 11.1978 2.53669C11.2345 2.44988 11.2882 2.3713 11.3558 2.30562C11.4234 2.23993 11.5035 2.18848 11.5913 2.15431C11.6791 2.12013 11.7743 2.10393 11.8685 2.10666ZM13.4826 3.26659C14.72 3.49826 15.8922 3.99655 16.9177 4.72685C17.9432 5.45716 18.7973 6.40196 19.4209 7.49563L18.5887 9.37218C18.5206 9.52832 18.5167 9.70498 18.5777 9.864C18.6388 10.023 18.76 10.1516 18.9151 10.2221L20.5156 10.9319C20.5651 11.4322 20.571 11.9359 20.5332 12.4372H19.6426C19.5542 12.4372 19.5175 12.4957 19.5175 12.5827V12.9907C19.5175 13.9521 18.9762 14.1628 18.5003 14.2145C18.0475 14.2662 17.5457 14.0241 17.4832 13.7481C17.2153 12.2455 16.772 11.9259 16.069 11.3711C16.942 10.8177 17.8476 10.0004 17.8476 8.90712C17.8476 7.7268 17.0385 6.98298 16.4878 6.61854C15.7127 6.10861 14.856 6.00662 14.6248 6.00662H5.42292C6.69479 4.58447 8.40012 3.6214 10.2748 3.26659L11.3599 4.40476C11.4179 4.46593 11.4875 4.51502 11.5646 4.54918C11.6417 4.58334 11.7248 4.6019 11.8091 4.6038C11.8935 4.60569 11.9773 4.59088 12.0559 4.56022C12.1344 4.52956 12.2062 4.48366 12.2669 4.42515L13.4826 3.26659ZM3.46478 8.48422C3.64803 8.48953 3.822 8.56607 3.94972 8.6976C4.07744 8.82913 4.14884 9.00527 4.14877 9.1886C4.14877 9.3756 4.07448 9.55494 3.94226 9.68716C3.81003 9.81939 3.63069 9.89367 3.4437 9.89367C3.2567 9.89367 3.07737 9.81939 2.94514 9.68716C2.81292 9.55494 2.73863 9.3756 2.73863 9.1886C2.73859 9.09436 2.75747 9.00107 2.79413 8.91425C2.8308 8.82743 2.88452 8.74886 2.9521 8.68317C3.01969 8.61749 3.09976 8.56604 3.18759 8.53187C3.27542 8.49769 3.37057 8.48149 3.46478 8.48422ZM20.2694 8.51549C20.4527 8.5208 20.6267 8.59735 20.7544 8.72888C20.8821 8.86041 20.9535 9.03655 20.9534 9.21988C20.9534 9.40688 20.8791 9.58621 20.7469 9.71844C20.6147 9.85066 20.4354 9.92495 20.2484 9.92495C20.0614 9.92495 19.882 9.85066 19.7498 9.71844C19.6176 9.58621 19.5433 9.40688 19.5433 9.21988C19.5433 9.12564 19.5621 9.03234 19.5988 8.94553C19.6355 8.85871 19.6892 8.78013 19.7568 8.71445C19.8243 8.64877 19.9044 8.59732 19.9923 8.56314C20.0801 8.52897 20.1752 8.51276 20.2694 8.51549ZM4.79196 8.62836H6.01988V14.1683H3.54229C3.23591 13.093 3.14033 11.9686 3.2608 10.8571L4.77972 10.1813C4.85679 10.1471 4.92636 10.0981 4.98447 10.037C5.04259 9.9759 5.08809 9.90397 5.1184 9.8253C5.14871 9.74663 5.16322 9.66275 5.1611 9.57847C5.15899 9.49419 5.14029 9.41116 5.10608 9.3341L4.79196 8.62836ZM9.91848 8.68683H12.8448C12.9971 8.68683 13.9123 8.86089 13.9123 9.5476C13.9123 10.116 13.2092 10.32 12.6313 10.32H9.91712L9.91848 8.68683ZM9.91848 12.667H12.1595C12.3634 12.667 13.2541 12.7255 13.537 13.8637C13.6254 14.2131 13.8225 15.35 13.9558 15.7157C14.0891 16.1237 14.6316 16.9396 15.2095 16.9396H18.8675C18.6223 17.2677 18.3542 17.5781 18.0652 17.8683L16.5762 17.5488C16.4936 17.531 16.4083 17.5297 16.3252 17.5448C16.2421 17.56 16.1628 17.5914 16.0918 17.6373C16.0208 17.6831 15.9596 17.7425 15.9116 17.812C15.8636 17.8815 15.8297 17.9598 15.8119 18.0424L15.4584 19.6919C14.3215 20.2068 13.087 20.4704 11.8389 20.4645C10.5909 20.4587 9.35882 20.1835 8.22687 19.6579L7.87331 18.0084C7.83774 17.8423 7.73775 17.697 7.59526 17.6045C7.45277 17.512 7.27941 17.4797 7.11317 17.5148L5.65545 17.8275C5.38519 17.5487 5.13397 17.2521 4.90347 16.9396H11.9909C12.0697 16.9396 12.1241 16.926 12.1241 16.8512V14.345C12.1241 14.273 12.0697 14.2567 11.9909 14.2567H9.91712L9.91848 12.667ZM6.64948 18.4082C6.83273 18.4135 7.0067 18.49 7.13442 18.6216C7.26214 18.7531 7.33354 18.9292 7.33347 19.1126C7.33347 19.2996 7.25918 19.4789 7.12696 19.6111C6.99473 19.7434 6.81539 19.8176 6.6284 19.8176C6.4414 19.8176 6.26207 19.7434 6.12984 19.6111C5.99762 19.4789 5.92333 19.2996 5.92333 19.1126C5.92329 19.0183 5.94216 18.925 5.97883 18.8382C6.0155 18.7514 6.06922 18.6728 6.1368 18.6071C6.20438 18.5415 6.28446 18.49 6.37229 18.4558C6.46012 18.4217 6.55527 18.4055 6.64948 18.4082ZM17.0861 18.4395C17.2694 18.4448 17.4433 18.5213 17.571 18.6528C17.6988 18.7844 17.7702 18.9605 17.7701 19.1438C17.7701 19.3308 17.6958 19.5102 17.5636 19.6424C17.4314 19.7746 17.252 19.8489 17.065 19.8489C16.878 19.8489 16.6987 19.7746 16.5665 19.6424C16.4342 19.5102 16.36 19.3308 16.36 19.1438C16.3599 19.0496 16.3788 18.9563 16.4155 18.8695C16.4521 18.7827 16.5058 18.7041 16.5734 18.6384C16.641 18.5727 16.7211 18.5213 16.8089 18.4871C16.8967 18.4529 16.9919 18.4367 17.0861 18.4395Z" });
9
+ t1 = /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M21.999 11.8682C21.999 14.5507 20.9334 17.1233 19.0365 19.0201C17.1397 20.9169 14.5671 21.9825 11.8846 21.9825C9.20214 21.9825 6.62951 20.9169 4.73271 19.0201C2.8359 17.1233 1.77028 14.5507 1.77028 11.8682C1.77028 9.18567 2.8359 6.61305 4.73271 4.71624C6.62951 2.81944 9.20214 1.75382 11.8846 1.75382C14.5671 1.75382 17.1397 2.81944 19.0365 4.71624C20.9334 6.61305 21.999 9.18567 21.999 11.8682ZM21.8086 10.8918L23.386 11.8682L21.8086 12.8445L23.1643 14.1119L21.4278 14.7619L22.5116 16.2685L20.6786 16.5677L21.4496 18.258L19.5934 18.1927L20.0191 20.0012L18.2105 19.5756L18.2758 21.4318L16.5855 20.6608L16.2864 22.4938L14.7797 21.41L14.1297 23.1465L12.8623 21.7908L11.886 23.3682L10.9096 21.7908L9.64228 23.1465L8.99229 21.41L7.48561 22.4938L7.18645 20.6608L5.49619 21.4318L5.56146 19.5756L3.7529 20.0012L4.17853 18.1927L2.32237 18.258L3.09339 16.5677L1.26035 16.2685L2.34413 14.7619L0.607637 14.1119L1.96338 12.8445L0.385986 11.8682L1.96338 10.8918L0.607637 9.62446L2.34413 8.97447L1.26035 7.46779L3.09339 7.16863L2.32237 5.47837L4.17853 5.54364L3.7529 3.73508L5.56146 4.1607L5.49619 2.30455L7.18645 3.07557L7.48561 1.24253L8.99229 2.32631L9.64228 0.589815L10.9096 1.94556L11.886 0.368164L12.8623 1.94556L14.1297 0.589815L14.7797 2.32631L16.2864 1.24253L16.5855 3.07557L18.2758 2.30455L18.2105 4.1607L20.0191 3.73508L19.5934 5.54364L21.4496 5.47837L20.6786 7.16863L22.5116 7.46779L21.4278 8.97447L23.1643 9.62446L21.8086 10.8918Z", stroke: "currentColor", strokeWidth: 0.5, strokeLinecap: "round", strokeLinejoin: "round" });
10
+ $[0] = t0;
11
+ $[1] = t1;
12
+ } else {
13
+ t0 = $[0];
14
+ t1 = $[1];
15
+ }
16
+ let t2;
17
+ if ($[2] !== props) {
18
+ t2 = /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [
19
+ t0,
20
+ t1
21
+ ] });
22
+ $[2] = props;
23
+ $[3] = t2;
24
+ } else {
25
+ t2 = $[3];
26
+ }
27
+ return t2;
28
+ };
29
+ export {
30
+ SvgRust as ReactComponent
31
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,31 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgSpinner = (props) => {
4
+ const $ = _c(4);
5
+ let t0;
6
+ let t1;
7
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
+ t0 = /* @__PURE__ */ jsx("circle", { className: "x:opacity-25", cx: 12, cy: 12, r: 10, strokeWidth: 4 });
9
+ t1 = /* @__PURE__ */ jsx("path", { className: "x:opacity-75", fill: "currentColor", stroke: "none", d: "M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z" });
10
+ $[0] = t0;
11
+ $[1] = t1;
12
+ } else {
13
+ t0 = $[0];
14
+ t1 = $[1];
15
+ }
16
+ let t2;
17
+ if ($[2] !== props) {
18
+ t2 = /* @__PURE__ */ jsxs("svg", { fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", ...props, children: [
19
+ t0,
20
+ t1
21
+ ] });
22
+ $[2] = props;
23
+ $[3] = t2;
24
+ } else {
25
+ t2 = $[3];
26
+ }
27
+ return t2;
28
+ };
29
+ export {
30
+ SvgSpinner as ReactComponent
31
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgSun = (props) => {
4
+ const $ = _c(3);
5
+ let t0;
6
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
7
+ t0 = /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeWidth: 2, d: "M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z" });
8
+ $[0] = t0;
9
+ } else {
10
+ t0 = $[0];
11
+ }
12
+ let t1;
13
+ if ($[1] !== props) {
14
+ t1 = /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "2 2 20 20", stroke: "currentColor", ...props, children: t0 });
15
+ $[1] = props;
16
+ $[2] = t1;
17
+ } else {
18
+ t1 = $[2];
19
+ }
20
+ return t1;
21
+ };
22
+ export {
23
+ SvgSun as ReactComponent
24
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,31 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgSvelte = (props) => {
4
+ const $ = _c(4);
5
+ let t0;
6
+ let t1;
7
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
8
+ t0 = /* @__PURE__ */ jsx("path", { d: "M88.1566 14.8189C77.7566 -0.0662003 57.2166 -4.4782 42.3652 4.9841L16.2825 21.6078C12.759 23.8245 9.73675 26.752 7.40898 30.2032C5.08122 33.6544 3.49915 37.5532 2.7639 41.6506C1.5197 48.5524 2.61328 55.6721 5.8715 61.8824C3.63888 65.2692 2.11613 69.0734 1.3953 73.0653C0.652253 77.2452 0.751337 81.5314 1.68674 85.6725C2.62214 89.8137 4.37503 93.7263 6.8426 97.181C17.2448 112.068 37.7849 116.478 52.634 107.016L78.7167 90.3921C82.2404 88.1756 85.2629 85.2482 87.5907 81.797C89.9184 78.3458 91.5004 74.4468 92.2353 70.3493C93.4793 63.4475 92.3866 56.328 89.13 50.117C91.362 46.7303 92.8841 42.9262 93.6043 38.9346C94.3478 34.7547 94.249 30.4684 93.3136 26.3272C92.3781 22.186 90.6246 18.2734 88.1566 14.8189Z", fill: "#ff3e00" });
9
+ t1 = /* @__PURE__ */ jsx("path", { d: "M39.8171 98.5815C35.7125 99.6488 31.3792 99.4307 27.4025 97.9566C23.4258 96.4826 19.9973 93.8236 17.58 90.3389C16.0958 88.2615 15.0414 85.9085 14.4788 83.4182C13.9161 80.9278 13.8565 78.3501 14.3034 75.8364C14.4547 75.0111 14.663 74.1972 14.9267 73.4007L15.4179 71.9029L16.7542 72.8844C19.8403 75.152 23.2909 76.876 26.9572 77.9822L27.9266 78.2763L27.8373 79.2438C27.7188 80.6202 28.0915 81.9941 28.8893 83.1219C29.6168 84.1716 30.6489 84.9727 31.8462 85.4171C33.0435 85.8615 34.3483 85.9277 35.5845 85.6069C36.1514 85.4554 36.6917 85.2179 37.1866 84.9028L63.27 68.281C63.9082 67.8791 64.4557 67.3487 64.8777 66.7235C65.2996 66.0984 65.5867 65.3922 65.7206 64.65C65.8544 63.8923 65.836 63.1156 65.6665 62.3651C65.497 61.6146 65.1797 60.9054 64.7331 60.2788C64.0052 59.2289 62.9727 58.4275 61.775 57.9829C60.5773 57.5383 59.272 57.4718 58.0353 57.7924C57.4692 57.9439 56.9296 58.1812 56.4353 58.496L46.4821 64.8409C44.8454 65.8815 43.0593 66.6659 41.1856 67.1668C37.081 68.234 32.7478 68.0158 28.7712 66.5418C24.7945 65.0677 21.3661 62.4088 18.9488 58.9241C17.4645 56.8467 16.4101 54.4938 15.8475 52.0034C15.2848 49.5131 15.2252 46.9354 15.6722 44.4217C16.1142 41.9578 17.0657 39.6133 18.4656 37.5382C19.8655 35.4631 21.6831 33.7029 23.8022 32.3704L49.8833 15.7472C51.5207 14.7049 53.3081 13.9195 55.1833 13.4185C59.2878 12.3513 63.621 12.5695 67.5976 14.0435C71.5743 15.5175 75.0027 18.1764 77.42 21.6611C78.9042 23.7385 79.9586 26.0914 80.5212 28.5818C81.0839 31.0722 81.1435 33.6499 80.6966 36.1636C80.5446 36.9888 80.3364 37.8026 80.0733 38.5993L79.5821 40.0971L78.2465 39.1171C75.1606 36.8482 71.7097 35.1234 68.0428 34.0171L67.0734 33.7229L67.1627 32.7554C67.2801 31.3791 66.9075 30.0056 66.1107 28.8774C65.3832 27.8277 64.3511 27.0266 63.1538 26.5822C61.9565 26.1378 60.6517 26.0715 59.4155 26.3924C58.8486 26.5439 58.3083 26.7814 57.8134 27.0965L31.73 43.719C31.0919 44.1205 30.5445 44.6508 30.1229 45.2758C29.7013 45.9008 29.4146 46.6069 29.2813 47.349C29.1466 48.1066 29.1644 48.8835 29.3337 49.6341C29.5029 50.3848 29.8202 51.0941 30.2669 51.7207C30.9948 52.7706 32.0273 53.5719 33.225 54.0165C34.4227 54.4612 35.728 54.5277 36.9647 54.2071C37.5314 54.0553 38.0716 53.8178 38.5667 53.503L48.5186 47.1605C50.1546 46.1185 51.9406 45.3334 53.8145 44.8327C57.9191 43.7655 62.2523 43.9836 66.2289 45.4577C70.2056 46.9317 73.634 49.5907 76.0513 53.0754C77.5356 55.1528 78.59 57.5057 79.1526 59.996C79.7153 62.4864 79.7749 65.0641 79.3279 67.5778C78.8856 70.0418 77.934 72.3864 76.5341 74.4619C75.1343 76.5373 73.3168 78.2978 71.1979 79.631L45.1167 96.2528C43.4793 97.2951 41.6923 98.0805 39.8171 98.5815Z", fill: "#fff" });
10
+ $[0] = t0;
11
+ $[1] = t1;
12
+ } else {
13
+ t0 = $[0];
14
+ t1 = $[1];
15
+ }
16
+ let t2;
17
+ if ($[2] !== props) {
18
+ t2 = /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 95 112", ...props, children: [
19
+ t0,
20
+ t1
21
+ ] });
22
+ $[2] = props;
23
+ $[3] = t2;
24
+ } else {
25
+ t2 = $[3];
26
+ }
27
+ return t2;
28
+ };
29
+ export {
30
+ SvgSvelte as ReactComponent
31
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgTerminal = (props) => {
4
+ const $ = _c(3);
5
+ let t0;
6
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
7
+ t0 = /* @__PURE__ */ jsx("path", { d: "M7.3 7.8L12.55 12L7.3 16.2M14.65 16.2H19.9M2.11562 1.5H25.0844C25.7005 1.5 26.2 1.99948 26.2 2.61562V21.3844C26.2 22.0005 25.7005 22.5 25.0844 22.5H2.11562C1.49948 22.5 1 22.0005 1 21.3844V2.61562C1 1.99948 1.49948 1.5 2.11562 1.5Z", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" });
8
+ $[0] = t0;
9
+ } else {
10
+ t0 = $[0];
11
+ }
12
+ let t1;
13
+ if ($[1] !== props) {
14
+ t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 28 24", fill: "none", stroke: "currentColor", ...props, children: t0 });
15
+ $[1] = props;
16
+ $[2] = t1;
17
+ } else {
18
+ t1 = $[2];
19
+ }
20
+ return t1;
21
+ };
22
+ export {
23
+ SvgTerminal as ReactComponent
24
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgTerraform = (props) => {
4
+ const $ = _c(3);
5
+ let t0;
6
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
7
+ t0 = /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.28963 4.22959L13.861 8.01763V15.5928L7.28963 11.8065V4.22959ZM14.5819 8.01763V15.5928L21.1524 11.8065V4.22959L14.5819 8.01763ZM0 0V7.57695L6.57045 11.365V3.78804L0 0ZM7.28963 20.2111L13.861 24V16.4248L7.28963 12.6359V20.2111Z" });
8
+ $[0] = t0;
9
+ } else {
10
+ t0 = $[0];
11
+ }
12
+ let t1;
13
+ if ($[1] !== props) {
14
+ t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 22 24", fill: "currentColor", ...props, children: t0 });
15
+ $[1] = props;
16
+ $[2] = t1;
17
+ } else {
18
+ t1 = $[2];
19
+ }
20
+ return t1;
21
+ };
22
+ export {
23
+ SvgTerraform as ReactComponent
24
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgTypescript = (props) => {
4
+ const $ = _c(3);
5
+ let t0;
6
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
7
+ t0 = /* @__PURE__ */ jsx("path", { d: "M0 2.66667V21.3333C0 22.8067 1.19333 24 2.66667 24H21.3333C22.8067 24 24 22.8067 24 21.3333V2.66667C24 1.19333 22.8067 0 21.3333 0H2.66667C1.19333 0 0 1.19333 0 2.66667ZM14.2213 12.6013H11.3973V21.3333H9.12133V12.6013H6.356V10.6667H14.2213V12.6013ZM14.664 20.8347V18.5C14.664 18.5 15.9387 19.4613 17.4693 19.4613C19 19.4613 18.94 18.4613 18.94 18.324C18.94 16.872 14.6053 16.872 14.6053 13.656C14.6053 9.28133 20.9213 11.008 20.9213 11.008L20.8427 13.0867C20.8427 13.0867 19.784 12.38 18.5867 12.38C17.3907 12.38 16.9587 12.9493 16.9587 13.5573C16.9587 15.1267 21.3333 14.9693 21.3333 18.128C21.3333 22.992 14.664 20.8347 14.664 20.8347Z" });
8
+ $[0] = t0;
9
+ } else {
10
+ t0 = $[0];
11
+ }
12
+ let t1;
13
+ if ($[1] !== props) {
14
+ t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", ...props, children: t0 });
15
+ $[1] = props;
16
+ $[2] = t1;
17
+ } else {
18
+ t1 = $[2];
19
+ }
20
+ return t1;
21
+ };
22
+ export {
23
+ SvgTypescript as ReactComponent
24
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgWordWrap = (props) => {
4
+ const $ = _c(3);
5
+ let t0;
6
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
7
+ t0 = /* @__PURE__ */ jsx("path", { d: "M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3l3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z" });
8
+ $[0] = t0;
9
+ } else {
10
+ t0 = $[0];
11
+ }
12
+ let t1;
13
+ if ($[1] !== props) {
14
+ t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", ...props, children: t0 });
15
+ $[1] = props;
16
+ $[2] = t1;
17
+ } else {
18
+ t1 = $[2];
19
+ }
20
+ return t1;
21
+ };
22
+ export {
23
+ SvgWordWrap as ReactComponent
24
+ };
@@ -0,0 +1,2 @@
1
+ import 'react';
2
+ export { ReactComponent } from './arrow-right.js';
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ const SvgX = (props) => {
4
+ const $ = _c(3);
5
+ let t0;
6
+ if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
7
+ t0 = /* @__PURE__ */ jsx("path", { d: "M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" });
8
+ $[0] = t0;
9
+ } else {
10
+ t0 = $[0];
11
+ }
12
+ let t1;
13
+ if ($[1] !== props) {
14
+ t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 20 20", fill: "currentColor", ...props, children: t0 });
15
+ $[1] = props;
16
+ $[2] = t1;
17
+ } else {
18
+ t1 = $[2];
19
+ }
20
+ return t1;
21
+ };
22
+ export {
23
+ SvgX as ReactComponent
24
+ };
@@ -0,0 +1,10 @@
1
+ import Link from 'next/link';
2
+ import { FC, ComponentPropsWithoutRef } from 'react';
3
+
4
+ type NextLinkProps = ComponentPropsWithoutRef<typeof Link>;
5
+ type Props = Omit<NextLinkProps, 'href'> & {
6
+ href?: NextLinkProps['href'] | undefined;
7
+ };
8
+ declare const Anchor: FC<Props>;
9
+
10
+ export { Anchor };
@@ -0,0 +1,109 @@
1
+ import { Fragment, jsx, jsxs } from "react/jsx-runtime";
2
+ import { c as _c } from "react-compiler-runtime";
3
+ import cn from "clsx";
4
+ import Link from "next/link";
5
+ import { EXTERNAL_URL_RE } from "../../server/constants.js";
6
+ import { LinkArrowIcon } from "../icons/index.js";
7
+ const Anchor = (t0) => {
8
+ const $ = _c(23);
9
+ let prefetch;
10
+ let props;
11
+ let t1;
12
+ if ($[0] !== t0) {
13
+ ({
14
+ href: t1,
15
+ prefetch,
16
+ ...props
17
+ } = t0);
18
+ $[0] = t0;
19
+ $[1] = prefetch;
20
+ $[2] = props;
21
+ $[3] = t1;
22
+ } else {
23
+ prefetch = $[1];
24
+ props = $[2];
25
+ t1 = $[3];
26
+ }
27
+ const href = t1 === void 0 ? "" : t1;
28
+ const t2 = props;
29
+ let t3;
30
+ if ($[4] !== props.className) {
31
+ t3 = cn("x:focus-visible:nextra-focus", props.className);
32
+ $[4] = props.className;
33
+ $[5] = t3;
34
+ } else {
35
+ t3 = $[5];
36
+ }
37
+ let t4;
38
+ if ($[6] !== props || $[7] !== t3) {
39
+ t4 = {
40
+ ...t2,
41
+ className: t3
42
+ };
43
+ $[6] = props;
44
+ $[7] = t3;
45
+ $[8] = t4;
46
+ } else {
47
+ t4 = $[8];
48
+ }
49
+ props = t4;
50
+ if (typeof href === "string") {
51
+ if (href.startsWith("#")) {
52
+ let t52;
53
+ if ($[9] !== href || $[10] !== props) {
54
+ t52 = /* @__PURE__ */ jsx("a", { href, ...props });
55
+ $[9] = href;
56
+ $[10] = props;
57
+ $[11] = t52;
58
+ } else {
59
+ t52 = $[11];
60
+ }
61
+ return t52;
62
+ }
63
+ if (EXTERNAL_URL_RE.test(href)) {
64
+ const {
65
+ children
66
+ } = props;
67
+ let t52;
68
+ if ($[12] !== children) {
69
+ t52 = typeof children === "string" && /* @__PURE__ */ jsxs(Fragment, { children: [
70
+ "\xA0",
71
+ /* @__PURE__ */ jsx(LinkArrowIcon, { height: "1em", className: "x:inline x:align-baseline x:shrink-0" })
72
+ ] });
73
+ $[12] = children;
74
+ $[13] = t52;
75
+ } else {
76
+ t52 = $[13];
77
+ }
78
+ let t6;
79
+ if ($[14] !== children || $[15] !== href || $[16] !== props || $[17] !== t52) {
80
+ t6 = /* @__PURE__ */ jsxs("a", { href, target: "_blank", rel: "noreferrer", ...props, children: [
81
+ children,
82
+ t52
83
+ ] });
84
+ $[14] = children;
85
+ $[15] = href;
86
+ $[16] = props;
87
+ $[17] = t52;
88
+ $[18] = t6;
89
+ } else {
90
+ t6 = $[18];
91
+ }
92
+ return t6;
93
+ }
94
+ }
95
+ let t5;
96
+ if ($[19] !== href || $[20] !== prefetch || $[21] !== props) {
97
+ t5 = /* @__PURE__ */ jsx(Link, { href, prefetch, ...props });
98
+ $[19] = href;
99
+ $[20] = prefetch;
100
+ $[21] = props;
101
+ $[22] = t5;
102
+ } else {
103
+ t5 = $[22];
104
+ }
105
+ return t5;
106
+ };
107
+ export {
108
+ Anchor
109
+ };
@@ -0,0 +1,7 @@
1
+ import { FC, HTMLAttributes } from 'react';
2
+
3
+ declare const Code: FC<HTMLAttributes<HTMLElement> & {
4
+ 'data-language'?: string;
5
+ }>;
6
+
7
+ export { Code };