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.
- package/lib/components/Form/ColorPicker/ColorPickerContent.d.ts +5 -0
- package/lib/components/Form/ColorPicker/index.d.ts +11 -0
- package/lib/components/Form/{ColorPicker.d.ts → ColorPicker2.d.ts} +0 -0
- package/lib/index2.js +8495 -12494
- package/lib/index2.js.map +1 -1
- package/lib/style.css +1 -1
- package/package.json +5 -3
@@ -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;
|
File without changes
|