@selfcommunity/react-theme-default 0.4.5-payments.213 → 0.4.5-payments.215

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.
Files changed (44) hide show
  1. package/lib/cjs/components/SCCheckout.d.ts +4 -2
  2. package/lib/cjs/components/SCCheckout.js +7 -4
  3. package/lib/cjs/components/SCCheckoutHeaderInfoWidget.d.ts +34 -0
  4. package/lib/cjs/components/SCCheckoutHeaderInfoWidget.js +34 -0
  5. package/lib/cjs/components/SCCheckoutReturnDialog.d.ts +2 -14
  6. package/lib/cjs/components/SCCheckoutReturnDialog.js +2 -14
  7. package/lib/cjs/components/SCCourseDashboard.d.ts +22 -0
  8. package/lib/cjs/components/SCCourseDashboard.js +22 -0
  9. package/lib/cjs/components/SCEventSubscribeButton.d.ts +12 -0
  10. package/lib/cjs/components/SCEventSubscribeButton.js +10 -0
  11. package/lib/cjs/components/SCGroupHeader.d.ts +12 -0
  12. package/lib/cjs/components/SCGroupHeader.js +12 -0
  13. package/lib/cjs/components/SCGroupSubscribeButton.d.ts +18 -0
  14. package/lib/cjs/components/SCGroupSubscribeButton.js +18 -0
  15. package/lib/cjs/components/SCPaymentProduct.d.ts +20 -22
  16. package/lib/cjs/components/SCPaymentProduct.js +24 -26
  17. package/lib/cjs/components/SCPaymentProductPrice.d.ts +19 -2
  18. package/lib/cjs/components/SCPaymentProductPrice.js +19 -2
  19. package/lib/cjs/components/SCPaymentProducts.js +1 -1
  20. package/lib/cjs/index.d.ts +144 -40
  21. package/lib/cjs/index.js +5 -1
  22. package/lib/esm/components/SCCheckout.d.ts +4 -2
  23. package/lib/esm/components/SCCheckout.js +7 -4
  24. package/lib/esm/components/SCCheckoutHeaderInfoWidget.d.ts +34 -0
  25. package/lib/esm/components/SCCheckoutHeaderInfoWidget.js +32 -0
  26. package/lib/esm/components/SCCheckoutReturnDialog.d.ts +2 -14
  27. package/lib/esm/components/SCCheckoutReturnDialog.js +2 -14
  28. package/lib/esm/components/SCCourseDashboard.d.ts +22 -0
  29. package/lib/esm/components/SCCourseDashboard.js +22 -0
  30. package/lib/esm/components/SCEventSubscribeButton.d.ts +12 -0
  31. package/lib/esm/components/SCEventSubscribeButton.js +10 -0
  32. package/lib/esm/components/SCGroupHeader.d.ts +12 -0
  33. package/lib/esm/components/SCGroupHeader.js +12 -0
  34. package/lib/esm/components/SCGroupSubscribeButton.d.ts +18 -0
  35. package/lib/esm/components/SCGroupSubscribeButton.js +16 -0
  36. package/lib/esm/components/SCPaymentProduct.d.ts +20 -22
  37. package/lib/esm/components/SCPaymentProduct.js +24 -26
  38. package/lib/esm/components/SCPaymentProductPrice.d.ts +19 -2
  39. package/lib/esm/components/SCPaymentProductPrice.js +19 -2
  40. package/lib/esm/components/SCPaymentProducts.js +1 -1
  41. package/lib/esm/index.d.ts +144 -40
  42. package/lib/esm/index.js +5 -1
  43. package/lib/umd/react-theme-default.js +1 -1
  44. package/package.json +2 -2
@@ -2156,6 +2156,18 @@ declare const theme: {
2156
2156
  alignItems: string;
2157
2157
  gap: any;
2158
2158
  };
