doui-react 2.0.6 → 2.0.7
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/api/component/global-style.js +1 -1
- package/es/form/component/utils.d.ts +13 -13
- package/es/grid/component/pagination.d.ts +12 -12
- package/es/icon/hook/index.d.ts +95 -95
- package/es/open-modal/component/modal.js +5 -15
- package/es/open-modal/style/index.js +1 -1
- package/es/open-modal/style/wrap.js +1 -1
- package/es/radio/component/abstract-box.d.ts +37 -37
- package/es/table/component/table.js +3 -2
- package/es/tabs/component/utils.d.ts +6 -6
- package/es/tooltip/component/index.d.ts +13 -14
- package/lib/api/component/global-style.js +1 -1
- package/lib/form/component/utils.d.ts +13 -13
- package/lib/grid/component/pagination.d.ts +12 -12
- package/lib/icon/hook/index.d.ts +95 -95
- package/lib/open-modal/component/modal.js +3 -13
- package/lib/open-modal/style/index.js +1 -1
- package/lib/open-modal/style/wrap.js +1 -1
- package/lib/radio/component/abstract-box.d.ts +37 -37
- package/lib/table/component/table.js +2 -1
- package/lib/tabs/component/utils.d.ts +6 -6
- package/lib/tooltip/component/index.d.ts +13 -14
- package/package.json +1 -1
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { getPopupContainer } from "../../api";
|
|
3
2
|
import { TooltipProps } from "..";
|
|
4
3
|
export declare const tooltipOverlayClassName: string;
|
|
5
4
|
export declare function getTooltipProps(props: TooltipProps): {
|
|
6
5
|
color?: string | undefined;
|
|
7
6
|
title?: import("react").ReactNode | import("antd/es/_util/getRenderPropValue").RenderFunction;
|
|
8
7
|
overlay?: import("react").ReactNode | import("antd/es/_util/getRenderPropValue").RenderFunction;
|
|
9
|
-
styles?: Partial<Record<"
|
|
10
|
-
classNames: Partial<Record<"
|
|
8
|
+
styles?: Partial<Record<"root" | "body", import("react").CSSProperties>> | undefined;
|
|
9
|
+
classNames: Partial<Record<"root" | "body", string>>;
|
|
11
10
|
style?: import("react").CSSProperties | undefined;
|
|
12
11
|
className?: string | undefined;
|
|
13
12
|
rootClassName?: string | undefined;
|
|
@@ -20,7 +19,7 @@ export declare function getTooltipProps(props: TooltipProps): {
|
|
|
20
19
|
pointAtCenter?: boolean | undefined;
|
|
21
20
|
};
|
|
22
21
|
autoAdjustOverflow?: boolean | import("antd/es/tooltip").AdjustOverflow | undefined;
|
|
23
|
-
getPopupContainer:
|
|
22
|
+
getPopupContainer: (triggerNode: HTMLElement) => HTMLElement;
|
|
24
23
|
children?: import("react").ReactNode;
|
|
25
24
|
destroyTooltipOnHide?: boolean | {
|
|
26
25
|
keepParent?: boolean | undefined;
|
|
@@ -34,22 +33,22 @@ export declare function getTooltipProps(props: TooltipProps): {
|
|
|
34
33
|
defaultVisible?: boolean | undefined;
|
|
35
34
|
onVisibleChange?: ((visible: boolean) => void) | undefined;
|
|
36
35
|
afterVisibleChange?: ((visible: boolean) => void) | undefined;
|
|
37
|
-
align?: import("@rc-component/trigger").AlignType | undefined;
|
|
38
|
-
id?: string | undefined;
|
|
39
|
-
prefixCls?: string | undefined;
|
|
40
36
|
zIndex?: number | undefined;
|
|
41
37
|
animation?: string | undefined;
|
|
42
38
|
motion?: import("rc-motion").CSSMotionProps | undefined;
|
|
43
39
|
transitionName?: string | undefined;
|
|
44
|
-
|
|
45
|
-
mouseLeaveDelay?: number | undefined;
|
|
46
|
-
onPopupAlign?: ((element: HTMLElement, align: import("@rc-component/trigger").AlignType) => void) | undefined;
|
|
47
|
-
overlayClassName?: string | undefined;
|
|
48
|
-
overlayStyle?: import("react").CSSProperties | undefined;
|
|
49
|
-
trigger?: import("@rc-component/trigger").ActionType | import("@rc-component/trigger").ActionType[] | undefined;
|
|
50
|
-
popupVisible?: boolean | undefined;
|
|
40
|
+
prefixCls?: string | undefined;
|
|
51
41
|
forceRender?: boolean | undefined;
|
|
42
|
+
id?: string | undefined;
|
|
43
|
+
align?: import("@rc-component/trigger").AlignType | undefined;
|
|
44
|
+
onPopupAlign?: ((element: HTMLElement, align: import("@rc-component/trigger").AlignType) => void) | undefined;
|
|
52
45
|
fresh?: boolean | undefined;
|
|
46
|
+
mouseLeaveDelay?: number | undefined;
|
|
47
|
+
mouseEnterDelay?: number | undefined;
|
|
48
|
+
popupVisible?: boolean | undefined;
|
|
49
|
+
trigger?: import("@rc-component/trigger").ActionType | import("@rc-component/trigger").ActionType[] | undefined;
|
|
50
|
+
overlayStyle?: import("react").CSSProperties | undefined;
|
|
51
|
+
overlayClassName?: string | undefined;
|
|
53
52
|
getTooltipContainer?: ((node: HTMLElement) => HTMLElement) | undefined;
|
|
54
53
|
showArrow?: boolean | import("@rc-component/trigger").ArrowType | undefined;
|
|
55
54
|
arrowContent?: import("react").ReactNode;
|