@kashifd/jwero-components 0.8.12 → 0.8.14
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.es.js +2807 -2807
- package/dist/index.umd.js +71 -71
- package/dist/src/components/jwero_tabs/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ type JweroTabsType = {
|
|
|
26
26
|
tabListSx?: SxProps;
|
|
27
27
|
tabSx?: SxProps;
|
|
28
28
|
panelSx?: SxProps;
|
|
29
|
+
mainSx?: SxProps;
|
|
29
30
|
};
|
|
30
|
-
declare const JweroTabs: ({ children, tabsObj, panelObj, onChangeFunction, customBorderBottom, customScrollButtons, customStartValue, tabListRightItem, tabListEndItem, boxSx, tabListSx, tabSx, panelSx, }: JweroTabsType) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
declare const JweroTabs: ({ children, tabsObj, panelObj, onChangeFunction, customBorderBottom, customScrollButtons, customStartValue, tabListRightItem, tabListEndItem, boxSx, tabListSx, tabSx, panelSx, mainSx, }: JweroTabsType) => import("react/jsx-runtime").JSX.Element;
|
|
31
32
|
export default JweroTabs;
|