@selfcommunity/react-theme-default 0.1.50-event.29 → 0.1.50-events.100

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 (123) hide show
  1. package/lib/cjs/components/MuiAutocomplete.js +3 -4
  2. package/lib/cjs/components/MuiSelect.js +2 -3
  3. package/lib/cjs/components/SCCalendar.d.ts +24 -0
  4. package/lib/cjs/components/SCCalendar.js +24 -0
  5. package/lib/cjs/components/SCCreateEventWidget.d.ts +56 -0
  6. package/lib/cjs/components/SCCreateEventWidget.js +54 -0
  7. package/lib/cjs/components/SCEvent.d.ts +155 -12
  8. package/lib/cjs/components/SCEvent.js +156 -13
  9. package/lib/cjs/components/SCEventActionsMenu.d.ts +26 -0
  10. package/lib/cjs/components/SCEventActionsMenu.js +28 -0
  11. package/lib/cjs/components/SCEventForm.d.ts +0 -1
  12. package/lib/cjs/components/SCEventForm.js +1 -2
  13. package/lib/cjs/components/SCEventHeader.d.ts +145 -0
  14. package/lib/cjs/components/SCEventHeader.js +148 -0
  15. package/lib/cjs/components/SCEventInfoDetails.d.ts +37 -0
  16. package/lib/cjs/components/SCEventInfoDetails.js +37 -0
  17. package/lib/cjs/components/SCEventInfoWidget.d.ts +37 -0
  18. package/lib/cjs/components/SCEventInfoWidget.js +35 -0
  19. package/lib/cjs/components/SCEventInviteButton.d.ts +54 -0
  20. package/lib/cjs/components/SCEventInviteButton.js +57 -0
  21. package/lib/cjs/components/SCEventLocationWidget.d.ts +2 -8
  22. package/lib/cjs/components/SCEventLocationWidget.js +2 -8
  23. package/lib/cjs/components/SCEventMembersWidget.d.ts +68 -0
  24. package/lib/cjs/components/SCEventMembersWidget.js +64 -0
  25. package/lib/cjs/components/SCEventParticipantsButton.d.ts +33 -0
  26. package/lib/cjs/components/SCEventParticipantsButton.js +31 -0
  27. package/lib/cjs/components/SCEventSubscribeButton.d.ts +87 -0
  28. package/lib/cjs/components/SCEventSubscribeButton.js +83 -0
  29. package/lib/cjs/components/SCEvents.d.ts +71 -0
  30. package/lib/cjs/components/SCEvents.js +73 -0
  31. package/lib/cjs/components/SCFeedObject.d.ts +5 -5
  32. package/lib/cjs/components/SCFeedObject.js +5 -5
  33. package/lib/cjs/components/SCMediaShare.d.ts +6 -1
  34. package/lib/cjs/components/SCMediaShare.js +6 -1
  35. package/lib/cjs/components/SCMyEventsWidget.d.ts +35 -0
  36. package/lib/cjs/components/SCMyEventsWidget.js +33 -0
  37. package/lib/cjs/components/SCNavigationToolbar.d.ts +1 -1
  38. package/lib/cjs/components/SCNavigationToolbar.js +1 -1
  39. package/lib/cjs/components/SCNotification.d.ts +15 -0
  40. package/lib/cjs/components/SCNotification.js +15 -0
  41. package/lib/cjs/components/SCOnBoardingWidget.d.ts +429 -0
  42. package/lib/cjs/components/SCOnBoardingWidget.js +427 -0
  43. package/lib/cjs/components/SCPlatformWidget.d.ts +22 -1
  44. package/lib/cjs/components/SCPlatformWidget.js +22 -1
  45. package/lib/cjs/components/SCProgressBar.d.ts +19 -0
  46. package/lib/cjs/components/SCProgressBar.js +21 -0
  47. package/lib/cjs/components/SCRelatedEventsWidget.d.ts +101 -0
  48. package/lib/cjs/components/SCRelatedEventsWidget.js +97 -0
  49. package/lib/cjs/components/SCSuggestedEventsWidget.d.ts +96 -0
  50. package/lib/cjs/components/SCSuggestedEventsWidget.js +94 -0
  51. package/lib/cjs/fonts/community/icons.eot +0 -0
  52. package/lib/cjs/fonts/community/icons.svg +13 -1
  53. package/lib/cjs/fonts/community/icons.ttf +0 -0
  54. package/lib/cjs/fonts/community/icons.woff +0 -0
  55. package/lib/cjs/fonts/community/icons.woff2 +0 -0
  56. package/lib/cjs/fonts/community-icons.css +24 -6
  57. package/lib/cjs/index.d.ts +4250 -2749
  58. package/lib/cjs/index.js +206 -172
  59. package/lib/esm/components/MuiAutocomplete.js +3 -3
  60. package/lib/esm/components/MuiSelect.js +2 -2
  61. package/lib/esm/components/SCCalendar.d.ts +24 -0
  62. package/lib/esm/components/SCCalendar.js +22 -0
  63. package/lib/esm/components/SCCreateEventWidget.d.ts +56 -0
  64. package/lib/esm/components/SCCreateEventWidget.js +52 -0
  65. package/lib/esm/components/SCEvent.d.ts +155 -12
  66. package/lib/esm/components/SCEvent.js +156 -13
  67. package/lib/esm/components/SCEventActionsMenu.d.ts +26 -0
  68. package/lib/esm/components/SCEventActionsMenu.js +26 -0
  69. package/lib/esm/components/SCEventForm.d.ts +0 -1
  70. package/lib/esm/components/SCEventForm.js +1 -2
  71. package/lib/esm/components/SCEventHeader.d.ts +145 -0
  72. package/lib/esm/components/SCEventHeader.js +146 -0
  73. package/lib/esm/components/SCEventInfoDetails.d.ts +37 -0
  74. package/lib/esm/components/SCEventInfoDetails.js +35 -0
  75. package/lib/esm/components/SCEventInfoWidget.d.ts +37 -0
  76. package/lib/esm/components/SCEventInfoWidget.js +33 -0
  77. package/lib/esm/components/SCEventInviteButton.d.ts +54 -0
  78. package/lib/esm/components/SCEventInviteButton.js +55 -0
  79. package/lib/esm/components/SCEventLocationWidget.d.ts +2 -8
  80. package/lib/esm/components/SCEventLocationWidget.js +2 -8
  81. package/lib/esm/components/SCEventMembersWidget.d.ts +68 -0
  82. package/lib/esm/components/SCEventMembersWidget.js +62 -0
  83. package/lib/esm/components/SCEventParticipantsButton.d.ts +33 -0
  84. package/lib/esm/components/SCEventParticipantsButton.js +29 -0
  85. package/lib/esm/components/SCEventSubscribeButton.d.ts +87 -0
  86. package/lib/esm/components/SCEventSubscribeButton.js +81 -0
  87. package/lib/esm/components/SCEvents.d.ts +71 -0
  88. package/lib/esm/components/SCEvents.js +71 -0
  89. package/lib/esm/components/SCFeedObject.d.ts +5 -5
  90. package/lib/esm/components/SCFeedObject.js +5 -5
  91. package/lib/esm/components/SCMediaShare.d.ts +6 -1
  92. package/lib/esm/components/SCMediaShare.js +6 -1
  93. package/lib/esm/components/SCMyEventsWidget.d.ts +35 -0
  94. package/lib/esm/components/SCMyEventsWidget.js +31 -0
  95. package/lib/esm/components/SCNavigationToolbar.d.ts +1 -1
  96. package/lib/esm/components/SCNavigationToolbar.js +1 -1
  97. package/lib/esm/components/SCNotification.d.ts +15 -0
  98. package/lib/esm/components/SCNotification.js +15 -0
  99. package/lib/esm/components/SCOnBoardingWidget.d.ts +429 -0
  100. package/lib/esm/components/SCOnBoardingWidget.js +425 -0
  101. package/lib/esm/components/SCPlatformWidget.d.ts +22 -1
  102. package/lib/esm/components/SCPlatformWidget.js +22 -1
  103. package/lib/esm/components/SCProgressBar.d.ts +19 -0
  104. package/lib/esm/components/SCProgressBar.js +19 -0
  105. package/lib/esm/components/SCRelatedEventsWidget.d.ts +101 -0
  106. package/lib/esm/components/SCRelatedEventsWidget.js +95 -0
  107. package/lib/esm/components/SCSuggestedEventsWidget.d.ts +96 -0
  108. package/lib/esm/components/SCSuggestedEventsWidget.js +92 -0
  109. package/lib/esm/fonts/community/icons.eot +0 -0
  110. package/lib/esm/fonts/community/icons.svg +13 -1
  111. package/lib/esm/fonts/community/icons.ttf +0 -0
  112. package/lib/esm/fonts/community/icons.woff +0 -0
  113. package/lib/esm/fonts/community/icons.woff2 +0 -0
  114. package/lib/esm/fonts/community-icons.css +24 -6
  115. package/lib/esm/index.d.ts +4250 -2749
  116. package/lib/esm/index.js +206 -172
  117. package/lib/umd/community/icons.eot +0 -0
  118. package/lib/umd/community/icons.svg +13 -1
  119. package/lib/umd/community/icons.ttf +0 -0
  120. package/lib/umd/community/icons.woff +0 -0
  121. package/lib/umd/community/icons.woff2 +0 -0
  122. package/lib/umd/react-theme-default.js +3 -3
  123. package/package.json +4 -4