2159
+ '& .SCBuyButton-request-root': {
2160
+ fontWeight: any;
2161
+ '& .MuiButton-startIcon': {
2162
+ marginRight: any;
2163
+ '& .MuiIcon-root': {
2164
+ fontSize: string;
2165
+ };
2166
+ };
2167
+ '&.Mui-selected, &:hover': {
2168
+ backgroundColor: string;
2169
+ };
2170
+ };
2159
2171
  };
2160
2172
  };
2161
2173
  };
@@ -2282,6 +2294,16 @@ declare const theme: {
2282
2294
  };
2283
2295
  margin: string;
2284
2296
  gap: string;
2297
+ '& .SCBuyButton-request-root': {
2298
+ '&:hover, &:active': {
2299
+ backgroundColor: any;
2300
+ color: any;
2301
+ border: string;
2302
+ '& .MuiIcon-root': {
2303
+ color: any;
2304
+ };
2305
+ };
2306
+ };
2285
2307
  };
2286
2308
  };
2287
2309
  '& .SCCourseDashboard-lessons-sections': {
@@ -4955,6 +4977,18 @@ declare const theme: {
4955
4977
  alignItems: string;
4956
4978
  gap: any;
4957
4979
  };
4980
+ '& .SCBuyButton-request-root': {
4981
+ fontWeight: any;
4982
+ '& .MuiButton-startIcon': {
4983
+ marginRight: any;
4984
+ '& .MuiIcon-root': {
4985
+ fontSize: string;
4986
+ };
4987
+ };
4988
+ '&.Mui-selected, &:hover': {
4989
+ backgroundColor: string;
4990
+ };
4991
+ };
4958
4992
  };
4959
4993
  '& .SCGroupHeader-multi-actions': {
4960
4994
  display: string;
@@ -5193,6 +5227,23 @@ declare const theme: {
5193
5227
  };
5194
5228
  };
5195
5229
  };
