@stigg/react-sdk 4.3.1 → 4.3.2
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 +2 -2
- 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 +2 -2
- package/dist/react-sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/customerPortal/paywall/CustomerPortalPaywall.style.ts +4 -3
- package/src/stories/CustomerPortal.stories.tsx +2 -2
package/package.json
CHANGED
|
@@ -13,14 +13,15 @@ export const CustomerPortalPaywallLayout = styled(SectionContainer)<{
|
|
|
13
13
|
.stigg-paywall-layout {
|
|
14
14
|
width: 100%;
|
|
15
15
|
}
|
|
16
|
-
|
|
16
|
+
|
|
17
17
|
.stigg-paywall-plans-layout {
|
|
18
18
|
flex-wrap: nowrap;
|
|
19
19
|
width: 100%;
|
|
20
20
|
overflow-x: auto;
|
|
21
21
|
justify-content: unset;
|
|
22
|
-
padding:
|
|
22
|
+
padding: 10px 0px 0px 0px;
|
|
23
23
|
}
|
|
24
|
+
|
|
24
25
|
.stigg-paywall-plans-layout .stigg-plan-offering-container:first-of-type {
|
|
25
26
|
margin-left: auto;
|
|
26
27
|
}
|
|
@@ -37,6 +38,6 @@ export const CustomerPortalPaywallLayout = styled(SectionContainer)<{
|
|
|
37
38
|
`}
|
|
38
39
|
|
|
39
40
|
.${STIGG_WATERMARK_CLASSNAME} {
|
|
40
|
-
display: none
|
|
41
|
+
display: none;
|
|
41
42
|
}
|
|
42
43
|
`;
|
|
@@ -33,7 +33,7 @@ export default {
|
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
baseUri={args.baseUri}
|
|
36
|
-
enableEdge={args.disableEdge}>
|
|
36
|
+
enableEdge={!args.disableEdge}>
|
|
37
37
|
<Story />
|
|
38
38
|
</StiggProvider>
|
|
39
39
|
),
|
|
@@ -70,7 +70,7 @@ const Template: ComponentStory<any> = (args) => {
|
|
|
70
70
|
onPlanSelected={(...args) => {
|
|
71
71
|
console.log('onPlanSelected', args);
|
|
72
72
|
}}
|
|
73
|
-
highlightedPlanId="plan-revvenu-
|
|
73
|
+
highlightedPlanId="plan-revvenu-essentials"
|
|
74
74
|
/>
|
|
75
75
|
}
|
|
76
76
|
theme={customerPortalTheme}
|