@selfcommunity/react-theme-default 0.4.5-payments.147 → 0.4.5-payments.149
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/SCPaymentProductPrice.d.ts +7 -0
- package/lib/cjs/components/SCPaymentProductPrice.js +8 -1
- package/lib/cjs/index.d.ts +7 -0
- package/lib/esm/components/SCPaymentProductPrice.d.ts +7 -0
- package/lib/esm/components/SCPaymentProductPrice.js +8 -1
- package/lib/esm/index.d.ts +7 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -4,6 +4,13 @@ declare const Component: {
|
|
|
4
4
|
theme: any;
|
|
5
5
|
}) => {
|
|
6
6
|
borderRadius: string;
|
|
7
|
+
'& .SCPaymentProductPrice-button-purchased': {
|
|
8
|
+
backgroundColor: string;
|
|
9
|
+
color: string;
|
|
10
|
+
};
|
|
11
|
+
'& .SCPaymentProductPrice-purchased-at': {
|
|
12
|
+
textDecoration: string;
|
|
13
|
+
};
|
|
7
14
|
};
|
|
8
15
|
skeletonRoot: ({ theme }: {
|
|
9
16
|
theme: any;
|
|
@@ -3,7 +3,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Component = {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
|
-
borderRadius: '3px'
|
|
6
|
+
borderRadius: '3px',
|
|
7
|
+
'& .SCPaymentProductPrice-button-purchased': {
|
|
8
|
+
backgroundColor: `${theme.palette.secondary.main} !important`,
|
|
9
|
+
color: `${theme.palette.secondary.contrastText} !important`
|
|
10
|
+
},
|
|
11
|
+
'& .SCPaymentProductPrice-purchased-at': {
|
|
12
|
+
textDecoration: 'underline'
|
|
13
|
+
}
|
|
7
14
|
}),
|
|
8
15
|
skeletonRoot: ({ theme }) => ({
|
|
9
16
|
borderRadius: '3px'
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -11261,6 +11261,13 @@ declare const theme: {
|
|
|
11261
11261
|
theme: any;
|
|
11262
11262
|
}) => {
|
|
11263
11263
|
borderRadius: string;
|
|
11264
|
+
'& .SCPaymentProductPrice-button-purchased': {
|
|
11265
|
+
backgroundColor: string;
|
|
11266
|
+
color: string;
|
|
11267
|
+
};
|
|
11268
|
+
'& .SCPaymentProductPrice-purchased-at': {
|
|
11269
|
+
textDecoration: string;
|
|
11270
|
+
};
|
|
11264
11271
|
};
|
|
11265
11272
|
skeletonRoot: ({ theme }: {
|
|
11266
11273
|
theme: any;
|
|
@@ -4,6 +4,13 @@ declare const Component: {
|
|
|
4
4
|
theme: any;
|
|
5
5
|
}) => {
|
|
6
6
|
borderRadius: string;
|
|
7
|
+
'& .SCPaymentProductPrice-button-purchased': {
|
|
8
|
+
backgroundColor: string;
|
|
9
|
+
color: string;
|
|
10
|
+
};
|
|
11
|
+
'& .SCPaymentProductPrice-purchased-at': {
|
|
12
|
+
textDecoration: string;
|
|
13
|
+
};
|
|
7
14
|
};
|
|
8
15
|
skeletonRoot: ({ theme }: {
|
|
9
16
|
theme: any;
|
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
const Component = {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
|
-
borderRadius: '3px'
|
|
4
|
+
borderRadius: '3px',
|
|
5
|
+
'& .SCPaymentProductPrice-button-purchased': {
|
|
6
|
+
backgroundColor: `${theme.palette.secondary.main} !important`,
|
|
7
|
+
color: `${theme.palette.secondary.contrastText} !important`
|
|
8
|
+
},
|
|
9
|
+
'& .SCPaymentProductPrice-purchased-at': {
|
|
10
|
+
textDecoration: 'underline'
|
|
11
|
+
}
|
|
5
12
|
}),
|
|
6
13
|
skeletonRoot: ({ theme }) => ({
|
|
7
14
|
borderRadius: '3px'
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -11261,6 +11261,13 @@ declare const theme: {
|
|
|
11261
11261
|
theme: any;
|
|
11262
11262
|
}) => {
|
|
11263
11263
|
borderRadius: string;
|
|
11264
|
+
'& .SCPaymentProductPrice-button-purchased': {
|
|
11265
|
+
backgroundColor: string;
|
|
11266
|
+
color: string;
|
|
11267
|
+
};
|
|
11268
|
+
'& .SCPaymentProductPrice-purchased-at': {
|
|
11269
|
+
textDecoration: string;
|
|
11270
|
+
};
|
|
11264
11271
|
};
|
|
11265
11272
|
skeletonRoot: ({ theme }: {
|
|
11266
11273
|
theme: any;
|