feat(ui5-hero-banner): introduce Hero Banner component#13230
Open
tsanislavgatev wants to merge 51 commits into
Open
feat(ui5-hero-banner): introduce Hero Banner component#13230tsanislavgatev wants to merge 51 commits into
tsanislavgatev wants to merge 51 commits into
Conversation
Collaborator
|
🚀 Deployed on https://pr-13230--ui5-webcomponents-preview.netlify.app |
unazko
reviewed
May 4, 2026
|
|
||
| export default function BannerTemplate(this: Banner) { | ||
| return ( | ||
| <div |
Contributor
There was a problem hiding this comment.
We need role="banner" here: https://www.w3.org/TR/wai-aria-1.2/#banner
unazko
reviewed
May 4, 2026
| date-text="Thursday, March 12, 2026" | ||
| layout="FullWidth"> | ||
|
|
||
| <div style="display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center;"> |
Contributor
There was a problem hiding this comment.
We need a "group" role for this div container.
unazko
reviewed
May 4, 2026
| <div> | ||
| <div style="font-family: var(--sapFontHeaderFamily); font-size: var(--sapFontHeader2Size); font-weight: bold; color: var(--_ui5_banner_text_color);">Hello, Henry</div> | ||
| </div> | ||
| <div style="display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center;"> |
Contributor
There was a problem hiding this comment.
"group" role for the container.
…revert the background image property
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR introduces a brand-new
ui5-hero-bannercomponent for Fiori pages.ui5-hero-bannerprovides a flexible, responsive banner area for product home pages, including:Motivation
Many product home pages need a reusable “hero” section that can combine:
This PR adds a dedicated component for that use case, with responsive behavior and clear placement rules for header/actions/content.
Public API
Properties
headerTextMain headline of the banner.
overlineTextSmaller contextual text shown above the headline.
columnsRatioControls how content is split when both content areas are used:
Equal(1:1)FirstWider(2:1)If not set, content behaves as single-column.
actionsPlacementControls where actions are rendered:
TopEnd(top/right-end area in header)BottomStart(below header text, left/start aligned)headerBlockPlacementControls vertical placement of the header block:
TopBottom(Bottom mode follows defined layout conditions for predictable behavior.)
Slots
Default slot (
startContent)slotattribute.endContentcolumnsRatiois set.actionsactionsPlacementand related layout rules.