@docusaurus/theme-common 2.0.0-beta.15d451942 → 2.0.0-beta.18

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 (229) hide show
  1. package/lib/components/Collapsible/index.d.ts +64 -0
  2. package/lib/components/Collapsible/index.d.ts.map +1 -0
  3. package/lib/components/Collapsible/index.js +152 -0
  4. package/lib/components/Collapsible/index.js.map +1 -0
  5. package/lib/components/Details/index.d.ts +17 -0
  6. package/lib/components/Details/index.d.ts.map +1 -0
  7. package/lib/components/Details/index.js +70 -0
  8. package/lib/components/Details/index.js.map +1 -0
  9. package/lib/components/Details/styles.module.css +58 -0
  10. package/lib/contexts/announcementBar.d.ts +22 -0
  11. package/lib/contexts/announcementBar.d.ts.map +1 -0
  12. package/lib/contexts/announcementBar.js +72 -0
  13. package/lib/contexts/announcementBar.js.map +1 -0
  14. package/lib/contexts/colorMode.d.ts +27 -0
  15. package/lib/contexts/colorMode.d.ts.map +1 -0
  16. package/lib/contexts/colorMode.js +114 -0
  17. package/lib/contexts/colorMode.js.map +1 -0
  18. package/lib/contexts/docSidebarItemsExpandedState.d.ts +31 -0
  19. package/lib/contexts/docSidebarItemsExpandedState.d.ts.map +1 -0
  20. package/lib/contexts/docSidebarItemsExpandedState.js +28 -0
  21. package/lib/contexts/docSidebarItemsExpandedState.js.map +1 -0
  22. package/lib/contexts/docsPreferredVersion.d.ts +28 -0
  23. package/lib/contexts/docsPreferredVersion.d.ts.map +1 -0
  24. package/lib/contexts/docsPreferredVersion.js +125 -0
  25. package/lib/contexts/docsPreferredVersion.js.map +1 -0
  26. package/lib/contexts/docsSidebar.d.ts +20 -0
  27. package/lib/contexts/docsSidebar.d.ts.map +1 -0
  28. package/lib/contexts/docsSidebar.js +29 -0
  29. package/lib/contexts/docsSidebar.js.map +1 -0
  30. package/lib/contexts/docsVersion.d.ts +20 -0
  31. package/lib/contexts/docsVersion.d.ts.map +1 -0
  32. package/lib/contexts/docsVersion.js +26 -0
  33. package/lib/contexts/docsVersion.js.map +1 -0
  34. package/lib/contexts/navbarMobileSidebar.d.ts +31 -0
  35. package/lib/contexts/navbarMobileSidebar.d.ts.map +1 -0
  36. package/lib/contexts/navbarMobileSidebar.js +56 -0
  37. package/lib/contexts/navbarMobileSidebar.js.map +1 -0
  38. package/lib/contexts/navbarSecondaryMenu.d.ts +38 -0
  39. package/lib/contexts/navbarSecondaryMenu.d.ts.map +1 -0
  40. package/lib/contexts/navbarSecondaryMenu.js +93 -0
  41. package/lib/contexts/navbarSecondaryMenu.js.map +1 -0
  42. package/lib/contexts/tabGroupChoice.d.ts +21 -0
  43. package/lib/contexts/tabGroupChoice.d.ts.map +1 -0
  44. package/lib/contexts/tabGroupChoice.js +49 -0
  45. package/lib/contexts/tabGroupChoice.js.map +1 -0
  46. package/lib/{utils/useChangeRoute.d.ts → hooks/styles.css} +4 -1
  47. package/lib/hooks/useHideableNavbar.d.ts +17 -0
  48. package/lib/hooks/useHideableNavbar.d.ts.map +1 -0
  49. package/lib/hooks/useHideableNavbar.js +61 -0
  50. package/lib/hooks/useHideableNavbar.js.map +1 -0
  51. package/lib/hooks/useKeyboardNavigation.d.ts +20 -0
  52. package/lib/hooks/useKeyboardNavigation.d.ts.map +1 -0
  53. package/lib/hooks/useKeyboardNavigation.js +39 -0
  54. package/lib/hooks/useKeyboardNavigation.js.map +1 -0
  55. package/lib/hooks/useLockBodyScroll.d.ts +12 -0
  56. package/lib/hooks/useLockBodyScroll.d.ts.map +1 -0
  57. package/lib/hooks/useLockBodyScroll.js +20 -0
  58. package/lib/hooks/useLockBodyScroll.js.map +1 -0
  59. package/lib/hooks/usePrismTheme.d.ts +13 -0
  60. package/lib/hooks/usePrismTheme.d.ts.map +1 -0
  61. package/lib/hooks/usePrismTheme.js +22 -0
  62. package/lib/hooks/usePrismTheme.js.map +1 -0
  63. package/lib/hooks/useSearchPage.d.ts +25 -0
  64. package/lib/hooks/useSearchPage.d.ts.map +1 -0
  65. package/lib/hooks/useSearchPage.js +43 -0
  66. package/lib/hooks/useSearchPage.js.map +1 -0
  67. package/lib/hooks/useTOCHighlight.d.ts +25 -0
  68. package/lib/hooks/useTOCHighlight.d.ts.map +1 -0
  69. package/lib/hooks/useTOCHighlight.js +130 -0
  70. package/lib/hooks/useTOCHighlight.js.map +1 -0
  71. package/lib/hooks/useWindowSize.d.ts +28 -0
  72. package/lib/hooks/useWindowSize.d.ts.map +1 -0
  73. package/lib/hooks/useWindowSize.js +59 -0
  74. package/lib/hooks/useWindowSize.js.map +1 -0
  75. package/lib/index.d.ts +36 -9
  76. package/lib/index.d.ts.map +1 -0
  77. package/lib/index.js +36 -8
  78. package/lib/index.js.map +1 -0
  79. package/lib/utils/ThemeClassNames.d.ts +47 -12
  80. package/lib/utils/ThemeClassNames.d.ts.map +1 -0
  81. package/lib/utils/ThemeClassNames.js +45 -4
  82. package/lib/utils/ThemeClassNames.js.map +1 -0
  83. package/lib/utils/codeBlockUtils.d.ts +33 -0
  84. package/lib/utils/codeBlockUtils.d.ts.map +1 -0
  85. package/lib/utils/codeBlockUtils.js +126 -3
  86. package/lib/utils/codeBlockUtils.js.map +1 -0
  87. package/lib/utils/docsUtils.d.ts +33 -0
  88. package/lib/utils/docsUtils.d.ts.map +1 -0
  89. package/lib/utils/docsUtils.js +118 -1
  90. package/lib/utils/docsUtils.js.map +1 -0
  91. package/lib/utils/footerUtils.d.ts +13 -0
  92. package/lib/utils/footerUtils.d.ts.map +1 -0
  93. package/lib/utils/footerUtils.js +14 -0
  94. package/lib/utils/footerUtils.js.map +1 -0
  95. package/lib/utils/generalUtils.d.ts +11 -1
  96. package/lib/utils/generalUtils.d.ts.map +1 -0
  97. package/lib/utils/generalUtils.js +9 -5
  98. package/lib/utils/generalUtils.js.map +1 -0
  99. package/lib/utils/historyUtils.d.ts +17 -0
  100. package/lib/utils/historyUtils.d.ts.map +1 -0
  101. package/lib/utils/historyUtils.js +38 -0
  102. package/lib/utils/historyUtils.js.map +1 -0
  103. package/lib/utils/jsUtils.d.ts +23 -0
  104. package/lib/utils/jsUtils.d.ts.map +1 -0
  105. package/lib/utils/jsUtils.js +29 -0
  106. package/lib/utils/jsUtils.js.map +1 -0
  107. package/lib/utils/metadataUtils.d.ts +38 -0
  108. package/lib/utils/metadataUtils.d.ts.map +1 -0
  109. package/lib/utils/metadataUtils.js +61 -0
  110. package/lib/utils/metadataUtils.js.map +1 -0
  111. package/lib/utils/navbarUtils.d.ts +21 -0
  112. package/lib/utils/navbarUtils.d.ts.map +1 -0
  113. package/lib/utils/navbarUtils.js +30 -0
  114. package/lib/utils/navbarUtils.js.map +1 -0
  115. package/lib/utils/reactUtils.d.ts +42 -0
  116. package/lib/utils/reactUtils.d.ts.map +1 -0
  117. package/lib/utils/reactUtils.js +64 -0
  118. package/lib/utils/reactUtils.js.map +1 -0
  119. package/lib/utils/regexpUtils.d.ts +12 -0
  120. package/lib/utils/regexpUtils.d.ts.map +1 -0
  121. package/lib/utils/regexpUtils.js +18 -0
  122. package/lib/utils/regexpUtils.js.map +1 -0
  123. package/lib/utils/routesUtils.d.ts +26 -0
  124. package/lib/utils/routesUtils.d.ts.map +1 -0
  125. package/lib/utils/routesUtils.js +54 -0
  126. package/lib/utils/routesUtils.js.map +1 -0
  127. package/lib/utils/scrollUtils.d.ts +59 -0
  128. package/lib/utils/scrollUtils.d.ts.map +1 -0
  129. package/lib/utils/scrollUtils.js +148 -0
  130. package/lib/utils/scrollUtils.js.map +1 -0
  131. package/lib/utils/searchUtils.d.ts +13 -0
  132. package/lib/utils/searchUtils.d.ts.map +1 -0
  133. package/lib/utils/searchUtils.js +35 -0
  134. package/lib/utils/searchUtils.js.map +1 -0
  135. package/lib/utils/storageUtils.d.ts +13 -5
  136. package/lib/utils/storageUtils.d.ts.map +1 -0
  137. package/lib/utils/storageUtils.js +58 -25
  138. package/lib/utils/storageUtils.js.map +1 -0
  139. package/lib/utils/tagsUtils.d.ts +22 -0
  140. package/lib/utils/tagsUtils.d.ts.map +1 -0
  141. package/lib/utils/tagsUtils.js +36 -0
  142. package/lib/utils/tagsUtils.js.map +1 -0
  143. package/lib/utils/tocUtils.d.ts +36 -0
  144. package/lib/utils/tocUtils.d.ts.map +1 -0
  145. package/lib/utils/tocUtils.js +84 -0
  146. package/lib/utils/tocUtils.js.map +1 -0
  147. package/lib/utils/useAlternatePageUtils.d.ts +21 -1
  148. package/lib/utils/useAlternatePageUtils.d.ts.map +1 -0
  149. package/lib/utils/useAlternatePageUtils.js +9 -4
  150. package/lib/utils/useAlternatePageUtils.js.map +1 -0
  151. package/lib/utils/useLocalPathname.d.ts +13 -0
  152. package/lib/utils/useLocalPathname.d.ts.map +1 -0
  153. package/lib/utils/useLocalPathname.js +19 -0
  154. package/lib/utils/useLocalPathname.js.map +1 -0
  155. package/lib/utils/useLocationChange.d.ts +17 -0
  156. package/lib/utils/useLocationChange.d.ts.map +1 -0
  157. package/lib/utils/useLocationChange.js +31 -0
  158. package/lib/utils/useLocationChange.js.map +1 -0
  159. package/lib/utils/usePluralForm.d.ts +12 -0
  160. package/lib/utils/usePluralForm.d.ts.map +1 -0
  161. package/lib/utils/usePluralForm.js +36 -37
  162. package/lib/utils/usePluralForm.js.map +1 -0
  163. package/lib/utils/useThemeConfig.d.ts +50 -22
  164. package/lib/utils/useThemeConfig.d.ts.map +1 -0
  165. package/lib/utils/useThemeConfig.js +4 -0
  166. package/lib/utils/useThemeConfig.js.map +1 -0
  167. package/package.json +18 -13
  168. package/src/components/Collapsible/index.tsx +265 -0
  169. package/src/components/Details/index.tsx +107 -0
  170. package/src/components/Details/styles.module.css +58 -0
  171. package/src/contexts/announcementBar.tsx +119 -0
  172. package/src/contexts/colorMode.tsx +176 -0
  173. package/src/contexts/docSidebarItemsExpandedState.tsx +55 -0
  174. package/src/contexts/docsPreferredVersion.tsx +250 -0
  175. package/src/contexts/docsSidebar.tsx +42 -0
  176. package/src/contexts/docsVersion.tsx +36 -0
  177. package/src/contexts/navbarMobileSidebar.tsx +99 -0
  178. package/src/contexts/navbarSecondaryMenu.tsx +170 -0
  179. package/src/contexts/tabGroupChoice.tsx +82 -0
  180. package/{lib/utils/pathUtils.d.ts → src/hooks/styles.css} +4 -1
  181. package/src/hooks/useHideableNavbar.ts +77 -0
  182. package/src/hooks/useKeyboardNavigation.ts +45 -0
  183. package/src/hooks/useLockBodyScroll.ts +21 -0
  184. package/src/hooks/usePrismTheme.ts +24 -0
  185. package/src/hooks/useSearchPage.ts +79 -0
  186. package/src/hooks/useTOCHighlight.ts +192 -0
  187. package/src/hooks/useWindowSize.ts +72 -0
  188. package/src/index.ts +129 -18
  189. package/src/types.d.ts +0 -2
  190. package/src/utils/ThemeClassNames.ts +51 -5
  191. package/src/utils/codeBlockUtils.ts +155 -2
  192. package/src/utils/docsUtils.tsx +180 -0
  193. package/src/utils/footerUtils.ts +18 -0
  194. package/src/utils/generalUtils.ts +9 -5
  195. package/src/utils/historyUtils.ts +45 -0
  196. package/src/utils/jsUtils.ts +36 -0
  197. package/src/utils/metadataUtils.tsx +115 -0
  198. package/src/utils/navbarUtils.tsx +40 -0
  199. package/src/utils/reactUtils.tsx +76 -0
  200. package/src/utils/regexpUtils.ts +24 -0
  201. package/src/utils/routesUtils.ts +75 -0
  202. package/src/utils/scrollUtils.tsx +234 -0
  203. package/src/utils/searchUtils.ts +49 -0
  204. package/src/utils/storageUtils.ts +57 -24
  205. package/src/utils/tagsUtils.ts +55 -0
  206. package/src/utils/tocUtils.ts +119 -0
  207. package/src/utils/useAlternatePageUtils.ts +28 -7
  208. package/src/utils/useLocalPathname.ts +22 -0
  209. package/src/utils/useLocationChange.ts +41 -0
  210. package/src/utils/usePluralForm.ts +49 -39
  211. package/src/utils/useThemeConfig.ts +49 -24
  212. package/lib/.tsbuildinfo +0 -4159
  213. package/lib/utils/docsPreferredVersion/DocsPreferredVersionProvider.d.ts +0 -21
  214. package/lib/utils/docsPreferredVersion/DocsPreferredVersionProvider.js +0 -94
  215. package/lib/utils/docsPreferredVersion/DocsPreferredVersionStorage.d.ts +0 -13
  216. package/lib/utils/docsPreferredVersion/DocsPreferredVersionStorage.js +0 -20
  217. package/lib/utils/docsPreferredVersion/useDocsPreferredVersion.d.ts +0 -5
  218. package/lib/utils/docsPreferredVersion/useDocsPreferredVersion.js +0 -41
  219. package/lib/utils/pathUtils.js +0 -13
  220. package/lib/utils/useChangeRoute.js +0 -18
  221. package/src/utils/__tests__/codeBlockUtils.test.ts +0 -54
  222. package/src/utils/__tests__/pathUtils.test.ts +0 -32
  223. package/src/utils/docsPreferredVersion/DocsPreferredVersionProvider.tsx +0 -165
  224. package/src/utils/docsPreferredVersion/DocsPreferredVersionStorage.ts +0 -34
  225. package/src/utils/docsPreferredVersion/useDocsPreferredVersion.ts +0 -66
  226. package/src/utils/docsUtils.ts +0 -11
  227. package/src/utils/pathUtils.ts +0 -17
  228. package/src/utils/useChangeRoute.ts +0 -21
  229. package/tsconfig.json +0 -10
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ import type { TOCItem } from '@docusaurus/types';
8
+ export declare type TOCTreeNode = {
9
+ readonly value: string;
10
+ readonly id: string;
11
+ readonly level: number;
12
+ readonly children: readonly TOCTreeNode[];
13
+ };
14
+ /**
15
+ * Takes a flat TOC list (from the MDX loader) and treeifies it into what the
16
+ * TOC components expect. Memoized for performance.
17
+ */
18
+ export declare function useTreeifiedTOC(toc: TOCItem[]): readonly TOCTreeNode[];
19
+ /**
20
+ * Takes a flat TOC list (from the MDX loader) and treeifies it into what the
21
+ * TOC components expect, applying the `minHeadingLevel` and `maxHeadingLevel`.
22
+ * Memoized for performance.
23
+ *
24
+ * **Important**: this is not the same as `useTreeifiedTOC(toc.filter(...))`,
25
+ * because we have to filter the TOC after it has been treeified. This is mostly
26
+ * to ensure that weird TOC structures preserve their semantics. For example, an
27
+ * h3-h2-h4 sequence should not be treeified as an "h3 > h4" hierarchy with
28
+ * min=3, max=4, but should rather be "[h3, h4]" (since the h2 heading has split
29
+ * the two headings and they are not parents)
30
+ */
31
+ export declare function useFilteredAndTreeifiedTOC({ toc, minHeadingLevel, maxHeadingLevel, }: {
32
+ toc: readonly TOCItem[];
33
+ minHeadingLevel: number;
34
+ maxHeadingLevel: number;
35
+ }): readonly TOCTreeNode[];
36
+ //# sourceMappingURL=tocUtils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tocUtils.d.ts","sourceRoot":"","sources":["../../src/utils/tocUtils.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,mBAAmB,CAAC;AAE/C,oBAAY,WAAW,GAAG;IACxB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,QAAQ,EAAE,SAAS,WAAW,EAAE,CAAC;CAC3C,CAAC;AAuCF;;;GAGG;AACH,wBAAgB,eAAe,CAAC,GAAG,EAAE,OAAO,EAAE,GAAG,SAAS,WAAW,EAAE,CAEtE;AAiCD;;;;;;;;;;;GAWG;AACH,wBAAgB,0BAA0B,CAAC,EACzC,GAAG,EACH,eAAe,EACf,eAAe,GAChB,EAAE;IACD,GAAG,EAAE,SAAS,OAAO,EAAE,CAAC;IACxB,eAAe,EAAE,MAAM,CAAC;IACxB,eAAe,EAAE,MAAM,CAAC;CACzB,GAAG,SAAS,WAAW,EAAE,CAKzB"}
@@ -0,0 +1,84 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ import { useMemo } from 'react';
8
+ function treeifyTOC(flatTOC) {
9
+ const headings = flatTOC.map((heading) => ({
10
+ ...heading,
11
+ parentIndex: -1,
12
+ children: [],
13
+ }));
14
+ // Keep track of which previous index would be the current heading's direct
15
+ // parent. Each entry <i> is the last index of the `headings` array at heading
16
+ // level <i>. We will modify these indices as we iterate through all headings.
17
+ // e.g. if an ### H3 was last seen at index 2, then prevIndexForLevel[3] === 2
18
+ // indices 0 and 1 will remain unused.
19
+ const prevIndexForLevel = Array(7).fill(-1);
20
+ headings.forEach((curr, currIndex) => {
21
+ // take the last seen index for each ancestor level. the highest
22
+ // index will be the direct ancestor of the current heading.
23
+ const ancestorLevelIndexes = prevIndexForLevel.slice(2, curr.level);
24
+ curr.parentIndex = Math.max(...ancestorLevelIndexes);
25
+ // mark that curr.level was last seen at the current index
26
+ prevIndexForLevel[curr.level] = currIndex;
27
+ });
28
+ const rootNodes = [];
29
+ // For a given parentIndex, add each Node into that parent's `children` array
30
+ headings.forEach((heading) => {
31
+ const { parentIndex, ...rest } = heading;
32
+ if (parentIndex >= 0) {
33
+ headings[parentIndex].children.push(rest);
34
+ }
35
+ else {
36
+ rootNodes.push(rest);
37
+ }
38
+ });
39
+ return rootNodes;
40
+ }
41
+ /**
42
+ * Takes a flat TOC list (from the MDX loader) and treeifies it into what the
43
+ * TOC components expect. Memoized for performance.
44
+ */
45
+ export function useTreeifiedTOC(toc) {
46
+ return useMemo(() => treeifyTOC(toc), [toc]);
47
+ }
48
+ function filterTOC({ toc, minHeadingLevel, maxHeadingLevel, }) {
49
+ function isValid(item) {
50
+ return item.level >= minHeadingLevel && item.level <= maxHeadingLevel;
51
+ }
52
+ return toc.flatMap((item) => {
53
+ const filteredChildren = filterTOC({
54
+ toc: item.children,
55
+ minHeadingLevel,
56
+ maxHeadingLevel,
57
+ });
58
+ if (isValid(item)) {
59
+ return [
60
+ {
61
+ ...item,
62
+ children: filteredChildren,
63
+ },
64
+ ];
65
+ }
66
+ return filteredChildren;
67
+ });
68
+ }
69
+ /**
70
+ * Takes a flat TOC list (from the MDX loader) and treeifies it into what the
71
+ * TOC components expect, applying the `minHeadingLevel` and `maxHeadingLevel`.
72
+ * Memoized for performance.
73
+ *
74
+ * **Important**: this is not the same as `useTreeifiedTOC(toc.filter(...))`,
75
+ * because we have to filter the TOC after it has been treeified. This is mostly
76
+ * to ensure that weird TOC structures preserve their semantics. For example, an
77
+ * h3-h2-h4 sequence should not be treeified as an "h3 > h4" hierarchy with
78
+ * min=3, max=4, but should rather be "[h3, h4]" (since the h2 heading has split
79
+ * the two headings and they are not parents)
80
+ */
81
+ export function useFilteredAndTreeifiedTOC({ toc, minHeadingLevel, maxHeadingLevel, }) {
82
+ return useMemo(() => filterTOC({ toc: treeifyTOC(toc), minHeadingLevel, maxHeadingLevel }), [toc, minHeadingLevel, maxHeadingLevel]);
83
+ }
84
+ //# sourceMappingURL=tocUtils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tocUtils.js","sourceRoot":"","sources":["../../src/utils/tocUtils.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAC,OAAO,EAAC,MAAM,OAAO,CAAC;AAU9B,SAAS,UAAU,CAAC,OAA2B;IAC7C,MAAM,QAAQ,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;QACzC,GAAG,OAAO;QACV,WAAW,EAAE,CAAC,CAAC;QACf,QAAQ,EAAE,EAAmB;KAC9B,CAAC,CAAC,CAAC;IAEJ,2EAA2E;IAC3E,8EAA8E;IAC9E,8EAA8E;IAC9E,8EAA8E;IAC9E,sCAAsC;IACtC,MAAM,iBAAiB,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;IAE5C,QAAQ,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,SAAS,EAAE,EAAE;QACnC,gEAAgE;QAChE,4DAA4D;QAC5D,MAAM,oBAAoB,GAAG,iBAAiB,CAAC,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC;QACpE,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC,GAAG,oBAAoB,CAAC,CAAC;QACrD,0DAA0D;QAC1D,iBAAiB,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC;IAC5C,CAAC,CAAC,CAAC;IAEH,MAAM,SAAS,GAAkB,EAAE,CAAC;IAEpC,6EAA6E;IAC7E,QAAQ,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;QAC3B,MAAM,EAAC,WAAW,EAAE,GAAG,IAAI,EAAC,GAAG,OAAO,CAAC;QACvC,IAAI,WAAW,IAAI,CAAC,EAAE;YACpB,QAAQ,CAAC,WAAW,CAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAC5C;aAAM;YACL,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SACtB;IACH,CAAC,CAAC,CAAC;IACH,OAAO,SAAS,CAAC;AACnB,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,eAAe,CAAC,GAAc;IAC5C,OAAO,OAAO,CAAC,GAAG,EAAE,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;AAC/C,CAAC;AAED,SAAS,SAAS,CAAC,EACjB,GAAG,EACH,eAAe,EACf,eAAe,GAKhB;IACC,SAAS,OAAO,CAAC,IAAiB;QAChC,OAAO,IAAI,CAAC,KAAK,IAAI,eAAe,IAAI,IAAI,CAAC,KAAK,IAAI,eAAe,CAAC;IACxE,CAAC;IAED,OAAO,GAAG,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;QAC1B,MAAM,gBAAgB,GAAG,SAAS,CAAC;YACjC,GAAG,EAAE,IAAI,CAAC,QAAQ;YAClB,eAAe;YACf,eAAe;SAChB,CAAC,CAAC;QACH,IAAI,OAAO,CAAC,IAAI,CAAC,EAAE;YACjB,OAAO;gBACL;oBACE,GAAG,IAAI;oBACP,QAAQ,EAAE,gBAAgB;iBAC3B;aACF,CAAC;SACH;QACD,OAAO,gBAAgB,CAAC;IAC1B,CAAC,CAAC,CAAC;AACL,CAAC;AAED;;;;;;;;;;;GAWG;AACH,MAAM,UAAU,0BAA0B,CAAC,EACzC,GAAG,EACH,eAAe,EACf,eAAe,GAKhB;IACC,OAAO,OAAO,CACZ,GAAG,EAAE,CAAC,SAAS,CAAC,EAAC,GAAG,EAAE,UAAU,CAAC,GAAG,CAAC,EAAE,eAAe,EAAE,eAAe,EAAC,CAAC,EACzE,CAAC,GAAG,EAAE,eAAe,EAAE,eAAe,CAAC,CACxC,CAAC;AACJ,CAAC"}
@@ -4,9 +4,29 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
+ /**
8
+ * Permits to obtain the url of the current page in another locale, useful to
9
+ * generate hreflang meta headers etc...
10
+ *
11
+ * @see https://developers.google.com/search/docs/advanced/crawling/localized-versions
12
+ */
7
13
  export declare function useAlternatePageUtils(): {
8
- createUrl: ({ locale, fullyQualified, }: {
14
+ /**
15
+ * Everything (pathname, base URL, etc.) is read from the context. Just tell
16
+ * it which locale to link to and it will give you the alternate link for the
17
+ * current page.
18
+ */
19
+ createUrl: ({
20
+ /** The locale name to link to. */
21
+ locale,
22
+ /**
23
+ * For hreflang SEO headers, we need it to be fully qualified (full
24
+ * protocol/domain/path...); but for locale dropdowns, using a pathname is
25
+ * good enough.
26
+ */
27
+ fullyQualified, }: {
9
28
  locale: string;
10
29
  fullyQualified: boolean;
11
30
  }) => string;
12
31
  };
32
+ //# sourceMappingURL=useAlternatePageUtils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useAlternatePageUtils.d.ts","sourceRoot":"","sources":["../../src/utils/useAlternatePageUtils.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAKH;;;;;GAKG;AACH,wBAAgB,qBAAqB,IAAI;IACvC;;;;OAIG;IACH,SAAS,EAAE,CAAC;IACV,kCAAkC;IAClC,MAAM;IACN;;;;OAIG;IACH,cAAc,GACf,EAAE;QACD,MAAM,EAAE,MAAM,CAAC;QACf,cAAc,EAAE,OAAO,CAAC;KACzB,KAAK,MAAM,CAAC;CACd,CAmCA"}
@@ -6,9 +6,12 @@
6
6
  */
7
7
  import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
8
8
  import { useLocation } from '@docusaurus/router';
9
- // Permits to obtain the url of the current page in another locale
10
- // Useful to generate hreflang meta headers etc...
11
- // See https://developers.google.com/search/docs/advanced/crawling/localized-versions
9
+ /**
10
+ * Permits to obtain the url of the current page in another locale, useful to
11
+ * generate hreflang meta headers etc...
12
+ *
13
+ * @see https://developers.google.com/search/docs/advanced/crawling/localized-versions
14
+ */
12
15
  export function useAlternatePageUtils() {
13
16
  const { siteConfig: { baseUrl, url }, i18n: { defaultLocale, currentLocale }, } = useDocusaurusContext();
14
17
  const { pathname } = useLocation();
@@ -21,9 +24,11 @@ export function useAlternatePageUtils() {
21
24
  ? `${baseUrlUnlocalized}`
22
25
  : `${baseUrlUnlocalized}${locale}/`;
23
26
  }
24
- // TODO support correct alternate url when localized site is deployed on another domain
27
+ // TODO support correct alternate url when localized site is deployed on
28
+ // another domain
25
29
  function createUrl({ locale, fullyQualified, }) {
26
30
  return `${fullyQualified ? url : ''}${getLocalizedBaseUrl(locale)}${pathnameSuffix}`;
27
31
  }
28
32
  return { createUrl };
29
33
  }
34
+ //# sourceMappingURL=useAlternatePageUtils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useAlternatePageUtils.js","sourceRoot":"","sources":["../../src/utils/useAlternatePageUtils.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,oBAAoB,MAAM,kCAAkC,CAAC;AACpE,OAAO,EAAC,WAAW,EAAC,MAAM,oBAAoB,CAAC;AAE/C;;;;;GAKG;AACH,MAAM,UAAU,qBAAqB;IAoBnC,MAAM,EACJ,UAAU,EAAE,EAAC,OAAO,EAAE,GAAG,EAAC,EAC1B,IAAI,EAAE,EAAC,aAAa,EAAE,aAAa,EAAC,GACrC,GAAG,oBAAoB,EAAE,CAAC;IAC3B,MAAM,EAAC,QAAQ,EAAC,GAAG,WAAW,EAAE,CAAC;IAEjC,MAAM,kBAAkB,GACtB,aAAa,KAAK,aAAa;QAC7B,CAAC,CAAC,OAAO;QACT,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,aAAa,GAAG,EAAE,GAAG,CAAC,CAAC;IAEjD,MAAM,cAAc,GAAG,QAAQ,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;IAErD,SAAS,mBAAmB,CAAC,MAAc;QACzC,OAAO,MAAM,KAAK,aAAa;YAC7B,CAAC,CAAC,GAAG,kBAAkB,EAAE;YACzB,CAAC,CAAC,GAAG,kBAAkB,GAAG,MAAM,GAAG,CAAC;IACxC,CAAC;IAED,wEAAwE;IACxE,iBAAiB;IACjB,SAAS,SAAS,CAAC,EACjB,MAAM,EACN,cAAc,GAIf;QACC,OAAO,GAAG,cAAc,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,GAAG,mBAAmB,CACvD,MAAM,CACP,GAAG,cAAc,EAAE,CAAC;IACvB,CAAC;IAED,OAAO,EAAC,SAAS,EAAC,CAAC;AACrB,CAAC"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ /**
8
+ * Get the pathname of current route, without the optional site baseUrl.
9
+ * - `/docs/myDoc` => `/docs/myDoc`
10
+ * - `/baseUrl/docs/myDoc` => `/docs/myDoc`
11
+ */
12
+ export declare function useLocalPathname(): string;
13
+ //# sourceMappingURL=useLocalPathname.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useLocalPathname.d.ts","sourceRoot":"","sources":["../../src/utils/useLocalPathname.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAKH;;;;GAIG;AACH,wBAAgB,gBAAgB,IAAI,MAAM,CAMzC"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ import { useLocation } from '@docusaurus/router';
8
+ import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
9
+ /**
10
+ * Get the pathname of current route, without the optional site baseUrl.
11
+ * - `/docs/myDoc` => `/docs/myDoc`
12
+ * - `/baseUrl/docs/myDoc` => `/docs/myDoc`
13
+ */
14
+ export function useLocalPathname() {
15
+ const { siteConfig: { baseUrl }, } = useDocusaurusContext();
16
+ const { pathname } = useLocation();
17
+ return pathname.replace(baseUrl, '/');
18
+ }
19
+ //# sourceMappingURL=useLocalPathname.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useLocalPathname.js","sourceRoot":"","sources":["../../src/utils/useLocalPathname.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAC,WAAW,EAAC,MAAM,oBAAoB,CAAC;AAC/C,OAAO,oBAAoB,MAAM,kCAAkC,CAAC;AAEpE;;;;GAIG;AACH,MAAM,UAAU,gBAAgB;IAC9B,MAAM,EACJ,UAAU,EAAE,EAAC,OAAO,EAAC,GACtB,GAAG,oBAAoB,EAAE,CAAC;IAC3B,MAAM,EAAC,QAAQ,EAAC,GAAG,WAAW,EAAE,CAAC;IACjC,OAAO,QAAQ,CAAC,OAAO,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;AACxC,CAAC"}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ import type { Location } from 'history';
8
+ /**
9
+ * Fires an effect when the location changes (which includes hash, query, etc.).
10
+ * Importantly, doesn't fire when there's no previous location: see
11
+ * https://github.com/facebook/docusaurus/pull/6696
12
+ */
13
+ export declare function useLocationChange(onLocationChange: (locationChangeEvent: {
14
+ location: Location;
15
+ previousLocation: Location | undefined;
16
+ }) => void): void;
17
+ //# sourceMappingURL=useLocationChange.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useLocationChange.d.ts","sourceRoot":"","sources":["../../src/utils/useLocationChange.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,SAAS,CAAC;AAGtC;;;;GAIG;AACH,wBAAgB,iBAAiB,CAC/B,gBAAgB,EAAE,CAAC,mBAAmB,EAAE;IACtC,QAAQ,EAAE,QAAQ,CAAC;IACnB,gBAAgB,EAAE,QAAQ,GAAG,SAAS,CAAC;CACxC,KAAK,IAAI,GACT,IAAI,CAkBN"}
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ import { useEffect } from 'react';
8
+ import { useLocation } from '@docusaurus/router';
9
+ import { useDynamicCallback, usePrevious } from './reactUtils';
10
+ /**
11
+ * Fires an effect when the location changes (which includes hash, query, etc.).
12
+ * Importantly, doesn't fire when there's no previous location: see
13
+ * https://github.com/facebook/docusaurus/pull/6696
14
+ */
15
+ export function useLocationChange(onLocationChange) {
16
+ const location = useLocation();
17
+ const previousLocation = usePrevious(location);
18
+ const onLocationChangeDynamic = useDynamicCallback(onLocationChange);
19
+ useEffect(() => {
20
+ if (!previousLocation) {
21
+ return;
22
+ }
23
+ if (location !== previousLocation) {
24
+ onLocationChangeDynamic({
25
+ location,
26
+ previousLocation,
27
+ });
28
+ }
29
+ }, [onLocationChangeDynamic, location, previousLocation]);
30
+ }
31
+ //# sourceMappingURL=useLocationChange.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useLocationChange.js","sourceRoot":"","sources":["../../src/utils/useLocationChange.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAC,SAAS,EAAC,MAAM,OAAO,CAAC;AAChC,OAAO,EAAC,WAAW,EAAC,MAAM,oBAAoB,CAAC;AAE/C,OAAO,EAAC,kBAAkB,EAAE,WAAW,EAAC,MAAM,cAAc,CAAC;AAE7D;;;;GAIG;AACH,MAAM,UAAU,iBAAiB,CAC/B,gBAGU;IAEV,MAAM,QAAQ,GAAG,WAAW,EAAE,CAAC;IAC/B,MAAM,gBAAgB,GAAG,WAAW,CAAC,QAAQ,CAAC,CAAC;IAE/C,MAAM,uBAAuB,GAAG,kBAAkB,CAAC,gBAAgB,CAAC,CAAC;IAErE,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,CAAC,gBAAgB,EAAE;YACrB,OAAO;SACR;QAED,IAAI,QAAQ,KAAK,gBAAgB,EAAE;YACjC,uBAAuB,CAAC;gBACtB,QAAQ;gBACR,gBAAgB;aACjB,CAAC,CAAC;SACJ;IACH,CAAC,EAAE,CAAC,uBAAuB,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC,CAAC;AAC5D,CAAC"}
@@ -4,6 +4,18 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
+ /**
8
+ * Reads the current locale and returns an interface very similar to
9
+ * `Intl.PluralRules`.
10
+ */
7
11
  export declare function usePluralForm(): {
12
+ /**
13
+ * Give it a `count` and it will select the relevant message from
14
+ * `pluralMessages`. `pluralMessages` should be separated by `|`, and in the
15
+ * order of "zero", "one", "two", "few", "many", "other". The actual selection
16
+ * is done by `Intl.PluralRules`, which tells us all plurals the locale has
17
+ * and which plural we should use for `count`.
18
+ */
8
19
  selectMessage: (count: number, pluralMessages: string) => string;
9
20
  };
21
+ //# sourceMappingURL=usePluralForm.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"usePluralForm.d.ts","sourceRoot":"","sources":["../../src/utils/usePluralForm.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAsGH;;;GAGG;AACH,wBAAgB,aAAa,IAAI;IAC/B;;;;;;OAMG;IACH,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,KAAK,MAAM,CAAC;CAClE,CAMA"}
@@ -34,36 +34,33 @@ function createLocalePluralForms(locale) {
34
34
  select: (count) => pluralRules.select(count),
35
35
  };
36
36
  }
37
- // Poor man's PluralSelector implementation, using an english fallback.
38
- // We want a lightweight, future-proof and good-enough solution.
39
- // We don't want a perfect and heavy solution.
40
- //
41
- // Docusaurus classic theme has only 2 deeply nested labels requiring complex plural rules
42
- // We don't want to use Intl + PluralRules polyfills + full ICU syntax (react-intl) just for that.
43
- //
44
- // Notes:
45
- // - 2021: 92+% Browsers support Intl.PluralRules, and support will increase in the future
46
- // - NodeJS >= 13 has full ICU support by default
47
- // - In case of "mismatch" between SSR and Browser ICU support, React keeps working!
37
+ /**
38
+ * Poor man's `PluralSelector` implementation, using an English fallback. We
39
+ * want a lightweight, future-proof and good-enough solution. We don't want a
40
+ * perfect and heavy solution.
41
+ *
42
+ * Docusaurus classic theme has only 2 deeply nested labels requiring complex
43
+ * plural rules. We don't want to use `Intl` + `PluralRules` polyfills + full
44
+ * ICU syntax (react-intl) just for that.
45
+ *
46
+ * Notes:
47
+ * - 2021: 92+% Browsers support `Intl.PluralRules`, and support will increase
48
+ * in the future
49
+ * - NodeJS >= 13 has full ICU support by default
50
+ * - In case of "mismatch" between SSR and Browser ICU support, React keeps
51
+ * working!
52
+ */
48
53
  function useLocalePluralForms() {
49
54
  const { i18n: { currentLocale }, } = useDocusaurusContext();
50
55
  return useMemo(() => {
51
- // @ts-expect-error checking Intl.PluralRules in case browser doesn't have it (e.g Safari 12-)
52
- if (Intl.PluralRules) {
53
- try {
54
- return createLocalePluralForms(currentLocale);
55
- }
56
- catch (e) {
57
- console.error(`Failed to use Intl.PluralRules for locale=${currentLocale}.
58
- Docusaurus will fallback to a default/fallback (English) Intl.PluralRules implementation.
59
- `);
60
- return EnglishPluralForms;
61
- }
56
+ try {
57
+ return createLocalePluralForms(currentLocale);
62
58
  }
63
- else {
64
- console.error(`Intl.PluralRules not available!
65
- Docusaurus will fallback to a default/fallback (English) Intl.PluralRules implementation.
66
- `);
59
+ catch (err) {
60
+ console.error(`Failed to use Intl.PluralRules for locale "${currentLocale}".
61
+ Docusaurus will fallback to the default (English) implementation.
62
+ Error: ${err.message}
63
+ `);
67
64
  return EnglishPluralForms;
68
65
  }
69
66
  }, [currentLocale]);
@@ -74,21 +71,23 @@ function selectPluralMessage(pluralMessages, count, localePluralForms) {
74
71
  if (parts.length === 1) {
75
72
  return parts[0];
76
73
  }
77
- else {
78
- if (parts.length > localePluralForms.pluralForms.length) {
79
- console.error(`For locale=${localePluralForms.locale}, a maximum of ${localePluralForms.pluralForms.length} plural forms are expected (${localePluralForms.pluralForms}), but the message contains ${parts.length} plural forms: ${pluralMessages} `);
80
- }
81
- const pluralForm = localePluralForms.select(count);
82
- const pluralFormIndex = localePluralForms.pluralForms.indexOf(pluralForm);
83
- // In case of not enough plural form messages, we take the last one (other) instead of returning undefined
84
- return parts[Math.min(pluralFormIndex, parts.length - 1)];
74
+ if (parts.length > localePluralForms.pluralForms.length) {
75
+ console.error(`For locale=${localePluralForms.locale}, a maximum of ${localePluralForms.pluralForms.length} plural forms are expected (${localePluralForms.pluralForms}), but the message contains ${parts.length}: ${pluralMessages}`);
85
76
  }
77
+ const pluralForm = localePluralForms.select(count);
78
+ const pluralFormIndex = localePluralForms.pluralForms.indexOf(pluralForm);
79
+ // In case of not enough plural form messages, we take the last one (other)
80
+ // instead of returning undefined
81
+ return parts[Math.min(pluralFormIndex, parts.length - 1)];
86
82
  }
83
+ /**
84
+ * Reads the current locale and returns an interface very similar to
85
+ * `Intl.PluralRules`.
86
+ */
87
87
  export function usePluralForm() {
88
88
  const localePluralForm = useLocalePluralForms();
89
89
  return {
90
- selectMessage: (count, pluralMessages) => {
91
- return selectPluralMessage(pluralMessages, count, localePluralForm);
92
- },
90
+ selectMessage: (count, pluralMessages) => selectPluralMessage(pluralMessages, count, localePluralForm),
93
91
  };
94
92
  }
93
+ //# sourceMappingURL=usePluralForm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"usePluralForm.js","sourceRoot":"","sources":["../../src/utils/usePluralForm.ts"],"names":[],"mappings":"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"}
@@ -1,15 +1,25 @@
1
- import { PrismTheme } from 'prism-react-renderer';
2
- import { CSSProperties } from 'react';
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ import type { PrismTheme } from 'prism-react-renderer';
8
+ import type { DeepPartial } from 'utility-types';
3
9
  export declare type DocsVersionPersistence = 'localStorage' | 'none';
4
10
  export declare type NavbarItem = {
5
11
  type?: string | undefined;
6
12
  items?: NavbarItem[];
7
13
  label?: string;
8
14
  position?: 'left' | 'right';
15
+ } & {
16
+ [key: string]: unknown;
9
17
  };
10
18
  export declare type NavbarLogo = {
11
19
  src: string;
12
20
  srcDark?: string;
21
+ width?: string | number;
22
+ height?: string | number;
13
23
  href?: string;
14
24
  target?: string;
15
25
  alt?: string;
@@ -25,12 +35,6 @@ export declare type ColorModeConfig = {
25
35
  defaultMode: 'light' | 'dark';
26
36
  disableSwitch: boolean;
27
37
  respectPrefersColorScheme: boolean;
28
- switchConfig: {
29
- darkIcon: string;
30
- darkIconStyle: CSSProperties;
31
- lightIcon: string;
32
- lightIconStyle: CSSProperties;
33
- };
34
38
  };
35
39
  export declare type AnnouncementBarConfig = {
36
40
  id: string;
@@ -43,7 +47,7 @@ export declare type PrismConfig = {
43
47
  theme?: PrismTheme;
44
48
  darkTheme?: PrismTheme;
45
49
  defaultLanguage?: string;
46
- additionalLanguages?: string[];
50
+ additionalLanguages: string[];
47
51
  };
48
52
  export declare type FooterLinkItem = {
49
53
  label?: string;
@@ -51,21 +55,35 @@ export declare type FooterLinkItem = {
51
55
  href?: string;
52
56
  html?: string;
53
57
  prependBaseUrlToHref?: string;
58
+ } & {
59
+ [key: string]: unknown;
54
60
  };
55
- export declare type FooterLinks = {
56
- title?: string;
57
- items: FooterLinkItem[];
61
+ export declare type FooterLogo = {
62
+ alt?: string;
63
+ src: string;
64
+ srcDark?: string;
65
+ width?: string | number;
66
+ height?: string | number;
67
+ href?: string;
58
68
  };
59
- export declare type Footer = {
69
+ export declare type FooterBase = {
60
70
  style: 'light' | 'dark';
61
- logo?: {
62
- alt?: string;
63
- src?: string;
64
- srcDark?: string;
65
- href?: string;
66
- };
71
+ logo?: FooterLogo;
67
72
  copyright?: string;
68
- links: FooterLinks[];
73
+ };
74
+ export declare type MultiColumnFooter = FooterBase & {
75
+ links: Array<{
76
+ title: string | null;
77
+ items: FooterLinkItem[];
78
+ }>;
79
+ };
80
+ export declare type SimpleFooter = FooterBase & {
81
+ links: FooterLinkItem[];
82
+ };
83
+ export declare type Footer = MultiColumnFooter | SimpleFooter;
84
+ export declare type TableOfContents = {
85
+ minHeadingLevel: number;
86
+ maxHeadingLevel: number;
69
87
  };
70
88
  export declare type ThemeConfig = {
71
89
  docs: {
@@ -77,7 +95,17 @@ export declare type ThemeConfig = {
77
95
  prism: PrismConfig;
78
96
  footer?: Footer;
79
97
  hideableSidebar: boolean;
80
- image: string;
81
- metadatas: Array<Record<string, string>>;
98
+ autoCollapseSidebarCategories: boolean;
99
+ image?: string;
100
+ metadata: Array<{
101
+ [key: string]: string;
102
+ }>;
103
+ sidebarCollapsible: boolean;
104
+ tableOfContents: TableOfContents;
82
105
  };
106
+ export declare type UserThemeConfig = DeepPartial<ThemeConfig>;
107
+ /**
108
+ * A convenient/more semantic way to get theme config from context.
109
+ */
83
110
  export declare function useThemeConfig(): ThemeConfig;
111
+ //# sourceMappingURL=useThemeConfig.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useThemeConfig.d.ts","sourceRoot":"","sources":["../../src/utils/useThemeConfig.ts"],"names":[],"mappings":"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"}
@@ -5,6 +5,10 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
  import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
8
+ /**
9
+ * A convenient/more semantic way to get theme config from context.
10
+ */
8
11
  export function useThemeConfig() {
9
12
  return useDocusaurusContext().siteConfig.themeConfig;
10
13
  }
14
+ //# sourceMappingURL=useThemeConfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useThemeConfig.js","sourceRoot":"","sources":["../../src/utils/useThemeConfig.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,oBAAoB,MAAM,kCAAkC,CAAC;AA0HpE;;GAEG;AACH,MAAM,UAAU,cAAc;IAC5B,OAAO,oBAAoB,EAAE,CAAC,UAAU,CAAC,WAA0B,CAAC;AACtE,CAAC"}
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@docusaurus/theme-common",
3
- "version": "2.0.0-beta.15d451942",
3
+ "version": "2.0.0-beta.18",
4
4
  "description": "Common code for Docusaurus themes.",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
7
7
  "scripts": {
8
- "build": "tsc",
9
- "watch": "tsc --watch"
8
+ "build": "node copyUntypedFiles.mjs && tsc",
9
+ "watch": "node copyUntypedFiles.mjs && tsc --watch"
10
10
  },
11
11
  "publishConfig": {
12
12
  "access": "public"
@@ -18,23 +18,28 @@
18
18
  },
19
19
  "license": "MIT",
20
20
  "dependencies": {
21
- "@docusaurus/core": "2.0.0-beta.15d451942",
22
- "@docusaurus/plugin-content-blog": "2.0.0-beta.15d451942",
23
- "@docusaurus/plugin-content-docs": "2.0.0-beta.15d451942",
24
- "@docusaurus/plugin-content-pages": "2.0.0-beta.15d451942",
25
- "@docusaurus/types": "2.0.0-beta.15d451942",
26
- "tslib": "^2.1.0"
21
+ "@docusaurus/module-type-aliases": "2.0.0-beta.18",
22
+ "@docusaurus/plugin-content-blog": "2.0.0-beta.18",
23
+ "@docusaurus/plugin-content-docs": "2.0.0-beta.18",
24
+ "@docusaurus/plugin-content-pages": "2.0.0-beta.18",
25
+ "clsx": "^1.1.1",
26
+ "parse-numeric-range": "^1.3.0",
27
+ "prism-react-renderer": "^1.3.1",
28
+ "tslib": "^2.3.1",
29
+ "utility-types": "^3.10.0"
27
30
  },
28
31
  "devDependencies": {
29
- "@docusaurus/module-type-aliases": "2.0.0-beta.15d451942"
32
+ "@docusaurus/core": "2.0.0-beta.18",
33
+ "@docusaurus/types": "2.0.0-beta.18",
34
+ "fs-extra": "^10.0.1",
35
+ "lodash": "^4.17.21"
30
36
  },
31
37
  "peerDependencies": {
32
- "prism-react-renderer": "^1.2.1",
33
38
  "react": "^16.8.4 || ^17.0.0",
34
39
  "react-dom": "^16.8.4 || ^17.0.0"
35
40
  },
36
41
  "engines": {
37
- "node": ">=12.13.0"
42
+ "node": ">=14"
38
43
  },
39
- "gitHead": "dfceae8bd3e8b42ba8fc14f1449d861046c26143"
44
+ "gitHead": "1a945d06993d53376e61bed2c942799fe07dc336"
40
45
  }