@selfcommunity/react-theme-default 0.4.2-alpha.8 → 0.4.2-courses.99

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 (227) hide show
  1. package/lib/cjs/components/SCAccordionLessons.d.ts +40 -0
  2. package/lib/cjs/components/SCAccordionLessons.js +40 -0
  3. package/lib/cjs/components/SCAddUsersButton.d.ts +19 -0
  4. package/lib/cjs/components/SCAddUsersButton.js +21 -0
  5. package/lib/cjs/components/SCBaseItemButton.d.ts +26 -35
  6. package/lib/cjs/components/SCBaseItemButton.js +27 -36
  7. package/lib/cjs/components/SCCommentObject.d.ts +19 -17
  8. package/lib/cjs/components/SCCommentObject.js +19 -17
  9. package/lib/cjs/components/SCComposer.d.ts +54 -14
  10. package/lib/cjs/components/SCComposer.js +79 -18
  11. package/lib/cjs/components/SCContributionActionsMenu.js +1 -1
  12. package/lib/cjs/components/SCCourse.d.ts +263 -0
  13. package/lib/cjs/components/SCCourse.js +265 -0
  14. package/lib/cjs/components/SCCourseContentMenu.d.ts +42 -0
  15. package/lib/cjs/components/SCCourseContentMenu.js +42 -0
  16. package/lib/cjs/components/SCCourseDashboard.d.ts +198 -0
  17. package/lib/cjs/components/SCCourseDashboard.js +195 -0
  18. package/lib/cjs/components/SCCourseForm.d.ts +143 -0
  19. package/lib/cjs/components/SCCourseForm.js +144 -0
  20. package/lib/cjs/components/SCCourseFormDialog.d.ts +6 -0
  21. package/lib/cjs/components/SCCourseFormDialog.js +8 -0
  22. package/lib/cjs/components/SCCourseInfoDetails.d.ts +43 -0
  23. package/lib/cjs/components/SCCourseInfoDetails.js +43 -0
  24. package/lib/cjs/components/SCCourseParticipantsButton.d.ts +55 -0
  25. package/lib/cjs/components/SCCourseParticipantsButton.js +52 -0
  26. package/lib/cjs/components/SCCourseUsersTable.d.ts +82 -0
  27. package/lib/cjs/components/SCCourseUsersTable.js +80 -0
  28. package/lib/cjs/components/SCCourses.d.ts +137 -0
  29. package/lib/cjs/components/SCCourses.js +139 -0
  30. package/lib/cjs/components/SCCreateCourseButton.d.ts +12 -0
  31. package/lib/cjs/components/SCCreateCourseButton.js +14 -0
  32. package/lib/cjs/components/SCCreateLiveStreamButton.d.ts +12 -0
  33. package/lib/cjs/components/SCCreateLiveStreamButton.js +14 -0
  34. package/lib/cjs/components/SCDefaultDrawerContent.d.ts +31 -0
  35. package/lib/cjs/components/SCDefaultDrawerContent.js +33 -0
  36. package/lib/cjs/components/SCEditCourse.d.ts +218 -0
  37. package/lib/cjs/components/SCEditCourse.js +214 -0
  38. package/lib/cjs/components/SCEditor.d.ts +20 -0
  39. package/lib/cjs/components/SCEditor.js +20 -0
  40. package/lib/cjs/components/SCEmptyStatus.d.ts +33 -0
  41. package/lib/cjs/components/SCEmptyStatus.js +33 -0
  42. package/lib/cjs/components/SCEventHeader.d.ts +2 -0
  43. package/lib/cjs/components/SCEventHeader.js +3 -1
  44. package/lib/cjs/components/SCEventInfoDetails.d.ts +3 -0
  45. package/lib/cjs/components/SCEventInfoDetails.js +3 -0
  46. package/lib/cjs/components/SCFeedObject.d.ts +41 -13
  47. package/lib/cjs/components/SCFeedObject.js +43 -15
  48. package/lib/cjs/components/SCFeedObjectDetailTemplate.d.ts +11 -0
  49. package/lib/cjs/components/SCFeedObjectDetailTemplate.js +12 -1
  50. package/lib/cjs/components/SCLessonAppbar.d.ts +22 -0
  51. package/lib/cjs/components/SCLessonAppbar.js +24 -0
  52. package/lib/cjs/components/SCLessonCommentActionsMenu.d.ts +32 -0
  53. package/lib/cjs/components/SCLessonCommentActionsMenu.js +35 -0
  54. package/lib/cjs/components/SCLessonCommentObject.d.ts +117 -0
  55. package/lib/cjs/components/SCLessonCommentObject.js +119 -0
  56. package/lib/cjs/components/SCLessonCommentObjects.d.ts +39 -0
  57. package/lib/cjs/components/SCLessonCommentObjects.js +41 -0
  58. package/lib/cjs/components/SCLessonCompletedDialog.d.ts +21 -0
  59. package/lib/cjs/components/SCLessonCompletedDialog.js +23 -0
  60. package/lib/cjs/components/SCLessonDrawer.d.ts +37 -0
  61. package/lib/cjs/components/SCLessonDrawer.js +39 -0
  62. package/lib/cjs/components/SCLessonEditForm.d.ts +30 -0
  63. package/lib/cjs/components/SCLessonEditForm.js +30 -0
  64. package/lib/cjs/components/SCLessonObject.d.ts +45 -0
  65. package/lib/cjs/components/SCLessonObject.js +48 -0
  66. package/lib/cjs/components/SCLessonReleaseMenu.d.ts +32 -0
  67. package/lib/cjs/components/SCLessonReleaseMenu.js +34 -0
  68. package/lib/cjs/components/SCLessonTemplate.d.ts +19 -0
  69. package/lib/cjs/components/SCLessonTemplate.js +20 -0
  70. package/lib/cjs/components/SCLiveStream.d.ts +218 -0
  71. package/lib/cjs/components/SCLiveStream.js +220 -0
  72. package/lib/cjs/components/SCLiveStreamDialog.d.ts +16 -0
  73. package/lib/cjs/components/SCLiveStreamDialog.js +18 -0
  74. package/lib/cjs/components/SCLiveStreamForm.d.ts +34 -0
  75. package/lib/cjs/components/SCLiveStreamForm.js +36 -0
  76. package/lib/cjs/components/SCLiveStreamFormSettings.d.ts +15 -0
  77. package/lib/cjs/components/SCLiveStreamFormSettings.js +17 -0
  78. package/lib/cjs/components/SCLiveStreamInfoDetails.d.ts +43 -0
  79. package/lib/cjs/components/SCLiveStreamInfoDetails.js +43 -0
  80. package/lib/cjs/components/SCLiveStreamRoom.d.ts +120 -0
  81. package/lib/cjs/components/SCLiveStreamRoom.js +122 -0
  82. package/lib/cjs/components/SCLiveStreamSelector.d.ts +71 -0
  83. package/lib/cjs/components/SCLiveStreamSelector.js +75 -0
  84. package/lib/cjs/components/SCLiveStreamVideoConference.d.ts +30 -0
  85. package/lib/cjs/components/SCLiveStreamVideoConference.js +32 -0
  86. package/lib/cjs/components/SCMediaFile.d.ts +0 -4
  87. package/lib/cjs/components/SCMediaFile.js +1 -5
  88. package/lib/cjs/components/SCNavigationMenuDrawer.d.ts +7 -0
  89. package/lib/cjs/components/SCNavigationMenuDrawer.js +7 -0
  90. package/lib/cjs/components/SCNavigationToolbar.d.ts +1 -1
  91. package/lib/cjs/components/SCNavigationToolbar.js +1 -1
  92. package/lib/cjs/components/SCNotification.d.ts +27 -0
  93. package/lib/cjs/components/SCNotification.js +27 -0
  94. package/lib/cjs/components/SCPrivateMessageThreadItem.d.ts +2 -0
  95. package/lib/cjs/components/SCPrivateMessageThreadItem.js +2 -1
  96. package/lib/cjs/components/SCUpScalingTierBadge.d.ts +13 -0
  97. package/lib/cjs/components/SCUpScalingTierBadge.js +15 -0
  98. package/lib/cjs/components/SCUserLiveStreamWidget.d.ts +101 -0
  99. package/lib/cjs/components/SCUserLiveStreamWidget.js +97 -0
  100. package/lib/cjs/components/SCUserProfileEdit.js +1 -1
  101. package/lib/cjs/components/SCVoteButton.d.ts +1 -0
  102. package/lib/cjs/components/SCVoteButton.js +1 -0
  103. package/lib/cjs/fonts/community/icons.eot +0 -0
  104. package/lib/cjs/fonts/community/icons.svg +9 -3
  105. package/lib/cjs/fonts/community/icons.ttf +0 -0
  106. package/lib/cjs/fonts/community/icons.woff +0 -0
  107. package/lib/cjs/fonts/community/icons.woff2 +0 -0
  108. package/lib/cjs/fonts/community-icons.css +15 -6
  109. package/lib/cjs/index.d.ts +4337 -1846
  110. package/lib/cjs/index.js +73 -1
  111. package/lib/esm/components/SCAccordionLessons.d.ts +40 -0
  112. package/lib/esm/components/SCAccordionLessons.js +38 -0
  113. package/lib/esm/components/SCAddUsersButton.d.ts +19 -0
  114. package/lib/esm/components/SCAddUsersButton.js +19 -0
  115. package/lib/esm/components/SCBaseItemButton.d.ts +26 -35
  116. package/lib/esm/components/SCBaseItemButton.js +27 -36
  117. package/lib/esm/components/SCCommentObject.d.ts +19 -17
  118. package/lib/esm/components/SCCommentObject.js +19 -17
  119. package/lib/esm/components/SCComposer.d.ts +54 -14
  120. package/lib/esm/components/SCComposer.js +79 -18
  121. package/lib/esm/components/SCContributionActionsMenu.js +1 -1
  122. package/lib/esm/components/SCCourse.d.ts +263 -0
  123. package/lib/esm/components/SCCourse.js +263 -0
  124. package/lib/esm/components/SCCourseContentMenu.d.ts +42 -0
  125. package/lib/esm/components/SCCourseContentMenu.js +40 -0
  126. package/lib/esm/components/SCCourseDashboard.d.ts +198 -0
  127. package/lib/esm/components/SCCourseDashboard.js +193 -0
  128. package/lib/esm/components/SCCourseForm.d.ts +143 -0
  129. package/lib/esm/components/SCCourseForm.js +142 -0
  130. package/lib/esm/components/SCCourseFormDialog.d.ts +6 -0
  131. package/lib/esm/components/SCCourseFormDialog.js +6 -0
  132. package/lib/esm/components/SCCourseInfoDetails.d.ts +43 -0
  133. package/lib/esm/components/SCCourseInfoDetails.js +41 -0
  134. package/lib/esm/components/SCCourseParticipantsButton.d.ts +55 -0
  135. package/lib/esm/components/SCCourseParticipantsButton.js +50 -0
  136. package/lib/esm/components/SCCourseUsersTable.d.ts +82 -0
  137. package/lib/esm/components/SCCourseUsersTable.js +78 -0
  138. package/lib/esm/components/SCCourses.d.ts +137 -0
  139. package/lib/esm/components/SCCourses.js +137 -0
  140. package/lib/esm/components/SCCreateCourseButton.d.ts +12 -0
  141. package/lib/esm/components/SCCreateCourseButton.js +12 -0
  142. package/lib/esm/components/SCCreateLiveStreamButton.d.ts +12 -0
  143. package/lib/esm/components/SCCreateLiveStreamButton.js +12 -0
  144. package/lib/esm/components/SCDefaultDrawerContent.d.ts +31 -0
  145. package/lib/esm/components/SCDefaultDrawerContent.js +31 -0
  146. package/lib/esm/components/SCEditCourse.d.ts +218 -0
  147. package/lib/esm/components/SCEditCourse.js +212 -0
  148. package/lib/esm/components/SCEditor.d.ts +20 -0
  149. package/lib/esm/components/SCEditor.js +20 -0
  150. package/lib/esm/components/SCEmptyStatus.d.ts +33 -0
  151. package/lib/esm/components/SCEmptyStatus.js +31 -0
  152. package/lib/esm/components/SCEventHeader.d.ts +2 -0
  153. package/lib/esm/components/SCEventHeader.js +3 -1
  154. package/lib/esm/components/SCEventInfoDetails.d.ts +3 -0
  155. package/lib/esm/components/SCEventInfoDetails.js +3 -0
  156. package/lib/esm/components/SCFeedObject.d.ts +41 -13
  157. package/lib/esm/components/SCFeedObject.js +43 -15
  158. package/lib/esm/components/SCFeedObjectDetailTemplate.d.ts +11 -0
  159. package/lib/esm/components/SCFeedObjectDetailTemplate.js +12 -1
  160. package/lib/esm/components/SCLessonAppbar.d.ts +22 -0
  161. package/lib/esm/components/SCLessonAppbar.js +22 -0
  162. package/lib/esm/components/SCLessonCommentActionsMenu.d.ts +32 -0
  163. package/lib/esm/components/SCLessonCommentActionsMenu.js +33 -0
  164. package/lib/esm/components/SCLessonCommentObject.d.ts +117 -0
  165. package/lib/esm/components/SCLessonCommentObject.js +117 -0
  166. package/lib/esm/components/SCLessonCommentObjects.d.ts +39 -0
  167. package/lib/esm/components/SCLessonCommentObjects.js +39 -0
  168. package/lib/esm/components/SCLessonCompletedDialog.d.ts +21 -0
  169. package/lib/esm/components/SCLessonCompletedDialog.js +21 -0
  170. package/lib/esm/components/SCLessonDrawer.d.ts +37 -0
  171. package/lib/esm/components/SCLessonDrawer.js +37 -0
  172. package/lib/esm/components/SCLessonEditForm.d.ts +30 -0
  173. package/lib/esm/components/SCLessonEditForm.js +28 -0
  174. package/lib/esm/components/SCLessonObject.d.ts +45 -0
  175. package/lib/esm/components/SCLessonObject.js +46 -0
  176. package/lib/esm/components/SCLessonReleaseMenu.d.ts +32 -0
  177. package/lib/esm/components/SCLessonReleaseMenu.js +32 -0
  178. package/lib/esm/components/SCLessonTemplate.d.ts +19 -0
  179. package/lib/esm/components/SCLessonTemplate.js +18 -0
  180. package/lib/esm/components/SCLiveStream.d.ts +218 -0
  181. package/lib/esm/components/SCLiveStream.js +218 -0
  182. package/lib/esm/components/SCLiveStreamDialog.d.ts +16 -0
  183. package/lib/esm/components/SCLiveStreamDialog.js +16 -0
  184. package/lib/esm/components/SCLiveStreamForm.d.ts +34 -0
  185. package/lib/esm/components/SCLiveStreamForm.js +34 -0
  186. package/lib/esm/components/SCLiveStreamFormSettings.d.ts +15 -0
  187. package/lib/esm/components/SCLiveStreamFormSettings.js +15 -0
  188. package/lib/esm/components/SCLiveStreamInfoDetails.d.ts +43 -0
  189. package/lib/esm/components/SCLiveStreamInfoDetails.js +41 -0
  190. package/lib/esm/components/SCLiveStreamRoom.d.ts +120 -0
  191. package/lib/esm/components/SCLiveStreamRoom.js +120 -0
  192. package/lib/esm/components/SCLiveStreamSelector.d.ts +71 -0
  193. package/lib/esm/components/SCLiveStreamSelector.js +73 -0
  194. package/lib/esm/components/SCLiveStreamVideoConference.d.ts +30 -0
  195. package/lib/esm/components/SCLiveStreamVideoConference.js +30 -0
  196. package/lib/esm/components/SCMediaFile.d.ts +0 -4
  197. package/lib/esm/components/SCMediaFile.js +1 -5
  198. package/lib/esm/components/SCNavigationMenuDrawer.d.ts +7 -0
  199. package/lib/esm/components/SCNavigationMenuDrawer.js +7 -0
  200. package/lib/esm/components/SCNavigationToolbar.d.ts +1 -1
  201. package/lib/esm/components/SCNavigationToolbar.js +1 -1
  202. package/lib/esm/components/SCNotification.d.ts +27 -0
  203. package/lib/esm/components/SCNotification.js +27 -0
  204. package/lib/esm/components/SCPrivateMessageThreadItem.d.ts +2 -0
  205. package/lib/esm/components/SCPrivateMessageThreadItem.js +2 -1
  206. package/lib/esm/components/SCUpScalingTierBadge.d.ts +13 -0
  207. package/lib/esm/components/SCUpScalingTierBadge.js +13 -0
  208. package/lib/esm/components/SCUserLiveStreamWidget.d.ts +101 -0
  209. package/lib/esm/components/SCUserLiveStreamWidget.js +95 -0
  210. package/lib/esm/components/SCUserProfileEdit.js +1 -1
  211. package/lib/esm/components/SCVoteButton.d.ts +1 -0
  212. package/lib/esm/components/SCVoteButton.js +1 -0
  213. package/lib/esm/fonts/community/icons.eot +0 -0
  214. package/lib/esm/fonts/community/icons.svg +9 -3
  215. package/lib/esm/fonts/community/icons.ttf +0 -0
  216. package/lib/esm/fonts/community/icons.woff +0 -0
  217. package/lib/esm/fonts/community/icons.woff2 +0 -0
  218. package/lib/esm/fonts/community-icons.css +15 -6
  219. package/lib/esm/index.d.ts +4337 -1846
  220. package/lib/esm/index.js +73 -1
  221. package/lib/umd/community/icons.eot +0 -0
  222. package/lib/umd/community/icons.svg +9 -3
  223. package/lib/umd/community/icons.ttf +0 -0
  224. package/lib/umd/community/icons.woff +0 -0
  225. package/lib/umd/community/icons.woff2 +0 -0
  226. package/lib/umd/react-theme-default.js +1 -19
  227. package/package.json +123 -119