@@ -282,6 +282,21 @@ const Component = {
282
282
  maxWidth: '40%'
283
283
  }
284
284
  }),
285
+ eventRoot: ({ theme }) => ({
286
+ '& .SCNotification-username, & a': {
287
+ fontWeight: theme.typography.fontWeightBold
288
+ },
289
+ '& .SCNotificationItem-primary .MuiIcon-root': {
290
+ float: 'right',
291
+ fontSize: '18px'
292
+ },
293
+ '& .SCNotificationItem-secondary': {
294
+ textTransform: 'capitalize'
295
+ },
296
+ '& .SCNotification-snippet-time': {
297
+ paddingLeft: theme.spacing(5)
298
+ }
299
+ }),
285
300
  groupRoot: ({ theme }) => ({}),
286
301
  undeletedForRoot: ({ theme }) => ({
287
302
  '& .SCNotification-undeleted-icon': {
@@ -0,0 +1,429 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ [x: number]: {
5
+ borderRadius: any;
6
+ };
7
+ '& .SCOnBoardingWidget-step-content': {
8
+ [x: number]: {
9
+ width: string;
10
+ };
11
+ padding: any;
12
+ };
13
+ '& .SCOnBoardingWidget-logo': {
14
+ width: string;
15
+ };
16
+ '& .MuiCardContent-root': {
17
+ [x: number]: {
18
+ display: string;
19
+ };
20
+ '& .MuiList-root': {
21
+ paddingTop: number;
22
+ borderRight: string;
23
+ '& .MuiListItem-root': {
24
+ paddingBottom: number;
25
+ };
26
+ };
27
+ padding: number;
28
+ '& .SCOnBoardingWidget-steps-mobile': {
29
+ width: string;
30
+ display: string;
31
+ overflowX: string;
32
+ overflowY: string;
33
+ '&::-webkit-scrollbar': {
34
+ display: string;
35
+ };
36
+ '-webkit-overflow-scrolling': string;
37
+ '& .MuiButtonBase-root, .MuiListItem-root': {
38
+ marginRight: any;
39
+ padding: number;
40
+ '& .MuiChip-root': {
41
+ '&.MuiChip-filledDefault': {
42
+ color: any;
43
+ backgroundColor: any;
44
+ };
45
+ };
46
+ };
47
+ padding: any;
48
+ };
49
+ '& .SCOnBoardingWidget-steps': {
50
+ width: string;
51
+ '& .Mui-selected': {
52
+ backgroundColor: any;
53
+ };
54
+ '& .MuiButtonBase-root': {
55
+ height: any;
56
+ '&:hover': {
57
+ backgroundColor: any;
58
+ };
59
+ '& .MuiListItemIcon-root': {
60
+ minWidth: number;
61
+ };
62
+ };
63
+ };
64
+ };
65
+ };
66
+ accordionRoot: ({ theme, expanded }: any) => {
67
+ boxShadow: string;
68
+ '& .MuiAccordionDetails-root ': {
69
+ padding: number;
70
+ '& .SCOnBoardingWidget-content': {
71
+ '& .MuiCardContent-root': {
72
+ [x: number]: {
73
+ '& .MuiListItem-root:first-of-type': {
74
+ paddingTop: any;
75
+ };
76
+ };
77
+ padding: number;
78
+ '& .MuiList-root': {
79
+ paddingTop: number;
80
+ paddingBottom: any;
81
+ };
82
+ };
83
+ };
84
+ };
85
+ '& .MuiAccordionSummary-root': {
86
+ [x: number]: {
87
+ borderRadius: any;
88
+ borderBottomLeftRadius: any;
89
+ borderBottomRightRadius: any;
90
+ };
91
+ borderBottom: string;
92
+ borderRadius: number;
93
+ '& .MuiAccordionSummary-content': {
94
+ [x: number]: {
95
+ flexDirection: string;
96
+ paddingLeft: any;
97
+ };
98
+ '& h4, & h5': {
99
+ fontWeight: any;
100
+ };
101
+ '& h4': {
102
+ [x: number]: {
103
+ marginLeft: any;
104
+ '& .MuiIcon-root': {
105
+ position: string;
106
+ left: any;
107
+ };
108
+ };
109
+ fontSize: string;
110
+ };
111
+ '& h5': {
112
+ fontSize: string;
113
+ };
114
+ 'p strong': {
115
+ color: any;
116
+ };
117
+ '& .SCOnBoardingWidget-intro': {
118
+ marginLeft: any;
119
+ '& h5': {
120
+ marginBottom: any;
121
+ };
122
+ };
123
+ '& .MuiTypography-body1': {
124
+ display: string;
125
+ alignItems: string;
126
+ fontSize: string;
127
+ flexWrap: string;
128
+ strong: {
129
+ marginRight: any;
130
+ marginLeft: any;
131
+ };
132
+ };
133
+ };
134
+ alignItems: string;
135
+ '& .MuiAccordionSummary-expandIconWrapper': {
136
+ marginTop: any;
137
+ alignSelf: string;
138
+ };
139
+ };
140
+ };
141
+ skeletonRoot: ({ theme }: any) => {
142
+ [x: number]: {
143
+ flexDirection: string;
144
+ };
145
+ display: string;
146
+ flexDirection: string;
147
+ '& .SCOnBoardingWidget-skeleton-content': {
148
+ [x: number]: {
149
+ padding: any;
150
+ };
151
+ width: string;
152
+ marginLeft: any;
153
+ };
154
+ '& .SCOnBoardingWidget-skeleton-menu': {
155
+ [x: number]: {
156
+ borderRight: string;
157
+ };
158
+ '& .MuiListItem-root': {
159
+ padding: number;
160
+ };
161
+ };
162
+ };
163
+ contentRoot: ({ theme }: any) => {
164
+ '& .SCOnBoardingWidget-content-title': {
165
+ fontWeight: any;
166
+ };
167
+ '& .SCOnBoardingWidget-content-summary': {
168
+ whiteSpace: string;
169
+ marginTop: any;
170
+ marginBottom: any;
171
+ };
172
+ '& .SCOnBoardingWidget-content-action': {
173
+ display: string;
174
+ justifyContent: string;
175
+ };
176
+ '& .SCProgressBar-message': {
177
+ marginBottom: any;
178
+ };
179
+ };
180
+ categoryRoot: ({ theme }: any) => {
181
+ '& .SCOnBoardingWidget-category-title': {
182
+ fontWeight: any;
183
+ };
184
+ '& .SCOnBoardingWidget-category-summary': {
185
+ margin: any;
186
+ };
187
+ '& .SCOnBoardingWidget-category-action': {
188
+ display: string;
189
+ justifyContent: string;
190
+ marginTop: any;
191
+ };
192
+ '& .SCProgressBar-message': {
193
+ marginBottom: any;
194
+ };
195
+ };
196
+ appearanceRoot: ({ theme }: any) => {
197
+ display: string;
198
+ alignItems: string;
199
+ flexDirection: string;
200
+ '& .MuiButton-root': {
201
+ marginTop: any;
202
+ };
203
+ '& h4': {
204
+ marginBottom: any;
205
+ fontWeight: any;
206
+ };
207
+ };
208
+ appearanceDrawerRoot: ({ theme }: any) => {
209
+ '& .MuiDrawer-paper': {
210
+ [x: number]: {
211
+ width: string;
212
+ padding: any;
213
+ };
214
+ width: string;
215
+ };
216
+ '& .SCOnBoardingWidget-appearance-drawer-header': {
217
+ display: string;
218
+ justifyContent: string;
219
+ alignItems: string;
220
+ '& h4': {
221
+ fontWeight: any;
222
+ };
223
+ padding: any;
224
+ };
225
+ '& .MuiTabs-root': {
226
+ [x: number]: {
227
+ padding: any;
228
+ };
229
+ marginBottom: any;
230
+ '& .MuiTab-root ': {
231
+ textTransform: string;
232
+ };
233
+ };
234
+ '& .SCOnBoardingWidget-appearance-drawer-content': {
235
+ [x: number]: {
236
+ padding: any;
237
+ };
238
+ display: string;
239
+ flexDirection: string;
240
+ };
241
+ '& .SCOnBoardingWidget-appearance-color': {
242
+ margin: any;
243
+ };
244
+ '& .SCOnBoardingWidget-appearance-logo-container': {
245
+ position: string;
246
+ width: string;
247
+ height: string;
248
+ display: string;
249
+ justifyContent: string;
250
+ alignItems: string;
251
+ '& .SCOnBoardingWidget-appearance-logo': {
252
+ height: number;
253
+ width: number;
254
+ marginBottom: any;
255
+ objectFit: string;
256
+ '& img': {
257
+ width: string;
258
+ height: string;
259
+ };
260
+ };
261
+ '& .SCOnBoardingWidget-appearance-upload-button': {
262
+ '& .MuiIcon-root': {
263
+ fontSize: string;
264
+ };
265
+ };
266
+ };
267
+ };
268
+ profileRoot: ({ theme }: any) => {
269
+ display: string;
270
+ alignItems: string;
271
+ flexDirection: string;
272
+ '& .MuiButton-root': {
273
+ marginTop: any;
274
+ };
275
+ '& .SCOnBoardingWidget-profile-title': {
276
+ fontWeight: any;
277
+ marginBottom: any;
278
+ };
279
+ };
280
+ profileDrawerRoot: ({ theme }: any) => {
281
+ '& .MuiDrawer-paper': {
282
+ [x: number]: {
283
+ width: string;
284
+ padding: any;
285
+ };
286
+ width: string;
287
+ };
288
+ '& .SCOnBoardingWidget-profile-cover': {
289
+ [x: number]: {
290
+ borderRadius: any;
291
+ };
292
+ position: string;
293
+ height: number;
294
+ minHeight: number;
295
+ borderRadius: number;
296
+ background: string;
297
+ boxShadow: string;
298
+ };
299
+ '& .SCOnBoardingWidget-profile-icon': {
300
+ alignSelf: string;
301
+ };
302
+ '& .SCOnBoardingWidget-profile-avatar': {
303
+ [x: number]: {
304
+ top: number;
305
+ };
306
+ top: number;
307
+ display: string;
308
+ position: string;
309
+ marginLeft: any;
310
+ '& > .MuiBadge-root > img': {
311
+ height: any;
312
+ width: any;
313
+ borderRadius: string;
314
+ border: string;
315
+ objectFit: string;
316
+ };
317
+ '& .MuiBadge-badge': {
318
+ right: any;
319
+ top: any;
320
+ '& .SCUserAvatar-badge-content': {
321
+ width: number;
322
+ height: number;
323
+ };
324
+ };
325
+ };
326
+ '& .SCOnBoardingWidget-profile-change-picture': {
327
+ [x: number]: {
328
+ top: number;
329
+ };
330
+ top: number;
331
+ left: number;
332
+ position: string;
333
+ display: string;
334
+ marginLeft: any;
335
+ };
336
+ '& .SCOnBoardingWidget-profile-change-cover': {
337
+ position: string;
338
+ right: number;
339
+ bottom: number;
340
+ };
341
+ '& .SCOnBoardingWidget-profile-public-info': {
342
+ marginTop: any;
343
+ padding: any;
344
+ '& .SCUserProfileEdit-public-info-root': {
345
+ display: string;
346
+ alignItems: string;
347
+ flexDirection: string;
348
+ '& .MuiButtonBase-root': {
349
+ width: string;
350
+ };
351
+ };
352
+ };
353
+ };
354
+ inviteRoot: ({ theme }: any) => {
355
+ '& .MuiTypography-subtitle1': {
356
+ marginLeft: any;
357
+ };
358
+ '& .SCOnBoardingWidget-invite-title': {
359
+ fontWeight: any;
360
+ };
361
+ '& .SCOnBoardingWidget-invite-social': {
362
+ margin: any;
363
+ '& .SCOnBoardingWidget-invite-social-icon-container': {
364
+ display: string;
365
+ justifyContent: string;
366
+ marginTop: any;
367
+ };
368
+ '& .SCOnBoardingWidget-invite-social-icon': {
369
+ fontSize: string;
370
+ fontWeight: any;
371
+ };
372
+ '& .SCOnBoardingWidget-invite-title': {
373
+ fontSize: string;
374
+ };
375
+ };
376
+ '& .SCOnBoardingWidget-invite-button': {
377
+ marginTop: any;
378
+ };
379
+ '& .SCOnBoardingWidget-invite-action': {
380
+ display: string;
381
+ justifyContent: string;
382
+ marginTop: any;
383
+ };
384
+ '& .SCOnBoardingWidget-invite-email': {
385
+ '& .SCOnBoardingWidget-invite-title': {
386
+ fontSize: string;
387
+ };
388
+ };
389
+ };
390
+ appRoot: ({ theme }: any) => {
391
+ '& .SCOnBoardingWidget-app-title': {
392
+ fontWeight: any;
393
+ };
394
+ '& .SCOnBoardingWidget-app-summary': {
395
+ whiteSpace: string;
396
+ margin: any;
397
+ };
398
+ '& .SCOnBoardingWidget-app-tabs': {
399
+ padding: any;
400
+ '& .MuiTab-root ': {
401
+ textTransform: string;
402
+ };
403
+ };
404
+ '& .SCOnBoardingWidget-app-tab-content': {
405
+ display: string;
406
+ flexDirection: string;
407
+ alignItems: string;
408
+ '& .SCOnBoardingWidget-app-image': {
409
+ width: string;
410
+ };
411
+ };
412
+ '& .SCOnBoardingWidget-app-step': {
413
+ marginBottom: any;
414
+ display: string;
415
+ alignItems: string;
416
+ strong: {
417
+ display: string;
418
+ alignItems: string;
419
+ marginRight: any;
420
+ '& .MuiIcon-root': {
421
+ margin: any;
422
+ };
423
+ };
424
+ flexWrap: string;
425
+ };
426
+ };
427
+ };
428
+ };
429
+ export default Component;