@selfcommunity/react-theme-default 0.5.0-alpha.0 → 0.5.0-alpha.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.
Files changed (157) hide show
  1. package/lib/cjs/components/MuiAppBar.js +2 -2
  2. package/lib/cjs/components/SCBottomNavigation.js +2 -2
  3. package/lib/cjs/components/SCBuyButton.d.ts +15 -0
  4. package/lib/cjs/components/SCBuyButton.js +13 -0
  5. package/lib/cjs/components/SCCategory.d.ts +8 -0
  6. package/lib/cjs/components/SCCategory.js +8 -0
  7. package/lib/cjs/components/SCCategoryFollowButton.d.ts +8 -0
  8. package/lib/cjs/components/SCCategoryFollowButton.js +10 -0
  9. package/lib/cjs/components/SCCategoryHeader.d.ts +4 -0
  10. package/lib/cjs/components/SCCategoryHeader.js +5 -1
  11. package/lib/cjs/components/SCCheckout.d.ts +115 -0
  12. package/lib/cjs/components/SCCheckout.js +116 -0
  13. package/lib/cjs/components/SCCheckoutHeaderInfoWidget.d.ts +34 -0
  14. package/lib/cjs/components/SCCheckoutHeaderInfoWidget.js +34 -0
  15. package/lib/cjs/components/SCCheckoutReturnDialog.d.ts +26 -0
  16. package/lib/cjs/components/SCCheckoutReturnDialog.js +26 -0
  17. package/lib/cjs/components/SCComposer.d.ts +16 -0
  18. package/lib/cjs/components/SCComposer.js +16 -0
  19. package/lib/cjs/components/SCCourse.d.ts +19 -1
  20. package/lib/cjs/components/SCCourse.js +19 -1
  21. package/lib/cjs/components/SCCourseDashboard.d.ts +22 -0
  22. package/lib/cjs/components/SCCourseDashboard.js +22 -0
  23. package/lib/cjs/components/SCCourses.d.ts +3 -0
  24. package/lib/cjs/components/SCCourses.js +3 -0
  25. package/lib/cjs/components/SCEditCourse.d.ts +7 -0
  26. package/lib/cjs/components/SCEditCourse.js +7 -0
  27. package/lib/cjs/components/SCEventForm.d.ts +3 -0
  28. package/lib/cjs/components/SCEventForm.js +3 -0
  29. package/lib/cjs/components/SCEventHeader.d.ts +12 -0
  30. package/lib/cjs/components/SCEventHeader.js +12 -0
  31. package/lib/cjs/components/SCEventSubscribeButton.d.ts +12 -0
  32. package/lib/cjs/components/SCEventSubscribeButton.js +10 -0
  33. package/lib/cjs/components/SCFeedObject.d.ts +17 -10
  34. package/lib/cjs/components/SCFeedObject.js +18 -11
  35. package/lib/cjs/components/SCGroup.d.ts +6 -2
  36. package/lib/cjs/components/SCGroup.js +6 -2
  37. package/lib/cjs/components/SCGroupHeader.d.ts +12 -0
  38. package/lib/cjs/components/SCGroupHeader.js +12 -0
  39. package/lib/cjs/components/SCGroupSubscribeButton.d.ts +18 -0
  40. package/lib/cjs/components/SCGroupSubscribeButton.js +18 -0
  41. package/lib/cjs/components/SCHiddenPurchasableContent.d.ts +8 -0
  42. package/lib/cjs/components/SCHiddenPurchasableContent.js +10 -0
  43. package/lib/cjs/components/SCMediaFile.d.ts +58 -5
  44. package/lib/cjs/components/SCMediaFile.js +56 -5
  45. package/lib/cjs/components/SCMediaLink.d.ts +2 -1
  46. package/lib/cjs/components/SCMediaLink.js +2 -1
  47. package/lib/cjs/components/SCNavigationToolbar.js +2 -2
  48. package/lib/cjs/components/SCNavigationToolbarMobile.js +2 -2
  49. package/lib/cjs/components/SCPaymentOrder.d.ts +22 -0
  50. package/lib/cjs/components/SCPaymentOrder.js +20 -0
  51. package/lib/cjs/components/SCPaymentOrderPdfButton.d.ts +16 -0
  52. package/lib/cjs/components/SCPaymentOrderPdfButton.js +16 -0
  53. package/lib/cjs/components/SCPaymentOrders.d.ts +62 -0
  54. package/lib/cjs/components/SCPaymentOrders.js +64 -0
  55. package/lib/cjs/components/SCPaymentProduct.d.ts +49 -0
  56. package/lib/cjs/components/SCPaymentProduct.js +47 -0
  57. package/lib/cjs/components/SCPaymentProductPrice.d.ts +39 -0
  58. package/lib/cjs/components/SCPaymentProductPrice.js +37 -0
  59. package/lib/cjs/components/SCPaymentProducts.d.ts +15 -0
  60. package/lib/cjs/components/SCPaymentProducts.js +13 -0
  61. package/lib/cjs/components/SCPaywalls.d.ts +12 -0
  62. package/lib/cjs/components/SCPaywalls.js +12 -0
  63. package/lib/cjs/components/SCPaywallsConfigurator.d.ts +157 -0
  64. package/lib/cjs/components/SCPaywallsConfigurator.js +160 -0
  65. package/lib/cjs/components/SCPdfPreview.d.ts +29 -0
  66. package/lib/cjs/components/SCPdfPreview.js +31 -0
  67. package/lib/cjs/components/SCSearchAutocomplete.js +7 -7
  68. package/lib/cjs/fonts/community/icons.eot +0 -0
  69. package/lib/cjs/fonts/community/icons.svg +75 -69
  70. package/lib/cjs/fonts/community/icons.ttf +0 -0
  71. package/lib/cjs/fonts/community/icons.woff +0 -0
  72. package/lib/cjs/fonts/community/icons.woff2 +0 -0
  73. package/lib/cjs/fonts/community-icons.css +133 -126
  74. package/lib/cjs/index.d.ts +849 -39
  75. package/lib/cjs/index.js +47 -1
  76. package/lib/esm/components/MuiAppBar.js +1 -1
  77. package/lib/esm/components/SCBottomNavigation.js +1 -1
  78. package/lib/esm/components/SCBuyButton.d.ts +15 -0
  79. package/lib/esm/components/SCBuyButton.js +11 -0
  80. package/lib/esm/components/SCCategory.d.ts +8 -0
  81. package/lib/esm/components/SCCategory.js +8 -0
  82. package/lib/esm/components/SCCategoryFollowButton.d.ts +8 -0
  83. package/lib/esm/components/SCCategoryFollowButton.js +8 -0
  84. package/lib/esm/components/SCCategoryHeader.d.ts +4 -0
  85. package/lib/esm/components/SCCategoryHeader.js +5 -1
  86. package/lib/esm/components/SCCheckout.d.ts +115 -0
  87. package/lib/esm/components/SCCheckout.js +114 -0
  88. package/lib/esm/components/SCCheckoutHeaderInfoWidget.d.ts +34 -0
  89. package/lib/esm/components/SCCheckoutHeaderInfoWidget.js +32 -0
  90. package/lib/esm/components/SCCheckoutReturnDialog.d.ts +26 -0
  91. package/lib/esm/components/SCCheckoutReturnDialog.js +24 -0
  92. package/lib/esm/components/SCComposer.d.ts +16 -0
  93. package/lib/esm/components/SCComposer.js +16 -0
  94. package/lib/esm/components/SCCourse.d.ts +19 -1
  95. package/lib/esm/components/SCCourse.js +19 -1
  96. package/lib/esm/components/SCCourseDashboard.d.ts +22 -0
  97. package/lib/esm/components/SCCourseDashboard.js +22 -0
  98. package/lib/esm/components/SCCourses.d.ts +3 -0
  99. package/lib/esm/components/SCCourses.js +3 -0
  100. package/lib/esm/components/SCEditCourse.d.ts +7 -0
  101. package/lib/esm/components/SCEditCourse.js +7 -0
  102. package/lib/esm/components/SCEventForm.d.ts +3 -0
  103. package/lib/esm/components/SCEventForm.js +3 -0
  104. package/lib/esm/components/SCEventHeader.d.ts +12 -0
  105. package/lib/esm/components/SCEventHeader.js +12 -0
  106. package/lib/esm/components/SCEventSubscribeButton.d.ts +12 -0
  107. package/lib/esm/components/SCEventSubscribeButton.js +10 -0
  108. package/lib/esm/components/SCFeedObject.d.ts +17 -10
  109. package/lib/esm/components/SCFeedObject.js +18 -11
  110. package/lib/esm/components/SCGroup.d.ts +6 -2
  111. package/lib/esm/components/SCGroup.js +6 -2
  112. package/lib/esm/components/SCGroupHeader.d.ts +12 -0
  113. package/lib/esm/components/SCGroupHeader.js +12 -0
  114. package/lib/esm/components/SCGroupSubscribeButton.d.ts +18 -0
  115. package/lib/esm/components/SCGroupSubscribeButton.js +16 -0
  116. package/lib/esm/components/SCHiddenPurchasableContent.d.ts +8 -0
  117. package/lib/esm/components/SCHiddenPurchasableContent.js +8 -0
  118. package/lib/esm/components/SCMediaFile.d.ts +58 -5
  119. package/lib/esm/components/SCMediaFile.js +56 -5
  120. package/lib/esm/components/SCMediaLink.d.ts +2 -1
  121. package/lib/esm/components/SCMediaLink.js +2 -1
  122. package/lib/esm/components/SCNavigationToolbar.js +1 -1
  123. package/lib/esm/components/SCNavigationToolbarMobile.js +1 -1
  124. package/lib/esm/components/SCPaymentOrder.d.ts +22 -0
  125. package/lib/esm/components/SCPaymentOrder.js +18 -0
  126. package/lib/esm/components/SCPaymentOrderPdfButton.d.ts +16 -0
  127. package/lib/esm/components/SCPaymentOrderPdfButton.js +14 -0
  128. package/lib/esm/components/SCPaymentOrders.d.ts +62 -0
  129. package/lib/esm/components/SCPaymentOrders.js +62 -0
  130. package/lib/esm/components/SCPaymentProduct.d.ts +49 -0
  131. package/lib/esm/components/SCPaymentProduct.js +45 -0
  132. package/lib/esm/components/SCPaymentProductPrice.d.ts +39 -0
  133. package/lib/esm/components/SCPaymentProductPrice.js +35 -0
  134. package/lib/esm/components/SCPaymentProducts.d.ts +15 -0
  135. package/lib/esm/components/SCPaymentProducts.js +11 -0
  136. package/lib/esm/components/SCPaywalls.d.ts +12 -0
  137. package/lib/esm/components/SCPaywalls.js +10 -0
  138. package/lib/esm/components/SCPaywallsConfigurator.d.ts +157 -0
  139. package/lib/esm/components/SCPaywallsConfigurator.js +158 -0
  140. package/lib/esm/components/SCPdfPreview.d.ts +29 -0
  141. package/lib/esm/components/SCPdfPreview.js +29 -0
  142. package/lib/esm/components/SCSearchAutocomplete.js +1 -1
  143. package/lib/esm/fonts/community/icons.eot +0 -0
  144. package/lib/esm/fonts/community/icons.svg +75 -69
  145. package/lib/esm/fonts/community/icons.ttf +0 -0
  146. package/lib/esm/fonts/community/icons.woff +0 -0
  147. package/lib/esm/fonts/community/icons.woff2 +0 -0
  148. package/lib/esm/fonts/community-icons.css +133 -126
  149. package/lib/esm/index.d.ts +849 -39
  150. package/lib/esm/index.js +47 -1
  151. package/lib/umd/community/icons.eot +0 -0
  152. package/lib/umd/community/icons.svg +75 -69
  153. package/lib/umd/community/icons.ttf +0 -0
  154. package/lib/umd/community/icons.woff +0 -0
  155. package/lib/umd/community/icons.woff2 +0 -0
  156. package/lib/umd/react-theme-default.js +1 -1
  157. package/package.json +2 -2