@@ -0,0 +1,71 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ '& .SCLiveStreamSelector-warning': {
5
+ margin: any;
6
+ "& a": {
7
+ color: any;
8
+ fontWeight: string;
9
+ };
10
+ };
11
+ '& .SCLiveStreamSelector-options': {
12
+ [x: number]: {
13
+ display: string;
14
+ };
15
+ display: string;
16
+ justifyContent: string;
17
+ alignItems: string;
18
+ '& > div': {
19
+ [x: number]: {
20
+ margin: string;
21
+ marginBottom: any;
22
+ };
23
+ width: string;
24
+ };
25
+ };
26
+ '& .SCLiveStreamSelector-actions': {
27
+ display: string;
28
+ justifyContent: string;
29
+ alignItems: string;
30
+ marginTop: any;
31
+ };
32
+ };
33
+ optionCardRoot: ({ theme, selected }: any) => {
34
+ maxWidth: number;
35
+ height: string;
36
+ minHeight: number;
37
+ padding: any;
38
+ margin: any;
39
+ cursor: string;
40
+ transition: any;
41
+ backgroundColor: any;
42
+ '&:hover': {
43
+ backgroundColor: any;
44
+ boxShadow: any;
45
+ };
46
+ border: string;
47
+ "& > div": {
48
+ display: string;
49
+ justifyContent: string;
50
+ alignItems: string;
51
+ marginBottom: number;
52
+ maxWidth: string;
53
+ };
54
+ "& ul": {
55
+ marginTop: any;
56
+ padding: number;
57
+ listStyle: string;
58
+ };
59
+ };
60
+ featureItemRoot: ({ theme, selected }: any) => {
61
+ display: string;
62
+ alignItems: string;
63
+ gap: any;
64
+ marginBottom: any;
65
+ '&:last-child': {
66
+ marginBottom: number;
67
+ };
68
+ };
69
+ };
70
+ };
71
+ export default Component;
@@ -0,0 +1,73 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ '& .SCLiveStreamSelector-warning': {
5
+ margin: theme.spacing(2, 5, 2, 5),
6
+ [`& a`]: {
7
+ color: theme.palette.common.white,
8
+ fontWeight: 'bold'
9
+ }
10
+ },
11
+ '& .SCLiveStreamSelector-options': {
12
+ display: 'flex',
13
+ justifyContent: 'center',
14
+ alignItems: 'center',
15
+ [theme.breakpoints.down('sm')]: {
16
+ display: 'block'
17
+ },
18
+ '& > div': {
19
+ width: '290px',
20
+ [theme.breakpoints.down('sm')]: {
21
+ margin: '0px auto',
22
+ marginBottom: theme.spacing(2)
23
+ }
24
+ }
25
+ },
26
+ '& .SCLiveStreamSelector-actions': {
27
+ display: 'flex',
28
+ justifyContent: 'flex-end',
29
+ alignItems: 'flex-end',
30
+ marginTop: theme.spacing(4)
31
+ }
32
+ }),
33
+ optionCardRoot: ({ theme, selected }) => ({
34
+ maxWidth: 300,
35
+ height: 'auto',
36
+ minHeight: 440,
37
+ padding: theme.spacing(3),
38
+ margin: theme.spacing(0, 3),
39
+ cursor: 'pointer',
40
+ transition: theme.transitions.create(['background-color', 'box-shadow'], {
41
+ duration: theme.transitions.duration.short
42
+ }),
43
+ backgroundColor: selected ? theme.palette.grey[100] : theme.palette.background.paper,
44
+ '&:hover': {
45
+ backgroundColor: theme.palette.grey[50],
46
+ boxShadow: theme.shadows[2]
47
+ },
48
+ border: `1px solid ${theme.palette.divider}`,
49
+ [`& > div`]: {
50
+ display: 'flex',
51
+ justifyContent: 'space-between',
52
+ alignItems: 'center',
53
+ marginBottom: 2,
54
+ maxWidth: '300px'
55
+ },
56
+ [`& ul`]: {
57
+ marginTop: theme.spacing(2),
58
+ padding: 0,
59
+ listStyle: 'none'
60
+ }
61
+ }),
62
+ featureItemRoot: ({ theme, selected }) => ({
63
+ display: 'flex',
64
+ alignItems: 'flex-start',
65
+ gap: theme.spacing(1.5),
66
+ marginBottom: theme.spacing(2),
67
+ '&:last-child': {
68
+ marginBottom: 0
69
+ }
70
+ })
71
+ }
72
+ };
73
+ export default Component;
@@ -0,0 +1,30 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ height: string;
5
+ width: string;
6
+ overflowY: string;
7
+ };
8
+ dialogRoot: ({ theme }: any) => {
9
+ "& .SCLiveStreamVideoConference-end-conference-wrap": {
10
+ display: string;
11
+ justifyContent: string;
12
+ alignItems: string;
13
+ alignContent: string;
14
+ flexDirection: string;
15
+ textAlign: string;
16
+ "& .SCLiveStreamVideoConference-logo": {
17
+ img: {
18
+ maxHeight: number;
19
+ maxWidth: number;
20
+ };
21
+ marginBottom: any;
22
+ };
23
+ "& .SCLiveStreamVideoConference-btn-back-home": {
24
+ marginTop: any;
25
+ };
26
+ };
27
+ };
28
+ };
29
+ };
30
+ export default Component;
@@ -0,0 +1,30 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ height: '100vh',
5
+ width: '100%',
6
+ overflowY: 'hidden'
7
+ }),
8
+ dialogRoot: ({ theme }) => ({
9
+ [`& .SCLiveStreamVideoConference-end-conference-wrap`]: {
10
+ display: 'flex',
11
+ justifyContent: 'center',
12
+ alignItems: 'center',
13
+ alignContent: 'center',
14
+ flexDirection: 'column',
15
+ textAlign: 'center',
16
+ [`& .SCLiveStreamVideoConference-logo`]: {
17
+ img: {
18
+ maxHeight: 70,
19
+ maxWidth: 300
20
+ },
21
+ marginBottom: theme.spacing(2)
22
+ },
23
+ [`& .SCLiveStreamVideoConference-btn-back-home`]: {
24
+ marginTop: theme.spacing(2)
25
+ }
26
+ }
27
+ })
28
+ }
29
+ };
30
+ export default Component;
@@ -100,11 +100,7 @@ declare const Component: {
100
100
  flexWrap: string;
101
101
  maxWidth: string;
102
102
  overflow: string;
103
- MsOverflowStyle: string;
104
103
  scrollbarWidth: string;
105
- '&::-webkit-scrollbar': {
106
- display: string;
107
- };
108
104
  '& .SCMediaFile-media': {
109
105
  backgroundSize: string;
110
106
  backgroundPosition: string;
@@ -100,11 +100,7 @@ const Component = {
100
100
  flexWrap: 'nowrap',
101
101
  maxWidth: '100%',
102
102
  overflow: 'auto',
103
- 'MsOverflowStyle': 'none',
104
- scrollbarWidth: 'none',
105
- '&::-webkit-scrollbar': {
106
- display: 'none'
107
- },
103
+ scrollbarWidth: 'thin',
108
104
  '& .SCMediaFile-media': {
109
105
  backgroundSize: 'cover',
110
106
  backgroundPosition: 'center',
@@ -23,6 +23,9 @@ declare const Component: {
23
23
  paddingLeft: any;
24
24
  };
25
25
  };
26
+ '& .SCNavigationMenuDrawer-drawer-content': {
27
+ paddingTop: number;
28
+ };
26
29
  '& .MuiTypography-subtitle1': {
27
30
  fontSize: string;
28
31
  padding: any;
@@ -36,6 +39,10 @@ declare const Component: {
36
39
  '& .SCBaseItemButton-text ': {
37
40
  maxWidth: string;
38
41
  };
42
+ '& .SCNavigationMenuDrawer-drawer-footer-live-button': {
43
+ margin: any;
44
+ maxWidth: number;
45
+ };
39
46
  };
40
47
  };
41
48
  };
@@ -24,6 +24,9 @@ const Component = {
24
24
  paddingLeft: theme.spacing(1.5)
25
25
  }
26
26
  },
27
+ '& .SCNavigationMenuDrawer-drawer-content': {
28
+ paddingTop: 0
29
+ },
27
30
  '& .MuiTypography-subtitle1': {
28
31
  fontSize: '1.286rem',
29
32
  padding: theme.spacing(0, 2),
@@ -36,6 +39,10 @@ const Component = {
36
39
  },
37
40
  '& .SCBaseItemButton-text ': {
38
41
  maxWidth: '80%'
42
+ },
43
+ '& .SCNavigationMenuDrawer-drawer-footer-live-button': {
44
+ margin: theme.spacing(3),
45
+ maxWidth: 270
39
46
  }
40
47
  })
