@selfcommunity/react-theme-default 0.4.5-payments.155 → 0.4.5-payments.156
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/lib/cjs/components/SCPaywalls.d.ts +12 -0
- package/lib/cjs/components/SCPaywalls.js +12 -0
- package/lib/cjs/index.d.ts +11 -0
- package/lib/cjs/index.js +3 -1
- package/lib/esm/components/SCPaywalls.d.ts +12 -0
- package/lib/esm/components/SCPaywalls.js +10 -0
- package/lib/esm/index.d.ts +11 -0
- package/lib/esm/index.js +3 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -11481,6 +11481,17 @@ declare const theme: {
|
|
|
11481
11481
|
};
|
|
11482
11482
|
};
|
|
11483
11483
|
};
|
|
11484
|
+
SCPaywalls: {
|
|
11485
|
+
styleOverrides: {
|
|
11486
|
+
root: ({ theme }: {
|
|
11487
|
+
theme: any;
|
|
11488
|
+
}) => {
|
|
11489
|
+
'& .SCPaywalls-error': {
|
|
11490
|
+
margin: any;
|
|
11491
|
+
};
|
|
11492
|
+
};
|
|
11493
|
+
};
|
|
11494
|
+
};
|
|
11484
11495
|
};
|
|
11485
11496
|
selfcommunity: {
|
|
11486
11497
|
user: {
|
package/lib/cjs/index.js
CHANGED
|
@@ -211,6 +211,7 @@ const SCPaymentProductPrice_1 = tslib_1.__importDefault(require("./components/SC
|
|
|
211
211
|
const SCCheckout_1 = tslib_1.__importDefault(require("./components/SCCheckout"));
|
|
212
212
|
const SCCheckoutReturnDialog_1 = tslib_1.__importDefault(require("./components/SCCheckoutReturnDialog"));
|
|
213
213
|
const SCHiddenPurchasableContent_1 = tslib_1.__importDefault(require("./components/SCHiddenPurchasableContent"));
|
|
214
|
+
const SCPaywalls_1 = tslib_1.__importDefault(require("./components/SCPaywalls"));
|
|
214
215
|
/**
|
|
215
216
|
* Style fragments - Imports - End
|
|
216
217
|
*/
|
|
@@ -504,7 +505,8 @@ const theme = {
|
|
|
504
505
|
SCPaymentProductPrice: SCPaymentProductPrice_1.default,
|
|
505
506
|
SCCheckout: SCCheckout_1.default,
|
|
506
507
|
SCCheckoutReturnDialog: SCCheckoutReturnDialog_1.default,
|
|
507
|
-
SCHiddenPurchasableContent: SCHiddenPurchasableContent_1.default
|
|
508
|
+
SCHiddenPurchasableContent: SCHiddenPurchasableContent_1.default,
|
|
509
|
+
SCPaywalls: SCPaywalls_1.default
|
|
508
510
|
},
|
|
509
511
|
selfcommunity: {
|
|
510
512
|
user: {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -11481,6 +11481,17 @@ declare const theme: {
|
|
|
11481
11481
|
};
|
|
11482
11482
|
};
|
|
11483
11483
|
};
|
|
11484
|
+
SCPaywalls: {
|
|
11485
|
+
styleOverrides: {
|
|
11486
|
+
root: ({ theme }: {
|
|
11487
|
+
theme: any;
|
|
11488
|
+
}) => {
|
|
11489
|
+
'& .SCPaywalls-error': {
|
|
11490
|
+
margin: any;
|
|
11491
|
+
};
|
|
11492
|
+
};
|
|
11493
|
+
};
|
|
11494
|
+
};
|
|
11484
11495
|
};
|
|
11485
11496
|
selfcommunity: {
|
|
11486
11497
|
user: {
|
package/lib/esm/index.js
CHANGED
|
@@ -207,6 +207,7 @@ import SCPaymentProductPrice from './components/SCPaymentProductPrice';
|
|
|
207
207
|
import SCCheckout from './components/SCCheckout';
|
|
208
208
|
import SCCheckoutReturnDialog from './components/SCCheckoutReturnDialog';
|
|
209
209
|
import SCHiddenPurchasableContent from './components/SCHiddenPurchasableContent';
|
|
210
|
+
import SCPaywalls from './components/SCPaywalls';
|
|
210
211
|
/**
|
|
211
212
|
* Style fragments - Imports - End
|
|
212
213
|
*/
|
|
@@ -492,7 +493,8 @@ const theme = {
|
|
|
492
493
|
SCPaymentProductPrice,
|
|
493
494
|
SCCheckout,
|
|
494
495
|
SCCheckoutReturnDialog,
|
|
495
|
-
SCHiddenPurchasableContent
|
|
496
|
+
SCHiddenPurchasableContent,
|
|
497
|
+
SCPaywalls
|
|
496
498
|
},
|
|
497
499
|
selfcommunity: {
|
|
498
500
|
user: {
|