-
Notifications
You must be signed in to change notification settings - Fork 271
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
[Input]: Safari ValueStateMessage causes blur #7960
Comments
@SAP/ui5-webcomponents-topic-rd The Popover has some issues with positioning: https://sap.github.io/ui5-webcomponents/playground/?path=/story/main-popover--basic |
Possible regression: #7870 |
Hello, the issue looks more general as the popover is not visible or wrongly positioned in all the inputs on Safari- you can check also ui5-combobox and ui5-select in Storybook: https://sap.github.io/ui5-webcomponents/nightly/playground/?path=/docs/main-combo-box--docs. That's why I increase the priority to high. Best regards, |
Hello @JarrettChan can you retest, we have merged and released a fix with 1.20.1 |
Hi @ilhan007, Typing into the storybook Input can obviously show the issue as it shows error state after typing and blurs. |
Snippet to reproduce this with a popover only: <input id="opener" />
<ui5-popover id="popup" _disable-initial-focus></ui5-popover>
<script>
const opener = document.getElementById("opener");
opener.addEventListener("focusin", event => {
document.getElementById("popup").showAt(opener, true);
});
opener.addEventListener("blur", event => {
console.log("=========== BLUR =========");
});
</script> |
Hello @JarrettChan and @MapTo0 as I was not able to reproduce this issue can you confirm that it is still reproducible on your side? Best Regards |
I am not able to reproduce it as well. Maybe Apple did some changes @JarrettChan how about you? |
After feedback from @MapTo0 and @JarrettChan I am closing this issue as not reproducible |
Bug Description
When the Input ValueStateMessage is triggered by focusing the Input, it causes a blur and the ValueStateMessage is still visible.
This interrupts the usage as the Input is no longer focused.
The input still can be used because the ValueStateMessage is still open after the blur.
Affected Component
ui5-input
Expected Behaviour
ValueStateMessage should not cause blur when shown.
Isolated Example
No response
Steps to Reproduce
Observe: ValueStateMessage is visible, but focus was blurred
Observe: ValueStateMessage is visible and focus is in input
Log Output, Stack Trace or Screenshots
No response
Priority
Medium
UI5 Web Components Version
1.18.0, 1.19.1, 1.20.0
Browser
Safari
Operating System
No response
Additional Context
No response
Organization
SuccessFactors
Declaration
The text was updated successfully, but these errors were encountered: