hyperbook 0.68.1 → 0.68.3
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/dist/assets/client.js +3 -2
- package/dist/index.js +18 -6
- package/package.json +3 -3
package/dist/assets/client.js
CHANGED
|
@@ -280,8 +280,9 @@ var hyperbook = (function () {
|
|
|
280
280
|
const urlParams = new URLSearchParams(window.location.search);
|
|
281
281
|
const standaloneParam = urlParams.get('standalone') === 'true';
|
|
282
282
|
|
|
283
|
-
// Check if page is inside an iframe
|
|
284
|
-
const
|
|
283
|
+
// Check if page is inside an iframe (but not VSCode webview)
|
|
284
|
+
const isVSCodeWebview = typeof acquireVsCodeApi !== 'undefined';
|
|
285
|
+
const isInIframe = window.self !== window.top && !isVSCodeWebview;
|
|
285
286
|
|
|
286
287
|
if (standaloneParam || isInIframe) {
|
|
287
288
|
const mainGrid = document.querySelector('.main-grid');
|
package/dist/index.js
CHANGED
|
@@ -63649,6 +63649,22 @@ async function runBuild(root, rootProject, basePath, prefix, out, filter) {
|
|
|
63649
63649
|
...n1,
|
|
63650
63650
|
...pagesAndSections,
|
|
63651
63651
|
};
|
|
63652
|
+
// If current is null (glossary page not in pageList), create it from file frontmatter
|
|
63653
|
+
if (!navigation.current && file.markdown.data) {
|
|
63654
|
+
navigation.current = {
|
|
63655
|
+
name: file.markdown.data.name || file.name,
|
|
63656
|
+
href: file.path.href || undefined,
|
|
63657
|
+
path: file.path,
|
|
63658
|
+
scripts: file.markdown.data.scripts,
|
|
63659
|
+
styles: file.markdown.data.styles,
|
|
63660
|
+
description: file.markdown.data.description,
|
|
63661
|
+
keywords: file.markdown.data.keywords,
|
|
63662
|
+
lang: file.markdown.data.lang,
|
|
63663
|
+
qrcode: file.markdown.data.qrcode,
|
|
63664
|
+
toc: file.markdown.data.toc,
|
|
63665
|
+
layout: file.markdown.data.layout,
|
|
63666
|
+
};
|
|
63667
|
+
}
|
|
63652
63668
|
const ctx = {
|
|
63653
63669
|
...baseCtx,
|
|
63654
63670
|
navigation,
|
|
@@ -168694,11 +168710,7 @@ var remarkImage_default = (ctx) => () => {
|
|
|
168694
168710
|
tagName: "img",
|
|
168695
168711
|
properties: {
|
|
168696
168712
|
...figureProps,
|
|
168697
|
-
src:
|
|
168698
|
-
node3.url,
|
|
168699
|
-
"public",
|
|
168700
|
-
ctx.navigation.current || void 0
|
|
168701
|
-
),
|
|
168713
|
+
src: node3.url,
|
|
168702
168714
|
alt: node3.alt,
|
|
168703
168715
|
onclick: `hyperbook.toggleLightbox(this)`
|
|
168704
168716
|
},
|
|
@@ -183494,7 +183506,7 @@ module.exports = /*#__PURE__*/JSON.parse('{"application/1d-interleaved-parityfec
|
|
|
183494
183506
|
/***/ ((module) => {
|
|
183495
183507
|
|
|
183496
183508
|
"use strict";
|
|
183497
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"hyperbook","version":"0.68.
|
|
183509
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"hyperbook","version":"0.68.3","author":"Mike Barkmin","homepage":"https://github.com/openpatch/hyperbook#readme","license":"MIT","bin":{"hyperbook":"./dist/index.js"},"files":["dist"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/openpatch/hyperbook.git","directory":"packages/hyperbook"},"bugs":{"url":"https://github.com/openpatch/hyperbook/issues"},"engines":{"node":">=12.22.0"},"scripts":{"version":"pnpm build","lint":"tsc --noEmit","dev":"ncc build ./index.ts -w -o dist/","build":"rimraf dist && ncc build ./index.ts -o ./dist/ --no-cache --no-source-map-register --external favicons --external sharp && node postbuild.mjs"},"dependencies":{"favicons":"^7.2.0"},"devDependencies":{"@hyperbook/fs":"workspace:*","@hyperbook/markdown":"workspace:*","@hyperbook/types":"workspace:*","@pnpm/exportable-manifest":"1000.0.6","@types/archiver":"6.0.3","@types/async-retry":"1.4.9","@types/cross-spawn":"6.0.6","@types/lunr":"^2.3.7","@types/prompts":"2.4.9","@types/tar":"6.1.13","@types/ws":"^8.5.14","@vercel/ncc":"0.38.3","archiver":"7.0.1","async-retry":"1.3.3","chalk":"5.4.1","chokidar":"4.0.3","commander":"12.1.0","cpy":"11.1.0","cross-spawn":"7.0.6","domutils":"^3.2.2","extract-zip":"^2.0.1","got":"12.6.0","htmlparser2":"^10.0.0","lunr":"^2.3.9","lunr-languages":"^1.14.0","mime":"^4.0.6","prompts":"2.4.2","rimraf":"6.0.1","tar":"7.4.3","update-check":"1.5.4","ws":"^8.18.0"}}');
|
|
183498
183510
|
|
|
183499
183511
|
/***/ })
|
|
183500
183512
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hyperbook",
|
|
3
|
-
"version": "0.68.
|
|
3
|
+
"version": "0.68.3",
|
|
4
4
|
"author": "Mike Barkmin",
|
|
5
5
|
"homepage": "https://github.com/openpatch/hyperbook#readme",
|
|
6
6
|
"license": "MIT",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"update-check": "1.5.4",
|
|
58
58
|
"ws": "^8.18.0",
|
|
59
59
|
"@hyperbook/fs": "0.20.0",
|
|
60
|
-
"@hyperbook/
|
|
61
|
-
"@hyperbook/
|
|
60
|
+
"@hyperbook/types": "0.18.0",
|
|
61
|
+
"@hyperbook/markdown": "0.42.2"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"version": "pnpm build",
|