@flamingo-stack/openframe-frontend-core 0.0.79 → 0.0.80
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/components/index.cjs +1 -7
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +1 -7
- package/dist/components/index.js.map +1 -1
- package/dist/components/shared/product-release/release-detail-page.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/shared/product-release/release-detail-page.tsx +0 -10
package/dist/components/index.js
CHANGED
|
@@ -37574,7 +37574,6 @@ function ReleaseDetailPage({
|
|
|
37574
37574
|
const videoBites = release.video_bites;
|
|
37575
37575
|
const highlightVideoUrl = release.highlight_video_url;
|
|
37576
37576
|
const highlightVideoThumbnail = release.highlight_video_thumbnail;
|
|
37577
|
-
const videoSummary = release.video_summary;
|
|
37578
37577
|
const breakingChanges = release.breaking_changes;
|
|
37579
37578
|
const featuresAdded = release.features_added;
|
|
37580
37579
|
const bugFixed = release.bugs_fixed;
|
|
@@ -37657,7 +37656,6 @@ function ReleaseDetailPage({
|
|
|
37657
37656
|
highlightVideoUrl,
|
|
37658
37657
|
highlightVideoThumbnail,
|
|
37659
37658
|
title: releaseTitle,
|
|
37660
|
-
videoSummary,
|
|
37661
37659
|
videoBites,
|
|
37662
37660
|
bitesTitle: "Video Clips",
|
|
37663
37661
|
filterPublishedBites: true
|
|
@@ -37668,11 +37666,7 @@ function ReleaseDetailPage({
|
|
|
37668
37666
|
return videoId ? /* @__PURE__ */ jsx2018(YouTubeEmbed, { videoId, title: `${releaseTitle} - Video`, showTitle: false, showMeta: true }) : null;
|
|
37669
37667
|
})(),
|
|
37670
37668
|
!youtubeUrl && mainVideoUrl && /* @__PURE__ */ jsx2018("div", { className: "flex justify-center w-full", children: /* @__PURE__ */ jsx2018("div", { className: "w-full max-w-3xl", children: /* @__PURE__ */ jsx2018(VideoPlayer, { url: mainVideoUrl, controls: true, muted: false }) }) }),
|
|
37671
|
-
highlightVideoUrl && /* @__PURE__ */ jsx2018("div", { className: "flex justify-center w-full", children: /* @__PURE__ */ jsx2018("div", { className: "w-full max-w-3xl", children: /* @__PURE__ */ jsx2018(VideoPlayer, { url: highlightVideoUrl, poster: highlightVideoThumbnail, controls: true, muted: false }) }) })
|
|
37672
|
-
videoSummary && /* @__PURE__ */ jsxs1503("div", { className: "flex flex-col gap-6 w-full min-w-0", children: [
|
|
37673
|
-
/* @__PURE__ */ jsx2018("h2", { className: "text-h1 tracking-[-1.12px] text-ods-text-primary break-words", children: "Summary" }),
|
|
37674
|
-
/* @__PURE__ */ jsx2018("div", { className: "text-h4 text-ods-text-primary break-words overflow-hidden", children: /* @__PURE__ */ jsx2018(MarkdownRenderer, { content: videoSummary }) })
|
|
37675
|
-
] })
|
|
37669
|
+
highlightVideoUrl && /* @__PURE__ */ jsx2018("div", { className: "flex justify-center w-full", children: /* @__PURE__ */ jsx2018("div", { className: "w-full max-w-3xl", children: /* @__PURE__ */ jsx2018(VideoPlayer, { url: highlightVideoUrl, poster: highlightVideoThumbnail, controls: true, muted: false }) }) })
|
|
37676
37670
|
] }),
|
|
37677
37671
|
releaseContent && /* @__PURE__ */ jsx2018("div", { className: "text-h4 text-ods-text-primary", children: /* @__PURE__ */ jsx2018(MarkdownRenderer, { content: releaseContent }) }),
|
|
37678
37672
|
hasBreakingChanges && /* @__PURE__ */ jsx2018(Card, { className: "border-red-500 bg-red-500/10", children: /* @__PURE__ */ jsx2018(CardContent, { className: "p-6", children: /* @__PURE__ */ jsxs1503("div", { className: "flex items-center gap-3", children: [
|