From a0a1b1f6277f724d09aea64325a22fa912321af8 Mon Sep 17 00:00:00 2001 From: Matt Bargar Date: Thu, 14 Feb 2019 19:50:52 -0500 Subject: [PATCH] Add append prop to EuiFieldText (#1567) Add append prop to EuiFieldText --- CHANGELOG.md | 1 + src/components/form/field_text/index.d.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0111a1b8f72..e70c89c247e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## [`master`](https://github.com/elastic/eui/tree/master) +- Added `append` prop to `EuiFieldText` ([#1567](https://github.com/elastic/eui/pull/1567)) - Adjusted set of Elastic Logos in `EuiIcon` to look better in dark mode. ([#1462](https://github.com/elastic/eui/pull/1562)) - Added `isCopyable` prop to `EuiCodeBlock` ([#1556](https://github.com/elastic/eui/pull/1556)) - Added optional `Snippet` tab to docs and renamed demo tabs ([#1556](https://github.com/elastic/eui/pull/1556)) diff --git a/src/components/form/field_text/index.d.ts b/src/components/form/field_text/index.d.ts index 8da08c61490..8ce171ce80e 100644 --- a/src/components/form/field_text/index.d.ts +++ b/src/components/form/field_text/index.d.ts @@ -16,6 +16,7 @@ declare module '@elastic/eui' { fullWidth?: boolean; isLoading?: boolean; prepend?: React.ReactNode; + append?: React.ReactNode; } export const EuiFieldText: SFC<