From 7ef3f513cbd73da697d170c6e6e01616e2cf03a9 Mon Sep 17 00:00:00 2001 From: Maryia Lapata Date: Thu, 30 May 2019 17:43:30 +0300 Subject: [PATCH] Add missing TS definition for EuiFieldText (#1977) * Add missing TS definition for EuiFieldText * Update changelog * Update CHANGELOG.md --- 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 6878c6a8be2..f49a3860691 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## [`master`](https://github.com/elastic/eui/tree/master) +- Added missing TypeScript definition for `EuiFieldText`'s `compressed` prop ([#1977](https://github.com/elastic/eui/pull/1977)) - Converted `EuiTableRowCellCheckbox` to TS ([#1964](https://github.com/elastic/eui/pull/1964)) - Updated `caniuse-lite` version resolution ([#1970](https://github.com/elastic/eui/pull/1970)) - Added a webpack directive for naming icon chunks ([#1944](https://github.com/elastic/eui/pull/1944)) diff --git a/src/components/form/field_text/index.d.ts b/src/components/form/field_text/index.d.ts index a2bd7aece79..fef1427a9e3 100644 --- a/src/components/form/field_text/index.d.ts +++ b/src/components/form/field_text/index.d.ts @@ -17,6 +17,7 @@ declare module '@elastic/eui' { isLoading?: boolean; prepend?: React.ReactNode; append?: React.ReactNode; + compressed?: boolean; } export const EuiFieldText: FunctionComponent<