antd-management-fast-component 2.6.105 → 2.6.108
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.
|
@@ -1,12 +1,16 @@
|
|
|
1
|
-
export function buildDropdownMenu({ label, placement, icon, size, list, dataConvert, onClick: onClickCallback, innerProps: innerProperties, }: {
|
|
1
|
+
export function buildDropdownMenu({ label, placement, icon, size, type, list, dataConvert, onClick: onClickCallback, innerProps: innerProperties, extra, extraStyle, color, }: {
|
|
2
2
|
label?: string | undefined;
|
|
3
3
|
placement?: string | undefined;
|
|
4
4
|
icon?: null | undefined;
|
|
5
5
|
size?: string | undefined;
|
|
6
|
+
type?: string | undefined;
|
|
6
7
|
list?: any[] | undefined;
|
|
7
8
|
dataConvert?: null | undefined;
|
|
8
9
|
onClick: any;
|
|
9
10
|
innerProps?: null | undefined;
|
|
11
|
+
extra?: null | undefined;
|
|
12
|
+
extraStyle?: null | undefined;
|
|
13
|
+
color?: null | undefined;
|
|
10
14
|
}): React.JSX.Element;
|
|
11
15
|
export function buildMenu({ handleData: r, handleMenuClick, items, }: {
|
|
12
16
|
handleData: any;
|
|
@@ -8,6 +8,7 @@ export namespace iconBuilder {
|
|
|
8
8
|
export function add(properties?: null): React.JSX.Element;
|
|
9
9
|
export function plus(properties?: null): React.JSX.Element;
|
|
10
10
|
export function addCircle(properties?: null, mode?: string): React.JSX.Element;
|
|
11
|
+
export function branches(properties?: null): React.JSX.Element;
|
|
11
12
|
export function plusCircle(properties?: null, mode?: string): React.JSX.Element;
|
|
12
13
|
export function customerService(properties?: null): React.JSX.Element;
|
|
13
14
|
export function comment(properties?: null): React.JSX.Element;
|
|
@@ -22,7 +23,9 @@ export namespace iconBuilder {
|
|
|
22
23
|
export function clock(properties?: null, mode?: string): React.JSX.Element;
|
|
23
24
|
export function close(properties?: null, mode?: string): React.JSX.Element;
|
|
24
25
|
export function closeCircle(properties?: null, mode?: string): React.JSX.Element;
|
|
26
|
+
export function control(properties?: null, mode?: string): React.JSX.Element;
|
|
25
27
|
export function copy(properties?: null, mode?: string): React.JSX.Element;
|
|
28
|
+
export function copyright(properties?: null): React.JSX.Element;
|
|
26
29
|
export function cluster(properties?: null): React.JSX.Element;
|
|
27
30
|
export function eye(properties?: null, mode?: string): React.JSX.Element;
|
|
28
31
|
export function _export(properties?: null): React.JSX.Element;
|
|
@@ -79,7 +82,8 @@ export namespace iconBuilder {
|
|
|
79
82
|
export function redo(properties?: null): React.JSX.Element;
|
|
80
83
|
export function form(properties?: null): React.JSX.Element;
|
|
81
84
|
export function warning(properties?: null, mode?: string): React.JSX.Element;
|
|
82
|
-
export function
|
|
85
|
+
export function questionCircle(properties?: null, mode?: string): React.JSX.Element;
|
|
86
|
+
export function question(properties?: null): React.JSX.Element;
|
|
83
87
|
export function logout(properties?: null): React.JSX.Element;
|
|
84
88
|
export function login(properties?: null): React.JSX.Element;
|
|
85
89
|
export function arrowUp(properties?: null): React.JSX.Element;
|
|
@@ -133,6 +137,8 @@ export namespace iconBuilder {
|
|
|
133
137
|
export function verticalAlignMiddle(properties?: null): React.JSX.Element;
|
|
134
138
|
export function caretUp(properties?: null, mode?: string): React.JSX.Element;
|
|
135
139
|
export function caretDown(properties?: null, mode?: string): React.JSX.Element;
|
|
140
|
+
export function caretLeft(properties?: null, mode?: string): React.JSX.Element;
|
|
141
|
+
export function caretRight(properties?: null, mode?: string): React.JSX.Element;
|
|
136
142
|
export function retweet(properties?: null): React.JSX.Element;
|
|
137
143
|
export function printer(properties?: null): React.JSX.Element;
|
|
138
144
|
export function exclamationCircle(properties?: null, mode?: string): React.JSX.Element;
|