@selfcommunity/react-theme-default 0.4.2-alpha.9 → 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 (225) 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/SCVoteButton.d.ts +1 -0
  101. package/lib/cjs/components/SCVoteButton.js +1 -0
  102. package/lib/cjs/fonts/community/icons.eot +0 -0
  103. package/lib/cjs/fonts/community/icons.svg +9 -3
  104. package/lib/cjs/fonts/community/icons.ttf +0 -0
  105. package/lib/cjs/fonts/community/icons.woff +0 -0
  106. package/lib/cjs/fonts/community/icons.woff2 +0 -0
  107. package/lib/cjs/fonts/community-icons.css +15 -6
  108. package/lib/cjs/index.d.ts +4337 -1846
  109. package/lib/cjs/index.js +73 -1
  110. package/lib/esm/components/SCAccordionLessons.d.ts +40 -0
  111. package/lib/esm/components/SCAccordionLessons.js +38 -0
  112. package/lib/esm/components/SCAddUsersButton.d.ts +19 -0
  113. package/lib/esm/components/SCAddUsersButton.js +19 -0
  114. package/lib/esm/components/SCBaseItemButton.d.ts +26 -35
  115. package/lib/esm/components/SCBaseItemButton.js +27 -36
  116. package/lib/esm/components/SCCommentObject.d.ts +19 -17
  117. package/lib/esm/components/SCCommentObject.js +19 -17
  118. package/lib/esm/components/SCComposer.d.ts +54 -14
  119. package/lib/esm/components/SCComposer.js +79 -18
  120. package/lib/esm/components/SCContributionActionsMenu.js +1 -1
  121. package/lib/esm/components/SCCourse.d.ts +263 -0
  122. package/lib/esm/components/SCCourse.js +263 -0
  123. package/lib/esm/components/SCCourseContentMenu.d.ts +42 -0
  124. package/lib/esm/components/SCCourseContentMenu.js +40 -0
  125. package/lib/esm/components/SCCourseDashboard.d.ts +198 -0
  126. package/lib/esm/components/SCCourseDashboard.js +193 -0
  127. package/lib/esm/components/SCCourseForm.d.ts +143 -0
  128. package/lib/esm/components/SCCourseForm.js +142 -0
  129. package/lib/esm/components/SCCourseFormDialog.d.ts +6 -0
  130. package/lib/esm/components/SCCourseFormDialog.js +6 -0
  131. package/lib/esm/components/SCCourseInfoDetails.d.ts +43 -0
  132. package/lib/esm/components/SCCourseInfoDetails.js +41 -0
  133. package/lib/esm/components/SCCourseParticipantsButton.d.ts +55 -0
  134. package/lib/esm/components/SCCourseParticipantsButton.js +50 -0
  135. package/lib/esm/components/SCCourseUsersTable.d.ts +82 -0
  136. package/lib/esm/components/SCCourseUsersTable.js +78 -0
  137. package/lib/esm/components/SCCourses.d.ts +137 -0
  138. package/lib/esm/components/SCCourses.js +137 -0
  139. package/lib/esm/components/SCCreateCourseButton.d.ts +12 -0
  140. package/lib/esm/components/SCCreateCourseButton.js +12 -0
  141. package/lib/esm/components/SCCreateLiveStreamButton.d.ts +12 -0
  142. package/lib/esm/components/SCCreateLiveStreamButton.js +12 -0
  143. package/lib/esm/components/SCDefaultDrawerContent.d.ts +31 -0
  144. package/lib/esm/components/SCDefaultDrawerContent.js +31 -0
  145. package/lib/esm/components/SCEditCourse.d.ts +218 -0
  146. package/lib/esm/components/SCEditCourse.js +212 -0
  147. package/lib/esm/components/SCEditor.d.ts +20 -0
  148. package/lib/esm/components/SCEditor.js +20 -0
  149. package/lib/esm/components/SCEmptyStatus.d.ts +33 -0
  150. package/lib/esm/components/SCEmptyStatus.js +31 -0
  151. package/lib/esm/components/SCEventHeader.d.ts +2 -0
  152. package/lib/esm/components/SCEventHeader.js +3 -1
  153. package/lib/esm/components/SCEventInfoDetails.d.ts +3 -0
  154. package/lib/esm/components/SCEventInfoDetails.js +3 -0
  155. package/lib/esm/components/SCFeedObject.d.ts +41 -13
  156. package/lib/esm/components/SCFeedObject.js +43 -15
  157. package/lib/esm/components/SCFeedObjectDetailTemplate.d.ts +11 -0
  158. package/lib/esm/components/SCFeedObjectDetailTemplate.js +12 -1
  159. package/lib/esm/components/SCLessonAppbar.d.ts +22 -0
  160. package/lib/esm/components/SCLessonAppbar.js +22 -0
  161. package/lib/esm/components/SCLessonCommentActionsMenu.d.ts +32 -0
  162. package/lib/esm/components/SCLessonCommentActionsMenu.js +33 -0
  163. package/lib/esm/components/SCLessonCommentObject.d.ts +117 -0
  164. package/lib/esm/components/SCLessonCommentObject.js +117 -0
  165. package/lib/esm/components/SCLessonCommentObjects.d.ts +39 -0
  166. package/lib/esm/components/SCLessonCommentObjects.js +39 -0
  167. package/lib/esm/components/SCLessonCompletedDialog.d.ts +21 -0
  168. package/lib/esm/components/SCLessonCompletedDialog.js +21 -0
  169. package/lib/esm/components/SCLessonDrawer.d.ts +37 -0
  170. package/lib/esm/components/SCLessonDrawer.js +37 -0
  171. package/lib/esm/components/SCLessonEditForm.d.ts +30 -0
  172. package/lib/esm/components/SCLessonEditForm.js +28 -0
  173. package/lib/esm/components/SCLessonObject.d.ts +45 -0
  174. package/lib/esm/components/SCLessonObject.js +46 -0
  175. package/lib/esm/components/SCLessonReleaseMenu.d.ts +32 -0
  176. package/lib/esm/components/SCLessonReleaseMenu.js +32 -0
  177. package/lib/esm/components/SCLessonTemplate.d.ts +19 -0
  178. package/lib/esm/components/SCLessonTemplate.js +18 -0
  179. package/lib/esm/components/SCLiveStream.d.ts +218 -0
  180. package/lib/esm/components/SCLiveStream.js +218 -0
  181. package/lib/esm/components/SCLiveStreamDialog.d.ts +16 -0
  182. package/lib/esm/components/SCLiveStreamDialog.js +16 -0
  183. package/lib/esm/components/SCLiveStreamForm.d.ts +34 -0
  184. package/lib/esm/components/SCLiveStreamForm.js +34 -0
  185. package/lib/esm/components/SCLiveStreamFormSettings.d.ts +15 -0
  186. package/lib/esm/components/SCLiveStreamFormSettings.js +15 -0
  187. package/lib/esm/components/SCLiveStreamInfoDetails.d.ts +43 -0
  188. package/lib/esm/components/SCLiveStreamInfoDetails.js +41 -0
  189. package/lib/esm/components/SCLiveStreamRoom.d.ts +120 -0
  190. package/lib/esm/components/SCLiveStreamRoom.js +120 -0
  191. package/lib/esm/components/SCLiveStreamSelector.d.ts +71 -0
  192. package/lib/esm/components/SCLiveStreamSelector.js +73 -0
  193. package/lib/esm/components/SCLiveStreamVideoConference.d.ts +30 -0
  194. package/lib/esm/components/SCLiveStreamVideoConference.js +30 -0
  195. package/lib/esm/components/SCMediaFile.d.ts +0 -4
  196. package/lib/esm/components/SCMediaFile.js +1 -5
  197. package/lib/esm/components/SCNavigationMenuDrawer.d.ts +7 -0
  198. package/lib/esm/components/SCNavigationMenuDrawer.js +7 -0
  199. package/lib/esm/components/SCNavigationToolbar.d.ts +1 -1
  200. package/lib/esm/components/SCNavigationToolbar.js +1 -1
  201. package/lib/esm/components/SCNotification.d.ts +27 -0
  202. package/lib/esm/components/SCNotification.js +27 -0
  203. package/lib/esm/components/SCPrivateMessageThreadItem.d.ts +2 -0
  204. package/lib/esm/components/SCPrivateMessageThreadItem.js +2 -1
  205. package/lib/esm/components/SCUpScalingTierBadge.d.ts +13 -0
  206. package/lib/esm/components/SCUpScalingTierBadge.js +13 -0
  207. package/lib/esm/components/SCUserLiveStreamWidget.d.ts +101 -0
  208. package/lib/esm/components/SCUserLiveStreamWidget.js +95 -0
  209. package/lib/esm/components/SCVoteButton.d.ts +1 -0
  210. package/lib/esm/components/SCVoteButton.js +1 -0
  211. package/lib/esm/fonts/community/icons.eot +0 -0
  212. package/lib/esm/fonts/community/icons.svg +9 -3
  213. package/lib/esm/fonts/community/icons.ttf +0 -0
  214. package/lib/esm/fonts/community/icons.woff +0 -0
  215. package/lib/esm/fonts/community/icons.woff2 +0 -0
  216. package/lib/esm/fonts/community-icons.css +15 -6
  217. package/lib/esm/index.d.ts +4337 -1846
  218. package/lib/esm/index.js +73 -1
  219. package/lib/umd/community/icons.eot +0 -0
  220. package/lib/umd/community/icons.svg +9 -3
  221. package/lib/umd/community/icons.ttf +0 -0
  222. package/lib/umd/community/icons.woff +0 -0
  223. package/lib/umd/community/icons.woff2 +0 -0
  224. package/lib/umd/react-theme-default.js +1 -19
  225. package/package.json +123 -119
