@flamingo-stack/openframe-frontend-core 0.0.245 → 0.0.247
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/{chunk-MP5HOP7N.cjs → chunk-3JRA55FZ.cjs} +9 -9
- package/dist/{chunk-MP5HOP7N.cjs.map → chunk-3JRA55FZ.cjs.map} +1 -1
- package/dist/{chunk-7ZHFCEJH.js → chunk-DB4HW42V.js} +2 -2
- package/dist/{chunk-CZITXP77.cjs → chunk-ESADULCN.cjs} +7 -4
- package/dist/chunk-ESADULCN.cjs.map +1 -0
- package/dist/{chunk-BKPS6M2F.cjs → chunk-GMFDA36U.cjs} +10 -10
- package/dist/{chunk-BKPS6M2F.cjs.map → chunk-GMFDA36U.cjs.map} +1 -1
- package/dist/{chunk-JJV3XGCY.js → chunk-LXDA67PW.js} +2 -2
- package/dist/{chunk-FRRMXLU5.js → chunk-NZST65RV.js} +7 -4
- package/dist/chunk-NZST65RV.js.map +1 -0
- package/dist/{chunk-DUZBTUXF.cjs → chunk-P2G5X6AW.cjs} +25 -25
- package/dist/{chunk-DUZBTUXF.cjs.map → chunk-P2G5X6AW.cjs.map} +1 -1
- package/dist/{chunk-ML2ROCYA.cjs → chunk-PINAV6VJ.cjs} +29 -29
- package/dist/{chunk-ML2ROCYA.cjs.map → chunk-PINAV6VJ.cjs.map} +1 -1
- package/dist/{chunk-SEVJT2HP.js → chunk-QRGODKEG.js} +2 -2
- package/dist/{chunk-GIDH6UL4.js → chunk-VI7GW7PE.js} +2 -2
- package/dist/{chunk-VXP553WT.cjs → chunk-YJVDQZ5Y.cjs} +7 -7
- package/dist/{chunk-VXP553WT.cjs.map → chunk-YJVDQZ5Y.cjs.map} +1 -1
- package/dist/{chunk-V35PZSUA.js → chunk-ZXECERJ4.js} +2 -2
- package/dist/components/chat/entity-cards/onboarding-guide-card.d.ts.map +1 -1
- package/dist/components/chat/index.cjs +2 -2
- package/dist/components/chat/index.js +1 -1
- package/dist/components/contact/index.cjs +3 -3
- package/dist/components/contact/index.js +2 -2
- package/dist/components/features/index.cjs +2 -2
- package/dist/components/features/index.js +1 -1
- package/dist/components/index.cjs +75 -75
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +6 -6
- package/dist/components/index.js.map +1 -1
- package/dist/components/navigation/index.cjs +2 -2
- package/dist/components/navigation/index.js +1 -1
- package/dist/components/onboarding-guides/index.cjs +23 -23
- package/dist/components/onboarding-guides/index.cjs.map +1 -1
- package/dist/components/onboarding-guides/index.js +5 -5
- package/dist/components/onboarding-guides/index.js.map +1 -1
- package/dist/components/onboarding-guides/onboarding-guide-detail-view.d.ts.map +1 -1
- package/dist/components/related-content/index.cjs +3 -3
- package/dist/components/related-content/index.js +2 -2
- package/dist/components/shared/product-release/release-detail-page.d.ts.map +1 -1
- package/dist/components/tickets/index.cjs +64 -64
- package/dist/components/tickets/index.js +4 -4
- package/dist/components/ui/index.cjs +2 -2
- package/dist/components/ui/index.js +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/chat/entity-cards/onboarding-guide-card.tsx +18 -3
- package/src/components/onboarding-guides/onboarding-guide-detail-view.tsx +7 -3
- package/src/components/shared/product-release/release-detail-page.tsx +6 -3
- package/dist/chunk-CZITXP77.cjs.map +0 -1
- package/dist/chunk-FRRMXLU5.js.map +0 -1
- /package/dist/{chunk-7ZHFCEJH.js.map → chunk-DB4HW42V.js.map} +0 -0
- /package/dist/{chunk-JJV3XGCY.js.map → chunk-LXDA67PW.js.map} +0 -0
- /package/dist/{chunk-SEVJT2HP.js.map → chunk-QRGODKEG.js.map} +0 -0
- /package/dist/{chunk-GIDH6UL4.js.map → chunk-VI7GW7PE.js.map} +0 -0
- /package/dist/{chunk-V35PZSUA.js.map → chunk-ZXECERJ4.js.map} +0 -0
|
@@ -4,7 +4,10 @@ import { useState, useEffect, ComponentType } from 'react';
|
|
|
4
4
|
import Link from '../../../embed-shims/next-link';
|
|
5
5
|
import { useRouter } from '../../../embed-shims/next-navigation';
|
|
6
6
|
import { Card, CardContent } from '../../ui/card';
|
|
7
|
-
|
|
7
|
+
// PageShell (wide) — match the related-content/FAQ rail container the hub
|
|
8
|
+
// renders below this view (was ArticleDetailLayout, 1280px — narrower than
|
|
9
|
+
// the rail, see hub detail-container alignment decision 2026-06-10).
|
|
10
|
+
import { PageShell } from '../../layout/article-detail-layout';
|
|
8
11
|
import { BackButton } from '../../layout/back-button';
|
|
9
12
|
import { ReleaseChangelogSection } from '../../ui/release-changelog-section';
|
|
10
13
|
import { EntityTagBadges } from '../../features/entity-tag-badges';
|
|
@@ -220,7 +223,7 @@ export function ReleaseDetailPage({
|
|
|
220
223
|
const improvements = release.improvements as ChangelogEntry[] | undefined;
|
|
221
224
|
|
|
222
225
|
return (
|
|
223
|
-
<
|
|
226
|
+
<PageShell>
|
|
224
227
|
{/* Back button — desktop-only, matches DevSectionPage / LegalDocumentPage
|
|
225
228
|
(TitleBlock renders the same `hidden md:inline-flex` BackButton). */}
|
|
226
229
|
{showBackButton && (
|
|
@@ -590,6 +593,6 @@ export function ReleaseDetailPage({
|
|
|
590
593
|
initialIndex={galleryIndex}
|
|
591
594
|
/>
|
|
592
595
|
)}
|
|
593
|
-
</
|
|
596
|
+
</PageShell>
|
|
594
597
|
);
|
|
595
598
|
}
|