From bce557cc2dc767628bed6aac87301a1be7c5431b Mon Sep 17 00:00:00 2001 From: rxliuli Date: Tue, 4 Nov 2025 05:03:50 +0800 Subject: init commit --- .../jet/item/LargeHeroBreakoutItem.svelte | 268 +++++++++++++++++++++ 1 file changed, 268 insertions(+) create mode 100644 src/components/jet/item/LargeHeroBreakoutItem.svelte (limited to 'src/components/jet/item/LargeHeroBreakoutItem.svelte') diff --git a/src/components/jet/item/LargeHeroBreakoutItem.svelte b/src/components/jet/item/LargeHeroBreakoutItem.svelte new file mode 100644 index 0000000..d07eec8 --- /dev/null +++ b/src/components/jet/item/LargeHeroBreakoutItem.svelte @@ -0,0 +1,268 @@ + + + + +
+ {#if video && $mediaQueries !== 'xsmall' && !canUseRTLArtwork} +
+ +
+ +
+ {#if item.details?.badge} + +

{item.details.badge}

+
+ {/if} + + {#if item.details.title} + +

{@html sanitizeHtml(item.details.title)}

+
+ {/if} + + {#if item.details.description} + +

{@html sanitizeHtml(item.details.description)}

+
+ {/if} + + {#if isSome(action) && isFlowAction(action)} + + {action.title} + + + {/if} + + {#if shouldShowCollectionIcons} +
    + {#each collectionIcons.slice(0, 6) as collectionIcon} +
  • + +
  • + {/each} +
+ {/if} +
+ + + + -- cgit v1.2.3