@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 +4 -2
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1592 -1587
- package/dist/index.mjs.map +1 -1
- package/dist/ui.css +1 -1
- package/package.json +1 -1
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
|
-
|
|
828
|
+
title: default_2.ReactNode;
|
|
829
|
+
subtitle?: default_2.ReactNode;
|
|
829
830
|
icon?: default_2.ReactNode;
|
|
830
|
-
badge?:
|
|
831
|
+
badge?: string | number;
|
|
832
|
+
badgeVariant?: BadgeVariant;
|
|
831
833
|
disabled?: boolean;
|
|
832
834
|
onClick?: () => void;
|
|
833
835
|
}
|