@cloudtower/eagle 0.27.37 → 0.27.38

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.
@@ -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;
@@ -0,0 +1,15 @@
1
+ import { Meta, StoryObj } from "@storybook/react";
2
+ import React from "react";
3
+ import { OverflowTooltipProps } from "../src/spec";
4
+ declare const meta: Meta<React.FC<OverflowTooltipProps>>;
5
+ export default meta;
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
+ }>;