UNPKG
@antv/s2-react-components
Version:
latest (2.1.2)
next (1.1.0-next.1)
2.1.2
2.1.1
2.1.0
2.0.1
2.0.0
1.1.0-next.1
1.0.1-next.1
1.0.0-next.1
React components for S2
s2.antv.antgroup.com
antvis/S2
@antv/s2-react-components
/
lib
/
components
/
theme-panel
/
color-picker-panel
/
interface.d.ts
15 lines
(14 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
interface
ColorPickerPanelProps
{
/** * 自定义主色系颜色 */
primaryColor
?:
string
;
/** * 历史自定义颜色记录上限 */
maxHistoryColorCount
?:
number
;
/** * 颜色选择回调 */
onChange
?:
(
color
:
string
) =>
void
; }