-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ui5-tabcontainer): show separators in overflow #4507
Conversation
Initial commit
Initial commit
…omponents into ui5-tabcontainer-keyboard-handling
…i5-webcomponents into ui5-tabcontainer-keyboardhandling
…bcontainer-keyboardhandling
…5-webcomponents into tc-separators-in-overflow
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
packages/main/src/TabContainer.js
Outdated
if (item._selected) { | ||
item._selected = false; | ||
} | ||
}, this); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unnecessary this binding
@@ -45,29 +45,6 @@ describe("TabContainer general interaction", () => { | |||
assert.strictEqual(await browser.$("#tabContainerIconOnly").getAttribute("media-range"), "XL", "media-range=XL"); | |||
}); | |||
|
|||
it("tests if content is scrollable when tabcontainer takes limited height by its parent", async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this test had to be deleted?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The metrics of the separators in the overflow don't match the spec.
See the VD spec for UniversalIconTabBar for the correct sizes, colors, border etc.
Show separators in overflow Co-authored-by: Konstantin Kondov <konstantin.kondov@sap.com> Co-authored-by: Teodor Taushanov <teodor.taushanov@sap.com>
Part of #2540