Cee Chen

Results 302 comments of Cee Chen

@1Copenut would this issue be something you're interested in picking up / taking on instead of letting it close out?

Moving this back to draft while it's still in progress!

FYI, this is a potentially high risk/high impact set of dependency / subdependency updates - we semi-frequently contribute back to react-focus-on and it's many sub-dependencies to get the fixes/functionality we...

Re-opening - this is still valid and on my "would like to do" list sometime this year

Super sorry about the slow response!! I've been swamped and totally procrastinated on this. It would be awesome to get some help on the unit tests, if anyone's around. For...

@alexwizp doesn't this reduce the trigger area of the tooltip content? 🫤 This feels like a usability net loss for mouse users, just IMO

Ahh interesting 😬 If we already use that pattern in Kibana, and it's the better a11y experience, I guess we might as well update EUI's docs to match - but...

I think my personal vote would be a new API called `nameTooltipContent` and `nameTooltipProps` that tells EuiBasicTable to conditionally wrap the column header in a tooltip. Example usage: ```ts const...

Great point about the icon and truncation! How about `nameTooltipContent`, `nameTooltipIcon`, and `nameTooltipProps`? ```ts const columns = [ { field: 'github', name: 'Github', nameTooltipIcon: 'questionInCircle', nameTooltipContent: 'Their mascot is Octokitty',...

🤦 Oh or actually a single object of multiple optional configurations would be even better: ```ts const columns = [ { field: 'github', name: 'Github', nameTooltip: { content: 'Their mascot...