@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.cjs.js +81 -53
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +79 -51
- package/dist/stories/Tabs.stories.d.ts +7 -1
- package/dist/tabs/index.d.ts +1 -1
- package/dist/types/TabsProps.d.ts +1 -0
- package/package.json +1 -1
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
|
|