@cloudtower/eagle 0.27.35 → 0.27.37-dry-1

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,17 +1,15 @@
1
- import { Meta } from "@storybook/react";
1
+ import { Meta, StoryObj } from "@storybook/react";
2
2
  import React from "react";
3
- import OverflowTooltip from ".";
4
- declare const story: Meta<any>;
3
+ import { OverflowTooltipProps } from "../../spec";
4
+ declare const story: Meta<React.FC<OverflowTooltipProps>>;
5
5
  export default story;
6
- export declare const Default: {
7
- (...{ width, content, isMultiLine }: [props: React.PropsWithChildren<import("../../spec").OverflowTooltipProps>, context?: any] & {
8
- width: string;
9
- content: string;
10
- isMultiLine: boolean;
11
- }): JSX.Element;
12
- args: {
13
- width: string;
14
- isMultiLine: boolean;
15
- content: string;
16
- };
17
- };
6
+ export declare const Default: StoryObj<{
7
+ width: string;
8
+ multiLines: number;
9
+ content: string;
10
+ }>;
11
+ export declare const MultipleLine: StoryObj<{
12
+ width: string;
13
+ multiLines: number;
14
+ content: string;
15
+ }>;
@@ -623,7 +623,7 @@ export type OverflowTooltipProps = {
623
623
  tooltip?: React.ReactNode;
624
624
  className?: string;
625
625
  onClick?: () => void;
626
- isMultiLine?: boolean;
626
+ multiLines?: number;
627
627
  };
628
628
  export type TruncateTextWithTooltipType = {
629
629
  text: string;