-
Notifications
You must be signed in to change notification settings - Fork 273
feat(ui5-carousel): add property hide-page-indicator #3268
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
Conversation
} | ||
|
||
_onmouseover() { | ||
this._visibleNavigationArrows = true; | ||
if (this.arrowsPlacement === CarouselArrowsPlacement.Content) { | ||
this._visibleNavigationArrows = true; |
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.
there is a property "hideNavigationArrows", is it considered here?
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.
It was deleted by #3228
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.
Yes. The check for hideNavigationArrows
happens during rendering. At this point in execution, it is established that arrowsPlacement
will not change.
You stated that "the arrows are always visible when arrowsPlacement is set to Navigation". |
The property |
The page indicator can now be hidden by setting the property hide-page-indicator on the ui5-carousel element. - the arrows are always visible when `arrowsPlacement` is set to `Navigation` - fixed typos - changed height reduction of the carousel viewport to 1rem
0f04d8e
to
837b315
Compare
The page indicator can now be hidden by setting the property
hide-page-indicator on the ui5-carousel element.
arrowsPlacement
is set toNavigation
Closes: #3158