@cloudtower/eagle 0.30.7 → 0.30.9

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,5 +1,6 @@
1
1
  /// <reference types="react" />
2
- export type OverflowTooltipProps = {
2
+ import { AbstractTooltipProps } from "antd/lib/tooltip";
3
+ export type OverflowTooltipProps = AbstractTooltipProps & {
3
4
  /**
4
5
  * 文本内容
5
6
  */
@@ -28,3 +28,8 @@ export declare const MultipleLine: StoryObj<OverflowTooltipProps>;
28
28
  *
29
29
  */
30
30
  export declare const Tooltip: StoryObj<OverflowTooltipProps>;
31
+ /**
32
+ * 自定义悬浮提示 overlay 部分样式,其余属性请参考 antd-Tooltip
33
+ * https://ant-design.antgroup.com/components/tooltip-cn#api
34
+ */
35
+ export declare const CustomOverlayTooltip: StoryObj<OverflowTooltipProps>;