@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
|
@@ -38160,7 +38160,6 @@ function ReleaseDetailPage({
|
|
|
38160
38160
|
const videoBites = release.video_bites;
|
|
38161
38161
|
const highlightVideoUrl = release.highlight_video_url;
|
|
38162
38162
|
const highlightVideoThumbnail = release.highlight_video_thumbnail;
|
|
38163
|
-
const videoSummary = release.video_summary;
|
|
38164
38163
|
const breakingChanges = release.breaking_changes;
|
|
38165
38164
|
const featuresAdded = release.features_added;
|
|
38166
38165
|
const bugFixed = release.bugs_fixed;
|
|
@@ -38243,7 +38242,6 @@ function ReleaseDetailPage({
|
|
|
38243
38242
|
highlightVideoUrl,
|
|
38244
38243
|
highlightVideoThumbnail,
|
|
38245
38244
|
title: releaseTitle,
|
|
38246
|
-
videoSummary,
|
|
38247
38245
|
videoBites,
|
|
38248
38246
|
bitesTitle: "Video Clips",
|
|
38249
38247
|
filterPublishedBites: true
|
|
@@ -38254,11 +38252,7 @@ function ReleaseDetailPage({
|
|
|
38254
38252
|
return videoId ? /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(YouTubeEmbed, { videoId, title: `${releaseTitle} - Video`, showTitle: false, showMeta: true }) : null;
|
|
38255
38253
|
})(),
|
|
38256
38254
|
!youtubeUrl && mainVideoUrl && /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "flex justify-center w-full", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "w-full max-w-3xl", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(VideoPlayer, { url: mainVideoUrl, controls: true, muted: false }) }) }),
|
|
38257
|
-
highlightVideoUrl && /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "flex justify-center w-full", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "w-full max-w-3xl", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(VideoPlayer, { url: highlightVideoUrl, poster: highlightVideoThumbnail, controls: true, muted: false }) }) })
|
|
38258
|
-
videoSummary && /* @__PURE__ */ (0, import_jsx_runtime2018.jsxs)("div", { className: "flex flex-col gap-6 w-full min-w-0", children: [
|
|
38259
|
-
/* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("h2", { className: "text-h1 tracking-[-1.12px] text-ods-text-primary break-words", children: "Summary" }),
|
|
38260
|
-
/* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "text-h4 text-ods-text-primary break-words overflow-hidden", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(MarkdownRenderer, { content: videoSummary }) })
|
|
38261
|
-
] })
|
|
38255
|
+
highlightVideoUrl && /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "flex justify-center w-full", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "w-full max-w-3xl", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(VideoPlayer, { url: highlightVideoUrl, poster: highlightVideoThumbnail, controls: true, muted: false }) }) })
|
|
38262
38256
|
] }),
|
|
38263
38257
|
releaseContent && /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)("div", { className: "text-h4 text-ods-text-primary", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(MarkdownRenderer, { content: releaseContent }) }),
|
|
38264
38258
|
hasBreakingChanges && /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(Card, { className: "border-red-500 bg-red-500/10", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsx)(CardContent, { className: "p-6", children: /* @__PURE__ */ (0, import_jsx_runtime2018.jsxs)("div", { className: "flex items-center gap-3", children: [
|