@inntechcorp/it-design 3.1.23 → 3.1.24

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.
@@ -6,7 +6,12 @@ declare const meta: {
6
6
  layout: string;
7
7
  };
8
8
  tags: string[];
9
- argTypes: {};
9
+ argTypes: {
10
+ overflow: {
11
+ control: "boolean";
12
+ description: string;
13
+ };
14
+ };
10
15
  args: {
11
16
  onClick: import("@vitest/spy").Mock<(...args: any[]) => any>;
12
17
  };
@@ -16,3 +21,4 @@ type Story = StoryObj<typeof meta>;
16
21
  export declare const Default: Story;
17
22
  export declare const Bold: Story;
18
23
  export declare const WithLink: Story;
24
+ export declare const NoOverflow: Story;
@@ -1,3 +1,3 @@
1
1
  import { TabsProps } from "../index";
2
- declare const Tabs: ({ tabs, activeTabKey, className, variant, height, onTabChange }: TabsProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const Tabs: ({ tabs, activeTabKey, className, variant, height, overflow, onTabChange }: TabsProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default Tabs;
@@ -11,5 +11,6 @@ export type TabsProps = {
11
11
  onTabChange?: (key: string) => void;
12
12
  variant?: "default" | "bold";
13
13
  height?: number;
14
+ overflow?: boolean;
14
15
  className?: string;
15
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inntechcorp/it-design",
3
- "version": "3.1.23",
3
+ "version": "3.1.24",
4
4
  "description": "All in one Design library for web applications.",
5
5
  "author": "Inn.Tech",
6
6
  "license": "ISC",