5230
+ SCGroupSubscribeButton: {
5231
+ styleOverrides: {
5232
+ buyButtonRoot: ({ theme }: {
5233
+ theme: any;
5234
+ }) => {
5235
+ border: string;
5236
+ '&:hover, &:active': {
5237
+ backgroundColor: any;
5238
+ color: any;
5239
+ border: string;
5240
+ '& .MuiIcon-root': {
5241
+ color: any;
5242
+ };
5243
+ };
5244
+ };
5245
+ };
5246
+ };
5196
5247
  SCGroupTemplate: {
5197
5248
  styleOverrides: {
5198
5249
  root: ({ theme }: any) => {
@@ -7886,6 +7937,9 @@ declare const theme: {
7886
7937
  alignItems: string;
7887
7938
  marginRight: any;
7888
7939
  '& .MuiIcon-root': {
7940
+ /**
7941
+ * Style assets - Imports - Start
7942
+ */
7889
7943
  margin: any;
7890
7944
  };
7891
7945
  };
@@ -10163,6 +10217,18 @@ declare const theme: {
10163
10217
  requestRoot: ({ theme }: {
10164
10218
  theme: any;
10165
10219
  }) => {};
10220
+ buyButtonRoot: ({ theme }: {
10221
+ theme: any;
10222
+ }) => {
10223
+ '&:hover, &:active': {
10224
+ backgroundColor: any;
10225
+ color: any;
10226
+ border: string;
10227
+ '& .MuiIcon-root': {
10228
+ color: any;
10229
+ };
10230
+ };
10231
+ };
10166
10232
  menuRoot: ({ theme }: {
10167
10233
  theme: any;
10168
10234
  }) => {
@@ -11640,47 +11706,45 @@ declare const theme: {
11640
11706
  root: ({ theme }: {
11641
11707
  theme: any;
11642
11708
  }) => {
11709
+ marginBottom: any;
11643
11710
  borderRadius: string;
11644
- '& .MuiAccordionSummary-root': {
11645
- backgroundColor: any;
11646
- '& .MuiAccordionSummary-content': {
11647
- display: string;
11648
- flexDirection: string;
11649
- '& .SCBaseItem-root': {
11650
- backgroundColor: string;
11651
- };
11652
- '& .MuiTypography-body1': {
11653
- [x: number]: {
11654
- fontSize: any;
11655
- };
11656
- fontWeight: number;
11657
- color: any;
11658
- };
11711
+ boxShadow: string;
11712
+ backgroundColor: any;
11713
+ '& .MuiCardContent-root': {
11714
+ '& .SCBaseItem-root': {
11715
+ backgroundColor: string;
11659
11716
  };
11660
- '& .MuiAccordionDetails-root': {
11661
- marginTop: any;
11717
+ '& .MuiTypography-body1': {
11718
+ [x: number]: {
11719
+ fontSize: any;
11720
+ };
11721
+ fontWeight: number;
11722
+ color: any;
11662
11723
  };
11663
11724
  };
11664
11725
  '& .SCPaymentProductPrice-root': {
11665
- marginBottom: any;
11666
11726
  width: string;
11667
- borderRadius: string;
11727
+ paddingLeft: string;
11668
11728
  };
11669
11729
  };
11670
11730
  skeletonRoot: ({ theme }: {
11671
11731
  theme: any;
11672
11732
  }) => {
11733
+ marginBottom: any;
11673
11734
  borderRadius: string;
11674
- '& .MuiAccordionSummary-root': {
11675
- backgroundColor: any;
11735
+ boxShadow: string;
11736
+ backgroundColor: any;
11737
+ '& .MuiCardContent-root': {
11676
11738
  marginBottom: any;
11677
11739
  '& .SCBaseItem-root': {
11678
11740
  backgroundColor: string;
11741
+ boxShadow: string;
11679
11742
  };
11680
11743
  };
11681
11744
  '& .SCPaymentProductPrice-skeleton-root': {
11682
- marginBottom: any;
11745
+ marginTop: any;
11683
11746
  width: string;
11747
+ paddingLeft: string;
11684
11748
  };
11685
11749
  };
11686
11750
  };
@@ -11726,7 +11790,24 @@ declare const theme: {
11726
11790
  root: ({ theme }: {
11727
11791
  theme: any;
11728
11792
  }) => {
11729
- borderRadius: string;
11793
+ borderRadius: number;
11794
+ boxShadow: string;
11795
+ '& .SCPaymentProductPrice-primary': {
11796
+ fontSize: string;
11797
+ fontWeight: string;
11798
+ color: string;
11799
+ };
11800
+ '& .SCPaymentProductPrice-button': {
11801
+ textTransform: string;
11802
+ '&:hover, &:active': {
11803
+ backgroundColor: any;
11804
+ color: any;
11805
+ border: string;
11806
+ '& .MuiIcon-root': {
11807
+ color: any;
11808
+ };
11809
+ };
11810
+ };
11730
11811
  '& .SCPaymentProductPrice-button-purchased': {
11731
11812
  backgroundColor: string;
11732
11813
  color: string;
@@ -11738,7 +11819,7 @@ declare const theme: {
11738
11819
  skeletonRoot: ({ theme }: {
11739
11820
  theme: any;
11740
11821
  }) => {
11741
- borderRadius: string;
11822
+ borderRadius: number;
11742
11823
  };
11743
11824
  };
11744
11825
  };
@@ -11765,6 +11846,7 @@ declare const theme: {
11765
11846
  maxWidth: number;
11766
11847
  display: string;
11767
11848
  gridTemplateColumns: string;
11849
+ padding: any;
11768
11850
  gap: number;
11769
11851
  "& .SCCheckout-content-object": {
11770
11852
  [x: number]: {
@@ -11777,6 +11859,9 @@ declare const theme: {
11777
11859
  alignItems: string;
11778
11860
  '& .SCWidget-root': {
11779
11861
  width: string;
11862
+ '& .SCEvent-preview-content': {
11863
+ padding: string;
11864
+ };
11780
11865
  };
11781
11866
  };
11782
11867
  "& .SCCheckout-content-coverage": {
@@ -11794,7 +11879,6 @@ declare const theme: {
11794
11879
  justifyContent: string;
11795
11880
  alignItems: string;
11796
11881
  maxWidth: number;
11797
- padding: any;
11798
11882
  };
11799
11883
  };
11800
11884
  "& .SCCheckout-checkout": {
@@ -11806,7 +11890,6 @@ declare const theme: {
11806
11890
  minWidth: number;
11807
11891
  width: string;
11808
11892
  };
11809
- margin: any;
11810
11893
  width: string;
11811
11894
  };
11812
11895
  "& .SCCheckout-payment-order": {
@@ -11872,22 +11955,10 @@ declare const theme: {
11872
11955
  '& .SCWidget-root': {
11873
11956
  minWidth: number;
11874
11957
  };
11875
- '& .SCGroup-root': {
11876
- paddingLeft: any;
11958
+ '& .MuiTypography-body2': {
11959
+ marginTop: any;
11877
11960
  };
11878
11961
  };
11879
- '& .SCCheckoutSuccessDialog-content-object': {
11880
- width: string;
11881
- };
11882
- '& .SCCourse-preview-root': {
11883
- minHeight: string;
11884
- };
11885
- '& .SCCategory-category-image': {
11886
- paddingLeft: any;
11887
- };
11888
- '& .SCGroup-avatar': {
11889
- marginLeft: any;
11890
- };
11891
11962
  };
11892
11963
  };
11893
11964
  };
@@ -12154,6 +12225,39 @@ declare const theme: {
12154
12225
  };
12155
12226
  };
12156
12227
  };
12228
+ SCCheckoutHeaderInfoWidget: {
12229
+ styleOverrides: {
12230
+ root: ({ theme }: {
12231
+ theme: any;
12232
+ }) => {
12233
+ '& .SCCheckoutHeaderInfoWidget-header': {
12234
+ height: any;
12235
+ position: string;
12236
+ backgroundColor: any;
12237
+ color: string;
12238
+ textAlign: string;
12239
+ '& img': {
12240
+ position: string;
12241
+ left: string;
12242
+ top: any;
12243
+ transform: string;
12244
+ };
12245
+ '& .MuiIcon-root': {
12246
+ top: any;
12247
+ position: string;
12248
+ };
12249
+ };
12250
+ '& .SCCheckoutHeaderInfoWidget-content': {
12251
+ padding: any;
12252
+ justifyContent: string;
12253
+ '& .MuiTypography-body2': {
12254
+ paddingTop: any;
12255
+ whiteSpace: string;
12256
+ };
12257
+ };
12258
+ };
12259
+ };
12260
+ };
12157
12261
  };
12158
12262
  selfcommunity: {
12159
12263
  user: {
package/lib/cjs/index.js CHANGED
@@ -117,6 +117,7 @@ const SCGroupMembersWidget_1 = tslib_1.__importDefault(require("./components/SCG
117
117
  const SCGroupRequestsWidget_1 = tslib_1.__importDefault(require("./components/SCGroupRequestsWidget"));
118
118
  const SCGroups_1 = tslib_1.__importDefault(require("./components/SCGroups"));
119
119
  const SCGroupSettingsIconButton_1 = tslib_1.__importDefault(require("./components/SCGroupSettingsIconButton"));
120
+ const SCGroupSubscribeButton_1 = tslib_1.__importDefault(require("./components/SCGroupSubscribeButton"));
120
121
  const SCGroupTemplate_1 = tslib_1.__importDefault(require("./components/SCGroupTemplate"));
121
122
  const SCIncubator_1 = tslib_1.__importDefault(require("./components/SCIncubator"));
122
123
  const SCIncubatorDetail_1 = tslib_1.__importDefault(require("./components/SCIncubatorDetail"));
@@ -219,6 +220,7 @@ const SCPaywalls_1 = tslib_1.__importDefault(require("./components/SCPaywalls"))
219
220
  const SCPaywallsConfigurator_1 = tslib_1.__importDefault(require("./components/SCPaywallsConfigurator"));
220
221
  const SCPdfPreview_1 = tslib_1.__importDefault(require("./components/SCPdfPreview"));
221
222
  const SCPaymentOrders_1 = tslib_1.__importDefault(require("./components/SCPaymentOrders"));
223
+ const SCCheckoutHeaderInfoWidget_1 = tslib_1.__importDefault(require("./components/SCCheckoutHeaderInfoWidget"));
222
224
  /**
223
225
  * Style fragments - Imports - End
224
226
  */
@@ -399,6 +401,7 @@ const theme = {
399
401
  SCGroupMembersWidget: SCGroupMembersWidget_1.default,
400
402
  SCGroupRequestsWidget: SCGroupRequestsWidget_1.default,
401
403
  SCGroupSettingsIconButton: SCGroupSettingsIconButton_1.default,
404
+ SCGroupSubscribeButton: SCGroupSubscribeButton_1.default,
402
405
  SCGroupTemplate: SCGroupTemplate_1.default,
403
406
  SCGroups: SCGroups_1.default,
404
407
  SCIncubator: SCIncubator_1.default,
@@ -520,7 +523,8 @@ const theme = {
520
523
  SCPaywalls: SCPaywalls_1.default,
521
524
  SCPaywallsConfigurator: SCPaywallsConfigurator_1.default,
522
525
  SCPdfPreview: SCPdfPreview_1.default,
523
- SCPaymentOrders: SCPaymentOrders_1.default
526
+ SCPaymentOrders: SCPaymentOrders_1.default,
527
+ SCCheckoutHeaderInfoWidget: SCCheckoutHeaderInfoWidget_1.default
524
528
  },
525
529
  selfcommunity: {
526
530
  user: {
@@ -21,6 +21,7 @@ declare const Component: {
21
21
  maxWidth: number;
22
22
  display: string;
23
23
  gridTemplateColumns: string;
24
+ padding: any;
24
25
  gap: number;
25
26
  "& .SCCheckout-content-object": {
26
27
  [x: number]: {
@@ -33,6 +34,9 @@ declare const Component: {
33
34
  alignItems: string;
34
35
  '& .SCWidget-root': {
35
36
  width: string;
37
+ '& .SCEvent-preview-content': {
38
+ padding: string;
39
+ };
36
40
  };
37
41
  };
38
42
  "& .SCCheckout-content-coverage": {
@@ -50,7 +54,6 @@ declare const Component: {
50
54
  justifyContent: string;
51
55
  alignItems: string;
52
56
  maxWidth: number;
53
- padding: any;
54
57
  };
55
58
  };
56
59
  "& .SCCheckout-checkout": {
@@ -62,7 +65,6 @@ declare const Component: {
62
65
  minWidth: number;
63
66
  width: string;
64
67
  };
65
- margin: any;
66
68
  width: string;
67
69
  };
68
70
  "& .SCCheckout-payment-order": {
@@ -13,6 +13,7 @@ const Component = {
13
13
  maxWidth: 860,
14
14
  display: 'grid',
15
15
  gridTemplateColumns: '1fr 1fr',
16
+ padding: theme.spacing(2),
16
17
  gap: 0,
17
18
  [theme.breakpoints.down(1034)]: {
18
19
  display: 'flex',
@@ -30,7 +31,10 @@ const Component = {
30
31
  width: '90%'
31
32
  },
32
33
  '& .SCWidget-root': {
33
- width: '93%'
34
+ width: '93%',
35
+ '& .SCEvent-preview-content': {
36
+ padding: `${theme.spacing(2)} !important`
37
+ }
34
38
  }
35
39
  },
36
40
  ['& .SCCheckout-content-coverage']: {
@@ -47,8 +51,7 @@ const Component = {
47
51
  [theme.breakpoints.down(1034)]: {
48
52
  display: 'none'
49
53
  },
50
- maxWidth: 600,
51
- padding: theme.spacing(4)
54
+ maxWidth: 600
52
55
  }
53
56
  },
54
57
  ['& .SCCheckout-checkout']: {
@@ -56,7 +59,7 @@ const Component = {
56
59
  bottom: theme.spacing(2)
57
60
  },
58
61
  ['& .SCCheckout-object']: {
59
- margin: theme.spacing(2, 2, 0.5, 0),
62
+ // margin: theme.spacing(2, 2, 0.5, 0),
60
63
  width: '100%',
61
64
  [theme.breakpoints.up('sm')]: {
62
65
  minWidth: 395,
@@ -0,0 +1,34 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: {
4
+ theme: any;
5
+ }) => {
6
+ '& .SCCheckoutHeaderInfoWidget-header': {
7
+ height: any;
8
+ position: string;
9
+ backgroundColor: any;
10
+ color: string;
11
+ textAlign: string;
12
+ '& img': {
13
+ position: string;
14
+ left: string;
15
+ top: any;
16
+ transform: string;
17
+ };
18
+ '& .MuiIcon-root': {
19
+ top: any;
20
+ position: string;
21
+ };
22
+ };
23
+ '& .SCCheckoutHeaderInfoWidget-content': {
24
+ padding: any;
25
+ justifyContent: string;
26
+ '& .MuiTypography-body2': {
27
+ paddingTop: any;
28
+ whiteSpace: string;
29
+ };
30
+ };
31
+ };
32
+ };
33
+ };
34
+ export default Component;
@@ -0,0 +1,32 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ '& .SCCheckoutHeaderInfoWidget-header': {
5
+ height: theme.spacing(10),
6
+ position: 'relative',
7
+ backgroundColor: theme.palette.primary.main,
8
+ color: 'white',
9
+ textAlign: 'center',
10
+ '& img': {
11
+ position: 'absolute',
12
+ left: '50%',
13
+ top: theme.spacing(1),
14
+ transform: 'translateX(-50%)'
15
+ },
16
+ '& .MuiIcon-root': {
17
+ top: theme.spacing(5),
18
+ position: 'relative'
19
+ }
20
+ },
21
+ '& .SCCheckoutHeaderInfoWidget-content': {
22
+ padding: theme.spacing(1.5),
23
+ justifyContent: 'center',
24
+ '& .MuiTypography-body2': {
25
+ paddingTop: theme.spacing(1),
26
+ whiteSpace: 'pre-line'
27
+ }
28
+ }
29
+ })
30
+ }
31
+ };
32
+ export default Component;
@@ -16,22 +16,10 @@ declare const Component: {
16
16
  '& .SCWidget-root': {
17
17
  minWidth: number;
18
18
  };
19
- '& .SCGroup-root': {
20
- paddingLeft: any;
19
+ '& .MuiTypography-body2': {
20
+ marginTop: any;
21
21
  };
22
22
  };
23
- '& .SCCheckoutSuccessDialog-content-object': {
24
- width: string;
25
- };
26
- '& .SCCourse-preview-root': {
27
- minHeight: string;
28
- };
29
- '& .SCCategory-category-image': {
30
- paddingLeft: any;
31
- };
32
- '& .SCGroup-avatar': {
33
- marginLeft: any;
34
- };
35
23
  };
36
24
  };
37
25
  };
@@ -14,21 +14,9 @@ const Component = {
14
14
  '& .SCWidget-root': {
15
15
  minWidth: 310
16
16
  },
17
- '& .SCGroup-root': {
18
- paddingLeft: theme.spacing()
17
+ '& .MuiTypography-body2': {
18
+ marginTop: theme.spacing(1)
19
19
  }
20
- },
21
- '& .SCCheckoutSuccessDialog-content-object': {
22
- width: '100%'
23
- },
24
- '& .SCCourse-preview-root': {
25
- minHeight: 'auto'
26
- },
27
- '& .SCCategory-category-image': {
28
- paddingLeft: theme.spacing(1)
29
- },
30
- '& .SCGroup-avatar': {
31
- marginLeft: theme.spacing(1)
32
20
  }
33
21
  })
34
22
  }
@@ -52,6 +52,18 @@ declare const Component: {
52
52
  alignItems: string;
53
53
  gap: any;
54
54
  };
55
+ '& .SCBuyButton-request-root': {
56
+ fontWeight: any;
57
+ '& .MuiButton-startIcon': {
58
+ marginRight: any;
59
+ '& .MuiIcon-root': {
60
+ fontSize: string;
61
+ };
62
+ };
63
+ '&.Mui-selected, &:hover': {
64
+ backgroundColor: string;
65
+ };
66
+ };
55
67
  };
56
68
  };
57
69
  };
@@ -178,6 +190,16 @@ declare const Component: {
178
190
  };
179
191
  margin: string;
180
192
  gap: string;
193
+ '& .SCBuyButton-request-root': {
194
+ '&:hover, &:active': {
195
+ backgroundColor: any;
196
+ color: any;
197
+ border: string;
198
+ '& .MuiIcon-root': {
199
+ color: any;
200
+ };
201
+ };
202
+ };
181
203
  };
182
204
  };
183
205
  '& .SCCourseDashboard-lessons-sections': {
@@ -50,6 +50,18 @@ const Component = {
50
50
  flexDirection: 'row',
51
51
  alignItems: 'center',
52
52
  gap: theme.spacing(1)
53
+ },
54
+ '& .SCBuyButton-request-root': {
55
+ fontWeight: theme.typography.fontWeightBold,
56
+ '& .MuiButton-startIcon': {
57
+ marginRight: theme.spacing(0.5),
58
+ '& .MuiIcon-root': {
59
+ fontSize: '1.5rem'
60
+ }
61
+ },
62
+ '&.Mui-selected, &:hover': {
63
+ backgroundColor: 'transparent'
64
+ }
53
65
  }
54
66
  }
55
67
  }
@@ -173,6 +185,16 @@ const Component = {
173
185
  [theme.breakpoints.up('sm')]: {
174
186
  flexDirection: 'row',
175
187
  margin: 0
188
+ },
189
+ '& .SCBuyButton-request-root': {
190
+ '&:hover, &:active': {
191
+ backgroundColor: theme.palette.common.white,
192
+ color: theme.palette.primary.main,
193
+ border: `1px solid ${theme.palette.primary.main}`,
194
+ '& .MuiIcon-root': {
195
+ color: theme.palette.primary.main
196
+ }
197
+ }
176
198
  }
177
199
  }
178
200
  },
@@ -49,6 +49,18 @@ declare const Component: {
49
49
  requestRoot: ({ theme }: {
50
50
  theme: any;
51
51
  }) => {};
52
+ buyButtonRoot: ({ theme }: {
53
+ theme: any;
54
+ }) => {
55
+ '&:hover, &:active': {
56
+ backgroundColor: any;
57
+ color: any;
58
+ border: string;
59
+ '& .MuiIcon-root': {
60
+ color: any;
61
+ };
62
+ };
63
+ };
52
64
  menuRoot: ({ theme }: {
53
65
  theme: any;
54
66
  }) => {
@@ -45,6 +45,16 @@ const Component = {
45
45
  }
46
46
  }),
47
47
  requestRoot: ({ theme }) => ({}),
48
+ buyButtonRoot: ({ theme }) => ({
49
+ '&:hover, &:active': {
50
+ backgroundColor: theme.palette.common.white,
51
+ color: theme.palette.primary.main,
52
+ border: `1px solid ${theme.palette.primary.main}`,
53
+ '& .MuiIcon-root': {
54
+ color: theme.palette.primary.main
55
+ }
56
+ }
57
+ }),
48
58
  menuRoot: ({ theme }) => ({
49
59
  '& .MuiPaper-root': {
50
60
  width: 195,
@@ -39,6 +39,18 @@ declare const Component: {
39
39
  alignItems: string;
40
40
  gap: any;
41
41
  };
42
+ '& .SCBuyButton-request-root': {
43
+ fontWeight: any;
44
+ '& .MuiButton-startIcon': {
45
+ marginRight: any;
46
+ '& .MuiIcon-root': {
47
+ fontSize: string;
48
+ };
49
+ };
50
+ '&.Mui-selected, &:hover': {
51
+ backgroundColor: string;
52
+ };
53
+ };
42
54
  };
43
55
  '& .SCGroupHeader-multi-actions': {
44
56
  display: string;