@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,145 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme, isEventAdmin, isEventFinished }: any) => {
4
+ '& .SCEventHeader-cover': {
5
+ [x: number]: {
6
+ borderRadius: any;
7
+ };
8
+ position: string;
9
+ minHeight: number;
10
+ background: string;
11
+ height: number;
12
+ borderRadius: number;
13
+ };
14
+ '& .SCEventHeader-in-progress': {
15
+ color: any;
16
+ paddingLeft: any;
17
+ display: string;
18
+ alignItems: string;
19
+ gap: string;
20
+ '&:before': {
21
+ content: string;
22
+ width: string;
23
+ height: string;
24
+ borderRadius: string;
25
+ backgroundColor: any;
26
+ animation: string;
27
+ '@keyframes pulse-animation': {
28
+ '0%': {
29
+ opacity: number;
30
+ };
31
+ '50%': {
32
+ opacity: number;
33
+ };
34
+ '100%': {
35
+ opacity: number;
36
+ };
37
+ };
38
+ };
39
+ };
40
+ '& .SCEventHeader-chip': {
41
+ marginLeft: any;
42
+ marginBottom: string;
43
+ '& .SCEventHeader-chip-icon': {
44
+ marginLeft: any;
45
+ };
46
+ };
47
+ '& .SCEventHeader-time': {
48
+ textTransform: string;
49
+ fontSize: string;
50
+ fontWeight: any;
51
+ color: any;
52
+ paddingLeft: any;
53
+ };
54
+ '& .SCEventHeader-info': {
55
+ marginTop: any;
56
+ '& .SCEventHeader-name': {
57
+ fontSize: string;
58
+ fontWeight: any;
59
+ paddingLeft: any;
60
+ color: any;
61
+ };
62
+ '& .SCEventHeader-visibility': {
63
+ display: string;
64
+ justifyContent: string;
65
+ alignItems: string;
66
+ gap: any;
67
+ paddingLeft: any;
68
+ color: any;
69
+ '& .SCEventHeader-visibility-item': {
70
+ fontSize: any;
71
+ fontWeight: any;
72
+ color: any;
73
+ display: string;
74
+ justifyContent: string;
75
+ alignItems: string;
76
+ gap: any;
77
+ };
78
+ };
79
+ '& .SCEditEvenButton-root': {
80
+ marginLeft: string;
81
+ marginTop: any;
82
+ marginRight: any;
83
+ };
84
+ '& .SCEvenSubscribeButton-root': {
85
+ marginTop: any;
86
+ };
87
+ '& .SCUser-root': {
88
+ borderTop: string;
89
+ borderBottom: string;
90
+ marginTop: any;
91
+ '& .SCBaseItemButton-content': {
92
+ paddingLeft: any;
93
+ };
94
+ '& .SCBaseItemButton-actions': {
95
+ [x: number]: {
96
+ width: string;
97
+ };
98
+ maxWidth: string;
99
+ '& .SCEventHeader-multi-actions': {
100
+ display: string;
101
+ justifyContent: string;
102
+ alignItems: string;
103
+ '& .SCEventInviteButton-root': {
104
+ marginRight: any;
105
+ };
106
+ };
107
+ };
108
+ };
109
+ '& .SCUser-skeleton-root': {
110
+ marginTop: any;
111
+ '& .SCBaseItem-content': {
112
+ paddingLeft: any;
113
+ };
114
+ '& .SCBaseItem-actions': {
115
+ paddingRight: any;
116
+ };
117
+ };
118
+ };
119
+ '& .SCEventHeader-name': {
120
+ fontWeight: any;
121
+ fontSize: string;
122
+ };
123
+ };
124
+ skeletonRoot: ({ theme }: any) => {
125
+ position: string;
126
+ '& .SCEventHeader-cover': {
127
+ height: number;
128
+ };
129
+ '& .SCEventHeader-avatar': {
130
+ top: number;
131
+ display: string;
132
+ position: string;
133
+ marginLeft: any;
134
+ "& .MuiSkeleton-root": {
135
+ border: string;
136
+ };
137
+ };
138
+ '& .SCEventHeader-info': {
139
+ marginTop: number;
140
+ marginLeft: any;
141
+ };
142
+ };
143
+ };
144
+ };
145
+ export default Component;
@@ -0,0 +1,148 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const system_1 = require("@mui/system");
4
+ const Component = {
5
+ styleOverrides: {
6
+ root: ({ theme, isEventAdmin, isEventFinished }) => ({
7
+ '& .SCEventHeader-cover': {
8
+ position: 'relative',
9
+ minHeight: 150,
10
+ background: 'linear-gradient(180deg, rgba(177,177,177,1) 0%, rgba(255,255,255,1) 90%)',
11
+ height: 230,
12
+ borderRadius: 0,
13
+ [theme.breakpoints.up('md')]: {
14
+ borderRadius: theme.spacing(0, 0, 2.5, 2.5)
15
+ }
16
+ },
17
+ '& .SCEventHeader-in-progress': {
18
+ color: theme.palette.secondary.main,
19
+ paddingLeft: theme.spacing(2),
20
+ display: 'inline-flex',
21
+ alignItems: 'center',
22
+ gap: '4px',
23
+ '&:before': {
24
+ content: '""',
25
+ width: '8px',
26
+ height: '8px',
27
+ borderRadius: '9999px',
28
+ backgroundColor: theme.palette.secondary.main,
29
+ animation: 'pulse-animation 2s linear infinite',
30
+ '@keyframes pulse-animation': {
31
+ '0%': {
32
+ opacity: 1
33
+ },
34
+ '50%': {
35
+ opacity: 0
36
+ },
37
+ '100%': {
38
+ opacity: 1
39
+ }
40
+ }
41
+ }
42
+ },
43
+ '& .SCEventHeader-chip': {
44
+ marginLeft: theme.spacing(2),
45
+ marginBottom: '5px',
46
+ '& .SCEventHeader-chip-icon': {
47
+ marginLeft: theme.spacing(1)
48
+ }
49
+ },
50
+ '& .SCEventHeader-time': {
51
+ textTransform: 'uppercase',
52
+ fontSize: '1.143rem',
53
+ fontWeight: theme.typography.fontWeightLight,
54
+ color: isEventFinished ? theme.palette.grey[500] : theme.palette.text.secondary,
55
+ paddingLeft: theme.spacing(2)
56
+ },
57
+ '& .SCEventHeader-info': {
58
+ marginTop: theme.spacing(6),
59
+ '& .SCEventHeader-name': {
60
+ fontSize: '1.857rem',
61
+ fontWeight: theme.typography.fontWeightBold,
62
+ paddingLeft: theme.spacing(2),
63
+ color: isEventFinished ? theme.palette.grey[500] : 'inherit'
64
+ },
65
+ '& .SCEventHeader-visibility': {
66
+ display: 'flex',
67
+ justifyContent: 'flex-start',
68
+ alignItems: 'center',
69
+ gap: theme.spacing(0.5),
70
+ paddingLeft: theme.spacing(2),
71
+ color: isEventFinished ? theme.palette.grey[500] : 'inherit',
72
+ '& .SCEventHeader-visibility-item': {
73
+ fontSize: theme.typography.fontSize,
74
+ fontWeight: theme.typography.fontWeightLight,
75
+ color: theme.palette.text.secondary,
76
+ display: 'flex',
77
+ justifyContent: 'center',
78
+ alignItems: 'center',
79
+ gap: theme.spacing(0.5)
80
+ }
81
+ },
82
+ '& .SCEditEvenButton-root': {
83
+ marginLeft: 'auto',
84
+ marginTop: theme.spacing(-4.25),
85
+ marginRight: theme.spacing(1)
86
+ },
87
+ '& .SCEvenSubscribeButton-root': {
88
+ marginTop: theme.spacing(1)
89
+ },
90
+ '& .SCUser-root': {
91
+ borderTop: `1px solid ${(0, system_1.alpha)(theme.palette.primary.main, theme.palette.action.activatedOpacity)}`,
92
+ borderBottom: `1px solid ${(0, system_1.alpha)(theme.palette.primary.main, theme.palette.action.activatedOpacity)}`,
93
+ marginTop: theme.spacing(1),
94
+ '& .SCBaseItemButton-content': {
95
+ paddingLeft: theme.spacing(2)
96
+ },
97
+ '& .SCBaseItemButton-actions': {
98
+ maxWidth: 'none',
99
+ [theme.breakpoints.up('sm')]: {
100
+ width: isEventAdmin && '60%'
101
+ },
102
+ '& .SCEventHeader-multi-actions': {
103
+ display: 'flex',
104
+ justifyContent: 'space-between',
105
+ alignItems: 'center',
106
+ '& .SCEventInviteButton-root': {
107
+ marginRight: theme.spacing(1)
108
+ }
109
+ }
110
+ }
111
+ },
112
+ '& .SCUser-skeleton-root': {
113
+ marginTop: theme.spacing(2),
114
+ '& .SCBaseItem-content': {
115
+ paddingLeft: theme.spacing(2)
116
+ },
117
+ '& .SCBaseItem-actions': {
118
+ paddingRight: theme.spacing(2)
119
+ }
120
+ }
121
+ },
122
+ '& .SCEventHeader-name': {
123
+ fontWeight: theme.typography.fontWeightBold,
124
+ fontSize: '1.429rem'
125
+ }
126
+ }),
127
+ skeletonRoot: ({ theme }) => ({
128
+ position: 'relative',
129
+ '& .SCEventHeader-cover': {
130
+ height: 190
131
+ },
132
+ '& .SCEventHeader-avatar': {
133
+ top: 140,
134
+ display: 'block',
135
+ position: 'absolute',
136
+ marginLeft: theme.spacing(2),
137
+ [`& .MuiSkeleton-root`]: {
138
+ border: '#FFF solid 5px'
139
+ }
140
+ },
141
+ '& .SCEventHeader-info': {
142
+ marginTop: 60,
143
+ marginLeft: theme.spacing(2)
144
+ }
145
+ })
146
+ }
147
+ };
148
+ exports.default = Component;
@@ -0,0 +1,37 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: {
4
+ theme: any;
5
+ }) => {
6
+ gap: any;
7
+ '& .SCEventInfoDetails-icon-text-wrapper': {
8
+ flexDirection: string;
9
+ alignItems: string;
10
+ gap: any;
11
+ '& p': {
12
+ textTransform: string;
13
+ };
14
+ '& .SCEventInfoDetails-link': {
15
+ textDecoration: string;
16
+ color: any;
17
+ '&:hover': {
18
+ textDecoration: string;
19
+ };
20
+ '& .SCEventInfoDetails-url': {
21
+ overflow: string;
22
+ textOverflow: string;
23
+ display: string;
24
+ '-webkit-line-clamp': string;
25
+ '-webkit-box-orient': string;
26
+ };
27
+ };
28
+ };
29
+ '& .SCEventInfoDetails-creation-wrapper': {
30
+ flexDirection: string;
31
+ alignItems: string;
32
+ gap: any;
33
+ };
34
+ };
35
+ };
36
+ };
37
+ export default Component;
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ gap: theme.spacing(0.5),
7
+ '& .SCEventInfoDetails-icon-text-wrapper': {
8
+ flexDirection: 'row',
9
+ alignItems: 'center',
10
+ gap: theme.spacing(1),
11
+ '& p': {
12
+ textTransform: 'capitalize'
13
+ },
14
+ '& .SCEventInfoDetails-link': {
15
+ textDecoration: 'none',
16
+ color: theme.palette.text.primary,
17
+ '&:hover': {
18
+ textDecoration: 'underlined'
19
+ },
20
+ '& .SCEventInfoDetails-url': {
21
+ overflow: 'hidden',
22
+ textOverflow: 'ellipsis',
23
+ display: '-webkit-box',
24
+ '-webkit-line-clamp': '1',
25
+ '-webkit-box-orient': 'vertical'
26
+ }
27
+ }
28
+ },
29
+ '& .SCEventInfoDetails-creation-wrapper': {
30
+ flexDirection: 'row',
31
+ alignItems: 'center',
32
+ gap: theme.spacing(1)
33
+ }
34
+ })
35
+ }
36
+ };
37
+ exports.default = Component;
@@ -0,0 +1,37 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: {
4
+ theme: any;
5
+ }) => {
6
+ '& .SCEventInfoWidget-content': {
7
+ padding: string;
8
+ '& .SCEventInfoWidget-title-wrapper': {
9
+ flexDirection: string;
10
+ alignItems: string;
11
+ gap: string;
12
+ marginBottom: any;
13
+ };
14
+ '& .SCEventInfoWidget-text-wrapper': {
15
+ marginBottom: any;
16
+ '& .SCEventInfoWidget-show-more': {
17
+ fontSize: any;
18
+ fontWeight: any;
19
+ padding: any;
20
+ justifyContent: string;
21
+ '&:hover': {
22
+ backgroundColor: string;
23
+ };
24
+ };
25
+ };
26
+ };
27
+ };
28
+ skeletonRoot: ({ theme }: {
29
+ theme: any;
30
+ }) => {
31
+ '& .SCEventInfoWidget-skeleton-content': {
32
+ padding: string;
33
+ };
34
+ };
35
+ };
36
+ };
37
+ export default Component;
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ '& .SCEventInfoWidget-content': {
7
+ padding: `${theme.spacing(2)} ${theme.spacing(2)} 13px !important`,
8
+ '& .SCEventInfoWidget-title-wrapper': {
9
+ flexDirection: 'row',
10
+ alignItems: 'center',
11
+ gap: '9px',
12
+ marginBottom: theme.spacing(1)
13
+ },
14
+ '& .SCEventInfoWidget-text-wrapper': {
15
+ marginBottom: theme.spacing(3),
16
+ '& .SCEventInfoWidget-show-more': {
17
+ fontSize: theme.typography.fontSize,
18
+ fontWeight: theme.typography.fontWeightBold,
19
+ padding: theme.spacing(0.25),
20
+ justifyContent: 'start',
21
+ '&:hover': {
22
+ backgroundColor: 'transparent'
23
+ }
24
+ }
25
+ }
26
+ }
27
+ }),
28
+ skeletonRoot: ({ theme }) => ({
29
+ '& .SCEventInfoWidget-skeleton-content': {
30
+ padding: `${theme.spacing(2)} ${theme.spacing(2)} 13px !important`
31
+ }
32
+ })
33
+ }
34
+ };
35
+ exports.default = Component;
@@ -0,0 +1,54 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ '& .MuiButton-startIcon': {
5
+ marginRight: any;
6
+ '& .MuiIcon-root': {
7
+ fontSize: string;
8
+ };
9
+ };
10
+ };
11
+ dialogRoot: ({ theme }: any) => {
12
+ '& .SCBaseDialog-title-root span ': {
13
+ width: string;
14
+ display: string;
15
+ alignItems: string;
16
+ justifyContent: string;
17
+ '& .SCEventInviteButton-dialog-title': {
18
+ fontWeight: any;
19
+ fontSize: any;
20
+ };
21
+ };
22
+ '& .SCEventInviteButton-input': {
23
+ backgroundColor: string;
24
+ borderRadius: any;
25
+ height: any;
26
+ padding: any;
27
+ '& .SCEventInviteButton-icon ': {
28
+ marginLeft: any;
29
+ };
30
+ '&.Mui-focused .MuiOutlinedInput-notchedOutline': {
31
+ border: string;
32
+ };
33
+ };
34
+ '& .SCEventInviteButton-invited-box': {
35
+ marginTop: any;
36
+ marginBottom: any;
37
+ '& .MuiChip-root': {
38
+ marginBottom: any;
39
+ };
40
+ };
41
+ '& .SCEventInviteButton-suggested': {
42
+ '& h4': {
43
+ marginBottom: any;
44
+ };
45
+ '& .SCUser-root': {
46
+ '&:hover': {
47
+ backgroundColor: string;
48
+ };
49
+ };
50
+ };
51
+ };
52
+ };
53
+ };
54
+ export default Component;
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const system_1 = require("@mui/system");
4
+ const Component = {
5
+ styleOverrides: {
6
+ root: ({ theme }) => ({
7
+ '& .MuiButton-startIcon': {
8
+ marginRight: theme.spacing(0.5),
9
+ '& .MuiIcon-root': {
10
+ fontSize: '0.75rem !important'
11
+ }
12
+ }
13
+ }),
14
+ dialogRoot: ({ theme }) => ({
15
+ '& .SCBaseDialog-title-root span ': {
16
+ width: '100%',
17
+ display: 'flex',
18
+ alignItems: 'center',
19
+ justifyContent: 'space-between',
20
+ '& .SCEventInviteButton-dialog-title': {
21
+ fontWeight: theme.typography.fontWeightBold,
22
+ fontSize: theme.typography.h4.fontSize
23
+ }
24
+ },
25
+ '& .SCEventInviteButton-input': {
26
+ backgroundColor: (0, system_1.alpha)(theme.palette.primary.main, theme.palette.action.selectedOpacity),
27
+ borderRadius: theme.shape.borderRadius,
28
+ height: theme.spacing(3.75),
29
+ padding: theme.spacing(0.5, 1),
30
+ '& .SCEventInviteButton-icon ': {
31
+ marginLeft: theme.spacing(1)
32
+ },
33
+ '&.Mui-focused .MuiOutlinedInput-notchedOutline': {
34
+ border: '1px solid'
35
+ }
36
+ },
37
+ '& .SCEventInviteButton-invited-box': {
38
+ marginTop: theme.spacing(2),
39
+ marginBottom: theme.spacing(3),
40
+ '& .MuiChip-root': {
41
+ marginBottom: theme.spacing(1)
42
+ }
43
+ },
44
+ '& .SCEventInviteButton-suggested': {
45
+ '& h4': {
46
+ marginBottom: theme.spacing(1)
47
+ },
48
+ '& .SCUser-root': {
49
+ '&:hover': {
50
+ backgroundColor: (0, system_1.alpha)(theme.palette.primary.main, theme.palette.action.hoverOpacity)
51
+ }
52
+ }
53
+ }
54
+ })
55
+ }
56
+ };
57
+ exports.default = Component;
@@ -1,25 +1,19 @@
1
1
  declare const Component: {
2
2
  styleOverrides: {
3
3
  root: ({ theme }: any) => {
4
- [x: number]: {
5
- width: number;
6
- };
7
4
  '& .SCEventLocationWidget-title, & .SCEventLocationWidget-location-title': {
8
5
  fontWeight: any;
9
6
  };
10
7
  '& .SCEventLocationWidget-map': {
11
8
  marginBottom: any;
12
- height: number;
9
+ minHeight: number;
13
10
  width: string;
14
11
  };
15
12
  };
16
13
  skeletonRoot: ({ theme }: any) => {
17
- [x: number]: {
18
- width: number;
19
- };
20
14
  '& .SCEventLocationWidget-skeleton-map': {
21
15
  margin: any;
22
- height: number;
16
+ minHeight: number;
23
17
  width: string;
24
18
  };
25
19
  };
@@ -3,26 +3,20 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const Component = {
4
4
  styleOverrides: {
5
5
  root: ({ theme }) => ({
6
- [theme.breakpoints.up('sm')]: {
7
- width: 470
8
- },
9
6
  '& .SCEventLocationWidget-title, & .SCEventLocationWidget-location-title': {
10
7
  fontWeight: theme.typography.fontWeightBold
11
8
  // marginBottom: theme.spacing(0.5)
12
9
  },
13
10
  '& .SCEventLocationWidget-map': {
14
11
  marginBottom: theme.spacing(1),
15
- height: 248,
12
+ minHeight: 248,
16
13
  width: '100%'
17
14
  }
18
15
  }),
19
16
  skeletonRoot: ({ theme }) => ({
20
- [theme.breakpoints.up('sm')]: {
21
- width: 470
22
- },
23
17
  '& .SCEventLocationWidget-skeleton-map': {
24
18
  margin: theme.spacing(1, 0, 1, 0),
25
- height: 248,
19
+ minHeight: 248,
26
20
  width: '100%'
27
21
  }
28
22
  })
@@ -0,0 +1,68 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: {
4
+ theme: any;
5
+ }) => {
6
+ '& .SCEventMembersWidget-content': {
7
+ padding: string;
8
+ '& .SCEventMembersWidget-title': {
9
+ marginBottom: string;
10
+ };
11
+ '& .SCEventMembersWidget-tabs-wrapper': {
12
+ borderBottom: string;
13
+ '& .SCEventMembersWidget-tab-label-wrapper': {
14
+ gap: string;
15
+ alignItems: string;
16
+ };
17
+ };
18
+ '& .SCEventMembersWidget-tab-panel': {
19
+ padding: string;
20
+ };
21
+ '& .SCEventMembersWidget-action-button': {
22
+ left: string;
23
+ transform: string;
24
+ color: any;
25
+ };
26
+ '& .SCEventMembersWidget-event-button': {
27
+ left: string;
28
+ transform: string;
29
+ };
30
+ };
31
+ };
32
+ skeletonRoot: ({ theme }: {
33
+ theme: any;
34
+ }) => {
35
+ '& .SCEventMembersWidget-content': {
36
+ padding: string;
37
+ '& .SCEventMembersWidget-title': {
38
+ marginBottom: string;
39
+ };
40
+ '& .SCEventMembersWidget-tabs-wrapper': {
41
+ borderBottom: string;
42
+ '& .SCEventMembersWidget-tab-label-wrapper': {
43
+ gap: string;
44
+ alignItems: string;
45
+ };
46
+ };
47
+ '& .SCEventMembersWidget-tab-panel': {
48
+ padding: string;
49
+ };
50
+ '& .SCEventMembersWidget-action-button': {
51
+ left: string;
52
+ transform: string;
53
+ };
54
+ };
55
+ };
56
+ dialogRoot: ({ theme }: {
57
+ theme: any;
58
+ }) => {
59
+ '& .SCEventMembersWidget-infinite-scroll': {
60
+ [x: number]: {
61
+ height: string;
62
+ };
63
+ height: string;
64
+ };
65
+ };
66
+ };
67
+ };
68
+ export default Component;