antd-management-fast-component 2.6.141 → 2.6.142
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,23 @@
|
|
|
1
|
+
export class ColorPickerItem 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 ColorPickerItem {
|
|
7
|
+
namespace defaultProps {
|
|
8
|
+
let label: string;
|
|
9
|
+
let name: string;
|
|
10
|
+
let required: boolean;
|
|
11
|
+
let helper: null;
|
|
12
|
+
let innerProps: {};
|
|
13
|
+
let canOperate: boolean;
|
|
14
|
+
let formItemLayout: {};
|
|
15
|
+
let hidden: boolean;
|
|
16
|
+
let addonBefore: null;
|
|
17
|
+
let addonBeforeStyle: null;
|
|
18
|
+
let addonAfter: null;
|
|
19
|
+
let addonAfterStyle: null;
|
|
20
|
+
let onChange: null;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
import React from 'react';
|
|
@@ -1,40 +1,42 @@
|
|
|
1
1
|
export namespace FormExtra {
|
|
2
|
+
export { ActionItem };
|
|
3
|
+
export { ColorPickerItem };
|
|
2
4
|
export { ComponentItem };
|
|
3
5
|
export { DatePickerItem };
|
|
4
6
|
export { DisplayItem };
|
|
5
7
|
export { InputItem };
|
|
8
|
+
export { InputNumberItem };
|
|
6
9
|
export { Item };
|
|
10
|
+
export { NowTimeItem };
|
|
11
|
+
export { OnlyShowDatetimeItem };
|
|
7
12
|
export { OnlyShowInputItem };
|
|
13
|
+
export { OnlyShowTextareaItem };
|
|
14
|
+
export { PasswordItem };
|
|
15
|
+
export { RadioItem };
|
|
8
16
|
export { SelectItem };
|
|
9
|
-
export { SyntaxHighlighterItem };
|
|
10
17
|
export { SwitchItem };
|
|
18
|
+
export { SyntaxHighlighterItem };
|
|
11
19
|
export { TextAreaItem };
|
|
12
|
-
export { TimePickerItem };
|
|
13
|
-
export { InputNumberItem };
|
|
14
|
-
export { RadioItem };
|
|
15
20
|
export { TextItem };
|
|
16
|
-
export {
|
|
17
|
-
export { OnlyShowTextareaItem };
|
|
18
|
-
export { NowTimeItem };
|
|
19
|
-
export { OnlyShowDatetimeItem };
|
|
20
|
-
export { ActionItem };
|
|
21
|
+
export { TimePickerItem };
|
|
21
22
|
}
|
|
23
|
+
import { ActionItem } from './ActionItem';
|
|
24
|
+
import { ColorPickerItem } from './ColorPickerItem';
|
|
22
25
|
import { ComponentItem } from './ComponentItem';
|
|
23
26
|
import { DatePickerItem } from './DatePickerItem';
|
|
24
27
|
import { DisplayItem } from './DisplayItem';
|
|
25
28
|
import { InputItem } from './InputItem';
|
|
29
|
+
import { InputNumberItem } from './InputNumberItem';
|
|
26
30
|
import { Item } from './Item';
|
|
31
|
+
import { NowTimeItem } from './NowTimeItem';
|
|
32
|
+
import { OnlyShowDatetimeItem } from './OnlyShowDatetimeItem';
|
|
27
33
|
import { OnlyShowInputItem } from './OnlyShowInputItem';
|
|
34
|
+
import { OnlyShowTextareaItem } from './OnlyShowTextareaItem';
|
|
35
|
+
import { PasswordItem } from './PasswordItem';
|
|
36
|
+
import { RadioItem } from './RadioItem';
|
|
28
37
|
import { SelectItem } from './SelectItem';
|
|
29
|
-
import { SyntaxHighlighterItem } from './SyntaxHighlighterItem';
|
|
30
38
|
import { SwitchItem } from './SwitchItem';
|
|
39
|
+
import { SyntaxHighlighterItem } from './SyntaxHighlighterItem';
|
|
31
40
|
import { TextAreaItem } from './TextAreaItem';
|
|
32
|
-
import { TimePickerItem } from './TimePickerItem';
|
|
33
|
-
import { InputNumberItem } from './InputNumberItem';
|
|
34
|
-
import { RadioItem } from './RadioItem';
|
|
35
41
|
import { TextItem } from './TextItem';
|
|
36
|
-
import {
|
|
37
|
-
import { OnlyShowTextareaItem } from './OnlyShowTextareaItem';
|
|
38
|
-
import { NowTimeItem } from './NowTimeItem';
|
|
39
|
-
import { OnlyShowDatetimeItem } from './OnlyShowDatetimeItem';
|
|
40
|
-
import { ActionItem } from './ActionItem';
|
|
42
|
+
import { TimePickerItem } from './TimePickerItem';
|
|
@@ -5,3 +5,10 @@
|
|
|
5
5
|
* @returns
|
|
6
6
|
*/
|
|
7
7
|
export function convertOptionOrRadioData(o: any, index: any): any;
|
|
8
|
+
/**
|
|
9
|
+
* convert option or radio data
|
|
10
|
+
* @param {*} o data source
|
|
11
|
+
* @param {*} index data index
|
|
12
|
+
* @returns
|
|
13
|
+
*/
|
|
14
|
+
export function convertOptionOrRadioData1(o: any, index: any): any;
|
|
@@ -129,6 +129,11 @@ export function buildRadioGroup({ value, defaultValue, style, button, buttonStyl
|
|
|
129
129
|
adjustListDataCallback?: null | undefined;
|
|
130
130
|
onChange?: null | undefined;
|
|
131
131
|
}): React.JSX.Element;
|
|
132
|
+
export function buildColorPicker({ value, disabled, onChange, }: {
|
|
133
|
+
value?: null | undefined;
|
|
134
|
+
disabled?: boolean | undefined;
|
|
135
|
+
onChange?: null | undefined;
|
|
136
|
+
}): React.JSX.Element;
|
|
132
137
|
/**
|
|
133
138
|
* 构建彩色文本
|
|
134
139
|
*/
|