@clarlabs/ui 0.1.11 → 0.1.12

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
@@ -825,9 +825,11 @@ export declare function List({ items, hoverable, dividers, className }: ListProp
825
825
 
826
826
  export declare interface ListItem {
827
827
  id: string;
828
- content: default_2.ReactNode;
828
+ title: default_2.ReactNode;
829
+ subtitle?: default_2.ReactNode;
829
830
  icon?: default_2.ReactNode;
830
- badge?: default_2.ReactNode;
831
+ badge?: string | number;
832
+ badgeVariant?: BadgeVariant;
831
833
  disabled?: boolean;
832
834
  onClick?: () => void;
833
835
  }