@zango-core/components 0.1.4 → 0.2.0-rc.1

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.
@@ -8,7 +8,7 @@ export interface DrawerProps {
8
8
  /** Content to display in the drawer */
9
9
  children: React.ReactNode;
10
10
  /** Size of the drawer */
11
- size?: 'sm' | 'md' | 'lg' | 'xl';
11
+ size?: 'sm' | 'md' | 'lg' | 'xl' | 'full';
12
12
  /** Title of the drawer */
13
13
  title?: string;
14
14
  /** Position of the drawer */
@@ -15,6 +15,7 @@ export interface TabsProps {
15
15
  size?: 'small' | 'default' | 'large';
16
16
  tabPosition?: 'top' | 'bottom' | 'left' | 'right';
17
17
  className?: string;
18
+ contentClassName?: string;
18
19
  style?: React.CSSProperties;
19
20
  }
20
21
  export declare const Tabs: React.FC<TabsProps>;