@stigg/react-sdk 5.28.2 → 5.28.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/react-sdk.cjs.development.js +10 -5
- package/dist/react-sdk.cjs.development.js.map +1 -1
- package/dist/react-sdk.cjs.production.min.js +1 -1
- package/dist/react-sdk.cjs.production.min.js.map +1 -1
- package/dist/react-sdk.esm.js +11 -6
- package/dist/react-sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/checkout/summary/components/CheckoutCaptions.tsx +6 -5
|
@@ -3425,7 +3425,7 @@ function mapPaywallData(paywall, showOnlyEligiblePlans) {
|
|
|
3425
3425
|
};
|
|
3426
3426
|
}
|
|
3427
3427
|
|
|
3428
|
-
var version = "5.28.
|
|
3428
|
+
var version = "5.28.3";
|
|
3429
3429
|
var name = "@stigg/react-sdk";
|
|
3430
3430
|
|
|
3431
3431
|
var StiggContext = /*#__PURE__*/React__default.createContext(null);
|
|
@@ -12244,7 +12244,8 @@ var RemainingCreditsCaption = function RemainingCreditsCaption(_ref) {
|
|
|
12244
12244
|
variant: "body1",
|
|
12245
12245
|
style: {
|
|
12246
12246
|
marginTop: 14
|
|
12247
|
-
}
|
|
12247
|
+
},
|
|
12248
|
+
className: "stigg-checkout-summary-captions-remaining-credits"
|
|
12248
12249
|
}, React__default.createElement(WithSkeleton, {
|
|
12249
12250
|
isLoading: isFetchingSubscriptionPreview,
|
|
12250
12251
|
width: "100%"
|
|
@@ -12271,7 +12272,8 @@ var ScheduledUpdatesCaption = function ScheduledUpdatesCaption(_ref3) {
|
|
|
12271
12272
|
variant: "body1",
|
|
12272
12273
|
style: {
|
|
12273
12274
|
marginTop: 14
|
|
12274
|
-
}
|
|
12275
|
+
},
|
|
12276
|
+
className: "stigg-checkout-summary-captions-scheduled-updates"
|
|
12275
12277
|
}, React__default.createElement(WithSkeleton, {
|
|
12276
12278
|
isLoading: isFetchingSubscriptionPreview,
|
|
12277
12279
|
width: "100%"
|
|
@@ -12335,7 +12337,8 @@ var NextBillingCaption = function NextBillingCaption(_ref4) {
|
|
|
12335
12337
|
variant: "body1",
|
|
12336
12338
|
style: {
|
|
12337
12339
|
marginTop: 14
|
|
12338
|
-
}
|
|
12340
|
+
},
|
|
12341
|
+
className: "stigg-checkout-summary-captions-next-billing"
|
|
12339
12342
|
}, React__default.createElement(WithSkeleton, {
|
|
12340
12343
|
isLoading: isFetchingSubscriptionPreview,
|
|
12341
12344
|
width: "100%"
|
|
@@ -12343,7 +12346,9 @@ var NextBillingCaption = function NextBillingCaption(_ref4) {
|
|
|
12343
12346
|
};
|
|
12344
12347
|
|
|
12345
12348
|
function CheckoutCaptions(props) {
|
|
12346
|
-
return React__default.createElement(
|
|
12349
|
+
return React__default.createElement(material.Box, {
|
|
12350
|
+
className: "stigg-checkout-summary-captions"
|
|
12351
|
+
}, React__default.createElement(RemainingCreditsCaption, Object.assign({}, props)), React__default.createElement(ScheduledUpdatesCaption, Object.assign({}, props)), React__default.createElement(NextBillingCaption, Object.assign({}, props)));
|
|
12347
12352
|
}
|
|
12348
12353
|
|
|
12349
12354
|
function formatPricePerUnit(_ref) {
|