From af7ee18992e9dfb7cc78d2878570defc6016cd5e Mon Sep 17 00:00:00 2001 From: uboness Date: Tue, 3 Apr 2018 21:16:12 +0200 Subject: [PATCH] Fixed a typo in the flex TypeScript definition file --- CHANGELOG.md | 2 +- src/components/flex/index.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 328f3c25016..0a8f00da4f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ - Visual fix for the focus state of disabled `EuiButton` ([603](https://github.com/elastic/eui/pull/603)) - `EuiSelect` can pass any node as a value rather than just a string ([603](https://github.com/elastic/eui/pull/603)) - +- Fixed a typo in the flex TypeScript definition ([629](https://github.com/elastic/eui/pull/629)) # [`0.0.37`](https://github.com/elastic/eui/tree/v0.0.37) diff --git a/src/components/flex/index.d.ts b/src/components/flex/index.d.ts index 5a12c596900..a255474a910 100644 --- a/src/components/flex/index.d.ts +++ b/src/components/flex/index.d.ts @@ -29,7 +29,7 @@ declare module '@elastic/eui' { export type FlexGroupGutterSize = 'none' | 'xs' | 's' | 'm' | 'l' | 'xl'; export type FlexGroupAlignItems = - | 'strech' + | 'stretch' | 'flexStart' | 'flexEnd' | 'center';