antd-management-fast-component 2.6.103 → 2.6.105
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.
|
@@ -36,7 +36,7 @@ export function buildButton({ confirm, title, placement, okText, cancelText, typ
|
|
|
36
36
|
style?: null | undefined;
|
|
37
37
|
showIcon?: boolean | undefined;
|
|
38
38
|
}): React.JSX.Element;
|
|
39
|
-
export function buildDropdown({ key, ellipsisMode, confirm, title, placement, okText, cancelText, type, size, text, icon, handleData, arrow, disabled, hidden, handleButtonClick, handleMenuClick, items, itemPanelTitle, processing, iconProcessing, }: {
|
|
39
|
+
export function buildDropdown({ key, ellipsisMode, confirm, title, placement, okText, cancelText, type, size, text, icon, handleData, arrow, disabled, hidden, handleButtonClick, handleMenuClick, items, itemPanelTitle, itemPanelZIndex, processing, iconProcessing, }: {
|
|
40
40
|
key?: null | undefined;
|
|
41
41
|
ellipsisMode?: boolean | undefined;
|
|
42
42
|
confirm?: boolean | undefined;
|
|
@@ -56,6 +56,7 @@ export function buildDropdown({ key, ellipsisMode, confirm, title, placement, ok
|
|
|
56
56
|
handleMenuClick?: (() => void) | undefined;
|
|
57
57
|
items?: any[] | undefined;
|
|
58
58
|
itemPanelTitle?: string | undefined;
|
|
59
|
+
itemPanelZIndex?: null | undefined;
|
|
59
60
|
processing?: boolean | undefined;
|
|
60
61
|
iconProcessing?: React.JSX.Element | undefined;
|
|
61
62
|
}): React.JSX.Element;
|
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
export class ScrollFacadeBox extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
+
getStyle: () => any;
|
|
4
5
|
render(): React.JSX.Element;
|
|
5
6
|
}
|
|
6
7
|
export namespace ScrollFacadeBox {
|
|
7
8
|
namespace defaultProps {
|
|
9
|
+
let fill: boolean;
|
|
10
|
+
let paddingTop: number;
|
|
11
|
+
let paddingLeft: number;
|
|
12
|
+
let paddingRight: number;
|
|
13
|
+
let paddingBottom: number;
|
|
8
14
|
let style: null;
|
|
9
15
|
}
|
|
10
16
|
}
|