@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.
package/dist/index.d.ts CHANGED
@@ -817,7 +817,7 @@ type TinyScrollbarProps = {
817
817
  };
818
818
  declare function TinyScrollbar({ className, children, style }: TinyScrollbarProps): react_jsx_runtime.JSX.Element;
819
819
 
820
- declare const Tabs: ({ tabs, activeTabKey, className, variant, height, onTabChange }: TabsProps) => react_jsx_runtime.JSX.Element;
820
+ declare const Tabs: ({ tabs, activeTabKey, className, variant, height, overflow, onTabChange }: TabsProps) => react_jsx_runtime.JSX.Element;
821
821
 
822
822
  declare const Card: ({ title, titleSeparator, extra, tabs, onTabChange, minWidth, minHeight, children, activeTabKey, updating, contentPadding, }: CardProps) => react_jsx_runtime.JSX.Element;
823
823
 
@@ -1583,6 +1583,7 @@ type TabsProps = {
1583
1583
  onTabChange?: (key: string) => void;
1584
1584
  variant?: "default" | "bold";
1585
1585
  height?: number;
1586
+ overflow?: boolean;
1586
1587
  className?: string;
1587
1588
  };
1588
1589