@moontra/moonui 2.4.7 → 2.4.9
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.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.global.js +29 -37
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +18 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +18 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/ui/tabs.tsx +22 -12
- package/src/styles/tailwind.css +20 -1
package/dist/index.d.mts
CHANGED
|
@@ -1593,10 +1593,13 @@ declare const tabsListVariants: (props?: {
|
|
|
1593
1593
|
variant?: "default" | "underline" | "pills" | "cards" | "minimal";
|
|
1594
1594
|
orientation?: "horizontal" | "vertical";
|
|
1595
1595
|
fullWidth?: boolean;
|
|
1596
|
+
scrollable?: boolean;
|
|
1596
1597
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
1597
1598
|
interface TabsListProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.List>, VariantProps<typeof tabsListVariants> {
|
|
1598
1599
|
/** Dikey düzende göster */
|
|
1599
1600
|
orientation?: "horizontal" | "vertical";
|
|
1601
|
+
/** Mobil için yatay scroll */
|
|
1602
|
+
scrollable?: boolean;
|
|
1600
1603
|
}
|
|
1601
1604
|
declare const TabsList: React.ForwardRefExoticComponent<TabsListProps & React.RefAttributes<HTMLDivElement>>;
|
|
1602
1605
|
declare const tabsTriggerVariants: (props?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1593,10 +1593,13 @@ declare const tabsListVariants: (props?: {
|
|
|
1593
1593
|
variant?: "default" | "underline" | "pills" | "cards" | "minimal";
|
|
1594
1594
|
orientation?: "horizontal" | "vertical";
|
|
1595
1595
|
fullWidth?: boolean;
|
|
1596
|
+
scrollable?: boolean;
|
|
1596
1597
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
1597
1598
|
interface TabsListProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.List>, VariantProps<typeof tabsListVariants> {
|
|
1598
1599
|
/** Dikey düzende göster */
|
|
1599
1600
|
orientation?: "horizontal" | "vertical";
|
|
1601
|
+
/** Mobil için yatay scroll */
|
|
1602
|
+
scrollable?: boolean;
|
|
1600
1603
|
}
|
|
1601
1604
|
declare const TabsList: React.ForwardRefExoticComponent<TabsListProps & React.RefAttributes<HTMLDivElement>>;
|
|
1602
1605
|
declare const tabsTriggerVariants: (props?: {
|