easy-email-extensions 4.1.12 → 4.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ export interface ColorPickerContentProps {
2
+ onChange: (val: string) => void;
3
+ value: string;
4
+ }
5
+ export declare function ColorPickerContent(props: ColorPickerContentProps): JSX.Element;
@@ -0,0 +1,11 @@
1
+ import { PopoverProps } from '@arco-design/web-react';
2
+ import React from 'react';
3
+ export interface ColorPickerProps extends PopoverProps {
4
+ onChange?: (val: string) => void;
5
+ value?: string;
6
+ label: string;
7
+ children?: React.ReactNode;
8
+ showInput?: boolean;
9
+ fixed?: boolean;
10
+ }
11
+ export declare function ColorPicker(props: ColorPickerProps): JSX.Element;