@skalar-saas/design-system 0.1.147 → 0.1.149
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.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1076 -1059
- package/dist/index.mjs.map +1 -1
- package/dist/shared/ui/Tabs/Tabs.d.ts +4 -1
- package/package.json +1 -1
|
@@ -43,6 +43,9 @@ export interface TabsProps {
|
|
|
43
43
|
tabPaddingX?: number;
|
|
44
44
|
/** Optional custom classes for the tab list. */
|
|
45
45
|
tabListClassName?: string;
|
|
46
|
+
/** When true, 'line-icons' tabs collapse to icon-only (label as a native tooltip) whenever
|
|
47
|
+
* the labels don't fit the available width. Content-aware — works for any labels/usage. */
|
|
48
|
+
responsive?: boolean;
|
|
46
49
|
}
|
|
47
50
|
/**
|
|
48
51
|
* @file An accessible and themeable tabs component for content navigation.
|
|
@@ -55,5 +58,5 @@ export interface TabsProps {
|
|
|
55
58
|
* @param {string} [className] - Optional CSS classes for additional styling on the main container.
|
|
56
59
|
* @returns {JSX.Element} The rendered Tabs element.
|
|
57
60
|
*/
|
|
58
|
-
export declare const Tabs: ({ variant, tabs, className, selectedIndex, onChange, customPaddingBottom, contentSpacing, fullHeight, iconLabelGap, iconSize, showBorder, headerHeight, tabPaddingX, tabListClassName, }: TabsProps) => import("react/jsx-runtime").JSX.Element;
|
|
61
|
+
export declare const Tabs: ({ variant, tabs, className, selectedIndex, onChange, customPaddingBottom, contentSpacing, fullHeight, iconLabelGap, iconSize, showBorder, headerHeight, tabPaddingX, tabListClassName, responsive, }: TabsProps) => import("react/jsx-runtime").JSX.Element;
|
|
59
62
|
export {};
|