@@ -773,6 +773,10 @@ declare const theme: {
773
773
  textOverflow: string;
774
774
  display: string;
775
775
  };
776
+ '&.MuiPaper-outlined': {
777
+ paddingLeft: any;
778
+ paddingRight: any;
779
+ };
776
780
  };
777
781
  skeletonRoot: ({ theme }: any) => {
778
782
  '& .SCCategory-image': {
@@ -787,6 +791,10 @@ declare const theme: {
787
791
  '& .SCCategory-action': {
788
792
  margin: any;
789
793
  };
794
+ '&.MuiPaper-outlined': {
795
+ paddingLeft: any;
796
+ paddingRight: any;
797
+ };
790
798
  };
791
799
  };
792
800
  };
@@ -838,6 +846,13 @@ declare const theme: {
838
846
  dialogRoot: () => {};
839
847
  };
840
848
  };
849
+ SCCategoryFollowButton: {
850
+ styleOverrides: {
851
+ root: ({ theme }: any) => {
852
+ padding: any;
853
+ };
854
+ };
855
+ };
841
856
  SCCategoryHeader: {
842
857
  defaultProps: {
843
858
  CategoryFollowButtonProps: {
@@ -886,6 +901,10 @@ declare const theme: {
886
901
  '& .SCCategoryHeader-followed, & .SCCategoryHeader-action': {
887
902
  textAlign: string;
888
903
  marginBottom: any;
904
+ '& button': {
905
+ marginLeft: any;
906
+ marginRight: any;
907
+ };
889
908
  };
890
909
  '& .SCCategoryHeader-followed': {
891
910
  marginBottom: string;
@@ -1552,6 +1571,22 @@ declare const theme: {
1552
1571
  };
1553
1572
  };
1554
1573
  layerLocationRoot: () => {};
1574
+ layerScheduledRoot: ({ theme }: any) => {
1575
+ '& .SCComposer-layer-scheduled-picker': {
1576
+ display: string;
1577
+ flexDirection: string;
1578
+ justifyContent: string;
1579
+ alignItems: string;
1580
+ '& .MuiTypography-h4': {
1581
+ color: any;
1582
+ };
1583
+ };
1584
+ '& .SCComposer-layer-scheduled-message': {
1585
+ textAlign: string;
1586
+ marginTop: any;
1587
+ marginBottom: any;
1588
+ };
1589
+ };
1555
1590
  skeletonRoot: () => {};
1556
1591
  typeSwitchButtonGroupRoot: ({ theme }: any) => {
1557
1592
  '& .MuiToggleButton-root': {
@@ -1756,7 +1791,7 @@ declare const theme: {
1756
1791
  };
1757
1792
  SCCourse: {
1758
1793
  styleOverrides: {
1759
- root: () => {
1794
+ root: ({ theme }: any) => {
1760
1795
  width: string;
1761
1796
  };
1762
1797
  snippetRoot: ({ theme }: any) => {
@@ -1778,6 +1813,17 @@ declare const theme: {
1778
1813
  };
1779
1814
  '& .SCCourse-snippet-image': {
1780
1815
  position: string;
1816
+ marginLeft: any;
1817
+ '& .SCCourse-chip': {
1818
+ maxWidth: number;
1819
+ borderRadius: number;
1820
+ boxShadow: string;
1821
+ height: number;
1822
+ '& span': {
1823
+ padding: number;
1824
+ fontSize: string;
1825
+ };
1826
+ };
1781
1827
  '& .SCCourse-snippet-in-progress': {
1782
1828
  height: number;
1783
1829
  backgroundColor: any;
@@ -1826,6 +1872,9 @@ declare const theme: {
1826
1872
  padding: any;
1827
1873
  };
1828
1874
  };
1875
+ '& .SCBaseItemButton-actions': {
1876
+ marginRight: any;
1877
+ };
1829
1878
  };
1830
1879
  previewRoot: ({ theme }: any) => {
1831
1880
  [x: number]: {
@@ -2019,6 +2068,10 @@ declare const theme: {
2019
2068
  };
2020
2069
  };
2021
2070
  };
2071
+ '&.MuiPaper-outlined': {
2072
+ paddingLeft: any;
2073
+ paddingRight: any;
2074
+ };
2022
2075
  };
2023
2076
  };
2024
2077
  };
@@ -2119,6 +2172,18 @@ declare const theme: {
2119
2172
  alignItems: string;
2120
2173
  gap: any;
2121
2174
  };
2175
+ '& .SCBuyButton-request-root': {
2176
+ fontWeight: any;
2177
+ '& .MuiButton-startIcon': {
2178
+ marginRight: any;
2179
+ '& .MuiIcon-root': {
2180
+ fontSize: string;
2181
+ };
2182
+ };
2183
+ '&.Mui-selected, &:hover': {
2184
+ backgroundColor: string;
2185
+ };
2186
+ };
2122
2187
  };
2123
2188
  };
2124
2189
  };
@@ -2245,6 +2310,16 @@ declare const theme: {
2245
2310
  };
2246
2311
  margin: string;
2247
2312
  gap: string;
2313
+ '& .SCBuyButton-request-root': {
2314
+ '&:hover, &:active': {
2315
+ backgroundColor: any;
2316
+ color: any;
2317
+ border: string;
2318
+ '& .MuiIcon-root': {
2319
+ color: any;
2320
+ };
2321
+ };
2322
+ };
2248
2323
  };
2249
2324
  };
2250
2325
  '& .SCCourseDashboard-lessons-sections': {
@@ -2432,6 +2507,9 @@ declare const theme: {
2432
2507
  SCCourses: {
2433
2508
  styleOverrides: {
2434
2509
  root: ({ theme }: any) => {
2510
+ '& .infinite-scroll-component__outerdiv .infinite-scroll-component': {
2511
+ overflow: string;
2512
+ };
2435
2513
  '& .SCCourses-filters': {
2436
2514
  alignItems: string;
2437
2515
  marginTop: any;
@@ -3633,6 +3711,13 @@ declare const theme: {
3633
3711
  margin: any;
3634
3712
  };
3635
3713
  };
3714
+ '& .SCCourseForm-paywalls-configurator-wrap': {
3715
+ marginBottom: any;
3716
+ '& .SCPaywallsConfigurator-content-access-type': {
3717
+ fontSize: string;
3718
+ padding: any;
3719
+ };
3720
+ };
3636
3721
  };
3637
3722
  };
3638
3723
  skeletonRoot: ({ theme }: {
@@ -3962,6 +4047,13 @@ declare const theme: {
3962
4047
  };
3963
4048
  '& .SCFeedObject-info-section': {
3964
4049
  padding: any;
4050
+ '& .SCFeedObject-vote': {
4051
+ width: string;
4052
+ justifyContent: string;
4053
+ '& > button:first-of-type': {
4054
+ margin: string;
4055
+ };
4056
+ };
3965
4057
  };
3966
4058
  '& .SCFeedObject-activity-at': {
3967
4059
  textDecoration: string;
@@ -4294,7 +4386,9 @@ declare const theme: {
4294
4386
  };
4295
4387
  };
4296
4388
  };
4297
- };
4389
+ }; /**
4390
+ * Export default theme
4391
+ */
4298
4392
  };
4299
4393
  };
4300
4394
  '&.SCFeedObject-snippet': {
@@ -4342,14 +4436,14 @@ declare const theme: {
4342
4436
  paddingRight: number;
4343
4437
  };
4344
4438
  };
4345
- actionsRoot: ({ theme }: any) => {
4439
+ actionsRoot: () => {
4346
4440
  margin: string;
4347
4441
  color: string;
4348
4442
  '& .SCFeedObject-actions-action': {
4349
4443
  textAlign: string;
4350
4444
  };
4351
4445
  };
4352
- actionCommentRoot: ({ theme }: any) => {
4446
+ actionCommentRoot: () => {
4353
4447
  display: string;
4354
4448
  justifyContent: string;
4355
4449
  alignItems: string;
@@ -4376,7 +4470,7 @@ declare const theme: {
4376
4470
  };
4377
4471
  };
4378
4472
  };
4379
- actionShareRoot: ({ theme }: any) => {
4473
+ actionShareRoot: () => {
4380
4474
  display: string;
4381
4475
  justifyContent: string;
4382
4476
  alignItems: string;
@@ -4392,7 +4486,7 @@ declare const theme: {
4392
4486
  whiteSpace: string;
4393
4487
  };
4394
4488
  };
4395
- actionVoteRoot: ({ theme }: any) => {
4489
+ actionVoteRoot: () => {
4396
4490
  display: string;
4397
4491
  justifyContent: string;
4398
4492
  alignItems: string;
@@ -4405,7 +4499,7 @@ declare const theme: {
4405
4499
  borderBottom: number;
4406
4500
  };
4407
4501
  };
4408
- activitiesRoot: ({ theme }: any) => {
4502
+ activitiesRoot: () => {
4409
4503
  width: string;
4410
4504
  };
4411
4505
  activitiesMenuRoot: ({ theme }: any) => {
@@ -4445,7 +4539,7 @@ declare const theme: {
4445
4539
  lineHeight: string;
4446
4540
  };
4447
4541
  };
4448
- contributorsSkeletonRoot: ({ theme }: any) => {};
4542
+ contributorsSkeletonRoot: () => {};
4449
4543
  pollObjectRoot: ({ theme }: any) => {
4450
4544
  marginTop: any;
4451
4545
  marginBottom: any;
@@ -4582,10 +4676,10 @@ declare const theme: {
4582
4676
  };
4583
4677
  };
4584
4678
  };
4585
- activityCommentRoot: ({ theme }: any) => {};
4586
- activityFollowRoot: ({ theme }: any) => {};
4587
- activityPollVoteRoot: ({ theme }: any) => {};
4588
- activityVoteUpRoot: ({ theme }: any) => {};
4679
+ activityCommentRoot: () => {};
4680
+ activityFollowRoot: () => {};
4681
+ activityPollVoteRoot: () => {};
4682
+ activityVoteUpRoot: () => {};
4589
4683
  };
4590
4684
  };
4591
4685
  SCFeedObjectDetailTemplate: {
@@ -4692,9 +4786,10 @@ declare const theme: {
4692
4786
  };
4693
4787
  borderRadius: number;
4694
4788
  paddingBottom: number;
4789
+ paddingLeft: any;
4790
+ paddingRight: any;
4695
4791
  overflow: string;
4696
4792
  '& .SCBaseItemButton-image': {
4697
- marginRight: any;
4698
4793
  '& .MuiAvatar-root': {
4699
4794
  width: any;
4700
4795
  height: any;
@@ -4724,7 +4819,10 @@ declare const theme: {
4724
4819
  };
4725
4820
  };
4726
4821
  };
4727
- skeletonRoot: ({ theme }: any) => {};
4822
+ skeletonRoot: ({ theme }: any) => {
4823
+ paddingLeft: any;
4824
+ paddingRight: any;
4825
+ };
4728
4826
  };
4729
4827
  };
4730
4828
  SCGroupActionsMenu: {
@@ -4904,6 +5002,18 @@ declare const theme: {
4904
5002
  alignItems: string;
4905
5003
  gap: any;
4906
5004
  };
5005
+ '& .SCBuyButton-request-root': {
5006
+ fontWeight: any;
5007
+ '& .MuiButton-startIcon': {
5008
+ marginRight: any;
5009
+ '& .MuiIcon-root': {
5010
+ fontSize: string;
5011
+ };
5012
+ };
5013
+ '&.Mui-selected, &:hover': {
5014
+ backgroundColor: string;
5015
+ };
5016
+ };
4907
5017
  };
4908
5018
  '& .SCGroupHeader-multi-actions': {
4909
5019
  display: string;
@@ -5142,6 +5252,23 @@ declare const theme: {
5142
5252
  };
5143
5253
  };
5144
5254
  };
5255
+ SCGroupSubscribeButton: {
5256
+ styleOverrides: {
5257
+ buyButtonRoot: ({ theme }: {
5258
+ theme: any;
5259
+ }) => {
5260
+ border: string;
5261
+ '&:hover, &:active': {
5262
+ backgroundColor: any;
5263
+ color: any;
5264
+ border: string;
5265
+ '& .MuiIcon-root': {
5266
+ color: any;
5267
+ };
5268
+ };
5269
+ };
5270
+ };
5271
+ };
5145
5272
  SCGroupTemplate: {
5146
5273
  styleOverrides: {
5147
5274
  root: ({ theme }: any) => {
@@ -6356,6 +6483,7 @@ declare const theme: {
6356
6483
  margin: string;
6357
6484
  width: string;
6358
6485
  position: string;
6486
+ gap: any;
6359
6487
  '& .SCMediaFile-background': {
6360
6488
  backgroundSize: string;
6361
6489
  backgroundPosition: string;
@@ -6439,10 +6567,16 @@ declare const theme: {
6439
6567
  position: string;
6440
6568
  top: number;
6441
6569
  };
6570
+ '& .SCMediaFile-docs-wrapper': {
6571
+ gap: any;
6572
+ };
6442
6573
  };
6443
- lightboxRoot: ({ theme }: any) => {};
6574
+ lightboxRoot: () => {};
6444
6575
  previewRoot: ({ theme }: any) => {
6445
- '& > div': {
6576
+ display: string;
6577
+ flexDirection: string;
6578
+ gap: any;
6579
+ '& > div:not(.SCMediaFile-docs-wrapper)': {
6446
6580
  display: string;
6447
6581
  flexDirection: string;
6448
6582
  flexWrap: string;
@@ -6492,17 +6626,64 @@ declare const theme: {
6492
6626
  };
6493
6627
  };
6494
6628
  };
6629
+ '& .SCMediaFile-docs-wrapper': {
6630
+ display: string;
6631
+ flexDirection: string;
6632
+ gap: any;
6633
+ };
6495
6634
  };
6496
- triggerRoot: ({ theme }: any) => {};
6497
- triggerDrawerRoot: ({ theme }: any) => {
6635
+ triggerRoot: () => {};
6636
+ triggerDrawerRoot: () => {
6498
6637
  zIndex: number;
6499
6638
  };
6500
- triggerMenuRoot: ({ theme }: any) => {};
6639
+ triggerMenuRoot: () => {};
6640
+ docRoot: ({ theme }: {
6641
+ theme: any;
6642
+ }) => {
6643
+ borderRadius: string;
6644
+ border: string;
6645
+ padding: any;
6646
+ flexDirection: string;
6647
+ gap: string;
6648
+ '& .SCMediaFile-image': {
6649
+ width: string;
6650
+ height: string;
6651
+ flexShrink: number;
6652
+ };
6653
+ '& .SCMediaFile-text-wrapper': {
6654
+ [x: number]: {
6655
+ maxWidth: string;
6656
+ };
6657
+ gap: string;
6658
+ '& .SCMediaFile-title': {
6659
+ textAlign: string;
6660
+ display: string;
6661
+ '-webkit-line-clamp': string;
6662
+ '-webkit-box-orient': string;
6663
+ overflow: string;
6664
+ };
6665
+ '& .SCMediaFile-subtitle': {
6666
+ textAlign: string;
6667
+ color: any;
6668
+ };
6669
+ };
6670
+ '& .SCMediaFile-action-wrapper': {
6671
+ flexDirection: string;
6672
+ gap: string;
6673
+ marginLeft: string;
6674
+ '& .SCMediaFile-action': {
6675
+ '&:hover': {
6676
+ backgroundColor: any;
6677
+ };
6678
+ };
6679
+ };
6680
+ };
6501
6681
  };
6502
6682
  };
6503
6683
  SCMediaLink: {
6504
6684
  styleOverrides: {
6505
6685
  displayRoot: ({ theme }: any) => {
6686
+ marginTop: any;
6506
6687
  '& .SCMediaLink-link': {
6507
6688
  position: string;
6508
6689
  backgroundColor: string;
@@ -6617,7 +6798,7 @@ declare const theme: {
6617
6798
  };
6618
6799
  };
6619
6800
  };
6620
- triggerRoot: ({ theme }: any) => {};
6801
+ triggerRoot: () => {};
6621
6802
  };
6622
6803
  };
6623
6804
  SCMediaShare: {
@@ -7835,6 +8016,9 @@ declare const theme: {
7835
8016
  alignItems: string;
7836
8017
  marginRight: any;
7837
8018
  '& .MuiIcon-root': {
8019
+ /**
8020
+ * Style assets - Imports - Start
8021
+ */
7838
8022
  margin: any;
7839
8023
  };
7840
8024
  };
@@ -9334,6 +9518,9 @@ declare const theme: {
9334
9518
  padding: any;
9335
9519
  };
9336
9520
  };
9521
+ '& .SCEventForm-paywalls-configurator-wrap': {
9522
+ margin: string;
9523
+ };
9337
9524
  };
9338
9525
  };
9339
9526
  };
@@ -9899,6 +10086,18 @@ declare const theme: {
9899
10086
  alignItems: string;
9900
10087
  gap: any;
9901
10088
  };
10089
+ '& .SCBuyButton-request-root': {
10090
+ fontWeight: any;
10091
+ '& .MuiButton-startIcon': {
10092
+ marginRight: any;
10093
+ '& .MuiIcon-root': {
10094
+ fontSize: string;
10095
+ };
10096
+ };
10097
+ '&.Mui-selected, &:hover': {
10098
+ backgroundColor: string;
10099
+ };
10100
+ };
9902
10101
  };
