@cleen/ui 0.1.39 → 0.1.41

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.ts CHANGED
@@ -2651,7 +2651,7 @@ interface SidebarItemConfig {
2651
2651
  /** Label shown in tooltip */
2652
2652
  label: string;
2653
2653
  /** Icon name from the Icon component library */
2654
- iconName?: string;
2654
+ iconName?: IconName;
2655
2655
  /** Custom icon source (SVG path or component) */
2656
2656
  iconSrc?: string;
2657
2657
  /** Optional React node for custom icon rendering */
@@ -2704,7 +2704,7 @@ interface DrawerContentTitleProps {
2704
2704
  /** Title text to display */
2705
2705
  title: string;
2706
2706
  /** Icon name from the Icon component library */
2707
- iconName?: string;
2707
+ iconName?: IconName;
2708
2708
  /** Icon source (SVG path or component) */
2709
2709
  iconSrc?: string;
2710
2710
  /** Icon size in pixels */
@@ -3070,7 +3070,7 @@ interface TabsStyles {
3070
3070
  }
3071
3071
 
3072
3072
  type Direction = 'horizontal' | 'vertical';
3073
- type Variant = 'underlined' | 'padded';
3073
+ type Variant = 'underlined' | 'padded' | 'stretched';
3074
3074
 
3075
3075
  type TabsProps = ComponentProps<'div'> & {
3076
3076
  tabs?: Tab[];