@foodpilot/foods 1.0.1 → 1.0.3
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/components/Tabs/SectionTabs.d.ts +5 -0
- package/dist/main.js +2583 -2567
- package/dist/main.umd.cjs +78 -78
- package/package.json +1 -1
|
@@ -12,6 +12,11 @@ export type SectionTabsProps = BoxProps & {
|
|
|
12
12
|
tabs: SectionTab[];
|
|
13
13
|
value?: number;
|
|
14
14
|
renderComponents?: boolean | true;
|
|
15
|
+
/**
|
|
16
|
+
* Force scrollable behavior even on desktop.
|
|
17
|
+
* If not provided, scrollable will be automatically enabled on mobile devices.
|
|
18
|
+
*/
|
|
19
|
+
scrollable?: boolean;
|
|
15
20
|
};
|
|
16
21
|
export declare const SectionTabs: (props: SectionTabsProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
22
|
export type SectionTabPanelProps = {
|