9903
10102
  '& .SCEditEvenButton-root': {
9904
10103
  marginLeft: string;
@@ -10097,6 +10296,18 @@ declare const theme: {
10097
10296
  requestRoot: ({ theme }: {
10098
10297
  theme: any;
10099
10298
  }) => {};
10299
+ buyButtonRoot: ({ theme }: {
10300
+ theme: any;
10301
+ }) => {
10302
+ '&:hover, &:active': {
10303
+ backgroundColor: any;
10304
+ color: any;
10305
+ border: string;
10306
+ '& .MuiIcon-root': {
10307
+ color: any;
10308
+ };
10309
+ };
10310
+ };
10100
10311
  menuRoot: ({ theme }: {
10101
10312
  theme: any;
10102
10313
  }) => {
@@ -11541,29 +11752,628 @@ declare const theme: {
11541
11752
  };
11542
11753
  };
11543
11754
  };
11544
- };
11545
- selfcommunity: {
11546
- user: {
11547
- avatar: {
11548
- sizeSmall: number;
11549
- sizeMedium: number;
11550
- sizeLarge: number;
11551
- sizeXLarge: number;
11755
+ SCBuyButton: {
11756
+ styleOverrides: {
11757
+ requestRoot: ({ theme }: {
11758
+ theme: any;
11759
+ }) => {};
11760
+ drawerRoot: ({ theme }: {
11761
+ theme: any;
11762
+ }) => {
11763
+ '& > div.MuiPaper-root': {
11764
+ padding: any;
11765
+ };
11766
+ };
11552
11767
  };
11553
11768
  };
11554
- category: {
11555
- icon: {
11556
- sizeSmall: number;
11557
- sizeMedium: number;
11558
- sizeLarge: number;
11769
+ SCPaymentProducts: {
11770
+ styleOverrides: {
11771
+ root: ({ theme }: {
11772
+ theme: any;
11773
+ }) => {
11774
+ padding: any;
11775
+ };
11776
+ skeletonRoot: ({ theme }: {
11777
+ theme: any;
11778
+ }) => {
11779
+ padding: any;
11780
+ };
11559
11781
  };
11560
11782
  };
11561
- group: {
11562
- avatar: {
11563
- sizeSmall: number;
11564
- sizeMedium: number;
11565
- sizeLarge: number;
11566
- sizeXLarge: number;
11783
+ SCPaymentProduct: {
11784
+ styleOverrides: {
11785
+ root: ({ theme }: {
11786
+ theme: any;
11787
+ }) => {
11788
+ marginBottom: any;
11789
+ borderRadius: string;
11790
+ boxShadow: string;
11791
+ backgroundColor: any;
11792
+ '& .MuiCardContent-root': {
11793
+ '& .SCBaseItem-root': {
11794
+ backgroundColor: string;
11795
+ };
11796
+ '& .MuiTypography-body1': {
11797
+ [x: number]: {
11798
+ fontSize: any;
11799
+ };
11800
+ fontWeight: number;
11801
+ color: any;
11802
+ };
11803
+ };
11804
+ '& .SCPaymentProductPrice-root': {
11805
+ width: string;
11806
+ paddingLeft: string;
11807
+ };
11808
+ };
11809
+ skeletonRoot: ({ theme }: {
11810
+ theme: any;
11811
+ }) => {
11812
+ marginBottom: any;
11813
+ borderRadius: string;
11814
+ boxShadow: string;
11815
+ backgroundColor: any;
11816
+ '& .MuiCardContent-root': {
11817
+ marginBottom: any;
11818
+ '& .SCBaseItem-root': {
11819
+ backgroundColor: string;
11820
+ boxShadow: string;
11821
+ };
11822
+ };
11823
+ '& .SCPaymentProductPrice-skeleton-root': {
11824
+ marginTop: any;
11825
+ width: string;
11826
+ paddingLeft: string;
11827
+ };
11828
+ };
11829
+ };
11830
+ };
11831
+ SCPaymentOrder: {
11832
+ styleOverrides: {
11833
+ root: ({ theme }: {
11834
+ theme: any;
11835
+ }) => {
11836
+ '& .SCPaymentOrder-details': {
11837
+ marginTop: any;
11838
+ marginLeft: any;
11839
+ '& p': {
11840
+ marginBottom: any;
11841
+ };
11842
+ '& .SCPaymentOrderPdfButton-root': {
11843
+ marginTop: any;
11844
+ };
11845
+ };
11846
+ };
11847
+ skeletonRoot: ({ theme }: {
11848
+ theme: any;
11849
+ }) => {};
11850
+ };
11851
+ };
11852
+ SCPaymentOrderPdfButton: {
11853
+ styleOverrides: {
11854
+ root: ({ theme }: {
11855
+ theme: any;
11856
+ }) => {
11857
+ paddingLeft: number;
11858
+ paddingRight: number;
11859
+ width: string;
11860
+ minWidth: number;
11861
+ marginLeft: any;
11862
+ marginRight: any;
11863
+ height: number;
11864
+ };
11865
+ };
11866
+ };
11867
+ SCPaymentProductPrice: {
11868
+ styleOverrides: {
11869
+ root: ({ theme }: {
11870
+ theme: any;
11871
+ }) => {
11872
+ borderRadius: number;
11873
+ boxShadow: string;
11874
+ '& .SCPaymentProductPrice-primary': {
11875
+ fontSize: string;
11876
+ fontWeight: string;
11877
+ color: string;
11878
+ };
11879
+ '& .SCPaymentProductPrice-button': {
11880
+ textTransform: string;
11881
+ '&:hover, &:active': {
11882
+ backgroundColor: any;
11883
+ color: any;
11884
+ border: string;
11885
+ '& .MuiIcon-root': {
11886
+ color: any;
11887
+ };
11888
+ };
11889
+ };
11890
+ '& .SCPaymentProductPrice-button-purchased': {
11891
+ backgroundColor: string;
11892
+ color: string;
11893
+ };
11894
+ '& .SCPaymentProductPrice-purchased-at': {
11895
+ textDecoration: string;
11896
+ };
11897
+ };
11898
+ skeletonRoot: ({ theme }: {
11899
+ theme: any;
11900
+ }) => {
11901
+ borderRadius: number;
11902
+ };
11903
+ };
11904
+ };
11905
+ SCCheckout: {
11906
+ styleOverrides: {
11907
+ root: ({ theme }: {
11908
+ theme: any;
11909
+ }) => {
11910
+ position: string;
11911
+ backgroundColor: any;
11912
+ display: string;
11913
+ flexDirection: string;
11914
+ justifyContent: string;
11915
+ alignItems: string;
11916
+ width: string;
11917
+ "& .SCCheckout-content": {
11918
+ [x: number]: {
11919
+ display: string;
11920
+ flexDirection: string;
11921
+ justifyContent: string;
11922
+ alignItems: string;
11923
+ };
11924
+ width: string;
11925
+ maxWidth: number;
11926
+ display: string;
11927
+ gridTemplateColumns: string;
11928
+ padding: any;
11929
+ gap: number;
11930
+ "& .SCCheckout-content-object": {
11931
+ [x: number]: {
11932
+ width: string;
11933
+ };
11934
+ position: string;
11935
+ display: string;
11936
+ flexDirection: string;
11937
+ justifyContent: string;
11938
+ alignItems: string;
11939
+ '& .SCWidget-root': {
11940
+ width: string;
11941
+ '& .SCEvent-preview-content': {
11942
+ padding: string;
11943
+ };
11944
+ };
11945
+ };
11946
+ "& .SCCheckout-content-coverage": {
11947
+ position: string;
11948
+ width: string;
11949
+ height: string;
11950
+ backgroundColor: string;
11951
+ };
11952
+ "& .SCCheckout-content-desc": {
11953
+ [x: number]: {
11954
+ display: string;
11955
+ };
11956
+ display: string;
11957
+ flexDirection: string;
11958
+ justifyContent: string;
11959
+ alignItems: string;
11960
+ maxWidth: number;
11961
+ };
11962
+ };
11963
+ "& .SCCheckout-checkout": {
11964
+ width: string;
11965
+ bottom: any;
11966
+ };
11967
+ "& .SCCheckout-object": {
11968
+ [x: number]: {
11969
+ minWidth: number;
11970
+ width: string;
11971
+ };
11972
+ width: string;
11973
+ };
11974
+ "& .SCCheckout-payment-order": {
11975
+ display: string;
11976
+ flexDirection: string;
11977
+ justifyContent: string;
11978
+ alignItems: string;
11979
+ margin: any;
11980
+ '& .SCPaymentOrder-root': {
11981
+ width: string;
11982
+ display: string;
11983
+ flexDirection: string;
11984
+ justifyContent: string;
11985
+ alignItems: string;
11986
+ '& .SCPaymentOrder-content-object': {
11987
+ minWidth: number;
11988
+ };
11989
+ '& .SCPaymentOrder-details': {
11990
+ minWidth: number;
11991
+ };
11992
+ '& .SCPaymentOrderPdfButton-root': {
11993
+ paddingLeft: any;
11994
+ paddingRight: any;
11995
+ };
11996
+ };
11997
+ '& .SCPaymentOrder-skeleton-root': {
11998
+ minWidth: number;
11999
+ };
12000
+ };
12001
+ "& .SCCategory-root": {
12002
+ borderRadius: any;
12003
+ '& a': {
12004
+ padding: any;
12005
+ };
12006
+ };
12007
+ "& .SCGroup-root": {
12008
+ borderRadius: any;
12009
+ '& a': {
12010
+ padding: any;
12011
+ };
12012
+ };
12013
+ "& .SCCourse-preview-root": {
12014
+ minHeight: string;
12015
+ };
12016
+ };
12017
+ };
12018
+ };
12019
+ SCCheckoutReturnDialog: {
12020
+ styleOverrides: {
12021
+ root: ({ theme }: {
12022
+ theme: any;
12023
+ }) => {
12024
+ '& .MuiDialogTitle-root': {
12025
+ textAlign: string;
12026
+ fontSize: string;
12027
+ fontWeight: number;
12028
+ };
12029
+ '& .MuiDialogContent-root': {
12030
+ display: string;
12031
+ minHeight: number;
12032
+ justifyContent: string;
12033
+ alignItems: string;
12034
+ '& .SCWidget-root': {
12035
+ minWidth: number;
12036
+ };
12037
+ '& .MuiTypography-body2': {
12038
+ marginTop: any;
12039
+ };
12040
+ };
12041
+ };
12042
+ };
12043
+ };
12044
+ SCHiddenPurchasableContent: {
12045
+ styleOverrides: {
12046
+ root: ({ theme }: any) => {
12047
+ padding: any;
12048
+ };
12049
+ };
12050
+ };
12051
+ SCPaywalls: {
12052
+ styleOverrides: {
12053
+ root: ({ theme }: {
12054
+ theme: any;
12055
+ }) => {
12056
+ '& .SCPaywalls-error': {
12057
+ margin: any;
12058
+ };
12059
+ };
12060
+ };
12061
+ };
12062
+ SCPaywallsConfigurator: {
12063
+ styleOverrides: {
12064
+ root: ({ theme }: any) => {
12065
+ "& .SCPaywallsConfigurator-new-product": {
12066
+ background: string;
12067
+ padding: any;
12068
+ marginTop: any;
12069
+ borderRadius: any;
12070
+ };
12071
+ "& .SCPaywallsConfigurator-no-product": {
12072
+ textDecoration: string;
12073
+ paddingLeft: number;
12074
+ color: "#bdbdbd";
12075
+ };
12076
+ "& .SCPaywallsConfigurator-content-access-type": {
12077
+ '& > p': {
12078
+ marginBottom: any;
12079
+ };
12080
+ '& .MuiPaper-root': {
12081
+ borderColor: string;
12082
+ };
12083
+ '& .MuiAccordion-root:first-of-type': {
12084
+ borderTopLeftRadius: number;
12085
+ borderTopRightRadius: number;
12086
+ };
12087
+ '& .MuiAccordion-root:last-of-type': {
12088
+ borderBottomLeftRadius: number;
12089
+ borderBottomRightRadius: number;
12090
+ };
12091
+ "& .SCPaywallsConfigurator-selected-payment-products-list": {
12092
+ borderTop: string;
12093
+ marginTop: number;
12094
+ };
12095
+ "& .SCPaywallsConfigurator-add-payment-product": {
12096
+ position: string;
12097
+ left: number;
12098
+ '& .MuiButton-startIcon': {
12099
+ fontSize: string;
12100
+ };
12101
+ };
12102
+ };
12103
+ };
12104
+ paymentProductsAutocompletePopperRoot: ({ theme }: any) => {
12105
+ "& .MuiAutocomplete-paper": {
12106
+ boxShadow: string;
12107
+ margin: number;
12108
+ color: string;
12109
+ fontSize: number;
12110
+ };
12111
+ "& .MuiAutocomplete-listbox": {
12112
+ backgroundColor: string;
12113
+ padding: number;
12114
+ "& .MuiAutocomplete-option": {
12115
+ minHeight: string;
12116
+ alignItems: string;
12117
+ padding: number;
12118
+ borderBottom: string;
12119
+ '&[aria-selected="true"]': {
12120
+ backgroundColor: string;
12121
+ };
12122
+ "&.MuiAutocomplete-focused, &.MuiAutocomplete-focused[aria-selected=\"true\"]": {
12123
+ backgroundColor: any;
12124
+ };
12125
+ };
12126
+ };
12127
+ "&.MuiAutocomplete-popperDisablePortal": {
12128
+ position: string;
12129
+ };
12130
+ "& .SCPaywallsConfigurator-product-check-icon": {
12131
+ width: number;
12132
+ height: number;
12133
+ margin: string;
12134
+ };
12135
+ "& .SCPaywallsConfigurator-product-card-icon": {
12136
+ width: number;
12137
+ height: number;
12138
+ flexShrink: number;
12139
+ borderRadius: string;
12140
+ marginRight: any;
12141
+ marginTop: string;
12142
+ padding: string;
12143
+ backgroundColor: string;
12144
+ color: string;
12145
+ };
12146
+ "& .SCPaywallsConfigurator-product-content": {
12147
+ flexGrow: number;
12148
+ '& span': {
12149
+ color: string;
12150
+ };
12151
+ };
12152
+ "& .SCPaywallsConfigurator-product-remove-icon": {
12153
+ opacity: number;
12154
+ width: number;
12155
+ height: number;
12156
+ };
12157
+ "& .SCPaywallsConfigurator-autocomplete-footer": {
12158
+ backgroundColor: "#bdbdbd";
12159
+ };
12160
+ "& .SCPaywallsConfigurator-autocomplete-products-loading": {
12161
+ width: string;
12162
+ minHeight: number;
12163
+ display: string;
12164
+ alignItems: string;
12165
+ justifyContent: string;
12166
+ };
12167
+ };
12168
+ paymentProductsPopperRoot: ({ theme }: any) => {
12169
+ border: string;
12170
+ boxShadow: string;
12171
+ borderRadius: number;
12172
+ width: number;
12173
+ zIndex: any;
12174
+ fontSize: number;
12175
+ color: string;
12176
+ backgroundColor: string;
12177
+ '& .MuiPaper-root': {
12178
+ borderRadius: number;
12179
+ };
12180
+ "& .SCPaywallsConfigurator-payment-products-popper-title": {
12181
+ borderBottom: string;
12182
+ padding: string;
12183
+ fontWeight: number;
12184
+ };
12185
+ "& .SCPaywallsConfigurator-payment-products-popper-footer": {
12186
+ borderTop: string;
12187
+ padding: string;
12188
+ display: string;
12189
+ alignItems: string;
12190
+ justifyContent: string;
12191
+ '& button': {
12192
+ padding: string;
12193
+ '& .MuiIcon-root': {
12194
+ fontSize: number;
12195
+ };
12196
+ };
12197
+ };
12198
+ };
12199
+ filterInputRoot: ({ theme }: any) => {
12200
+ padding: number;
12201
+ width: string;
12202
+ borderBottom: string;
12203
+ '& input': {
12204
+ borderRadius: number;
12205
+ backgroundColor: string;
12206
+ padding: number;
12207
+ transition: any;
12208
+ border: string;
12209
+ fontSize: number;
12210
+ '&:focus': {
12211
+ boxShadow: string;
12212
+ borderColor: string;
12213
+ };
12214
+ };
12215
+ };
12216
+ };
12217
+ };
12218
+ SCPdfPreview: {
12219
+ styleOverrides: {
12220
+ root: ({ theme }: any) => {
12221
+ display: string;
12222
+ flexDirection: string;
12223
+ "& .SCPdfPreview-document-pdf-wrapper": {
12224
+ filter: string;
12225
+ };
12226
+ "& .SCPdfPreview-document-pdf-link": {
12227
+ padding: number;
12228
+ '&:hover': {
12229
+ opacity: number;
12230
+ };
12231
+ };
12232
+ "& .SCPdfPreview-document-pdf-page": {
12233
+ display: string;
12234
+ flexDirection: string;
12235
+ justifyContent: string;
12236
+ marginBottom: any;
12237
+ pageBreakAfter: string;
12238
+ '& .react-pdf__Page__textContent': {
12239
+ mixBlendMode: string;
12240
+ opacity: number;
12241
+ };
12242
+ };
12243
+ };
12244
+ };
12245
+ };
12246
+ SCPaymentOrders: {
12247
+ styleOverrides: {
12248
+ root: ({ theme }: any) => {
12249
+ '& .SCPaymentOrders-content': {
12250
+ position: string;
12251
+ margin: any;
12252
+ '& table': {
12253
+ '& tr': {
12254
+ '& th': {
12255
+ zIndex: number;
12256
+ };
12257
+ };
12258
+ '& .SCGroup-root, .SCCategory-root': {
12259
+ borderRadius: any;
12260
+ maxWidth: string;
12261
+ };
12262
+ '& .SCPaymentProduct-root': {
12263
+ borderRadius: string;
12264
+ border: string;
12265
+ boxShadow: string;
12266
+ color: any;
12267
+ '& .MuiAccordionSummary-root': {
12268
+ backgroundColor: any;
12269
+ opacity: number;
12270
+ borderRadius: any;
12271
+ };
12272
+ };
12273
+ };
12274
+ '& .MuiCircularProgress-root': {
12275
+ display: string;
12276
+ margin: string;
12277
+ };
12278
+ };
12279
+ '& .SCPaymentOrders-filters': {
12280
+ [x: number]: {
12281
+ width: string;
12282
+ };
12283
+ alignItems: string;
12284
+ margin: any;
12285
+ width: string;
12286
+ '& .SCPaymentOrders-search': {
12287
+ '& .MuiInputBase-root': {
12288
+ paddingRight: number;
12289
+ '& .MuiButtonBase-root': {
12290
+ borderRadius: string;
12291
+ height: string;
12292
+ '& .MuiButton-endIcon': {
12293
+ margin: number;
12294
+ };
12295
+ };
12296
+ };
12297
+ };
12298
+ '& .SCPaymentOrders-picker': {
12299
+ '& .MuiOutlinedInput-root': {
12300
+ paddingRight: any;
12301
+ };
12302
+ };
12303
+ };
12304
+ };
12305
+ };
12306
+ };
12307
+ SCCheckoutHeaderInfoWidget: {
12308
+ styleOverrides: {
12309
+ root: ({ theme }: {
12310
+ theme: any;
12311
+ }) => {
12312
+ '& .SCCheckoutHeaderInfoWidget-header': {
12313
+ height: any;
12314
+ position: string;
12315
+ backgroundColor: any;
12316
+ color: string;
12317
+ textAlign: string;
12318
+ '& img': {
12319
+ position: string;
12320
+ left: string;
12321
+ top: any;
12322
+ transform: string;
12323
+ };
12324
+ '& .MuiIcon-root': {
12325
+ top: any;
12326
+ position: string;
12327
+ };
12328
+ };
12329
+ '& .SCCheckoutHeaderInfoWidget-content': {
12330
+ padding: any;
12331
+ justifyContent: string;
12332
+ '& .MuiTypography-body2': {
12333
+ paddingTop: any;
12334
+ whiteSpace: string;
12335
+ };
12336
+ };
12337
+ };
12338
+ };
12339
+ };
12340
+ };
12341
+ selfcommunity: {
12342
+ user: {
12343
+ avatar: {
12344
+ sizeSmall: number;
12345
+ sizeMedium: number;
12346
+ sizeLarge: number;
12347
+ sizeXLarge: number;
12348
+ };
12349
+ };
12350
+ category: {
12351
+ icon: {
12352
+ sizeSmall: number;
12353
+ sizeMedium: number;
12354
+ sizeLarge: number;
12355
+ };
12356
+ };
12357
+ group: {
12358
+ avatar: {
12359
+ sizeSmall: number;
12360
+ sizeMedium: number;
12361
+ sizeLarge: number;
12362
+ sizeXLarge: number;
12363
+ };
12364
+ };
12365
+ contentProduct: {
12366
+ icon: {
12367
+ sizeSmall: number;
12368
+ sizeMedium: number;
12369
+ sizeLarge: number;
12370
+ };
12371
+ };
12372
+ contentProductPrice: {
12373
+ icon: {
12374
+ sizeSmall: number;
12375
+ sizeMedium: number;
12376
+ sizeLarge: number;
11567
12377
  };
11568
12378
  };
11569
12379
  };