41
48
  }
@@ -21,7 +21,7 @@ declare const Component: {
21
21
  flexGrow: number;
22
22
  textAlign: string;
23
23
  alignSelf: string;
24
- '& .SCNavigationToolbar-home, & .SCNavigationToolbar-explore, & .SCNavigationToolbar-groups, & .SCNavigationToolbar-events': {
24
+ '& .SCNavigationToolbar-home, & .SCNavigationToolbar-explore, & .SCNavigationToolbar-groups, & .SCNavigationToolbar-events, & .SCNavigationToolbar-courses': {
25
25
  paddingTop: number;
26
26
  paddingLeft: any;
27
27
  paddingRight: any;
@@ -16,7 +16,7 @@ const Component = {
16
16
  flexGrow: 1,
17
17
  textAlign: 'center',
18
18
  alignSelf: 'end',
19
- '& .SCNavigationToolbar-home, & .SCNavigationToolbar-explore, & .SCNavigationToolbar-groups, & .SCNavigationToolbar-events': {
19
+ '& .SCNavigationToolbar-home, & .SCNavigationToolbar-explore, & .SCNavigationToolbar-groups, & .SCNavigationToolbar-events, & .SCNavigationToolbar-courses': {
20
20
  paddingTop: 12,
21
21
  paddingLeft: theme.spacing(1),
22
22
  paddingRight: theme.spacing(1),
@@ -305,6 +305,33 @@ declare const Component: {
305
305
  backgroundColor: string;
306
306
  };
307
307
  };
308
+ liveStreamRoot: ({ theme }: any) => {
309
+ '& .SCNotification-username, & a': {
310
+ fontWeight: any;
311
+ };
312
+ '& .SCNotificationItem-primary': {
313
+ '& .MuiIcon-root': {
314
+ float: string;
315
+ fontSize: string;
316
+ marginLeft: any;
317
+ };
318
+ '& .SCEvent-root': {
319
+ width: string;
320
+ '& .SCEvent-snippet-root': {
321
+ paddingLeft: string;
322
+ };
323
+ };
324
+ };
325
+ '& .SCNotificationItem-secondary': {
326
+ textTransform: string;
327
+ };
328
+ '& .SCNotification-snippet-time': {
329
+ paddingLeft: any;
330
+ };
331
+ '& .SCEvent-snippet-root': {
332
+ backgroundColor: string;
333
+ };
334
+ };
308
335
  groupRoot: ({ theme }: any) => {};
309
336
  undeletedForRoot: ({ theme }: any) => {
310
337
  '& .SCNotification-undeleted-icon': {
@@ -307,6 +307,33 @@ const Component = {
307
307
  backgroundColor: 'transparent !important'
308
308
  }
309
309
  }),
310
+ liveStreamRoot: ({ theme }) => ({
311
+ '& .SCNotification-username, & a': {
312
+ fontWeight: theme.typography.fontWeightBold
313
+ },
314
+ '& .SCNotificationItem-primary': {
315
+ '& .MuiIcon-root': {
316
+ float: 'right',
317
+ fontSize: '20px',
318
+ marginLeft: theme.spacing(0.5)
319
+ },
320
+ '& .SCEvent-root': {
321
+ width: '100%',
322
+ '& .SCEvent-snippet-root': {
323
+ paddingLeft: '0 !important'
324
+ }
325
+ }
326
+ },
327
+ '& .SCNotificationItem-secondary': {
328
+ textTransform: 'capitalize'
329
+ },
330
+ '& .SCNotification-snippet-time': {
331
+ paddingLeft: theme.spacing(5)
332
+ },
333
+ '& .SCEvent-snippet-root': {
334
+ backgroundColor: 'transparent !important'
335
+ }
336
+ }),
310
337
  groupRoot: ({ theme }) => ({}),
311
338
  undeletedForRoot: ({ theme }) => ({
312
339
  '& .SCNotification-undeleted-icon': {
@@ -82,12 +82,14 @@ declare const Component: {
82
82
  [x: number]: {
83
83
  width: any;
84
84
  };
85
+ position: string;
85
86
  '& img': {
86
87
  height: string;
87
88
  width: string;
88
89
  };
89
90
  '& .MuiButtonBase-root': {
90
91
  flexWrap: string;
92
+ width: string;
91
93
  position: string;
92
94
  bottom: any;
93
95
  backgroundColor: string;
@@ -79,6 +79,7 @@ const Component = {
79
79
  }
80
80
  },
81
81
  '& .SCPrivateMessageThreadItem-document': {
82
+ position: 'relative',
82
83
  [theme.breakpoints.up('sm')]: {
83
84
  width: theme.spacing(32.5)
84
85
  },
@@ -88,7 +89,7 @@ const Component = {
88
89
  },
89
90
  '& .MuiButtonBase-root': {
90
91
  flexWrap: 'wrap',
91
- //width: 'calc(100% - 24px)',
92
+ width: '100%',
92
93
  position: 'absolute',
93
94
  bottom: theme.spacing(4),
94
95
  backgroundColor: 'rgba(0,0,0,0.5)',
@@ -0,0 +1,13 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {};
4
+ badgeRoot: ({ theme }: any) => {
5
+ background: string;
6
+ borderRadius: number;
7
+ padding: string;
8
+ height: string;
9
+ fontSize: number;
10
+ };
11
+ };
12
+ };
13
+ export default Component;
@@ -0,0 +1,13 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({}),
4
+ badgeRoot: ({ theme }) => ({
5
+ background: '#008080',
6
+ borderRadius: 3,
7
+ padding: '1px',
8
+ height: 'auto',
9
+ fontSize: 12
10
+ })
11
+ }
12
+ };
13
+ export default Component;
@@ -0,0 +1,101 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: {
4
+ theme: any;
5
+ }) => {
6
+ '& .SCUserLiveStreamWidget-content': {
7
+ '& .SCUserLiveStreamWidget-header': {
8
+ flexDirection: string;
9
+ justifyContent: string;
10
+ alignItems: string;
11
+ marginBottom: any;
12
+ '& .SCUserLiveStreamWidget-avatar-wrapper': {
13
+ flexDirection: string;
14
+ alignItems: string;
15
+ color: string;
16
+ padding: number;
17
+ minWidth: string;
18
+ '& .SCUserLiveStreamWidget-avatar': {
19
+ width: any;
20
+ height: any;
21
+ };
22
+ };
23
+ '& h4': {
24
+ marginLeft: number;
25
+ lineHeight: string;
26
+ };
27
+ };
28
+ '& .SCUserLiveStreamWidget-live-wrapper': {
29
+ paddingTop: any;
30
+ gap: any;
31
+ '& .SCUserLiveStreamWidget-live': {
32
+ '& > div': {
33
+ padding: string;
34
+ '& > .SCBaseItem-content': {
35
+ '& > .SCBaseItem-text': {
36
+ margin: number;
37
+ };
38
+ };
39
+ };
40
+ };
41
+ };
42
+ };
43
+ '& .SCUserLiveStreamWidget-actions': {
44
+ padding: string;
45
+ justifyContent: string;
46
+ '& .SCSuggestedEventsWidget-actionButton': {
47
+ color: any;
48
+ };
49
+ };
50
+ };
51
+ skeletonRoot: ({ theme }: {
52
+ theme: any;
53
+ }) => {
54
+ '& .SCUserLiveStreamWidget-content': {
55
+ padding: string;
56
+ '& .SCUserLiveStreamWidget-user': {
57
+ marginBottom: any;
58
+ '& > .SCBaseItem-content': {
59
+ '& > .SCBaseItem-text': {
60
+ margin: number;
61
+ };
62
+ };
63
+ '& > .SCBaseItem-actions': {
64
+ display: string;
65
+ };
66
+ };
67
+ '& .SCUserLiveStreamWidget-live-wrapper': {
68
+ gap: any;
69
+ '& .SCUserLiveStreamWidget-live': {
70
+ '& > div': {
71
+ padding: string;
72
+ '& > .SCBaseItem-content': {
73
+ '& > .SCBaseItem-text': {
74
+ margin: number;
75
+ };
76
+ };
77
+ };
78
+ };
79
+ };
80
+ };
81
+ '& .SCUserLiveStreamWidget-actions': {
82
+ padding: string;
83
+ justifyContent: string;
84
+ };
85
+ };
86
+ dialogRoot: ({ theme }: {
87
+ theme: any;
88
+ }) => {
89
+ '& .SCUserLiveStreamWidget-infinite-scroll': {
90
+ [x: number]: {
91
+ height: string;
92
+ };
93
+ height: string;
94
+ '& .SCEvent-root': {
95
+ width: string;
96
+ };
97
+ };
98
+ };
99
+ };
100
+ };
101
+ export default Component;
@@ -0,0 +1,95 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ '& .SCUserLiveStreamWidget-content': {
5
+ '& .SCUserLiveStreamWidget-header': {
6
+ flexDirection: 'row',
7
+ justifyContent: 'flex-start',
8
+ alignItems: 'flex-start',
9
+ marginBottom: theme.spacing(2),
10
+ '& .SCUserLiveStreamWidget-avatar-wrapper': {
11
+ flexDirection: 'row',
12
+ alignItems: 'center',
13
+ color: 'inherit',
14
+ padding: 0,
15
+ minWidth: 'auto',
16
+ '& .SCUserLiveStreamWidget-avatar': {
17
+ width: theme.selfcommunity.user.avatar.sizeMedium,
18
+ height: theme.selfcommunity.user.avatar.sizeMedium
19
+ }
20
+ },
21
+ '& h4': {
22
+ marginLeft: 7,
23
+ lineHeight: '28px'
24
+ }
25
+ },
26
+ '& .SCUserLiveStreamWidget-live-wrapper': {
27
+ paddingTop: theme.spacing(2),
28
+ gap: theme.spacing(2),
29
+ '& .SCUserLiveStreamWidget-live': {
30
+ '& > div': {
31
+ padding: '0 !important',
32
+ '& > .SCBaseItem-content': {
33
+ '& > .SCBaseItem-text': {
34
+ margin: 0
35
+ }
36
+ }
37
+ }
38
+ }
39
+ }
40
+ },
41
+ '& .SCUserLiveStreamWidget-actions': {
42
+ padding: `0 ${theme.spacing(2)} 15px`,
43
+ justifyContent: 'center',
44
+ '& .SCSuggestedEventsWidget-actionButton': {
45
+ color: theme.palette.primary.main
46
+ }
47
+ }
48
+ }),
49
+ skeletonRoot: ({ theme }) => ({
50
+ '& .SCUserLiveStreamWidget-content': {
51
+ padding: `10px ${theme.spacing(2)} 12px`,
52
+ '& .SCUserLiveStreamWidget-user': {
53
+ marginBottom: theme.spacing(2),
54
+ '& > .SCBaseItem-content': {
55
+ '& > .SCBaseItem-text': {
56
+ margin: 0
57
+ }
58
+ },
59
+ '& > .SCBaseItem-actions': {
60
+ display: 'none'
61
+ }
62
+ },
63
+ '& .SCUserLiveStreamWidget-live-wrapper': {
64
+ gap: theme.spacing(2),
65
+ '& .SCUserLiveStreamWidget-live': {
66
+ '& > div': {
67
+ padding: '0 !important',
68
+ '& > .SCBaseItem-content': {
69
+ '& > .SCBaseItem-text': {
70
+ margin: 0
71
+ }
72
+ }
73
+ }
74
+ }
75
+ }
76
+ },
77
+ '& .SCUserLiveStreamWidget-actions': {
78
+ padding: `0 ${theme.spacing(2)} 15px`,
79
+ justifyContent: 'center'
80
+ }
81
+ }),
82
+ dialogRoot: ({ theme }) => ({
83
+ '& .SCUserLiveStreamWidget-infinite-scroll': {
84
+ height: '400px',
85
+ [theme.breakpoints.down('md')]: {
86
+ height: '100%'
87
+ },
88
+ '& .SCEvent-root': {
89
+ width: '100%'
90
+ }
91
+ }
92
+ })
93
+ }
94
+ };
95
+ export default Component;
@@ -40,7 +40,7 @@ const Component = {
40
40
  border: '1px solid #3b3b3b',
41
41
  '& th,td': {
42
42
  padding: 12,
43
- fontWeight: 'bold',
43
+ fontWeight: 'bold'
44
44
  },
45
45
  '& td': {
46
46
  padding: 12,
@@ -18,6 +18,7 @@ declare const Component: {
18
18
  };
19
19
  };
20
20
  popperRoot: ({ theme }: any) => {
21
+ zIndex: number;
21
22
  '& .SCVoteButton-reaction .MuiIcon-root': {
22
23
  fontSize: string;
23
24
  };
@@ -18,6 +18,7 @@ const Component = {
18
18
  }
19
19
  }),
20
20
  popperRoot: ({ theme }) => ({
21
+ zIndex: 1400,
21
22
  '& .SCVoteButton-reaction .MuiIcon-root': {
22
23
  fontSize: '22px'
23
24
  }
Binary file