@apolitical/component-library 2.2.2 → 2.2.3-ac.0
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/index.js +13 -13
- package/index.mjs +920 -920
- package/navigation/tabs/tabs.d.ts +3 -1
- package/package.json +1 -1
|
@@ -18,6 +18,8 @@ interface Props {
|
|
|
18
18
|
tabs: TabType[];
|
|
19
19
|
/** Additional classes */
|
|
20
20
|
className?: string;
|
|
21
|
+
/** Prevent window move by not jumping to the tab on click */
|
|
22
|
+
preventLocationChange?: boolean;
|
|
21
23
|
}
|
|
22
|
-
declare const Tabs: ({ tabs, className }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
declare const Tabs: ({ tabs, className, preventLocationChange }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
23
25
|
export default Tabs;
|