-
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
type(Color): fix type export issue. (#140)
- Loading branch information
1 parent
e992882
commit 07f8485
Showing
2 changed files
with
27 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,27 @@ | ||
export * from '@uiw/color-convert'; | ||
|
||
export { default as Alpha } from '@uiw/react-color-alpha'; | ||
export { default as Block } from '@uiw/react-color-block'; | ||
export { default as Compact } from '@uiw/react-color-compact'; | ||
export { default as Chrome } from '@uiw/react-color-chrome'; | ||
export { default as Colorful } from '@uiw/react-color-colorful'; | ||
export { default as Circle } from '@uiw/react-color-circle'; | ||
export { default as EditableInput } from '@uiw/react-color-editable-input'; | ||
export { default as EditableInputRGBA } from '@uiw/react-color-editable-input-rgba'; | ||
export { default as EditableInputHSLA } from '@uiw/react-color-editable-input-hsla'; | ||
export { default as Hue } from '@uiw/react-color-hue'; | ||
export { default as Github } from '@uiw/react-color-github'; | ||
export { default as Material } from '@uiw/react-color-material'; | ||
export { default as Saturation } from '@uiw/react-color-saturation'; | ||
export { default as ShadeSlider } from '@uiw/react-color-shade-slider'; | ||
export { default as Slider } from '@uiw/react-color-slider'; | ||
export { default as Sketch } from '@uiw/react-color-sketch'; | ||
export { default as Swatch } from '@uiw/react-color-swatch'; | ||
export { default as Wheel } from '@uiw/react-color-wheel'; | ||
export { default as Alpha, type AlphaProps, type PointerProps, BACKGROUND_IMG, Pointer } from '@uiw/react-color-alpha'; | ||
export { default as Block, type BlockProps } from '@uiw/react-color-block'; | ||
export { default as Chrome, type ChromeInputType, type ChromeProps } from '@uiw/react-color-chrome'; | ||
export { default as Circle, type CircleProps } from '@uiw/react-color-circle'; | ||
export { default as Colorful, type ColorfulProps } from '@uiw/react-color-colorful'; | ||
export { default as Compact, type CompactProps } from '@uiw/react-color-compact'; | ||
export { default as EditableInput, type EditableInputProps } from '@uiw/react-color-editable-input'; | ||
export { default as EditableInputRGBA, type EditableInputRGBAProps } from '@uiw/react-color-editable-input-rgba'; | ||
export { default as EditableInputHSLA, type EditableInputHSLAProps } from '@uiw/react-color-editable-input-hsla'; | ||
export { default as Github, type GithubProps, type GithubPlacement, type GithubRectRenderProps } from '@uiw/react-color-github'; | ||
export { default as Hue, type HueProps } from '@uiw/react-color-hue'; | ||
export { default as Material, type MaterialProps } from '@uiw/react-color-material'; | ||
export { | ||
default as colorNameToHex, | ||
type ColorKeywords, | ||
colorKeywords, | ||
baseNamed, | ||
colorKeywordsBase, | ||
} from '@uiw/react-color-name'; | ||
export { default as Saturation, type SaturationProps } from '@uiw/react-color-saturation'; | ||
export { default as ShadeSlider, type ShadeSliderProps } from '@uiw/react-color-shade-slider'; | ||
export { default as Sketch, type SketchProps } from '@uiw/react-color-sketch'; | ||
export { default as Slider, type SliderProps } from '@uiw/react-color-slider'; | ||
export { default as Swatch, type SwatchProps, type SwatchPresetColor, type SwatchRectRenderProps } from '@uiw/react-color-swatch'; | ||
export { default as Wheel, type WheelProps } from '@uiw/react-color-wheel'; |
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