@worldresources/wri-design-systems 2.136.1 → 2.136.3
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 +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -510,13 +510,13 @@ declare const ItemCount: ({ pageSize, currentPage, totalItems, onPageSizeChange,
|
|
|
510
510
|
|
|
511
511
|
type ListItemVariant = 'data' | 'navigation';
|
|
512
512
|
interface ListItemProps {
|
|
513
|
+
id?: string;
|
|
513
514
|
label: string;
|
|
514
515
|
caption?: string;
|
|
515
516
|
icon?: ReactElement;
|
|
516
517
|
value?: string;
|
|
517
518
|
variant?: ListItemVariant;
|
|
518
519
|
isExpanded?: boolean;
|
|
519
|
-
id?: string;
|
|
520
520
|
onItemClick?: () => void;
|
|
521
521
|
ariaLabel?: string;
|
|
522
522
|
}
|