@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
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ '& .SCEventMembersWidget-content': {
7
+ padding: `${theme.spacing(2)} ${theme.spacing(2)}}`,
8
+ '& .SCEventMembersWidget-title': {
9
+ marginBottom: '18px'
10
+ },
11
+ '& .SCEventMembersWidget-tabs-wrapper': {
12
+ borderBottom: `1px solid ${theme.palette.grey['300']}`,
13
+ '& .SCEventMembersWidget-tab-label-wrapper': {
14
+ gap: '2px',
15
+ alignItems: 'center'
16
+ }
17
+ },
18
+ '& .SCEventMembersWidget-tab-panel': {
19
+ padding: `${theme.spacing(4)} 0 0`
20
+ },
21
+ '& .SCEventMembersWidget-action-button': {
22
+ left: '50%',
23
+ transform: 'translate(-50%)',
24
+ color: theme.palette.primary.main
25
+ },
26
+ '& .SCEventMembersWidget-event-button': {
27
+ left: '50%',
28
+ transform: 'translate(-50%)'
29
+ }
30
+ }
31
+ }),
32
+ skeletonRoot: ({ theme }) => ({
33
+ '& .SCEventMembersWidget-content': {
34
+ padding: `${theme.spacing(2)} ${theme.spacing(2)}`,
35
+ '& .SCEventMembersWidget-title': {
36
+ marginBottom: '18px'
37
+ },
38
+ '& .SCEventMembersWidget-tabs-wrapper': {
39
+ borderBottom: `1px solid ${theme.palette.grey['300']}`,
40
+ '& .SCEventMembersWidget-tab-label-wrapper': {
41
+ gap: '2px',
42
+ alignItems: 'center'
43
+ }
44
+ },
45
+ '& .SCEventMembersWidget-tab-panel': {
46
+ padding: `${theme.spacing(4)} 0 0`
47
+ },
48
+ '& .SCEventMembersWidget-action-button': {
49
+ left: '50%',
50
+ transform: 'translate(-50%)'
51
+ }
52
+ }
53
+ }),
54
+ dialogRoot: ({ theme }) => ({
55
+ '& .SCEventMembersWidget-infinite-scroll': {
56
+ height: '400px',
57
+ [theme.breakpoints.down('md')]: {
58
+ height: '100%'
59
+ }
60
+ }
61
+ })
62
+ }
63
+ };
64
+ exports.default = Component;
@@ -0,0 +1,33 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: {
4
+ theme: any;
5
+ }) => {
6
+ gap: any;
7
+ marginTop: string;
8
+ minWidth: string;
9
+ '&:hover': {
10
+ backgroundColor: string;
11
+ };
12
+ '& .MuiAvatarGroup-avatar': {
13
+ width: any;
14
+ height: any;
15
+ fontSize: string;
16
+ };
17
+ '& .SCEventParticipantsButton-participants': {
18
+ color: any;
19
+ };
20
+ };
21
+ dialogRoot: ({ theme }: {
22
+ theme: any;
23
+ }) => {
24
+ '& .SCEventParticipantsButton-infinite-scroll': {
25
+ [x: number]: {
26
+ height: string;
27
+ };
28
+ height: string;
29
+ };
30
+ };
31
+ };
32
+ };
33
+ export default Component;
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ gap: theme.spacing(1),
7
+ marginTop: '0 !important',
8
+ minWidth: 'auto',
9
+ '&:hover': {
10
+ backgroundColor: 'unset'
11
+ },
12
+ '& .MuiAvatarGroup-avatar': {
13
+ width: theme.selfcommunity.user.avatar.sizeSmall,
14
+ height: theme.selfcommunity.user.avatar.sizeSmall,
15
+ fontSize: '0.8rem'
16
+ },
17
+ '& .SCEventParticipantsButton-participants': {
18
+ color: theme.palette.grey[600]
19
+ }
20
+ }),
21
+ dialogRoot: ({ theme }) => ({
22
+ '& .SCEventParticipantsButton-infinite-scroll': {
23
+ height: '400px !important',
24
+ [theme.breakpoints.down('md')]: {
25
+ height: '100%'
26
+ }
27
+ }
28
+ })
29
+ }
30
+ };
31
+ exports.default = Component;
@@ -0,0 +1,87 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ selectRoot: ({ theme }: {
4
+ theme: any;
5
+ }) => {
6
+ backgroundColor: any;
7
+ justifyContent: string;
8
+ height: number;
9
+ borderRadius: string;
10
+ '&:hover, &:active': {
11
+ backgroundColor: any;
12
+ color: any;
13
+ '& .MuiIcon-root': {
14
+ color: any;
15
+ };
16
+ };
17
+ '&.SCEventSubscribeButton-going': {
18
+ backgroundColor: string;
19
+ color: any;
20
+ '& .MuiIcon-root': {
21
+ color: any;
22
+ };
23
+ '&:hover': {
24
+ backgroundColor: any;
25
+ color: any;
26
+ '& .MuiIcon-root': {
27
+ color: any;
28
+ };
29
+ };
30
+ };
31
+ '&.SCEventSubscribeButton-not-going': {
32
+ backgroundColor: any;
33
+ color: any;
34
+ '& .MuiIcon-root': {
35
+ color: any;
36
+ };
37
+ '&:hover': {
38
+ backgroundColor: any;
39
+ color: any;
40
+ '& .MuiIcon-root': {
41
+ color: any;
42
+ };
43
+ };
44
+ };
45
+ };
46
+ requestRoot: ({}: {}) => {};
47
+ menuRoot: ({ theme }: {
48
+ theme: any;
49
+ }) => {
50
+ '& .MuiPaper-root': {
51
+ width: number;
52
+ borderRadius: string;
53
+ '& .MuiList-root .SCEventSubscribeButton-item': {
54
+ paddingTop: number;
55
+ paddingBottom: number;
56
+ '& .Mui-checked .MuiSvgIcon-root': {
57
+ color: any;
58
+ };
59
+ '& > .MuiFormControlLabel-root': {
60
+ width: string;
61
+ marginLeft: number;
62
+ justifyContent: string;
63
+ };
64
+ };
65
+ };
66
+ };
67
+ drawerRoot: ({ theme }: {
68
+ theme: any;
69
+ }) => {
70
+ '& .MuiPaper-root': {
71
+ '& .SCEventSubscribeButton-item': {
72
+ paddingTop: number;
73
+ paddingBottom: number;
74
+ '& .Mui-checked .MuiSvgIcon-root': {
75
+ color: any;
76
+ };
77
+ '& > .MuiFormControlLabel-root': {
78
+ width: string;
79
+ marginLeft: number;
80
+ justifyContent: string;
81
+ };
82
+ };
83
+ };
84
+ };
85
+ };
86
+ };
87
+ export default Component;
@@ -0,0 +1,83 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ selectRoot: ({ theme }) => ({
6
+ backgroundColor: theme.palette.grey['A200'],
7
+ justifyContent: 'space-between',
8
+ height: 33,
9
+ borderRadius: '5px',
10
+ '&:hover, &:active': {
11
+ backgroundColor: theme.palette.common.black,
12
+ color: theme.palette.common.white,
13
+ '& .MuiIcon-root': {
14
+ color: theme.palette.common.white
15
+ }
16
+ },
17
+ '&.SCEventSubscribeButton-going': {
18
+ backgroundColor: `${theme.palette.success.dark} !important`,
19
+ color: theme.palette.common.white,
20
+ '& .MuiIcon-root': {
21
+ color: theme.palette.common.white
22
+ },
23
+ '&:hover': {
24
+ backgroundColor: theme.palette.success.dark,
25
+ color: theme.palette.common.white,
26
+ '& .MuiIcon-root': {
27
+ color: theme.palette.common.white
28
+ }
29
+ }
30
+ },
31
+ '&.SCEventSubscribeButton-not-going': {
32
+ backgroundColor: theme.palette.error.dark,
33
+ color: theme.palette.common.white,
34
+ '& .MuiIcon-root': {
35
+ color: theme.palette.common.white
36
+ },
37
+ '&:hover': {
38
+ backgroundColor: theme.palette.error.dark,
39
+ color: theme.palette.common.white,
40
+ '& .MuiIcon-root': {
41
+ color: theme.palette.common.white
42
+ }
43
+ }
44
+ }
45
+ }),
46
+ requestRoot: ({}) => ({}),
47
+ menuRoot: ({ theme }) => ({
48
+ '& .MuiPaper-root': {
49
+ width: 195,
50
+ borderRadius: '5px',
51
+ '& .MuiList-root .SCEventSubscribeButton-item': {
52
+ paddingTop: 0,
53
+ paddingBottom: 0,
54
+ '& .Mui-checked .MuiSvgIcon-root': {
55
+ color: theme.palette.success.main
56
+ },
57
+ '& > .MuiFormControlLabel-root': {
58
+ width: '100%',
59
+ marginLeft: 0,
60
+ justifyContent: 'space-between'
61
+ }
62
+ }
63
+ }
64
+ }),
65
+ drawerRoot: ({ theme }) => ({
66
+ '& .MuiPaper-root': {
67
+ '& .SCEventSubscribeButton-item': {
68
+ paddingTop: 0,
69
+ paddingBottom: 0,
70
+ '& .Mui-checked .MuiSvgIcon-root': {
71
+ color: theme.palette.success.main
72
+ },
73
+ '& > .MuiFormControlLabel-root': {
74
+ width: '100%',
75
+ marginLeft: 0,
76
+ justifyContent: 'space-between'
77
+ }
78
+ }
79
+ }
80
+ })
81
+ }
82
+ };
83
+ exports.default = Component;
@@ -0,0 +1,71 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ '& .SCEvents-filters': {
5
+ alignItems: string;
6
+ marginTop: any;
7
+ marginBottom: any;
8
+ };
9
+ '& .SCEvents-events': {
10
+ marginTop: any;
11
+ '& .SCEvents-item': {
12
+ paddingTop: any;
13
+ };
14
+ '& .SCEvents-item-skeleton': {
15
+ paddingTop: any;
16
+ };
17
+ '& .SCBaseItem-root': {
18
+ display: string;
19
+ justifyContent: string;
20
+ };
21
+ '& .SCEvent-skeleton-preview-name': {
22
+ marginTop: number;
23
+ marginBottom: number;
24
+ };
25
+ '& .SCEvent-skeleton-snippet .SCBaseItem-content': {
26
+ maxWidth: string;
27
+ };
28
+ };
29
+ '& .SCEvents-no-results': {
30
+ marginTop: any;
31
+ display: string;
32
+ flexDirection: string;
33
+ alignItems: string;
34
+ '& .SCEvent-skeleton-root': {
35
+ marginBottom: any;
36
+ minWidth: string;
37
+ };
38
+ '& .SCEvent-skeleton-snippet .SCBaseItem-content': {
39
+ maxWidth: string;
40
+ };
41
+ '& .MuiTypography-body1': {
42
+ fontWeight: any;
43
+ fontSize: string;
44
+ whiteSpace: string;
45
+ };
46
+ };
47
+ '& .SCEvents-show-more': {
48
+ paddingLeft: any;
49
+ '&.Mui-selected, &:hover': {
50
+ backgroundColor: string;
51
+ };
52
+ };
53
+ };
54
+ skeletonRoot: ({ theme }: any) => {
55
+ '& .SCEvents-events': {
56
+ justifyContent: string;
57
+ marginTop: any;
58
+ };
59
+ };
60
+ eventsChipRoot: ({ theme, showFollowed, showPastEvents }: any) => {
61
+ height: any;
62
+ borderRadius: any;
63
+ color: any;
64
+ '& .MuiIcon-root': {
65
+ fontSize: string;
66
+ color: any;
67
+ };
68
+ };
69
+ };
70
+ };
71
+ export default Component;
@@ -0,0 +1,73 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ '& .SCEvents-filters': {
7
+ alignItems: 'center',
8
+ marginTop: theme.spacing(),
9
+ marginBottom: theme.spacing(2)
10
+ },
11
+ '& .SCEvents-events': {
12
+ marginTop: theme.spacing(2),
13
+ '& .SCEvents-item': {
14
+ paddingTop: theme.spacing(2)
15
+ },
16
+ '& .SCEvents-item-skeleton': {
17
+ paddingTop: theme.spacing(2)
18
+ },
19
+ '& .SCBaseItem-root': {
20
+ display: 'flex',
21
+ justifyContent: 'space-between'
22
+ },
23
+ '& .SCEvent-skeleton-preview-name': {
24
+ marginTop: 6,
25
+ marginBottom: 6
26
+ },
27
+ '& .SCEvent-skeleton-snippet .SCBaseItem-content': {
28
+ maxWidth: '70%'
29
+ }
30
+ },
31
+ '& .SCEvents-no-results': {
32
+ marginTop: theme.spacing(3),
33
+ display: 'flex',
34
+ flexDirection: 'column',
35
+ alignItems: 'flex-start',
36
+ '& .SCEvent-skeleton-root': {
37
+ marginBottom: theme.spacing(2),
38
+ minWidth: '50%'
39
+ },
40
+ '& .SCEvent-skeleton-snippet .SCBaseItem-content': {
41
+ maxWidth: '70%'
42
+ },
43
+ '& .MuiTypography-body1': {
44
+ fontWeight: theme.typography.fontWeightMedium,
45
+ fontSize: '16px',
46
+ whiteSpace: 'pre-line'
47
+ }
48
+ },
49
+ '& .SCEvents-show-more': {
50
+ paddingLeft: theme.spacing(1),
51
+ '&.Mui-selected, &:hover': {
52
+ backgroundColor: 'transparent'
53
+ }
54
+ }
55
+ }),
56
+ skeletonRoot: ({ theme }) => ({
57
+ '& .SCEvents-events': {
58
+ justifyContent: 'center',
59
+ marginTop: theme.spacing(3)
60
+ }
61
+ }),
62
+ eventsChipRoot: ({ theme, showFollowed, showPastEvents }) => ({
63
+ height: theme.spacing(4.75),
64
+ borderRadius: theme.spacing(0.5),
65
+ color: showFollowed || showPastEvents ? theme.palette.common.white : theme.palette.text.primary,
66
+ '& .MuiIcon-root': {
67
+ fontSize: '1rem',
68
+ color: theme.palette.common.white
69
+ }
70
+ })
71
+ }
72
+ };
73
+ exports.default = Component;
@@ -41,7 +41,7 @@ declare const Component: {
41
41
  '&::-webkit-scrollbar': {
42
42
  display: string;
43
43
  };
44
- '& a': {
44
+ '& a:not(.MuiChip-clickable)': {
45
45
  color: string;
46
46
  textDecoration: string;
47
47
  '&::after': {
@@ -59,11 +59,11 @@ declare const Component: {
59
59
  fontWeight: any;
60
60
  };
61
61
  };
62
- '& .SCFeedObject-group': {
62
+ '& .SCFeedObject-group, & .SCFeedObject-event': {
63
63
  marginRight: string;
64
64
  };
65
65
  };
66
- '& .SCFeedObject-group': {
66
+ '& .SCFeedObject-group, & .SCFeedObject-event': {
67
67
  justifyContent: string;
68
68
  padding: any;
69
69
  '& a': {
@@ -139,7 +139,7 @@ declare const Component: {
139
139
  '& .SCFeedObject-category': {
140
140
  borderBottom: string;
141
141
  margin: any;
142
- '& .SCFeedObject-group': {
142
+ '& .SCFeedObject-group, & .SCFeedObject-event': {
143
143
  borderBottom: string;
144
144
  margin: any;
145
145
  '& .MuiChip-icon': {
@@ -149,7 +149,7 @@ declare const Component: {
149
149
  };
150
150
  };
151
151
  };
152
- '& .SCFeedObject-group': {
152
+ '& .SCFeedObject-group, & .SCFeedObject-event': {
153
153
  borderBottom: string;
154
154
  margin: any;
155
155
  };
@@ -44,7 +44,7 @@ const Component = {
44
44
  '&::-webkit-scrollbar': {
45
45
  display: 'none'
46
46
  },
47
- '& a': {
47
+ '& a:not(.MuiChip-clickable)': {
48
48
  color: 'inherit',
49
49
  textDecoration: 'none',
50
50
  '&::after': {
@@ -62,11 +62,11 @@ const Component = {
62
62
  fontWeight: theme.typography.fontWeightBold
63
63
  }
64
64
  },
65
- '& .SCFeedObject-group': {
65
+ '& .SCFeedObject-group, & .SCFeedObject-event': {
66
66
  marginRight: `${theme.spacing(1)} !important`
67
67
  }
68
68
  },
69
- '& .SCFeedObject-group': {
69
+ '& .SCFeedObject-group, & .SCFeedObject-event': {
70
70
  justifyContent: 'flex-start',
71
71
  padding: theme.spacing(0.5),
72
72
  '& a': {
@@ -142,7 +142,7 @@ const Component = {
142
142
  '& .SCFeedObject-category': {
143
143
  borderBottom: '1px solid rgba(221, 221, 221, 1)',
144
144
  margin: theme.spacing(0, 2),
145
- '& .SCFeedObject-group': {
145
+ '& .SCFeedObject-group, & .SCFeedObject-event': {
146
146
  borderBottom: 'none',
147
147
  margin: theme.spacing(0),
148
148
  '& .MuiChip-icon': {
@@ -152,7 +152,7 @@ const Component = {
152
152
  }
153
153
  }
154
154
  },
155
- '& .SCFeedObject-group': {
155
+ '& .SCFeedObject-group, & .SCFeedObject-event': {
156
156
  borderBottom: '1px solid rgba(221, 221, 221, 1)',
157
157
  margin: theme.spacing(1, 2, 0, 2)
158
158
  },
@@ -1,6 +1,11 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
- displayRoot: ({ theme }: any) => {};
3
+ displayRoot: ({ theme }: any) => {
4
+ '& .SCMediaShare-share-preview': {
5
+ paddingLeft: any;
6
+ paddingRight: any;
7
+ };
8
+ };
4
9
  };
5
10
  };
6
11
  export default Component;
@@ -2,7 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const Component = {
4
4
  styleOverrides: {
5
- displayRoot: ({ theme }) => ({})
5
+ displayRoot: ({ theme }) => ({
6
+ '& .SCMediaShare-share-preview': {
7
+ paddingLeft: theme.spacing(),
8
+ paddingRight: theme.spacing()
9
+ }
10
+ })
6
11
  }
7
12
  };
8
13
  exports.default = Component;
@@ -0,0 +1,35 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: {
4
+ theme: any;
5
+ }) => {
6
+ '& .SCMyEventsWidget-title-wrapper': {
7
+ padding: string;
8
+ };
9
+ '& .SCMyEventsWidget-actions': {
10
+ padding: string;
11
+ justifyContent: string;
12
+ gap: any;
13
+ '& .SCMyEventsWidget-arrows': {
14
+ width: string;
15
+ height: string;
16
+ };
17
+ '& .SCMyEventsWidget-action-button': {
18
+ color: any;
19
+ textDecoration: string;
20
+ };
21
+ };
22
+ };
23
+ skeletonRoot: ({ theme }: {
24
+ theme: any;
25
+ }) => {
26
+ '& .SCMyEventsWidget-actions': {
27
+ height: string;
28
+ padding: string;
29
+ justifyContent: string;
30
+ gap: any;
31
+ };
32
+ };
33
+ };
34
+ };
35
+ export default Component;
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ '& .SCMyEventsWidget-title-wrapper': {
7
+ padding: `12px ${theme.spacing(2)}`
8
+ },
9
+ '& .SCMyEventsWidget-actions': {
10
+ padding: `0 ${theme.spacing(3)} 18px`,
11
+ justifyContent: 'center',
12
+ gap: theme.spacing(3),
13
+ '& .SCMyEventsWidget-arrows': {
14
+ width: '24px',
15
+ height: '24px'
16
+ },
17
+ '& .SCMyEventsWidget-action-button': {
18
+ color: theme.palette.primary.main,
19
+ textDecoration: 'none'
20
+ }
21
+ }
22
+ }),
23
+ skeletonRoot: ({ theme }) => ({
24
+ '& .SCMyEventsWidget-actions': {
25
+ height: '40px',
26
+ padding: `0 ${theme.spacing(3)} 18px`,
27
+ justifyContent: 'center',
28
+ gap: theme.spacing(3)
29
+ }
30
+ })
31
+ }
32
+ };
33
+ exports.default = Component;
@@ -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': {
24
+ '& .SCNavigationToolbar-home, & .SCNavigationToolbar-explore, & .SCNavigationToolbar-groups, & .SCNavigationToolbar-events': {
25
25
  paddingTop: number;
26
26
  paddingLeft: any;
27
27
  paddingRight: any;
@@ -15,7 +15,7 @@ const Component = {
15
15
  flexGrow: 1,
16
16
  textAlign: 'center',
17
17
  alignSelf: 'end',
18
- '& .SCNavigationToolbar-home, & .SCNavigationToolbar-explore, & .SCNavigationToolbar-groups': {
18
+ '& .SCNavigationToolbar-home, & .SCNavigationToolbar-explore, & .SCNavigationToolbar-groups, & .SCNavigationToolbar-events': {
19
19
  paddingTop: 12,
20
20
  paddingLeft: theme.spacing(1),
21
21
  paddingRight: theme.spacing(1),
@@ -278,6 +278,21 @@ declare const Component: {
278
278
  maxWidth: string;
279
279
  };
280
280
  };
281
+ eventRoot: ({ theme }: any) => {
282
+ '& .SCNotification-username, & a': {
283
+ fontWeight: any;
284
+ };
285
+ '& .SCNotificationItem-primary .MuiIcon-root': {
286
+ float: string;
287
+ fontSize: string;
288
+ };
289
+ '& .SCNotificationItem-secondary': {
290
+ textTransform: string;
291
+ };
292
+ '& .SCNotification-snippet-time': {
293
+ paddingLeft: any;
294
+ };
295
+ };
281
296
  groupRoot: ({ theme }: any) => {};
282
297
  undeletedForRoot: ({ theme }: any) => {
283
298
  '& .SCNotification-undeleted-icon': {