@nimbus-ds/patterns 1.25.2 → 1.26.0
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/CHANGELOG.md +14 -0
- package/dist/CHANGELOG.md +14 -0
- package/dist/Menu/index.js +1 -1
- package/dist/MenuButton/index.js +1 -1
- package/dist/ProductDataList/index.d.ts +13 -0
- package/dist/ProductDataList/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +13 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1239,6 +1239,19 @@ export interface ProductDataListItemProperties {
|
|
|
1239
1239
|
* Additional content to be rendered
|
|
1240
1240
|
*/
|
|
1241
1241
|
children?: ReactNode;
|
|
1242
|
+
/**
|
|
1243
|
+
* Icon component for the tag
|
|
1244
|
+
*/
|
|
1245
|
+
tagIcon?: ReactNode;
|
|
1246
|
+
/**
|
|
1247
|
+
* Text content for the tag
|
|
1248
|
+
*/
|
|
1249
|
+
tagText?: string;
|
|
1250
|
+
/**
|
|
1251
|
+
* Appearance style for the tag
|
|
1252
|
+
* @default "warning"
|
|
1253
|
+
*/
|
|
1254
|
+
tagAppearance?: "warning" | "primary" | "neutral" | "success" | "danger";
|
|
1242
1255
|
}
|
|
1243
1256
|
/**
|
|
1244
1257
|
* Props that can be passed to the ProductDataListItem component
|