antd-management-fast-framework 1.12.53 → 1.12.61
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.
- package/es/customComponents/FunctionComponent/index.d.ts +14 -8
- package/es/customComponents/FunctionComponent/index.js +702 -561
- package/es/customComponents/FunctionComponent/index.less +16 -3
- package/es/customComponents/IconInfo/index.js +1 -1
- package/es/utils/constants.d.ts +2 -2
- package/es/utils/constants.js +5 -5
- package/es/utils/tools.js +3 -0
- package/package.json +15 -13
- package/es/customComponents/Entrance/EntranceContext.d.ts +0 -2
- package/es/customComponents/Entrance/EntranceContext.js +0 -12
- package/es/customComponents/Entrance/EntranceItem.d.ts +0 -2
- package/es/customComponents/Entrance/EntranceItem.js +0 -236
- package/es/customComponents/Entrance/EntranceSubmit.d.ts +0 -5
- package/es/customComponents/Entrance/EntranceSubmit.js +0 -48
- package/es/customComponents/Entrance/EntranceTab.d.ts +0 -2
- package/es/customComponents/Entrance/EntranceTab.js +0 -54
- package/es/customComponents/Entrance/index.d.ts +0 -12
- package/es/customComponents/Entrance/index.js +0 -144
- package/es/customComponents/Entrance/index.less +0 -55
- package/es/customComponents/Entrance/map.d.ts +0 -71
- package/es/customComponents/Entrance/map.js +0 -79
|
@@ -19,7 +19,7 @@ export function buildButton({ key: keySource, type: typeSource, size: sizeSource
|
|
|
19
19
|
style?: null | undefined;
|
|
20
20
|
showIcon?: boolean | undefined;
|
|
21
21
|
}): JSX.Element | null;
|
|
22
|
-
export function buildDropdownButton({ key, tooltip, placement, type: typeSource, size, text, icon, handleData: r, arrow, disabled, hidden, confirm, handleButtonClick, handleMenuClick,
|
|
22
|
+
export function buildDropdownButton({ key, tooltip, placement, type: typeSource, size, text, icon, handleData: r, arrow, disabled, hidden, confirm, handleButtonClick, handleMenuClick, items, itemPanelTitle, }: {
|
|
23
23
|
key?: string | undefined;
|
|
24
24
|
tooltip?: boolean | undefined;
|
|
25
25
|
placement?: string | undefined;
|
|
@@ -34,9 +34,10 @@ export function buildDropdownButton({ key, tooltip, placement, type: typeSource,
|
|
|
34
34
|
confirm?: boolean | undefined;
|
|
35
35
|
handleButtonClick?: null | undefined;
|
|
36
36
|
handleMenuClick?: (() => void) | undefined;
|
|
37
|
-
|
|
37
|
+
items?: any[] | undefined;
|
|
38
|
+
itemPanelTitle?: string | undefined;
|
|
38
39
|
}): JSX.Element | null;
|
|
39
|
-
export function buildDropdownEllipsis({ key, tooltip, type: typeSource, size, icon, arrow, disabled, hidden, handleData: r, handleMenuClick,
|
|
40
|
+
export function buildDropdownEllipsis({ key, tooltip, type: typeSource, size, icon, arrow, disabled, hidden, handleData: r, handleMenuClick, items, itemPanelTitle, }: {
|
|
40
41
|
key?: string | undefined;
|
|
41
42
|
tooltip?: {
|
|
42
43
|
placement: string;
|
|
@@ -50,9 +51,10 @@ export function buildDropdownEllipsis({ key, tooltip, type: typeSource, size, ic
|
|
|
50
51
|
hidden?: boolean | undefined;
|
|
51
52
|
handleData: any;
|
|
52
53
|
handleMenuClick?: (() => void) | undefined;
|
|
53
|
-
|
|
54
|
+
items?: any[] | undefined;
|
|
55
|
+
itemPanelTitle?: string | undefined;
|
|
54
56
|
}): JSX.Element | null;
|
|
55
|
-
export function buildDropdown({ key, tooltip: tooltipSource, type: typeSource, placement: placementDropdown, size, text, icon, handleData: r, arrow, disabled, hidden, handleButtonClick, handleMenuClick,
|
|
57
|
+
export function buildDropdown({ key, tooltip: tooltipSource, type: typeSource, placement: placementDropdown, size, text, icon, handleData: r, arrow, disabled, hidden, handleButtonClick, handleMenuClick, items, itemPanelTitle, confirm, processing, iconProcessing, }: {
|
|
56
58
|
key?: string | undefined;
|
|
57
59
|
tooltip?: boolean | undefined;
|
|
58
60
|
type?: string | undefined;
|
|
@@ -66,15 +68,16 @@ export function buildDropdown({ key, tooltip: tooltipSource, type: typeSource, p
|
|
|
66
68
|
hidden?: boolean | undefined;
|
|
67
69
|
handleButtonClick?: null | undefined;
|
|
68
70
|
handleMenuClick?: (() => void) | undefined;
|
|
69
|
-
|
|
71
|
+
items?: any[] | undefined;
|
|
72
|
+
itemPanelTitle?: string | undefined;
|
|
70
73
|
confirm?: boolean | undefined;
|
|
71
74
|
processing?: boolean | undefined;
|
|
72
75
|
iconProcessing?: JSX.Element | undefined;
|
|
73
76
|
}, ...args: any[]): JSX.Element | null;
|
|
74
|
-
export function buildMenu({ handleData: r, handleMenuClick,
|
|
77
|
+
export function buildMenu({ handleData: r, handleMenuClick, items, }: {
|
|
75
78
|
handleData: any;
|
|
76
79
|
handleMenuClick?: (() => void) | undefined;
|
|
77
|
-
|
|
80
|
+
items?: any[] | undefined;
|
|
78
81
|
}): JSX.Element;
|
|
79
82
|
export function buildTree(props: any): JSX.Element;
|
|
80
83
|
export function buildAlert(props: any): JSX.Element;
|
|
@@ -112,6 +115,9 @@ export function buildListViewItemExtra({ align, index, imageUrl, emptyImageUrl,
|
|
|
112
115
|
export function buildTagList({ list }: {
|
|
113
116
|
list?: any[] | undefined;
|
|
114
117
|
}): JSX.Element | null;
|
|
118
|
+
export function buildIconInfoList({ list }: {
|
|
119
|
+
list?: any[] | undefined;
|
|
120
|
+
}): JSX.Element[];
|
|
115
121
|
export function buildListViewItemActionSelect({ index, confirm, selectData, selectCallback, }: {
|
|
116
122
|
index: any;
|
|
117
123
|
confirm?: boolean | undefined;
|