Conversation
7548f5d to
3ad952a
Compare
…exGroup` and `EuiFlexItem`
|
Synthetics tests were also failing on |
|
Pinging @elastic/eui-team (EUI) |
|
Pinging @elastic/obs-ux-infra_services-team (Team:obs-ux-infra_services) |
|
Pinging @elastic/obs-ux-management-team (Team:obs-ux-management) |
Heenawter
left a comment
There was a problem hiding this comment.
Canvas snapshot changes LGTM
kdelemme
left a comment
There was a problem hiding this comment.
ux management code change LGTM!
tonyghiani
left a comment
There was a problem hiding this comment.
logs_explorer changes LGTM
ElenaStoeva
left a comment
There was a problem hiding this comment.
ILM test snapshot changes LGTM
| { | ||
| type: 'click', | ||
| customSelector: 'button[title="@timestamp"]', | ||
| type: 'input', |
There was a problem hiding this comment.
Was this change intentional? How comes click on a button changes into input? 🤔
There was a problem hiding this comment.
It was intentional. I'm not entirely sure why it was needed only here, but generally speaking, we prefer using keyboard navigation when selecting combobox items.
Previously, it was a click on an option with a specified name; now, it's typing the option name into the search field and selecting the first option, which is the exact match. This way should be more reliable no matter what order the items are displayed in, too.
tomsonpl
left a comment
There was a problem hiding this comment.
Defend Workflows LGTM 👍
jughosta
left a comment
There was a problem hiding this comment.
Data Discovery changes LGTM 👍
|
The failing synthetics tests are also failing on |
|
@elasticmachine merge upstream |
💔 Build Failed
Failed CI StepsMetrics [docs]Async chunks
Canvas Sharable Runtime
Page load bundle
History
To update your PR or re-run it, just comment with: cc @tkajtoch |
This reverts commit e714cfa.
This reverts commit afbb257.
v94.2.1-backport.0⏩v94.3.0Questions? Please see our Kibana upgrade FAQ.
v94.3.0launchglyph forEuiIcon(#7670)EuiComboBox'soptionsto support including tooltip details for selectable options. UsetoolTipContentto render tooltip information, andtoolTipPropsto optionally customize the tooltip rendering behavior (#7700)EuiIcon: (#7727)error(now an outlined version instead of filled)tokenMetricCountertokenMetricGaugeEuiIcon: (#7727)tokenDimensionclickLeftclickRightclockCountererrorFilled(the previouserrorglyph design)warningFilledBug fixes
EuiComboBoxwithisLoadingin mobile views (#7700)EuiDataGridthat prevented content text alignment styles to apply (#7720)EuiFlexGroupandEuiFlexItemrefprop typing to support refs of the same type as the passedcomponenttype and allowdisplayNameto be defined for easy component naming when using component wrappers likestyled()(#7724)Most of the code changes you'll see in this PR are caused by the recent EuiFlex* changes making it generic. This, unfortunately, is something that
styled()doesn't always like. I replaced the failing usages ofstyled(EuiFlexGroup)andstyled(EuiFlexItem)to usecomponentand other native EuiFlex* props, resulting in the same output but being better typed.We plan to add more props to EuiFlex* components giving developers control over properties like
flex-growandflex-shring, and reducing the need for writing any custom CSS when using these components. This should reduce the number ofstyled()wrappers needed even further