easy-email-extensions 4.1.14 → 4.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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;