@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,41 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ display: 'flex',
7
+ flexDirection: 'column',
8
+ height: '100%',
9
+ overflowY: 'auto',
10
+ padding: theme.spacing(2),
11
+ justifyContent: 'space-between',
12
+ '& .SCCommentObjectReply-root': {
13
+ backgroundColor: 'transparent',
14
+ '& .SCEditor-actions': {
15
+ left: theme.spacing(1),
16
+ '& .SCCommentObjectReply-icon-reply': {
17
+ marginLeft: 'auto'
18
+ }
19
+ },
20
+ marginTop: theme.spacing(2),
21
+ marginBottom: 0
22
+ },
23
+ '& .infinite-scroll-component__outerdiv': {
24
+ overflowY: 'auto',
25
+ '& .infinite-scroll-component': {
26
+ '& .MuiList-root ': {
27
+ padding: 0,
28
+ '& .MuiListItem-root': {
29
+ padding: 0
30
+ }
31
+ }
32
+ }
33
+ }
34
+ }),
35
+ skeletonRoot: ({ theme }) => ({
36
+ width: '100%',
37
+ backgroundColor: 'transparent'
38
+ })
39
+ }
40
+ };
41
+ exports.default = Component;
@@ -0,0 +1,21 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: () => {
4
+ '& .SCLessonCompletedDialog-wrapper': {
5
+ alignItems: string;
6
+ '& .SCLessonCompletedDialog-title': {
7
+ marginTop: string;
8
+ marginBottom: string;
9
+ };
10
+ '& .SCLessonCompletedDialog-description-pt1': {
11
+ marginTop: string;
12
+ };
13
+ '& .SCLessonCompletedDialog-description-pt2': {
14
+ marginTop: string;
15
+ marginBottom: string;
16
+ };
17
+ };
18
+ };
19
+ };
20
+ };
21
+ export default Component;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: () => ({
6
+ '& .SCLessonCompletedDialog-wrapper': {
7
+ alignItems: 'center',
8
+ '& .SCLessonCompletedDialog-title': {
9
+ marginTop: '60px',
10
+ marginBottom: '27px'
11
+ },
12
+ '& .SCLessonCompletedDialog-description-pt1': {
13
+ marginTop: '27px'
14
+ },
15
+ '& .SCLessonCompletedDialog-description-pt2': {
16
+ marginTop: '11px',
17
+ marginBottom: '53px'
18
+ }
19
+ }
20
+ })
21
+ }
22
+ };
23
+ exports.default = Component;
@@ -0,0 +1,37 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ [x: number]: {
5
+ width: string;
6
+ flexShrink: number;
7
+ } | {
8
+ width: string;
9
+ flexShrink?: undefined;
10
+ };
11
+ '& h4': {
12
+ fontWeight: any;
13
+ };
14
+ '& .MuiDrawer-paper': {
15
+ [x: number]: {
16
+ width: string;
17
+ };
18
+ width: string;
19
+ backgroundColor: any;
20
+ };
21
+ '& .SCLessonDrawer-header': {
22
+ minHeight: any;
23
+ display: string;
24
+ padding: any;
25
+ };
26
+ '& .SCLessonDrawer-header-content': {
27
+ display: string;
28
+ alignItems: string;
29
+ justifyContent: string;
30
+ };
31
+ '& .SCLessonDrawer-header-edit': {
32
+ justifyContent: string;
33
+ };
34
+ };
35
+ };
36
+ };
37
+ export default Component;
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ [theme.breakpoints.down('md')]: {
7
+ width: '100vw',
8
+ flexShrink: 0
9
+ },
10
+ [theme.breakpoints.up('sm')]: {
11
+ width: '300px'
12
+ },
13
+ '& h4': {
14
+ fontWeight: theme.typography.fontWeightMedium
15
+ },
16
+ '& .MuiDrawer-paper': {
17
+ width: '100%',
18
+ [theme.breakpoints.up('sm')]: {
19
+ width: '300px'
20
+ },
21
+ backgroundColor: theme.palette.grey[200]
22
+ },
23
+ '& .SCLessonDrawer-header': {
24
+ minHeight: theme.mixins.toolbar.minHeight,
25
+ display: 'block',
26
+ padding: theme.spacing(1, 1, 1, 2)
27
+ },
28
+ '& .SCLessonDrawer-header-content': {
29
+ display: 'flex',
30
+ alignItems: 'center',
31
+ justifyContent: 'space-between'
32
+ },
33
+ '& .SCLessonDrawer-header-edit': {
34
+ justifyContent: 'space-between'
35
+ }
36
+ })
37
+ }
38
+ };
39
+ exports.default = Component;
@@ -0,0 +1,30 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ padding: any;
5
+ height: string;
6
+ display: string;
7
+ flexDirection: string;
8
+ justifyContent: string;
9
+ '& .SCLessonEditForm-form': {
10
+ display: string;
11
+ flexDirection: string;
12
+ };
13
+ '& .MuiFormLabel-root': {
14
+ fontWeight: number;
15
+ color: string;
16
+ '& .Mui-focused': {
17
+ color: string;
18
+ };
19
+ };
20
+ '& .SCLessonEditForm-settings': {
21
+ marginTop: any;
22
+ };
23
+ '& .SCLessonEditForm-button': {
24
+ alignSelf: string;
25
+ marginBottom: any;
26
+ };
27
+ };
28
+ };
29
+ };
30
+ export default Component;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ padding: theme.spacing(2),
7
+ height: '100%',
8
+ display: 'flex',
9
+ flexDirection: 'column',
10
+ justifyContent: 'space-between',
11
+ '& .SCLessonEditForm-form': {
12
+ display: 'flex',
13
+ flexDirection: 'column'
14
+ },
15
+ '& .MuiFormLabel-root': {
16
+ fontWeight: 700,
17
+ color: 'inherit',
18
+ '& .Mui-focused': { color: 'inherit' }
19
+ },
20
+ '& .SCLessonEditForm-settings': {
21
+ marginTop: theme.spacing(2)
22
+ },
23
+ '& .SCLessonEditForm-button': {
24
+ alignSelf: 'center',
25
+ marginBottom: theme.spacing(3)
26
+ }
27
+ })
28
+ }
29
+ };
30
+ exports.default = Component;
@@ -0,0 +1,45 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ display: string;
5
+ flexDirection: string;
6
+ '& .SCLessonObject-content': {
7
+ padding: string;
8
+ '& .SCLessonObject-text': {
9
+ '& > div:first-of-type': {
10
+ height: string;
11
+ img: {
12
+ height: string;
13
+ objectFit: string;
14
+ };
15
+ padding: string;
16
+ };
17
+ '& > div:has(> a)': {
18
+ borderRadius: string;
19
+ padding: any;
20
+ background: any;
21
+ };
22
+ '& > div:has(> a) > a:first-of-type': {
23
+ textDecoration: string;
24
+ color: string;
25
+ };
26
+ };
27
+ };
28
+ '& .SCLessonObject-content-edit': {
29
+ padding: string;
30
+ '& .SCEditor-content': {
31
+ paddingTop: number;
32
+ paddingBottom: number;
33
+ };
34
+ };
35
+ '& .SCWidget-root': {
36
+ marginBottom: any;
37
+ boxShadow: string;
38
+ };
39
+ '& .SCLessonObject-button': {
40
+ alignSelf: string;
41
+ };
42
+ };
43
+ };
44
+ };
45
+ export default Component;
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ display: 'flex',
7
+ flexDirection: 'column',
8
+ '& .SCLessonObject-content': {
9
+ padding: `${theme.spacing(2)} !important`,
10
+ '& .SCLessonObject-text': {
11
+ '& > div:first-of-type': {
12
+ height: '240px',
13
+ img: {
14
+ height: '240px',
15
+ objectFit: 'cover'
16
+ },
17
+ padding: '0 !important'
18
+ },
19
+ // '& .SCEditor-paragraph': {}
20
+ '& > div:has(> a)': {
21
+ borderRadius: '5px',
22
+ padding: theme.spacing(1),
23
+ background: theme.palette.grey[300]
24
+ },
25
+ '& > div:has(> a) > a:first-of-type': {
26
+ textDecoration: 'none',
27
+ color: 'inherit'
28
+ }
29
+ }
30
+ },
31
+ '& .SCLessonObject-content-edit': {
32
+ padding: '0 !important',
33
+ '& .SCEditor-content': {
34
+ paddingTop: 0,
35
+ paddingBottom: 0
36
+ }
37
+ },
38
+ '& .SCWidget-root': {
39
+ marginBottom: theme.spacing(3),
40
+ boxShadow: 'none'
41
+ },
42
+ '& .SCLessonObject-button': {
43
+ alignSelf: 'center'
44
+ }
45
+ })
46
+ }
47
+ };
48
+ exports.default = Component;
@@ -0,0 +1,32 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {};
4
+ popoverRoot: ({ theme }: any) => {
5
+ width: string;
6
+ borderRadius: string;
7
+ '& .MuiPaper-root': {
8
+ padding: any;
9
+ };
10
+ '& .SCLessonReleaseMenu-popover-content': {
11
+ marginTop: any;
12
+ '& .SCLessonReleaseMenu-popover-selection': {
13
+ display: string;
14
+ alignItems: string;
15
+ gap: any;
16
+ '& .MuiInputBase-root': {
17
+ width: string;
18
+ height: string;
19
+ };
20
+ '& .MuiRadio-root': {
21
+ padding: any;
22
+ };
23
+ };
24
+ '& .SCLessonReleaseMenu-popover-action': {
25
+ marginTop: any;
26
+ width: string;
27
+ };
28
+ };
29
+ };
30
+ };
31
+ };
32
+ export default Component;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({}),
6
+ popoverRoot: ({ theme }) => ({
7
+ width: '260px',
8
+ borderRadius: '4px',
9
+ '& .MuiPaper-root': {
10
+ padding: theme.spacing(2)
11
+ },
12
+ '& .SCLessonReleaseMenu-popover-content': {
13
+ marginTop: theme.spacing(1),
14
+ '& .SCLessonReleaseMenu-popover-selection': {
15
+ display: 'flex',
16
+ alignItems: 'center',
17
+ gap: theme.spacing(2),
18
+ '& .MuiInputBase-root': {
19
+ width: '68px',
20
+ height: '38px'
21
+ },
22
+ '& .MuiRadio-root': {
23
+ padding: theme.spacing(0.5)
24
+ }
25
+ },
26
+ '& .SCLessonReleaseMenu-popover-action': {
27
+ marginTop: theme.spacing(1),
28
+ width: '100%'
29
+ }
30
+ }
31
+ })
32
+ }
33
+ };
34
+ exports.default = Component;
@@ -0,0 +1,19 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {};
4
+ containerRoot: ({ theme, open }: any) => {
5
+ '& .SCLessonTemplate-navigation-title': {
6
+ display: string;
7
+ alignItems: string;
8
+ justifyContent: string;
9
+ };
10
+ width: string;
11
+ display: string;
12
+ flexDirection: string;
13
+ overflow: string;
14
+ transition: any;
15
+ marginRight: number;
16
+ };
17
+ };
18
+ };
19
+ export default Component;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({}),
6
+ containerRoot: ({ theme, open }) => (Object.assign(Object.assign({ display: 'flex', flexDirection: 'column', overflow: 'hidden', transition: theme.transitions.create('margin', {
7
+ easing: theme.transitions.easing.sharp,
8
+ duration: theme.transitions.duration.leavingScreen
9
+ }), marginRight: 0 }, (open && {
10
+ [theme.breakpoints.down('md')]: { marginRight: '100vw', width: '100%' },
11
+ [theme.breakpoints.up('sm')]: { marginRight: '300px' },
12
+ width: `calc(100% - 300px)`
13
+ })), { '& .SCLessonTemplate-navigation-title': {
14
+ display: 'flex',
15
+ alignItems: 'center',
16
+ justifyContent: 'space-between'
17
+ } }))
18
+ }
19
+ };
20
+ exports.default = Component;
@@ -0,0 +1,218 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {};
4
+ detailRoot: ({ theme }: any) => {
5
+ '& .SCLiveStream-detail-image-wrapper': {
6
+ position: string;
7
+ '& .SCLiveStream-detail-image': {
8
+ height: string;
9
+ };
10
+ '& .SCLiveStream-detail-in-progress': {
11
+ backgroundColor: any;
12
+ position: string;
13
+ top: number;
14
+ right: number;
15
+ color: any;
16
+ boxShadow: string;
17
+ };
18
+ };
19
+ '& .SCLiveStream-detail-content': {
20
+ padding: string;
21
+ '& .SCLiveStream-detail-user': {
22
+ marginTop: string;
23
+ '& .SCBaseItemButton-text': {
24
+ margin: number;
25
+ };
26
+ };
27
+ '& .SCLiveStream-detail-name-wrapper': {
28
+ textDecoration: string;
29
+ color: string;
30
+ '& .SCLiveStream-detail-name': {
31
+ marginBottom: string;
32
+ };
33
+ };
34
+ '& .SCLiveStream-detail-first-divider': {
35
+ marginTop: string;
36
+ marginBottom: any;
37
+ };
38
+ '& .SCLiveStream-detail-second-divider': {
39
+ marginTop: any;
40
+ marginBottom: string;
41
+ };
42
+ };
43
+ };
44
+ previewRoot: ({ theme }: any) => {
45
+ '& .SCLiveStream-preview-image-wrapper': {
46
+ position: string;
47
+ '& .SCLiveStream-preview-image': {
48
+ height: string;
49
+ };
50
+ '& .SCLiveStream-preview-in-progress': {
51
+ height: number;
52
+ backgroundColor: any;
53
+ position: string;
54
+ top: number;
55
+ right: number;
56
+ color: any;
57
+ boxShadow: string;
58
+ '& span': {
59
+ fontSize: string;
60
+ paddingLeft: any;
61
+ paddingRight: any;
62
+ };
63
+ };
64
+ };
65
+ '& .SCLiveStream-preview-content': {
66
+ padding: string;
67
+ '& .SCLiveStreamInfoDetails-icon-text-wrapper': {
68
+ '& .MuiTypography-root': {
69
+ fontSize: string;
70
+ };
71
+ };
72
+ '& .SCLiveStream-detail-user': {
73
+ marginTop: string;
74
+ '& .SCBaseItemButton-text': {
75
+ margin: number;
76
+ };
77
+ };
78
+ '& .SCLiveStream-preview-name-wrapper': {
79
+ marginTop: number;
80
+ textDecoration: string;
81
+ color: string;
82
+ '& h5': {
83
+ whiteSpace: string;
84
+ overflow: string;
85
+ textOverflow: string;
86
+ };
87
+ };
88
+ };
89
+ };
90
+ snippetRoot: ({ theme }: any) => {
91
+ overflow: string;
92
+ boxSizing: string;
93
+ paddingLeft: string;
94
+ paddingRight: string;
95
+ '& .SCBaseItem-image': {
96
+ '& .MuiAvatar-root': {
97
+ width: number;
98
+ height: number;
99
+ borderRadius: string;
100
+ '& img': {
101
+ borderRadius: string;
102
+ };
103
+ };
104
+ };
105
+ '& .SCLiveStream-snippet-image': {
106
+ position: string;
107
+ '& .SCLiveStream-snippet-in-progress': {
108
+ height: number;
109
+ backgroundColor: any;
110
+ position: string;
111
+ top: number;
112
+ right: number;
113
+ color: any;
114
+ boxShadow: string;
115
+ '& span': {
116
+ fontSize: string;
117
+ paddingLeft: any;
118
+ paddingRight: any;
119
+ };
120
+ };
121
+ };
122
+ '& .SCBaseItem-text': {
123
+ fontSize: any;
124
+ '& .SCLiveStream-snippet-primary': {
125
+ color: any;
126
+ textDecoration: string;
127
+ '&:hover': {
128
+ textDecoration: string;
129
+ };
130
+ '& p': {
131
+ fontWeight: any;
132
+ };
133
+ };
134
+ '& .SCLiveStream-snippet-secondary': {
135
+ color: any;
136
+ };
137
+ };
138
+ };
139
+ skeletonRoot: ({ theme }: any) => {
140
+ '& .SCLiveStream-skeleton-detail-root': {
141
+ '& .SCLiveStream-skeleton-detail-calendar': {
142
+ position: string;
143
+ bottom: string;
144
+ left: string;
145
+ boxShadow: string;
146
+ };
147
+ '& .SCLiveStream-skeleton-detail-content': {
148
+ padding: string;
149
+ '& .SCLiveStream-skeleton-detail-user': {
150
+ marginTop: string;
151
+ '& .SCBaseItemButton-text': {
152
+ margin: number;
153
+ };
154
+ };
155
+ '& .SCLiveStream-skeleton-detail-name-wrapper': {
156
+ textDecoration: string;
157
+ color: string;
158
+ '& .SCLiveStream-skeleton-detail-name': {
159
+ marginBottom: string;
160
+ };
161
+ };
162
+ '& .SCLiveStream-skeleton-detail-first-divider': {
163
+ marginTop: string;
164
+ marginBottom: any;
165
+ };
166
+ '& .SCLiveStream-skeleton-detail-second-divider': {
167
+ marginTop: any;
168
+ marginBottom: string;
169
+ };
170
+ };
171
+ };
172
+ '& .SCLiveStream-skeleton-preview-root': {
173
+ '& .SCLiveStream-skeleton-preview-content': {
174
+ padding: any;
175
+ };
176
+ '& .SCLiveStream-skeleton-preview-image': {
177
+ position: string;
178
+ '& .MuiSkeleton-root': {
179
+ borderRadius: string;
180
+ };
181
+ '& .MuiIcon-root': {
182
+ color: any;
183
+ position: string;
184
+ top: string;
185
+ left: string;
186
+ transform: string;
187
+ };
188
+ };
189
+ '& .SCBaseItem-actions': {
190
+ maxWidth: string;
191
+ };
192
+ };
193
+ '& .SCLiveStream-skeleton-snippet-root': {
194
+ overflow: string;
195
+ boxSizing: string;
196
+ paddingLeft: string;
197
+ paddingRight: string;
198
+ '& .SCLiveStream-skeleton-snippet-image': {
199
+ position: string;
200
+ '& .MuiSkeleton-root': {
201
+ borderRadius: string;
202
+ };
203
+ '& .MuiIcon-root': {
204
+ color: any;
205
+ position: string;
206
+ top: string;
207
+ left: string;
208
+ transform: string;
209
+ };
210
+ };
211
+ '& .SCBaseItem-actions': {
212
+ maxWidth: string;
213
+ };
214
+ };
215
+ };
216
+ };
217
+ };
218
+ export default Component;