antd-management-fast-framework 2.11.158 → 2.11.159
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,14 @@
|
|
|
1
|
+
export class ElasticityExtraColorPicker extends React.PureComponent<any, any, any> {
|
|
2
|
+
constructor(props: any);
|
|
3
|
+
constructor(props: any, context: any);
|
|
4
|
+
render(): React.JSX.Element;
|
|
5
|
+
}
|
|
6
|
+
export namespace ElasticityExtraColorPicker {
|
|
7
|
+
namespace defaultProps {
|
|
8
|
+
let flag: string;
|
|
9
|
+
let value: string;
|
|
10
|
+
let disabled: boolean;
|
|
11
|
+
let onChange: null;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
import React from 'react';
|
|
@@ -22,4 +22,13 @@ export function buildExtraButton({ flag, confirm, title, placement, okText, canc
|
|
|
22
22
|
style?: null | undefined;
|
|
23
23
|
showIcon?: boolean | undefined;
|
|
24
24
|
}): React.JSX.Element;
|
|
25
|
+
/**
|
|
26
|
+
* 构建按钮
|
|
27
|
+
*/
|
|
28
|
+
export function buildExtraColorPicker({ flag, value, disabled, onChange, }: {
|
|
29
|
+
flag?: any[] | undefined;
|
|
30
|
+
value?: null | undefined;
|
|
31
|
+
disabled?: boolean | undefined;
|
|
32
|
+
onChange?: null | undefined;
|
|
33
|
+
}): React.JSX.Element;
|
|
25
34
|
import React from 'react';
|