package/lib/cjs/index.js CHANGED
@@ -20,11 +20,13 @@ const MuiOutlinedInput_1 = tslib_1.__importDefault(require("./components/MuiOutl
20
20
  const MuiPopover_1 = tslib_1.__importDefault(require("./components/MuiPopover"));
21
21
  const MuiSelect_1 = tslib_1.__importDefault(require("./components/MuiSelect"));
22
22
  const MuiTooltip_1 = tslib_1.__importDefault(require("./components/MuiTooltip"));
23
+ const SCAccordionLessons_1 = tslib_1.__importDefault(require("./components/SCAccordionLessons"));
23
24
  const SCAccountChangeMailValidation_1 = tslib_1.__importDefault(require("./components/SCAccountChangeMailValidation"));
24
25
  const SCAccountDataPortability_1 = tslib_1.__importDefault(require("./components/SCAccountDataPortability"));
25
26
  const SCAccountDelete_1 = tslib_1.__importDefault(require("./components/SCAccountDelete"));
26
27
  const SCAccountReset_1 = tslib_1.__importDefault(require("./components/SCAccountReset"));
27
28
  const SCAccountVerify_1 = tslib_1.__importDefault(require("./components/SCAccountVerify"));
29
+ const SCAddUsersButton_1 = tslib_1.__importDefault(require("./components/SCAddUsersButton"));
28
30
  const SCBaseDialog_1 = tslib_1.__importDefault(require("./components/SCBaseDialog"));
29
31
  const SCBaseItem_1 = tslib_1.__importDefault(require("./components/SCBaseItem"));
30
32
  const SCBaseItemButton_1 = tslib_1.__importDefault(require("./components/SCBaseItemButton"));
@@ -43,6 +45,7 @@ const SCCategoryHeader_1 = tslib_1.__importDefault(require("./components/SCCateg
43
45
  const SCCategoryTemplate_1 = tslib_1.__importDefault(require("./components/SCCategoryTemplate"));
44
46
  const SCCategoryTrendingFeedWidget_1 = tslib_1.__importDefault(require("./components/SCCategoryTrendingFeedWidget"));
45
47
  const SCCategoryTrendingUsersWidget_1 = tslib_1.__importDefault(require("./components/SCCategoryTrendingUsersWidget"));
48
+ const SCCourseUsersTable_1 = tslib_1.__importDefault(require("./components/SCCourseUsersTable"));
46
49
  const SCChangeCoverButton_1 = tslib_1.__importDefault(require("./components/SCChangeCoverButton"));
47
50
  const SCChangeGroupCoverButton_1 = tslib_1.__importDefault(require("./components/SCChangeGroupCoverButton"));
48
51
  const SCChangeGroupPictureButton_1 = tslib_1.__importDefault(require("./components/SCChangeGroupPictureButton"));
@@ -55,6 +58,15 @@ const SCCommentsObject_1 = tslib_1.__importDefault(require("./components/SCComme
55
58
  const SCComposer_1 = tslib_1.__importDefault(require("./components/SCComposer"));
56
59
  const SCConsentSolution_1 = tslib_1.__importDefault(require("./components/SCConsentSolution"));
57
60
  const SCContributionActionsMenu_1 = tslib_1.__importDefault(require("./components/SCContributionActionsMenu"));
61
+ const SCCourse_1 = tslib_1.__importDefault(require("./components/SCCourse"));
62
+ const SCCourseContentMenu_1 = tslib_1.__importDefault(require("./components/SCCourseContentMenu"));
63
+ const SCCourseDashboard_1 = tslib_1.__importDefault(require("./components/SCCourseDashboard"));
64
+ const SCCourses_1 = tslib_1.__importDefault(require("./components/SCCourses"));
65
+ const SCCourseForm_1 = tslib_1.__importDefault(require("./components/SCCourseForm"));
66
+ const SCCourseFormDialog_1 = tslib_1.__importDefault(require("./components/SCCourseFormDialog"));
67
+ const SCCourseInfoDetails_1 = tslib_1.__importDefault(require("./components/SCCourseInfoDetails"));
68
+ const SCCourseParticipantsButton_1 = tslib_1.__importDefault(require("./components/SCCourseParticipantsButton"));
69
+ const SCCreateCourseButton_1 = tslib_1.__importDefault(require("./components/SCCreateCourseButton"));
58
70
  const SCCreateEventButton_1 = tslib_1.__importDefault(require("./components/SCCreateEventButton"));
59
71
  const SCCreateEventWidget_1 = tslib_1.__importDefault(require("./components/SCCreateEventWidget"));
60
72
  const SCCreateGroupButton_1 = tslib_1.__importDefault(require("./components/SCCreateGroupButton"));
@@ -62,9 +74,12 @@ const SCCustomAdv_1 = tslib_1.__importDefault(require("./components/SCCustomAdv"
62
74
  const SCCustomSnackMessage_1 = tslib_1.__importDefault(require("./components/SCCustomSnackMessage"));
63
75
  const SCDateTimeAgo_1 = tslib_1.__importDefault(require("./components/SCDateTimeAgo"));
64
76
  const SCDefaultHeaderContent_1 = tslib_1.__importDefault(require("./components/SCDefaultHeaderContent"));
77
+ const SCDefaultDrawerContent_1 = tslib_1.__importDefault(require("./components/SCDefaultDrawerContent"));
65
78
  const SCEditGroupButton_1 = tslib_1.__importDefault(require("./components/SCEditGroupButton"));
66
79
  const SCEditor_1 = tslib_1.__importDefault(require("./components/SCEditor"));
80
+ const SCEditCourse_1 = tslib_1.__importDefault(require("./components/SCEditCourse"));
67
81
  const SCEmojiPicker_1 = tslib_1.__importDefault(require("./components/SCEmojiPicker"));
82
+ const SCEmptyStatus_1 = tslib_1.__importDefault(require("./components/SCEmptyStatus"));
68
83
  const SCEvent_1 = tslib_1.__importDefault(require("./components/SCEvent"));
69
84
  const SCEventActionsMenu_1 = tslib_1.__importDefault(require("./components/SCEventActionsMenu"));
70
85
  const SCEventForm_1 = tslib_1.__importDefault(require("./components/SCEventForm"));
@@ -107,6 +122,16 @@ const SCIncubatorListWidget_1 = tslib_1.__importDefault(require("./components/SC
107
122
  const SCIncubatorSuggestionWidget_1 = tslib_1.__importDefault(require("./components/SCIncubatorSuggestionWidget"));
108
123
  const SCInlineComposerWidget_1 = tslib_1.__importDefault(require("./components/SCInlineComposerWidget"));
109
124
  const SCLanguageSwitcher_1 = tslib_1.__importDefault(require("./components/SCLanguageSwitcher"));
125
+ const SCLessonAppbar_1 = tslib_1.__importDefault(require("./components/SCLessonAppbar"));
126
+ const SCLessonDrawer_1 = tslib_1.__importDefault(require("./components/SCLessonDrawer"));
127
+ const SCLessonCommentActionsMenu_1 = tslib_1.__importDefault(require("./components/SCLessonCommentActionsMenu"));
128
+ const SCLessonCommentObject_1 = tslib_1.__importDefault(require("./components/SCLessonCommentObject"));
129
+ const SCLessonCommentObjects_1 = tslib_1.__importDefault(require("./components/SCLessonCommentObjects"));
130
+ const SCLessonCompletedDialog_1 = tslib_1.__importDefault(require("./components/SCLessonCompletedDialog"));
131
+ const SCLessonEditForm_1 = tslib_1.__importDefault(require("./components/SCLessonEditForm"));
132
+ const SCLessonTemplate_1 = tslib_1.__importDefault(require("./components/SCLessonTemplate"));
133
+ const SCLessonObject_1 = tslib_1.__importDefault(require("./components/SCLessonObject"));
134
+ const SCLessonReleaseMenu_1 = tslib_1.__importDefault(require("./components/SCLessonReleaseMenu"));
110
135
  const SCLightbox_1 = tslib_1.__importDefault(require("./components/SCLightbox"));
111
136
  const SCLoyaltyProgramDetailTemplate_1 = tslib_1.__importDefault(require("./components/SCLoyaltyProgramDetailTemplate"));
112
137
  const SCLoyaltyProgramWidget_1 = tslib_1.__importDefault(require("./components/SCLoyaltyProgramWidget"));
@@ -143,6 +168,17 @@ const SCScrollContainer_1 = tslib_1.__importDefault(require("./components/SCScro
143
168
  const SCSearchAutocomplete_1 = tslib_1.__importDefault(require("./components/SCSearchAutocomplete"));
144
169
  const SCSnippetNotifications_1 = tslib_1.__importDefault(require("./components/SCSnippetNotifications"));
145
170
  const SCSuggestedEventsWidget_1 = tslib_1.__importDefault(require("./components/SCSuggestedEventsWidget"));
171
+ const SCLiveStream_1 = tslib_1.__importDefault(require("./components/SCLiveStream"));
172
+ const SCCreateLiveStreamButton_1 = tslib_1.__importDefault(require("./components/SCCreateLiveStreamButton"));
173
+ const SCLiveStreamDialog_1 = tslib_1.__importDefault(require("./components/SCLiveStreamDialog"));
174
+ const SCLiveStreamSelector_1 = tslib_1.__importDefault(require("./components/SCLiveStreamSelector"));
175
+ const SCLiveStreamForm_1 = tslib_1.__importDefault(require("./components/SCLiveStreamForm"));
176
+ const SCLiveStreamFormSettings_1 = tslib_1.__importDefault(require("./components/SCLiveStreamFormSettings"));
177
+ const SCLiveStreamRoom_1 = tslib_1.__importDefault(require("./components/SCLiveStreamRoom"));
178
+ const SCLiveStreamVideoConference_1 = tslib_1.__importDefault(require("./components/SCLiveStreamVideoConference"));
179
+ const SCLiveStreamInfoDetails_1 = tslib_1.__importDefault(require("./components/SCLiveStreamInfoDetails"));
180
+ const SCUpScalingTierBadge_1 = tslib_1.__importDefault(require("./components/SCUpScalingTierBadge"));
181
+ const SCUserLiveStreamWidget_1 = tslib_1.__importDefault(require("./components/SCUserLiveStreamWidget"));
146
182
  const SCToastNotifications_1 = tslib_1.__importDefault(require("./components/SCToastNotifications"));
147
183
  const SCUser_1 = tslib_1.__importDefault(require("./components/SCUser"));
148
184
  const SCUserActionIconButton_1 = tslib_1.__importDefault(require("./components/SCUserActionIconButton"));
@@ -269,11 +305,13 @@ const theme = {
269
305
  MuiPopover: MuiPopover_1.default,
270
306
  MuiSelect: MuiSelect_1.default,
271
307
  MuiTooltip: MuiTooltip_1.default,
308
+ SCAccordionLessons: SCAccordionLessons_1.default,
272
309
  SCAccountChangeMailValidation: SCAccountChangeMailValidation_1.default,
273
310
  SCAccountDataPortability: SCAccountDataPortability_1.default,
274
311
  SCAccountDelete: SCAccountDelete_1.default,
275
312
  SCAccountReset: SCAccountReset_1.default,
276
313
  SCAccountVerify: SCAccountVerify_1.default,
314
+ SCAddUsersButton: SCAddUsersButton_1.default,
277
315
  SCBaseDialog: SCBaseDialog_1.default,
278
316
  SCBaseItem: SCBaseItem_1.default,
279
317
  SCBaseItemButton: SCBaseItemButton_1.default,
@@ -303,13 +341,24 @@ const theme = {
303
341
  SCComposer: SCComposer_1.default,
304
342
  SCConsentSolution: SCConsentSolution_1.default,
305
343
  SCContributionActionsMenu: SCContributionActionsMenu_1.default,
344
+ SCCourse: SCCourse_1.default,
345
+ SCCourseContentMenu: SCCourseContentMenu_1.default,
346
+ SCCourseDashboard: SCCourseDashboard_1.default,
347
+ SCCourses: SCCourses_1.default,
348
+ SCCourseForm: SCCourseForm_1.default,
349
+ SCCourseFormDialog: SCCourseFormDialog_1.default,
350
+ SCCourseParticipantsButton: SCCourseParticipantsButton_1.default,
351
+ SCCourseInfoDetails: SCCourseInfoDetails_1.default,
352
+ SCCourseUsersTable: SCCourseUsersTable_1.default,
306
353
  SCCreateGroupButton: SCCreateGroupButton_1.default,
307
354
  SCCustomAdv: SCCustomAdv_1.default,
308
355
  SCCustomSnackMessage: SCCustomSnackMessage_1.default,
309
356
  SCDateTimeAgo: SCDateTimeAgo_1.default,
310
357
  SCDefaultHeaderContent: SCDefaultHeaderContent_1.default,
358
+ SCDefaultDrawerContent: SCDefaultDrawerContent_1.default,
311
359
  SCEditGroupButton: SCEditGroupButton_1.default,
312
360
  SCEditor: SCEditor_1.default,
361
+ SCEditCourse: SCEditCourse_1.default,
313
362
  SCEmojiPicker: SCEmojiPicker_1.default,
314
363
  SCExploreFeedTemplate: SCExploreFeedTemplate_1.default,
315
364
  SCFeed: SCFeed_1.default,
@@ -339,6 +388,16 @@ const theme = {
339
388
  SCIncubatorSuggestionWidget: SCIncubatorSuggestionWidget_1.default,
340
389
  SCInlineComposerWidget: SCInlineComposerWidget_1.default,
341
390
  SCLanguageSwitcher: SCLanguageSwitcher_1.default,
391
+ SCLessonAppbar: SCLessonAppbar_1.default,
392
+ SCLessonDrawer: SCLessonDrawer_1.default,
393
+ SCLessonCommentActionsMenu: SCLessonCommentActionsMenu_1.default,
394
+ SCLessonCommentObject: SCLessonCommentObject_1.default,
395
+ SCLessonCommentObjects: SCLessonCommentObjects_1.default,
396
+ SCLessonCompletedDialog: SCLessonCompletedDialog_1.default,
397
+ SCLessonEditForm: SCLessonEditForm_1.default,
398
+ SCLessonTemplate: SCLessonTemplate_1.default,
399
+ SCLessonObject: SCLessonObject_1.default,
400
+ SCLessonReleaseMenu: SCLessonReleaseMenu_1.default,
342
401
  SCLightbox: SCLightbox_1.default,
343
402
  SCLoyaltyProgramDetailTemplate: SCLoyaltyProgramDetailTemplate_1.default,
344
403
  SCLoyaltyProgramWidget: SCLoyaltyProgramWidget_1.default,
@@ -394,6 +453,7 @@ const theme = {
394
453
  SCTagAutocomplete: SCTagAutocomplete_1.default,
395
454
  SCEventForm: SCEventForm_1.default,
396
455
  SCEventFormDialog: SCEventFormDialog_1.default,
456
+ SCCreateCourseButton: SCCreateCourseButton_1.default,
397
457
  SCCreateEventButton: SCCreateEventButton_1.default,
398
458
  SCEventLocationWidget: SCEventLocationWidget_1.default,
399
459
  SCEvent: SCEvent_1.default,
@@ -414,7 +474,19 @@ const theme = {
414
474
  SCVoteAudienceButton: SCVoteAudienceButton_1.default,
415
475
  SCVoteButton: SCVoteButton_1.default,
416
476
  SCWidget: SCWidget_1.default,
417
- SCEventMediaWidget: SCEventMediaWidget_1.default
477
+ SCEventMediaWidget: SCEventMediaWidget_1.default,
478
+ SCEmptyStatus: SCEmptyStatus_1.default,
479
+ SCLiveStream: SCLiveStream_1.default,
480
+ SCLiveStreamInfoDetails: SCLiveStreamInfoDetails_1.default,
481
+ SCUpScalingTierBadge: SCUpScalingTierBadge_1.default,
482
+ SCUserLiveStreamWidget: SCUserLiveStreamWidget_1.default,
483
+ SCCreateLiveStreamButton: SCCreateLiveStreamButton_1.default,
484
+ SCCreateLiveStreamDialog: SCLiveStreamDialog_1.default,
485
+ SCLiveStreamSelector: SCLiveStreamSelector_1.default,
486
+ SCLiveStreamForm: SCLiveStreamForm_1.default,
487
+ SCLiveStreamFormSettings: SCLiveStreamFormSettings_1.default,
488
+ SCLiveStreamRoom: SCLiveStreamRoom_1.default,
489
+ SCLiveStreamVideoConference: SCLiveStreamVideoConference_1.default
418
490
  },
419
491
  selfcommunity: {
420
492
  user: {
@@ -0,0 +1,40 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: {
4
+ theme: any;
5
+ }) => {
6
+ border: string;
7
+ borderRadius: string;
8
+ '& .SCAccordionLessons-accordion': {
9
+ '& .SCAccordionLessons-summary': {
10
+ flexDirection: string;
11
+ gap: any;
12
+ borderBottom: string;
13
+ padding: any;
14
+ backgroundColor: any;
15
+ '& .MuiAccordionSummary-content': {
16
+ justifyContent: string;
17
+ margin: number;
18
+ };
19
+ };
20
+ '& .SCAccordionLessons-details': {
21
+ display: string;
22
+ alignItems: string;
23
+ gap: any;
24
+ padding: any;
25
+ '&:not(:last-child)': {
26
+ borderBottom: string;
27
+ };
28
+ '& .SCAccordionLessons-circle': {
29
+ flexShrink: number;
30
+ width: any;
31
+ height: any;
32
+ borderRadius: string;
33
+ backgroundColor: any;
34
+ };
35
+ };
36
+ };
37
+ };
38
+ };
39
+ };
40
+ export default Component;
@@ -0,0 +1,38 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ border: `1px solid ${theme.palette.grey['300']}`,
5
+ borderRadius: '5px',
6
+ '& .SCAccordionLessons-accordion': {
7
+ '& .SCAccordionLessons-summary': {
8
+ flexDirection: 'row-reverse',
9
+ gap: theme.spacing(1),
10
+ borderBottom: `1px solid ${theme.palette.grey['300']}`,
11
+ padding: theme.spacing('22px', 3),
12
+ backgroundColor: theme.palette.grey['200'],
13
+ '& .MuiAccordionSummary-content': {
14
+ justifyContent: 'space-between',
15
+ margin: 0
16
+ }
17
+ },
18
+ '& .SCAccordionLessons-details': {
19
+ display: 'flex',
20
+ alignItems: 'center',
21
+ gap: theme.spacing(1),
22
+ padding: theme.spacing('22px', 6),
23
+ '&:not(:last-child)': {
24
+ borderBottom: `1px solid ${theme.palette.grey['300']}`
25
+ },
26
+ '& .SCAccordionLessons-circle': {
27
+ flexShrink: 0,
28
+ width: theme.spacing(2),
29
+ height: theme.spacing(2),
30
+ borderRadius: '9999px',
31
+ backgroundColor: theme.palette.grey['300']
32
+ }
33
+ }
34
+ }
35
+ })
36
+ }
37
+ };
38
+ export default Component;
@@ -0,0 +1,19 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: () => {};
4
+ dialogRoot: () => {
5
+ '& .MuiDialogActions-root': {
6
+ marginTop: string;
7
+ };
8
+ '& .SCAddUsersButton-dialog-autocomplete-wrapper': {
9
+ gap: string;
10
+ '& .SCAddUsersButton-dialog-chip-wrapper': {
11
+ flexDirection: string;
12
+ gap: string;
13
+ flexWrap: string;
14
+ };
15
+ };
16
+ };
17
+ };
18
+ };
19
+ export default Component;
@@ -0,0 +1,19 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: () => ({}),
4
+ dialogRoot: () => ({
5
+ '& .MuiDialogActions-root': {
6
+ marginTop: '36px'
7
+ },
8
+ '& .SCAddUsersButton-dialog-autocomplete-wrapper': {
9
+ gap: '10px',
10
+ '& .SCAddUsersButton-dialog-chip-wrapper': {
11
+ flexDirection: 'row',
12
+ gap: '5px',
13
+ flexWrap: 'wrap'
14
+ }
15
+ }
16
+ })
17
+ }
18
+ };
19
+ export default Component;
@@ -13,52 +13,43 @@ declare const Component: {
13
13
  paddingBottom: number;
14
14
  paddingLeft: number;
15
15
  paddingRight: number;
16
- '& .SCBaseItemButton-actions': {
17
- right: number;
18
- };
19
16
  };
20
17
  };
21
18
  '& .SCBaseItemButton-content': {
22
19
  display: string;
23
- flexDirection: string;
24
20
  justifyContent: string;
25
21
  alignItems: string;
26
- width: string;
27
- };
28
- '& .SCBaseItemButton-image': {
29
- flexShrink: number;
30
- marginRight: any;
31
- };
32
- '& .SCBaseItemButton-text': {
33
- flex: string;
34
- marginTop: any;
35
- marginBottom: any;
36
- textAlign: string;
37
- };
38
- '& .SCBaseItemButton-primary': {
39
- color: any;
40
- };
41
- '& .SCBaseItemButton-secondary': {
42
- color: any;
43
- };
44
- '& .SCBaseItemButton-primary, & .SCBaseItemButton-secondary': {
45
- whiteSpace: string;
46
- overflow: string;
47
- textOverflow: string;
48
- display: string;
22
+ gap: any;
23
+ '& .SCBaseItemButton-image': {
24
+ flexShrink: number;
25
+ };
26
+ '& .SCBaseItemButton-text': {
27
+ marginTop: any;
28
+ marginBottom: any;
29
+ '& .SCBaseItemButton-primary': {
30
+ color: any;
31
+ };
32
+ '& .SCBaseItemButton-secondary': {
33
+ color: any;
34
+ };
35
+ };
49
36
  };
50
37
  '&.SCBaseItemButton-with-actions': {
51
- '& .SCBaseItemButton-text > *': {
52
- [x: number]: {
53
- maxWidth: string;
38
+ display: string;
39
+ alignItems: string;
40
+ justifyContent: string;
41
+ gap: string;
42
+ '& .SCBaseItemButton-content': {
43
+ overflow: string;
44
+ '& .SCBaseItemButton-text': {
45
+ whiteSpace: string;
46
+ overflow: string;
47
+ textOverflow: string;
48
+ flexGrow: number;
54
49
  };
55
- maxWidth: string;
56
50
  };
57
51
  '& .SCBaseItemButton-actions': {
58
- position: string;
59
- right: any;
60
- top: string;
61
- transform: string;
52
+ flexShrink: number;
62
53
  maxWidth: any;
63
54
  };
64
55
  };
@@ -12,53 +12,44 @@ const Component = {
12
12
  paddingTop: 0,
13
13
  paddingBottom: 0,
14
14
  paddingLeft: 0,
15
- paddingRight: 0,
16
- '& .SCBaseItemButton-actions': {
17
- right: 0
18
- }
15
+ paddingRight: 0
19
16
  }
20
17
  },
21
18
  '& .SCBaseItemButton-content': {
22
19
  display: 'flex',
23
- flexDirection: 'row',
24
20
  justifyContent: 'flex-start',
25
21
  alignItems: 'center',
26
- width: '100%'
27
- },
28
- '& .SCBaseItemButton-image': {
29
- flexShrink: 0,
30
- marginRight: theme.spacing(2)
31
- },
32
- '& .SCBaseItemButton-text': {
33
- flex: '1 1 auto',
34
- marginTop: theme.spacing(),
35
- marginBottom: theme.spacing(),
36
- textAlign: 'left'
37
- },
38
- '& .SCBaseItemButton-primary': {
39
- color: theme.palette.text.primary
40
- },
41
- '& .SCBaseItemButton-secondary': {
42
- color: theme.palette.text.secondary
43
- },
44
- '& .SCBaseItemButton-primary, & .SCBaseItemButton-secondary': {
45
- whiteSpace: 'nowrap',
46
- overflow: 'hidden',
47
- textOverflow: 'ellipsis',
48
- display: 'block'
22
+ gap: theme.spacing(2),
23
+ '& .SCBaseItemButton-image': {
24
+ flexShrink: 0
25
+ },
26
+ '& .SCBaseItemButton-text': {
27
+ marginTop: theme.spacing(),
28
+ marginBottom: theme.spacing(),
29
+ '& .SCBaseItemButton-primary': {
30
+ color: theme.palette.text.primary
31
+ },
32
+ '& .SCBaseItemButton-secondary': {
33
+ color: theme.palette.text.secondary
34
+ }
35
+ }
49
36
  },
50
37
  '&.SCBaseItemButton-with-actions': {
51
- '& .SCBaseItemButton-text > *': {
52
- maxWidth: `calc(100% - ${theme.spacing(14)})`,
53
- [theme.breakpoints.only('md')]: {
54
- maxWidth: `calc(100% - ${theme.spacing(15)})`
38
+ display: 'flex',
39
+ alignItems: 'center',
40
+ justifyContent: 'space-between',
41
+ gap: '6px',
42
+ '& .SCBaseItemButton-content': {
43
+ overflow: 'hidden',
44
+ '& .SCBaseItemButton-text': {
45
+ whiteSpace: 'nowrap',
46
+ overflow: 'hidden',
47
+ textOverflow: 'ellipsis',
48
+ flexGrow: 1
55
49
  }
56
50
  },
57
51
  '& .SCBaseItemButton-actions': {
58
- position: 'absolute',
59
- right: theme.spacing(2),
60
- top: '50%',
61
- transform: 'translateY(-50%)',
52
+ flexShrink: 0,
62
53
  maxWidth: theme.spacing(19)
63
54
  }
64
55
  }
@@ -68,6 +68,18 @@ declare const Component: {
68
68
  maxWidth: string;
69
69
  };
70
70
  };
71
+ '& .SCCommentObject-flag-chip': {
72
+ borderRadius: number;
73
+ display: string;
74
+ width: string;
75
+ };
76
+ };
77
+ '& .SCCommentObject-collapsed': {
78
+ justifyContent: string;
79
+ alignItems: string;
80
+ '& .MuiCardContent-root': {
81
+ marginLeft: any;
82
+ };
71
83
  };
72
84
  '& .SCCommentObject-show-more-content': {
73
85
  color: any;
@@ -101,27 +113,16 @@ declare const Component: {
101
113
  color: any;
102
114
  };
103
115
  '& .SCCommentObject-comment-sub-section': {
104
- [x: number]: {
105
- '& > *': {
106
- marginRight: number;
107
- };
108
- '& .SCCommentObject-vote-audience': {
109
- position: string;
110
- right: number;
111
- top: number;
112
- };
113
- '& .SCBullet-root': {
114
- display: string;
115
- };
116
- };
117
116
  display: string;
118
117
  flexWrap: string;
119
118
  alignItems: string;
120
119
  color: any;
121
120
  marginTop: number;
122
121
  position: string;
123
- '& > *': {
124
- marginRight: any;
122
+ '& .SCCommentObject-reply': {
123
+ paddingLeft: number;
124
+ paddingRight: number;
125
+ lineHeight: number;
125
126
  };
126
127
  '& .SCCommentObject-activity-at': {
127
128
  color: string;
@@ -137,8 +138,9 @@ declare const Component: {
137
138
  padding: any;
138
139
  textTransform: string;
139
140
  };
140
- '& .SCBullet-root': {
141
- display: string;
141
+ '& .SCCommentObject-vote-audience': {
142
+ position: string;
143
+ right: number;
142
144
  };
143
145
  };
144
146
  };
@@ -68,6 +68,18 @@ const Component = {
68
68
  '& img': {
69
69
  maxWidth: '100%'
70
70
  }
71
+ },
72
+ '& .SCCommentObject-flag-chip': {
73
+ borderRadius: 0,
74
+ display: 'flex',
75
+ width: 'fit-content'
76
+ }
77
+ },
78
+ '& .SCCommentObject-collapsed': {
79
+ justifyContent: 'center',
80
+ alignItems: 'center',
81
+ '& .MuiCardContent-root': {
82
+ marginLeft: theme.spacing(1)
71
83
  }
72
84
  },
73
85
  '& .SCCommentObject-show-more-content': {
@@ -108,8 +120,10 @@ const Component = {
108
120
  color: theme.palette.primary.main,
109
121
  marginTop: 0,
110
122
  position: 'relative',
111
- '& > *': {
112
- marginRight: theme.spacing(1)
123
+ '& .SCCommentObject-reply': {
124
+ paddingLeft: 0,
125
+ paddingRight: 0,
126
+ lineHeight: 1
113
127
  },
114
128
  '& .SCCommentObject-activity-at': {
115
129
  color: 'inherit',
@@ -125,21 +139,9 @@ const Component = {
125
139
  padding: theme.spacing(1),
126
140
  textTransform: 'capitalize'
127
141
  },
128
- '& .SCBullet-root': {
129
- display: 'none'
130
- },
131
- [theme.breakpoints.up('sm')]: {
132
- '& > *': {
133
- marginRight: 0
134
- },
135
- '& .SCCommentObject-vote-audience': {
136
- position: 'absolute',
137
- right: 0,
138
- top: 0
139
- },
140
- '& .SCBullet-root': {
141
- display: 'inline'
142
- }
142
+ '& .SCCommentObject-vote-audience': {
143
+ position: 'absolute',
144
+ right: 0
143
145
  }
144
146
  }
145
147
  }),