@selfcommunity/react-theme-default 0.1.50-events.62 → 0.1.50-events.64

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.
@@ -51,9 +51,6 @@ declare const Component: {
51
51
  '& .SCEvent-preview-name-wrapper': {
52
52
  textDecoration: string;
53
53
  color: string;
54
- '& .SCEvent-preview-name': {
55
- marginBottom: string;
56
- };
57
54
  };
58
55
  };
59
56
  };
@@ -52,10 +52,7 @@ const Component = {
52
52
  },
53
53
  '& .SCEvent-preview-name-wrapper': {
54
54
  textDecoration: 'none',
55
- color: 'inherit',
56
- '& .SCEvent-preview-name': {
57
- marginBottom: '10px'
58
- }
55
+ color: 'inherit'
59
56
  }
60
57
  }
61
58
  }),
@@ -16,6 +16,7 @@ declare const Component: {
16
16
  fontSize: string;
17
17
  fontWeight: any;
18
18
  color: any;
19
+ paddingLeft: any;
19
20
  };
20
21
  '& .SCEventHeader-info': {
21
22
  paddingRight: any;
@@ -24,12 +25,14 @@ declare const Component: {
24
25
  '& .SCEventHeader-name': {
25
26
  fontSize: string;
26
27
  fontWeight: any;
28
+ paddingLeft: any;
27
29
  };
28
30
  '& .SCEventHeader-visibility': {
29
31
  display: string;
30
32
  justifyContent: string;
31
33
  alignItems: string;
32
34
  gap: any;
35
+ paddingLeft: any;
33
36
  '& .SCEventHeader-visibility-item': {
34
37
  fontSize: any;
35
38
  fontWeight: any;
@@ -18,21 +18,24 @@ const Component = {
18
18
  textTransform: 'uppercase',
19
19
  fontSize: '1.143rem',
20
20
  fontWeight: theme.typography.fontWeightLight,
21
- color: theme.palette.text.secondary
21
+ color: theme.palette.text.secondary,
22
+ paddingLeft: theme.spacing(2)
22
23
  },
23
24
  '& .SCEventHeader-info': {
24
- paddingRight: theme.spacing(2),
25
- paddingLeft: theme.spacing(2),
25
+ paddingRight: theme.spacing(),
26
+ paddingLeft: theme.spacing(),
26
27
  marginTop: theme.spacing(6),
27
28
  '& .SCEventHeader-name': {
28
29
  fontSize: '1.857rem',
29
- fontWeight: theme.typography.fontWeightBold
30
+ fontWeight: theme.typography.fontWeightBold,
31
+ paddingLeft: theme.spacing(2),
30
32
  },
31
33
  '& .SCEventHeader-visibility': {
32
34
  display: 'flex',
33
35
  justifyContent: 'flex-start',
34
36
  alignItems: 'center',
35
37
  gap: theme.spacing(0.5),
38
+ paddingLeft: theme.spacing(2),
36
39
  '& .SCEventHeader-visibility-item': {
37
40
  fontSize: theme.typography.fontSize,
38
41
  fontWeight: theme.typography.fontWeightLight,
@@ -54,7 +57,7 @@ const Component = {
54
57
  '& .SCUser-root': {
55
58
  borderTop: `1px solid ${(0, system_1.alpha)(theme.palette.primary.main, theme.palette.action.activatedOpacity)}`,
56
59
  borderBottom: `1px solid ${(0, system_1.alpha)(theme.palette.primary.main, theme.palette.action.activatedOpacity)}`,
57
- padding: `${theme.spacing(0.5)} !important`,
60
+ padding: `${theme.spacing(0.5)} ${theme.spacing(2)} ${theme.spacing(0.5)} ${theme.spacing(2)}!important`,
58
61
  marginTop: theme.spacing(1),
59
62
  '& .SCBaseItemButton-actions': {
60
63
  maxWidth: 'none',
@@ -12,14 +12,14 @@ declare const Component: {
12
12
  width: string;
13
13
  height: string;
14
14
  };
15
- '& .SCEventPartecipantsButton-partecipants': {
15
+ '& .SCEventParticipantsButton-participants': {
16
16
  color: any;
17
17
  };
18
18
  };
19
19
  dialogRoot: ({ theme }: {
20
20
  theme: any;
21
21
  }) => {
22
- '& .SCEventPartecipantsButton-infinite-scroll': {
22
+ '& .SCEventParticipantsButton-infinite-scroll': {
23
23
  [x: number]: {
24
24
  height: string;
25
25
  };
@@ -12,12 +12,12 @@ const Component = {
12
12
  width: '24px',
13
13
  height: '24px'
14
14
  },
15
- '& .SCEventPartecipantsButton-partecipants': {
16
- color: theme.palette.primary.main
15
+ '& .SCEventParticipantsButton-participants': {
16
+ color: theme.palette.grey[600]
17
17
  }
18
18
  }),
19
19
  dialogRoot: ({ theme }) => ({
20
- '& .SCEventPartecipantsButton-infinite-scroll': {
20
+ '& .SCEventParticipantsButton-infinite-scroll': {
21
21
  height: '400px !important',
22
22
  [theme.breakpoints.down('md')]: {
23
23
  height: '100%'
@@ -4,7 +4,6 @@ declare const Component: {
4
4
  backgroundColor: any;
5
5
  justifyContent: string;
6
6
  height: number;
7
- width: number;
8
7
  borderRadius: string;
9
8
  '&:hover, &:active': {
10
9
  backgroundColor: any;
@@ -6,7 +6,6 @@ const Component = {
6
6
  backgroundColor: theme.palette.grey['A200'],
7
7
  justifyContent: 'space-between',
8
8
  height: 33,
9
- width: 195,
10
9
  borderRadius: '5px',
11
10
  '&:hover, &:active': {
12
11
  backgroundColor: theme.palette.common.black,
@@ -37,19 +37,21 @@ declare const Component: {
37
37
  };
38
38
  };
39
39
  };
40
- '& .SCSuggestedEventsWidget-swiper-prev-arrow': {
40
+ '& .SCSuggestedEventsWidget-swiper-arrow': {
41
41
  position: string;
42
42
  top: string;
43
43
  transform: string;
44
- left: string;
45
44
  zIndex: number;
45
+ paddingLeft: string;
46
+ paddingRight: string;
47
+ minWidth: string;
48
+ backgroundColor: any;
49
+ };
50
+ '& .SCSuggestedEventsWidget-swiper-prev-arrow': {
51
+ left: string;
46
52
  };
47
53
  '& .SCSuggestedEventsWidget-swiper-next-arrow': {
48
- position: string;
49
- top: string;
50
- transform: string;
51
54
  right: string;
52
- zIndex: number;
53
55
  };
54
56
  };
55
57
  };
@@ -13,7 +13,7 @@ const Component = {
13
13
  '& .swiper-wrapper': {
14
14
  paddingBottom: '1px',
15
15
  '& .SCSuggestedEventsWidget-swiper-slide': {
16
- width: '200px',
16
+ width: '210px',
17
17
  height: 'auto',
18
18
  '& .SCSuggestedEventsWidget-event': {
19
19
  '& .SCEventInfoDetails-root': {
@@ -37,19 +37,21 @@ const Component = {
37
37
  }
38
38
  }
39
39
  },
40
- '& .SCSuggestedEventsWidget-swiper-prev-arrow': {
40
+ '& .SCSuggestedEventsWidget-swiper-arrow': {
41
41
  position: 'absolute',
42
42
  top: '50%',
43
43
  transform: 'translateY(-50%)',
44
- left: '5px',
45
- zIndex: 1
44
+ zIndex: 1,
45
+ paddingLeft: '10px!important',
46
+ paddingRight: '10px!important',
47
+ minWidth: 'auto',
48
+ backgroundColor: theme.palette.grey[400]
49
+ },
50
+ '& .SCSuggestedEventsWidget-swiper-prev-arrow': {
51
+ left: '5px'
46
52
  },
47
53
  '& .SCSuggestedEventsWidget-swiper-next-arrow': {
48
- position: 'absolute',
49
- top: '50%',
50
- transform: 'translateY(-50%)',
51
- right: '5px',
52
- zIndex: 1
54
+ right: '5px'
53
55
  }
54
56
  }
55
57
  },
@@ -6490,9 +6490,6 @@ declare const theme: {
6490
6490
  '& .SCEvent-preview-name-wrapper': {
6491
6491
  textDecoration: string;
6492
6492
  color: string;
6493
- '& .SCEvent-preview-name': {
6494
- marginBottom: string;
6495
- };
6496
6493
  };
6497
6494
  };
6498
6495
  };
@@ -6768,6 +6765,7 @@ declare const theme: {
6768
6765
  fontSize: string;
6769
6766
  fontWeight: any;
6770
6767
  color: any;
6768
+ paddingLeft: any;
6771
6769
  };
6772
6770
  '& .SCEventHeader-info': {
6773
6771
  paddingRight: any;
@@ -6776,12 +6774,14 @@ declare const theme: {
6776
6774
  '& .SCEventHeader-name': {
6777
6775
  fontSize: string;
6778
6776
  fontWeight: any;
6777
+ paddingLeft: any;
6779
6778
  };
6780
6779
  '& .SCEventHeader-visibility': {
6781
6780
  display: string;
6782
6781
  justifyContent: string;
6783
6782
  alignItems: string;
6784
6783
  gap: any;
6784
+ paddingLeft: any;
6785
6785
  '& .SCEventHeader-visibility-item': {
6786
6786
  fontSize: any;
6787
6787
  fontWeight: any;
@@ -6923,7 +6923,6 @@ declare const theme: {
6923
6923
  backgroundColor: any;
6924
6924
  justifyContent: string;
6925
6925
  height: number;
6926
- width: number;
6927
6926
  borderRadius: string;
6928
6927
  '&:hover, &:active': {
6929
6928
  backgroundColor: any;
@@ -6990,7 +6989,7 @@ declare const theme: {
6990
6989
  };
6991
6990
  };
6992
6991
  };
6993
- SCEventPartecipantsButton: {
6992
+ SCEventParticipantsButton: {
6994
6993
  styleOverrides: {
6995
6994
  root: ({ theme }: {
6996
6995
  theme: any;
@@ -7007,14 +7006,14 @@ declare const theme: {
7007
7006
  width: string;
7008
7007
  height: string;
7009
7008
  };
7010
- '& .SCEventPartecipantsButton-partecipants': {
7009
+ '& .SCEventParticipantsButton-participants': {
7011
7010
  color: any;
7012
7011
  };
7013
7012
  };
7014
7013
  dialogRoot: ({ theme }: {
7015
7014
  theme: any;
7016
7015
  }) => {
7017
- '& .SCEventPartecipantsButton-infinite-scroll': {
7016
+ '& .SCEventParticipantsButton-infinite-scroll': {
7018
7017
  [x: number]: {
7019
7018
  height: string;
7020
7019
  };
@@ -7184,19 +7183,21 @@ declare const theme: {
7184
7183
  };
7185
7184
  };
7186
7185
  };
7187
- '& .SCSuggestedEventsWidget-swiper-prev-arrow': {
7186
+ '& .SCSuggestedEventsWidget-swiper-arrow': {
7188
7187
  position: string;
7189
7188
  top: string;
7190
7189
  transform: string;
7191
- left: string;
7192
7190
  zIndex: number;
7191
+ paddingLeft: string;
7192
+ paddingRight: string;
7193
+ minWidth: string;
7194
+ backgroundColor: any;
7195
+ };
7196
+ '& .SCSuggestedEventsWidget-swiper-prev-arrow': {
7197
+ left: string;
7193
7198
  };
7194
7199
  '& .SCSuggestedEventsWidget-swiper-next-arrow': {
7195
- position: string;
7196
- top: string;
7197
- transform: string;
7198
7200
  right: string;
7199
- zIndex: number;
7200
7201
  };
7201
7202
  };
7202
7203
  };
package/lib/cjs/index.js CHANGED
@@ -73,7 +73,7 @@ const SCEventInfoWidget_1 = tslib_1.__importDefault(require("./components/SCEven
73
73
  const SCEventInviteButton_1 = tslib_1.__importDefault(require("./components/SCEventInviteButton"));
74
74
  const SCEventLocationWidget_1 = tslib_1.__importDefault(require("./components/SCEventLocationWidget"));
75
75
  const SCEventMembersWidget_1 = tslib_1.__importDefault(require("./components/SCEventMembersWidget"));
76
- const SCEventPartecipantsButton_1 = tslib_1.__importDefault(require("./components/SCEventPartecipantsButton"));
76
+ const SCEventParticipantsButton_1 = tslib_1.__importDefault(require("./components/SCEventParticipantsButton"));
77
77
  const SCEvents_1 = tslib_1.__importDefault(require("./components/SCEvents"));
78
78
  const SCEventSubscribeButton_1 = tslib_1.__importDefault(require("./components/SCEventSubscribeButton"));
79
79
  const SCExploreFeedTemplate_1 = tslib_1.__importDefault(require("./components/SCExploreFeedTemplate"));
@@ -371,7 +371,7 @@ const theme = {
371
371
  SCEventInfoWidget: SCEventInfoWidget_1.default,
372
372
  SCEventInfoDetails: SCEventInfoDetails_1.default,
373
373
  SCEventSubscribeButton: SCEventSubscribeButton_1.default,
374
- SCEventPartecipantsButton: SCEventPartecipantsButton_1.default,
374
+ SCEventParticipantsButton: SCEventParticipantsButton_1.default,
375
375
  SCMyEventsWidget: SCMyEventsWidget_1.default,
376
376
  SCCalendar: SCCalendar_1.default,
377
377
  SCCreateEventWidget: SCCreateEventWidget_1.default,
@@ -51,9 +51,6 @@ declare const Component: {
51
51
  '& .SCEvent-preview-name-wrapper': {
52
52
  textDecoration: string;
53
53
  color: string;
54
- '& .SCEvent-preview-name': {
55
- marginBottom: string;
56
- };
57
54
  };
58
55
  };
59
56
  };
@@ -50,10 +50,7 @@ const Component = {
50
50
  },
51
51
  '& .SCEvent-preview-name-wrapper': {
52
52
  textDecoration: 'none',
53
- color: 'inherit',
54
- '& .SCEvent-preview-name': {
55
- marginBottom: '10px'
56
- }
53
+ color: 'inherit'
57
54
  }
58
55
  }
59
56
  }),
@@ -16,6 +16,7 @@ declare const Component: {
16
16
  fontSize: string;
17
17
  fontWeight: any;
18
18
  color: any;
19
+ paddingLeft: any;
19
20
  };
20
21
  '& .SCEventHeader-info': {
21
22
  paddingRight: any;
@@ -24,12 +25,14 @@ declare const Component: {
24
25
  '& .SCEventHeader-name': {
25
26
  fontSize: string;
26
27
  fontWeight: any;
28
+ paddingLeft: any;
27
29
  };
28
30
  '& .SCEventHeader-visibility': {
29
31
  display: string;
30
32
  justifyContent: string;
31
33
  alignItems: string;
32
34
  gap: any;
35
+ paddingLeft: any;
33
36
  '& .SCEventHeader-visibility-item': {
34
37
  fontSize: any;
35
38
  fontWeight: any;
@@ -16,21 +16,24 @@ const Component = {
16
16
  textTransform: 'uppercase',
17
17
  fontSize: '1.143rem',
18
18
  fontWeight: theme.typography.fontWeightLight,
19
- color: theme.palette.text.secondary
19
+ color: theme.palette.text.secondary,
20
+ paddingLeft: theme.spacing(2)
20
21
  },
21
22
  '& .SCEventHeader-info': {
22
- paddingRight: theme.spacing(2),
23
- paddingLeft: theme.spacing(2),
23
+ paddingRight: theme.spacing(),
24
+ paddingLeft: theme.spacing(),
24
25
  marginTop: theme.spacing(6),
25
26
  '& .SCEventHeader-name': {
26
27
  fontSize: '1.857rem',
27
- fontWeight: theme.typography.fontWeightBold
28
+ fontWeight: theme.typography.fontWeightBold,
29
+ paddingLeft: theme.spacing(2),
28
30
  },
29
31
  '& .SCEventHeader-visibility': {
30
32
  display: 'flex',
31
33
  justifyContent: 'flex-start',
32
34
  alignItems: 'center',
33
35
  gap: theme.spacing(0.5),
36
+ paddingLeft: theme.spacing(2),
34
37
  '& .SCEventHeader-visibility-item': {
35
38
  fontSize: theme.typography.fontSize,
36
39
  fontWeight: theme.typography.fontWeightLight,
@@ -52,7 +55,7 @@ const Component = {
52
55
  '& .SCUser-root': {
53
56
  borderTop: `1px solid ${alpha(theme.palette.primary.main, theme.palette.action.activatedOpacity)}`,
54
57
  borderBottom: `1px solid ${alpha(theme.palette.primary.main, theme.palette.action.activatedOpacity)}`,
55
- padding: `${theme.spacing(0.5)} !important`,
58
+ padding: `${theme.spacing(0.5)} ${theme.spacing(2)} ${theme.spacing(0.5)} ${theme.spacing(2)}!important`,
56
59
  marginTop: theme.spacing(1),
57
60
  '& .SCBaseItemButton-actions': {
58
61
  maxWidth: 'none',
@@ -12,14 +12,14 @@ declare const Component: {
12
12
  width: string;
13
13
  height: string;
14
14
  };
15
- '& .SCEventPartecipantsButton-partecipants': {
15
+ '& .SCEventParticipantsButton-participants': {
16
16
  color: any;
17
17
  };
18
18
  };
19
19
  dialogRoot: ({ theme }: {
20
20
  theme: any;
21
21
  }) => {
22
- '& .SCEventPartecipantsButton-infinite-scroll': {
22
+ '& .SCEventParticipantsButton-infinite-scroll': {
23
23
  [x: number]: {
24
24
  height: string;
25
25
  };
@@ -10,12 +10,12 @@ const Component = {
10
10
  width: '24px',
11
11
  height: '24px'
12
12
  },
13
- '& .SCEventPartecipantsButton-partecipants': {
14
- color: theme.palette.primary.main
13
+ '& .SCEventParticipantsButton-participants': {
14
+ color: theme.palette.grey[600]
15
15
  }
16
16
  }),
17
17
  dialogRoot: ({ theme }) => ({
18
- '& .SCEventPartecipantsButton-infinite-scroll': {
18
+ '& .SCEventParticipantsButton-infinite-scroll': {
19
19
  height: '400px !important',
20
20
  [theme.breakpoints.down('md')]: {
21
21
  height: '100%'
@@ -4,7 +4,6 @@ declare const Component: {
4
4
  backgroundColor: any;
5
5
  justifyContent: string;
6
6
  height: number;
7
- width: number;
8
7
  borderRadius: string;
9
8
  '&:hover, &:active': {
10
9
  backgroundColor: any;
@@ -4,7 +4,6 @@ const Component = {
4
4
  backgroundColor: theme.palette.grey['A200'],
5
5
  justifyContent: 'space-between',
6
6
  height: 33,
7
- width: 195,
8
7
  borderRadius: '5px',
9
8
  '&:hover, &:active': {
10
9
  backgroundColor: theme.palette.common.black,
@@ -37,19 +37,21 @@ declare const Component: {
37
37
  };
38
38
  };
39
39
  };
40
- '& .SCSuggestedEventsWidget-swiper-prev-arrow': {
40
+ '& .SCSuggestedEventsWidget-swiper-arrow': {
41
41
  position: string;
42
42
  top: string;
43
43
  transform: string;
44
- left: string;
45
44
  zIndex: number;
45
+ paddingLeft: string;
46
+ paddingRight: string;
47
+ minWidth: string;
48
+ backgroundColor: any;
49
+ };
50
+ '& .SCSuggestedEventsWidget-swiper-prev-arrow': {
51
+ left: string;
46
52
  };
47
53
  '& .SCSuggestedEventsWidget-swiper-next-arrow': {
48
- position: string;
49
- top: string;
50
- transform: string;
51
54
  right: string;
52
- zIndex: number;
53
55
  };
54
56
  };
55
57
  };
@@ -11,7 +11,7 @@ const Component = {
11
11
  '& .swiper-wrapper': {
12
12
  paddingBottom: '1px',
13
13
  '& .SCSuggestedEventsWidget-swiper-slide': {
14
- width: '200px',
14
+ width: '210px',
15
15
  height: 'auto',
16
16
  '& .SCSuggestedEventsWidget-event': {
17
17
  '& .SCEventInfoDetails-root': {
@@ -35,19 +35,21 @@ const Component = {
35
35
  }
36
36
  }
37
37
  },
38
- '& .SCSuggestedEventsWidget-swiper-prev-arrow': {
38
+ '& .SCSuggestedEventsWidget-swiper-arrow': {
39
39
  position: 'absolute',
40
40
  top: '50%',
41
41
  transform: 'translateY(-50%)',
42
- left: '5px',
43
- zIndex: 1
42
+ zIndex: 1,
43
+ paddingLeft: '10px!important',
44
+ paddingRight: '10px!important',
45
+ minWidth: 'auto',
46
+ backgroundColor: theme.palette.grey[400]
47
+ },
48
+ '& .SCSuggestedEventsWidget-swiper-prev-arrow': {
49
+ left: '5px'
44
50
  },
45
51
  '& .SCSuggestedEventsWidget-swiper-next-arrow': {
46
- position: 'absolute',
47
- top: '50%',
48
- transform: 'translateY(-50%)',
49
- right: '5px',
50
- zIndex: 1
52
+ right: '5px'
51
53
  }
52
54
  }
53
55
  },
@@ -6490,9 +6490,6 @@ declare const theme: {
6490
6490
  '& .SCEvent-preview-name-wrapper': {
6491
6491
  textDecoration: string;
6492
6492
  color: string;
6493
- '& .SCEvent-preview-name': {
6494
- marginBottom: string;
6495
- };
6496
6493
  };
6497
6494
  };
6498
6495
  };
@@ -6768,6 +6765,7 @@ declare const theme: {
6768
6765
  fontSize: string;
6769
6766
  fontWeight: any;
6770
6767
  color: any;
6768
+ paddingLeft: any;
6771
6769
  };
6772
6770
  '& .SCEventHeader-info': {
6773
6771
  paddingRight: any;
@@ -6776,12 +6774,14 @@ declare const theme: {
6776
6774
  '& .SCEventHeader-name': {
6777
6775
  fontSize: string;
6778
6776
  fontWeight: any;
6777
+ paddingLeft: any;
6779
6778
  };
6780
6779
  '& .SCEventHeader-visibility': {
6781
6780
  display: string;
6782
6781
  justifyContent: string;
6783
6782
  alignItems: string;
6784
6783
  gap: any;
6784
+ paddingLeft: any;
6785
6785
  '& .SCEventHeader-visibility-item': {
6786
6786
  fontSize: any;
6787
6787
  fontWeight: any;
@@ -6923,7 +6923,6 @@ declare const theme: {
6923
6923
  backgroundColor: any;
6924
6924
  justifyContent: string;
6925
6925
  height: number;
6926
- width: number;
6927
6926
  borderRadius: string;
6928
6927
  '&:hover, &:active': {
6929
6928
  backgroundColor: any;
@@ -6990,7 +6989,7 @@ declare const theme: {
6990
6989
  };
6991
6990
  };
6992
6991
  };
6993
- SCEventPartecipantsButton: {
6992
+ SCEventParticipantsButton: {
6994
6993
  styleOverrides: {
6995
6994
  root: ({ theme }: {
6996
6995
  theme: any;
@@ -7007,14 +7006,14 @@ declare const theme: {
7007
7006
  width: string;
7008
7007
  height: string;
7009
7008
  };
7010
- '& .SCEventPartecipantsButton-partecipants': {
7009
+ '& .SCEventParticipantsButton-participants': {
7011
7010
  color: any;
7012
7011
  };
7013
7012
  };
7014
7013
  dialogRoot: ({ theme }: {
7015
7014
  theme: any;
7016
7015
  }) => {
7017
- '& .SCEventPartecipantsButton-infinite-scroll': {
7016
+ '& .SCEventParticipantsButton-infinite-scroll': {
7018
7017
  [x: number]: {
7019
7018
  height: string;
7020
7019
  };
@@ -7184,19 +7183,21 @@ declare const theme: {
7184
7183
  };
7185
7184
  };
7186
7185
  };
7187
- '& .SCSuggestedEventsWidget-swiper-prev-arrow': {
7186
+ '& .SCSuggestedEventsWidget-swiper-arrow': {
7188
7187
  position: string;
7189
7188
  top: string;
7190
7189
  transform: string;
7191
- left: string;
7192
7190
  zIndex: number;
7191
+ paddingLeft: string;
7192
+ paddingRight: string;
7193
+ minWidth: string;
7194
+ backgroundColor: any;
7195
+ };
7196
+ '& .SCSuggestedEventsWidget-swiper-prev-arrow': {
7197
+ left: string;
7193
7198
  };
7194
7199
  '& .SCSuggestedEventsWidget-swiper-next-arrow': {
7195
- position: string;
7196
- top: string;
7197
- transform: string;
7198
7200
  right: string;
7199
- zIndex: number;
7200
7201
  };
7201
7202
  };
7202
7203
  };
package/lib/esm/index.js CHANGED
@@ -70,7 +70,7 @@ import SCEventInfoWidget from './components/SCEventInfoWidget';
70
70
  import SCEventInviteButton from './components/SCEventInviteButton';
71
71
  import SCEventLocationWidget from './components/SCEventLocationWidget';
72
72
  import SCEventMembersWidget from './components/SCEventMembersWidget';
73
- import SCEventPartecipantsButton from './components/SCEventPartecipantsButton';
73
+ import SCEventParticipantsButton from './components/SCEventParticipantsButton';
74
74
  import SCEvents from './components/SCEvents';
75
75
  import SCEventSubscribeButton from './components/SCEventSubscribeButton';
76
76
  import SCExploreFeedTemplate from './components/SCExploreFeedTemplate';
@@ -368,7 +368,7 @@ const theme = {
368
368
  SCEventInfoWidget,
369
369
  SCEventInfoDetails,
370
370
  SCEventSubscribeButton,
371
- SCEventPartecipantsButton,
371
+ SCEventParticipantsButton,
372
372
  SCMyEventsWidget,
373
373
  SCCalendar,
374
374
  SCCreateEventWidget,