@selfcommunity/react-theme-default 0.4.5-payments.162 → 0.4.5-payments.164
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/SCCheckout.d.ts +7 -0
- package/lib/cjs/components/SCCheckout.js +7 -0
- package/lib/cjs/components/SCCheckoutReturnDialog.d.ts +1 -0
- package/lib/cjs/components/SCCheckoutReturnDialog.js +2 -1
- package/lib/cjs/index.d.ts +8 -0
- package/lib/esm/components/SCCheckout.d.ts +7 -0
- package/lib/esm/components/SCCheckout.js +7 -0
- package/lib/esm/components/SCCheckoutReturnDialog.d.ts +1 -0
- package/lib/esm/components/SCCheckoutReturnDialog.js +2 -1
- package/lib/esm/index.d.ts +8 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -26,6 +26,7 @@ declare const Component: {
|
|
|
26
26
|
[x: number]: {
|
|
27
27
|
width: string;
|
|
28
28
|
};
|
|
29
|
+
position: string;
|
|
29
30
|
display: string;
|
|
30
31
|
flexDirection: string;
|
|
31
32
|
justifyContent: string;
|
|
@@ -34,6 +35,12 @@ declare const Component: {
|
|
|
34
35
|
width: string;
|
|
35
36
|
};
|
|
36
37
|
};
|
|
38
|
+
"& .SCCheckout-content-coverage": {
|
|
39
|
+
position: string;
|
|
40
|
+
width: string;
|
|
41
|
+
height: string;
|
|
42
|
+
backgroundColor: string;
|
|
43
|
+
};
|
|
37
44
|
"& .SCCheckout-content-desc": {
|
|
38
45
|
[x: number]: {
|
|
39
46
|
display: string;
|
|
@@ -23,6 +23,7 @@ const Component = {
|
|
|
23
23
|
alignItems: 'center'
|
|
24
24
|
},
|
|
25
25
|
['& .SCCheckout-content-object']: {
|
|
26
|
+
position: 'relative',
|
|
26
27
|
display: 'flex',
|
|
27
28
|
flexDirection: 'column',
|
|
28
29
|
justifyContent: 'center',
|
|
@@ -34,6 +35,12 @@ const Component = {
|
|
|
34
35
|
width: '93%'
|
|
35
36
|
}
|
|
36
37
|
},
|
|
38
|
+
['& .SCCheckout-content-coverage']: {
|
|
39
|
+
position: 'absolute',
|
|
40
|
+
width: '100%',
|
|
41
|
+
height: '100%',
|
|
42
|
+
backgroundColor: 'transparent'
|
|
43
|
+
},
|
|
37
44
|
['& .SCCheckout-content-desc']: {
|
|
38
45
|
display: 'flex',
|
|
39
46
|
flexDirection: 'column',
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -11418,6 +11418,7 @@ declare const theme: {
|
|
|
11418
11418
|
[x: number]: {
|
|
11419
11419
|
width: string;
|
|
11420
11420
|
};
|
|
11421
|
+
position: string;
|
|
11421
11422
|
display: string;
|
|
11422
11423
|
flexDirection: string;
|
|
11423
11424
|
justifyContent: string;
|
|
@@ -11426,6 +11427,12 @@ declare const theme: {
|
|
|
11426
11427
|
width: string;
|
|
11427
11428
|
};
|
|
11428
11429
|
};
|
|
11430
|
+
"& .SCCheckout-content-coverage": {
|
|
11431
|
+
position: string;
|
|
11432
|
+
width: string;
|
|
11433
|
+
height: string;
|
|
11434
|
+
backgroundColor: string;
|
|
11435
|
+
};
|
|
11429
11436
|
"& .SCCheckout-content-desc": {
|
|
11430
11437
|
[x: number]: {
|
|
11431
11438
|
display: string;
|
|
@@ -11482,6 +11489,7 @@ declare const theme: {
|
|
|
11482
11489
|
alignItems: string;
|
|
11483
11490
|
'& .SCWidget-root': {
|
|
11484
11491
|
minWidth: number;
|
|
11492
|
+
paddingLeft: any;
|
|
11485
11493
|
};
|
|
11486
11494
|
};
|
|
11487
11495
|
'& .SCCheckoutSuccessDialog-content-object': {
|
|
@@ -26,6 +26,7 @@ declare const Component: {
|
|
|
26
26
|
[x: number]: {
|
|
27
27
|
width: string;
|
|
28
28
|
};
|
|
29
|
+
position: string;
|
|
29
30
|
display: string;
|
|
30
31
|
flexDirection: string;
|
|
31
32
|
justifyContent: string;
|
|
@@ -34,6 +35,12 @@ declare const Component: {
|
|
|
34
35
|
width: string;
|
|
35
36
|
};
|
|
36
37
|
};
|
|
38
|
+
"& .SCCheckout-content-coverage": {
|
|
39
|
+
position: string;
|
|
40
|
+
width: string;
|
|
41
|
+
height: string;
|
|
42
|
+
backgroundColor: string;
|
|
43
|
+
};
|
|
37
44
|
"& .SCCheckout-content-desc": {
|
|
38
45
|
[x: number]: {
|
|
39
46
|
display: string;
|
|
@@ -21,6 +21,7 @@ const Component = {
|
|
|
21
21
|
alignItems: 'center'
|
|
22
22
|
},
|
|
23
23
|
['& .SCCheckout-content-object']: {
|
|
24
|
+
position: 'relative',
|
|
24
25
|
display: 'flex',
|
|
25
26
|
flexDirection: 'column',
|
|
26
27
|
justifyContent: 'center',
|
|
@@ -32,6 +33,12 @@ const Component = {
|
|
|
32
33
|
width: '93%'
|
|
33
34
|
}
|
|
34
35
|
},
|
|
36
|
+
['& .SCCheckout-content-coverage']: {
|
|
37
|
+
position: 'absolute',
|
|
38
|
+
width: '100%',
|
|
39
|
+
height: '100%',
|
|
40
|
+
backgroundColor: 'transparent'
|
|
41
|
+
},
|
|
35
42
|
['& .SCCheckout-content-desc']: {
|
|
36
43
|
display: 'flex',
|
|
37
44
|
flexDirection: 'column',
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -11418,6 +11418,7 @@ declare const theme: {
|
|
|
11418
11418
|
[x: number]: {
|
|
11419
11419
|
width: string;
|
|
11420
11420
|
};
|
|
11421
|
+
position: string;
|
|
11421
11422
|
display: string;
|
|
11422
11423
|
flexDirection: string;
|
|
11423
11424
|
justifyContent: string;
|
|
@@ -11426,6 +11427,12 @@ declare const theme: {
|
|
|
11426
11427
|
width: string;
|
|
11427
11428
|
};
|
|
11428
11429
|
};
|
|
11430
|
+
"& .SCCheckout-content-coverage": {
|
|
11431
|
+
position: string;
|
|
11432
|
+
width: string;
|
|
11433
|
+
height: string;
|
|
11434
|
+
backgroundColor: string;
|
|
11435
|
+
};
|
|
11429
11436
|
"& .SCCheckout-content-desc": {
|
|
11430
11437
|
[x: number]: {
|
|
11431
11438
|
display: string;
|
|
@@ -11482,6 +11489,7 @@ declare const theme: {
|
|
|
11482
11489
|
alignItems: string;
|
|
11483
11490
|
'& .SCWidget-root': {
|
|
11484
11491
|
minWidth: number;
|
|
11492
|
+
paddingLeft: any;
|
|
11485
11493
|
};
|
|
11486
11494
|
};
|
|
11487
11495
|
'& .SCCheckoutSuccessDialog-content-object': {
|