mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 12:31:06 +08:00
Pass alpha transparency up to the story
Fixes #802. Instead of just passing `color.hex`, also pass the alpha value.
This commit is contained in:
parent
7ef5e392ce
commit
0828155d06
@ -84,7 +84,19 @@ class ColorType extends React.Component {
|
||||
this.popover = e;
|
||||
}}
|
||||
>
|
||||
<SketchPicker color={knob.value} onChange={color => onChange(color.hex)} />
|
||||
<SketchPicker
|
||||
color={knob.value}
|
||||
onChange={color =>
|
||||
onChange(`
|
||||
rgba(
|
||||
${color.rgb.r},
|
||||
${color.rgb.g},
|
||||
${color.rgb.b},
|
||||
${color.rgb.a}
|
||||
)
|
||||
`)
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
),
|
||||
() => null
|
||||
|
Loading…
x
Reference in New Issue
Block a user