eui
eui copied to clipboard
Elastic UI Framework 🙌
I'm using `EuiDualRange` for the new [range slider control](https://github.com/elastic/kibana/pull/125584) in Dashboard. In our use case we wanted to have the field name displayed as the title in the popover, help...
Right now [`isDomainSecure`](https://github.com/elastic/eui/blob/main/src/services/url.ts#L14) is hard coded to flag elastic.co & subdomains as secure for the purpose of [adding rel=noreferrer](https://github.com/elastic/eui/blob/main/src/services/security/get_secure_rel_for_target.ts#L29-L31) to non-elastic links. Instead of the hard-coded value, this should be...
When I think about the concept of expanding content, especially in regards to a data grid, I think of similar concepts to spreadsheets which usually just visually increase the size...
While implementing a resizable layout in Discover using `EuiResizableContainer`, we ran into some conflicts with `react-reverse-portal`. We were able to implement a workaround, but it involved setting up our own...
When writing an `` which is supposed to expand to the full width of the container you need to add `fullWidth` to every form group, row, and input in the...
A query bar filter like this: ``` { type: 'field_value_selection', field: 'type', name: 'Type', multiSelect: 'and', cache: 10000, options }, ``` Generates query bar language like this: ``` type:elasticsearch type:logstash...
It is possible to supply a custom `options.fieldValuesToQuery` to `Query.toESQuery`, however much of the types required to work with that function are not exported from `@elastic/eui`: Specifically, ``` import {...
When you currently click on a column header sorting link, the selected new sorting is added to the actual sorting. It can be assumed that most of the times users...
## Summary Currently, there is no way to define a placeholder for the `EuiSuperSelect` component. If you pass in a placeholder value it gets placed in the `rest` param. Then,...
Related: https://github.com/elastic/kibana/issues/140122 `EuiProvider` ships with a default `theme` value for convenience, but the implicit fallback can cause problems when a component renders outside of the context tree. Missing a `themeMode`...