@medway-ui/core 1.22.0 → 1.22.2

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 CHANGED
@@ -984,7 +984,14 @@ interface TabsProps extends ComponentProps<typeof Tabs$1.Root>, VariantProps<typ
984
984
  size?: TabsSize;
985
985
  responsive?: boolean;
986
986
  }
987
- type TabsListProps = ComponentProps<typeof Tabs$1.List>;
987
+ interface TabsListProps extends ComponentProps<typeof Tabs$1.List> {
988
+ wrapperClassName?: string;
989
+ scrollContainerClassName?: string;
990
+ innerClassName?: string;
991
+ indicatorClassName?: string;
992
+ leftFadeClassName?: string;
993
+ rightFadeClassName?: string;
994
+ }
988
995
  interface TabsTriggerProps extends ComponentProps<typeof Tabs$1.Trigger> {
989
996
  icon?: ReactNode;
990
997
  badge?: ReactNode;
@@ -1001,7 +1008,7 @@ declare const tabsContentVariants: (props?: ({
1001
1008
  size?: "md" | "lg" | null | undefined;
1002
1009
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1003
1010
  declare function Tabs({ className, variant, size, responsive, children, ...props }: TabsProps): react_jsx_runtime.JSX.Element;
1004
- declare function TabsList({ className, children, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
1011
+ declare function TabsList({ className, wrapperClassName, scrollContainerClassName, innerClassName, indicatorClassName, leftFadeClassName, rightFadeClassName, children, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
1005
1012
  declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
1006
1013
  declare function TabsContent({ className, ...props }: ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
1007
1014
 
package/dist/index.d.ts CHANGED
@@ -984,7 +984,14 @@ interface TabsProps extends ComponentProps<typeof Tabs$1.Root>, VariantProps<typ
984
984
  size?: TabsSize;
985
985
  responsive?: boolean;
986
986
  }
987
- type TabsListProps = ComponentProps<typeof Tabs$1.List>;
987
+ interface TabsListProps extends ComponentProps<typeof Tabs$1.List> {
988
+ wrapperClassName?: string;
989
+ scrollContainerClassName?: string;
990
+ innerClassName?: string;
991
+ indicatorClassName?: string;
992
+ leftFadeClassName?: string;
993
+ rightFadeClassName?: string;
994
+ }
988
995
  interface TabsTriggerProps extends ComponentProps<typeof Tabs$1.Trigger> {
989
996
  icon?: ReactNode;
990
997
  badge?: ReactNode;
@@ -1001,7 +1008,7 @@ declare const tabsContentVariants: (props?: ({
1001
1008
  size?: "md" | "lg" | null | undefined;
1002
1009
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1003
1010
  declare function Tabs({ className, variant, size, responsive, children, ...props }: TabsProps): react_jsx_runtime.JSX.Element;
1004
- declare function TabsList({ className, children, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
1011
+ declare function TabsList({ className, wrapperClassName, scrollContainerClassName, innerClassName, indicatorClassName, leftFadeClassName, rightFadeClassName, children, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
1005
1012
  declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
1006
1013
  declare function TabsContent({ className, ...props }: ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
1007
1014