feat(EuiSuperUpdateButton): support custom button labels via children prop#7576
Merged
tkajtoch merged 8 commits intoelastic:mainfrom Mar 18, 2024
Merged
Conversation
…g default button labels
…ildren` customization
mgadewoll
approved these changes
Mar 13, 2024
Contributor
mgadewoll
left a comment
There was a problem hiding this comment.
🚢 🐈⬛ LGTM! Nice update to move related tests to RTL 👍
src/components/date_picker/super_date_picker/super_update_button.tsx
Outdated
Show resolved
Hide resolved
cee-chen
reviewed
Mar 13, 2024
src/components/date_picker/super_date_picker/super_update_button.test.tsx
Outdated
Show resolved
Hide resolved
cee-chen
reviewed
Mar 13, 2024
cee-chen
reviewed
Mar 13, 2024
src/components/date_picker/super_date_picker/super_update_button.test.tsx
Outdated
Show resolved
Hide resolved
cee-chen
reviewed
Mar 13, 2024
Contributor
There was a problem hiding this comment.
++ Lene's comment, super appreciate the conversion from Enzyme+snapshots to RTL and specific assertions! 🎉
cee-chen
reviewed
Mar 13, 2024
| * when the data needs updating (the `needsUpdate` prop) | ||
| * or is loading (the `isLoading` prop). | ||
| */ | ||
| children?: ReactNode; |
Contributor
There was a problem hiding this comment.
Really like this detail of adding props docs for children, thanks for going the extra mile!
…ntent conditionals
Co-authored-by: Cee Chen <549407+cee-chen@users.noreply.github.com>
cee-chen
reviewed
Mar 13, 2024
b9a707b to
5ccf144
Compare
|
Preview staging links for this PR:
|
Collaborator
💚 Build Succeeded
History
cc @tkajtoch |
cee-chen
approved these changes
Mar 18, 2024
cee-chen
added a commit
to elastic/kibana
that referenced
this pull request
Mar 22, 2024
`v93.3.0`⏩ `v93.4.0` --- ## [`v93.4.0`](https://github.com/elastic/eui/releases/v93.4.0) - Added the following properties to `EuiButtonGroup`'s `options` configs: `toolTipContent`, `toolTipProps`, and `title`. These new properties allow wrapping buttons in `EuiToolTips`, and additionally customizing or disabling the native browser `title` tooltip. ([#7461](elastic/eui#7461)) - Enhanced `EuiResizeObserver` and `useResizeObserver`'s performance to not trigger page reflows on resize event ([#7575](elastic/eui#7575)) - Updated `EuiSuperUpdateButton` to support custom button text via an optional `children` prop ([#7576](elastic/eui#7576)) **Bug fixes** - Fixed `EuiFlyout` to not repeatedly remove/add a body class on resize ([#7462](elastic/eui#7462)) - Fixed `EuiToast` title text to wrap instead of overflowing out of the container ([#7568](elastic/eui#7568)) - Fixed a visual bug with `EuiHeaderBreadcrumbs` with popovers ([#7580](elastic/eui#7580)) **Deprecations** - Deprecated `euiPalettePositive` and `euiPaletteNegative` in favour of a more culturally inclusive `euiPaletteGreen` and `euiPaletteRed` ([#7570](elastic/eui#7570)) - Deprecated all charts theme exports in favor of `@elastic/charts` exports: ([#7572](elastic/eui#7572)) - Deprecated `EUI_CHARTS_THEME_<DARK|LIGHT>` in favor of `<DARK|LIGHT>_THEME` from `@elastic/charts`. ([#7572](elastic/eui#7572)) - Deprecated `EUI_SPARKLINE_THEME_PARTIAL` in favor of `useSparklineOverrides` theme from the kibana `charts` plugin `theme` service. **Accessibility** - Updated `EuiModal` to set an `aria-modal` attribute and a default `dialog` role ([#7564](elastic/eui#7564)) - Updated `EuiConfirmModal` to set a default `alertdialog` role ([#7564](elastic/eui#7564)) - Fixed `EuiModal` and `EuiConfirmModal` to properly trap Safari+VoiceOver's virtual cursor ([#7564](elastic/eui#7564))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This adds support for custom button labels by passing the
childrenprop toEuiSuperUpdateButtonand converts existing enzyme tests to React Testing Library.QA
General checklist
@defaultif default values are missing) and playground toggles