@tomehq/theme 0.2.7 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/dist/chunk-3A2LPGUL.js +1991 -0
- package/dist/chunk-3I2QTWTW.js +1948 -0
- package/dist/chunk-45M5UIAB.js +2110 -0
- package/dist/chunk-462AGU3S.js +1959 -0
- package/dist/chunk-DPKZBFQP.js +1777 -0
- package/dist/chunk-GDQIBNX5.js +1962 -0
- package/dist/chunk-INUMUXN5.js +2095 -0
- package/dist/chunk-NOZBIES7.js +1948 -0
- package/dist/chunk-Q7PYTVW3.js +1771 -0
- package/dist/chunk-RDF25WB2.js +2085 -0
- package/dist/chunk-S4ZH5F56.js +1949 -0
- package/dist/chunk-SRD7NJHS.js +1949 -0
- package/dist/chunk-TQDWPSTO.js +2087 -0
- package/dist/chunk-TTRXRPP6.js +1941 -0
- package/dist/chunk-VUT2FMSI.js +1937 -0
- package/dist/chunk-VVCC5JHK.js +1949 -0
- package/dist/chunk-W732TVBK.js +1944 -0
- package/dist/entry.js +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/src/Shell.test.tsx +72 -0
- package/src/Shell.tsx +204 -16
- package/src/entry-helpers.test.ts +316 -0
- package/src/entry-helpers.ts +103 -0
- package/src/entry.tsx +152 -69
- package/src/routing.test.ts +124 -0
- package/src/routing.ts +45 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @tomehq/theme
|
|
2
2
|
|
|
3
|
+
## 0.2.8
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Replace hash-based SPA routing with History API (pushState + popstate + pathname parsing)
|
|
8
|
+
- Content link interception: in-content markdown links navigate via SPA instead of full page reload
|
|
9
|
+
- Banner link internal navigation support
|
|
10
|
+
- Algolia search basePath stripping for correct page ID extraction
|
|
11
|
+
- Extract routing helpers (`pathnameToPageId`, `pageIdToPath`) into testable `routing.ts` module
|
|
12
|
+
- Extract entry helpers (`loadPage`, `computeEditUrl`, `resolveInitialPageId`, `detectCurrentVersion`) into testable `entry-helpers.ts` module
|
|
13
|
+
- Pass `basePath` prop through Shell for correct URL construction
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @tomehq/core@0.2.8
|
|
16
|
+
- @tomehq/components@0.2.8
|
|
17
|
+
|
|
3
18
|
## 0.2.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|