-
Notifications
You must be signed in to change notification settings - Fork 842
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add exports for EuiColorPalettePicker types (#3542)
* Added exports for EuiColorPalettePicker types * Adding changelog
- Loading branch information
1 parent
d0c497b
commit 0e95b75
Showing
5 changed files
with
39 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
import React, { FunctionComponent } from 'react'; | ||
|
||
import { EuiColorPalettePickerPaletteProps } from '../../../../src/components/color_picker/color_palette_picker'; | ||
import { | ||
EuiColorPalettePickerPaletteTextProps, | ||
EuiColorPalettePickerPaletteFixedProps, | ||
EuiColorPalettePickerPaletteGradientProps, | ||
} from '../../../../src/components/color_picker/color_palette_picker'; | ||
|
||
export const EuiColorPalettePickerPalette: FunctionComponent< | ||
EuiColorPalettePickerPaletteProps | ||
export const EuiColorPalettePickerPaletteText: FunctionComponent< | ||
EuiColorPalettePickerPaletteTextProps | ||
> = () => <div />; | ||
|
||
export const EuiColorPalettePickerPaletteFixed: FunctionComponent< | ||
EuiColorPalettePickerPaletteFixedProps | ||
> = () => <div />; | ||
|
||
export const EuiColorPalettePickerPaletteGradient: FunctionComponent< | ||
EuiColorPalettePickerPaletteGradientProps | ||
> = () => <div />; |
This file contains 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
This file contains 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