@worldresources/wri-design-systems 2.202.3 → 2.202.5
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.cjs.js +294 -203
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +397 -306
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1420,7 +1420,8 @@ declare const ItemCount: ({ pageSize, currentPage, totalItems, onPageSizeChange,
|
|
|
1420
1420
|
type ListItemVariant = 'data' | 'navigation' | 'select';
|
|
1421
1421
|
interface ListItemProps {
|
|
1422
1422
|
id?: string;
|
|
1423
|
-
label:
|
|
1423
|
+
label: React__default.ReactNode;
|
|
1424
|
+
searchLabel?: string;
|
|
1424
1425
|
caption?: string;
|
|
1425
1426
|
icon?: ReactElement;
|
|
1426
1427
|
value?: React__default.ReactNode;
|