@stigg/react-sdk 5.5.0 → 5.5.1

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "5.5.0",
2
+ "version": "5.5.1",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -78,7 +78,11 @@ export function CustomerUsageData({ onManageSubscription, onBuyMore }: CustomerU
78
78
  <>
79
79
  <Grid container spacing={4}>
80
80
  {entitlementsToShow.map((entitlement) => (
81
- <Grid key={entitlement.feature!.refId} item xs={xs}>
81
+ <Grid
82
+ className={`stigg-entitlement-usage-${entitlement.feature!.refId}`}
83
+ key={entitlement.feature!.refId}
84
+ item
85
+ xs={xs}>
82
86
  <FeatureUsage
83
87
  key={entitlement.feature!.refId}
84
88
  subscriptionPrice={subscriptionPriceByFeature[entitlement.feature!.refId]}