@selfcommunity/react-theme-default 0.1.50-events.46 → 0.1.50-events.47
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.
- package/lib/cjs/components/SCEvent.d.ts +137 -17
- package/lib/cjs/components/SCEvent.js +138 -18
- package/lib/cjs/components/SCEventActionsMenu.d.ts +26 -0
- package/lib/cjs/components/SCEventActionsMenu.js +28 -0
- package/lib/cjs/components/SCEventHeader.d.ts +10 -5
- package/lib/cjs/components/SCEventHeader.js +11 -20
- package/lib/cjs/components/SCEventInfoDetails.js +1 -1
- package/lib/cjs/components/SCEventPartecipantsButton.d.ts +21 -1
- package/lib/cjs/components/SCEventPartecipantsButton.js +20 -2
- package/lib/cjs/components/SCMediaEvent.d.ts +10 -0
- package/lib/cjs/components/SCMediaEvent.js +12 -0
- package/lib/cjs/components/SCMyEventsWidget.d.ts +2 -30
- package/lib/cjs/components/SCMyEventsWidget.js +3 -31
- package/lib/cjs/components/SCNotification.d.ts +15 -0
- package/lib/cjs/components/SCNotification.js +15 -0
- package/lib/cjs/components/SCSuggestedEventsWidget.d.ts +64 -0
- package/lib/cjs/components/SCSuggestedEventsWidget.js +62 -0
- package/lib/cjs/index.d.ts +285 -56
- package/lib/cjs/index.js +7 -1
- package/lib/esm/components/SCEvent.d.ts +137 -17
- package/lib/esm/components/SCEvent.js +138 -18
- package/lib/esm/components/SCEventActionsMenu.d.ts +26 -0
- package/lib/esm/components/SCEventActionsMenu.js +26 -0
- package/lib/esm/components/SCEventHeader.d.ts +10 -5
- package/lib/esm/components/SCEventHeader.js +11 -20
- package/lib/esm/components/SCEventInfoDetails.js +1 -1
- package/lib/esm/components/SCEventPartecipantsButton.d.ts +21 -1
- package/lib/esm/components/SCEventPartecipantsButton.js +20 -2
- package/lib/esm/components/SCMediaEvent.d.ts +10 -0
- package/lib/esm/components/SCMediaEvent.js +10 -0
- package/lib/esm/components/SCMyEventsWidget.d.ts +2 -30
- package/lib/esm/components/SCMyEventsWidget.js +3 -31
- package/lib/esm/components/SCNotification.d.ts +15 -0
- package/lib/esm/components/SCNotification.js +15 -0
- package/lib/esm/components/SCSuggestedEventsWidget.d.ts +64 -0
- package/lib/esm/components/SCSuggestedEventsWidget.js +60 -0
- package/lib/esm/index.d.ts +285 -56
- package/lib/esm/index.js +7 -1
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
|
@@ -6,21 +6,10 @@ const Component = {
|
|
|
6
6
|
'& .SCMyEventsWidget-title-wrapper': {
|
|
7
7
|
padding: `12px ${theme.spacing(2)}`
|
|
8
8
|
},
|
|
9
|
-
'& .SCMyEventsWidget-content': {
|
|
10
|
-
padding: `52px ${theme.spacing(3)} 0 !important`,
|
|
11
|
-
'& .SCMyEventsWidget-first-divider': {
|
|
12
|
-
marginTop: '18px',
|
|
13
|
-
marginBottom: '16px'
|
|
14
|
-
},
|
|
15
|
-
'& .SCMyEventsWidget-second-divider': {
|
|
16
|
-
marginTop: '16px',
|
|
17
|
-
marginBottom: '18px'
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
9
|
'& .SCMyEventsWidget-actions': {
|
|
21
10
|
padding: `0 ${theme.spacing(3)} 18px`,
|
|
22
11
|
justifyContent: 'center',
|
|
23
|
-
gap:
|
|
12
|
+
gap: theme.spacing(3),
|
|
24
13
|
'& .SCMyEventsWidget-arrows': {
|
|
25
14
|
width: '24px',
|
|
26
15
|
height: '24px',
|
|
@@ -33,28 +22,11 @@ const Component = {
|
|
|
33
22
|
}
|
|
34
23
|
}),
|
|
35
24
|
skeletonRoot: ({ theme }) => ({
|
|
36
|
-
'& .SCMyEventsWidget-calendar': {
|
|
37
|
-
position: 'absolute',
|
|
38
|
-
bottom: '-36px',
|
|
39
|
-
left: '24px',
|
|
40
|
-
boxShadow: '0px 3px 8px #00000040'
|
|
41
|
-
},
|
|
42
|
-
'& .SCMyEventsWidget-content': {
|
|
43
|
-
padding: `52px ${theme.spacing(3)} 0 !important`,
|
|
44
|
-
'& .SCMyEventsWidget-first-divider': {
|
|
45
|
-
marginTop: '18px',
|
|
46
|
-
marginBottom: theme.spacing(2)
|
|
47
|
-
},
|
|
48
|
-
'& .SCMyEventsWidget-second-divider': {
|
|
49
|
-
marginTop: theme.spacing(2),
|
|
50
|
-
marginBottom: '18px'
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
25
|
'& .SCMyEventsWidget-actions': {
|
|
54
|
-
height: '
|
|
26
|
+
height: '40px',
|
|
55
27
|
padding: `0 ${theme.spacing(3)} 18px`,
|
|
56
28
|
justifyContent: 'center',
|
|
57
|
-
gap:
|
|
29
|
+
gap: theme.spacing(3)
|
|
58
30
|
}
|
|
59
31
|
})
|
|
60
32
|
}
|
|
@@ -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': {
|
|
@@ -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,64 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: {
|
|
4
|
+
theme: any;
|
|
5
|
+
}) => {
|
|
6
|
+
'& .SCSuggestedEventsWidget-content': {
|
|
7
|
+
padding: string;
|
|
8
|
+
'& .SCSuggestedEventsWidget-title': {
|
|
9
|
+
marginBottom: string;
|
|
10
|
+
};
|
|
11
|
+
'& .SCSuggestedEventsWidget-swiper': {
|
|
12
|
+
width: string;
|
|
13
|
+
height: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
'& .SCSuggestedEventsWidget-event': {
|
|
17
|
+
'& .SCEventInfoDetails-root': {
|
|
18
|
+
'& h5': {
|
|
19
|
+
fontSize: string;
|
|
20
|
+
maxWidth: number;
|
|
21
|
+
textOverflow: string;
|
|
22
|
+
whiteSpace: string;
|
|
23
|
+
overflow: string;
|
|
24
|
+
};
|
|
25
|
+
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
26
|
+
'& .community-icons': {
|
|
27
|
+
fontSize: string;
|
|
28
|
+
};
|
|
29
|
+
'& p': {
|
|
30
|
+
marginTop: number;
|
|
31
|
+
fontSize: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
'& .SCSuggestedEventsWidget-actions': {
|
|
37
|
+
padding: string;
|
|
38
|
+
justifyContent: string;
|
|
39
|
+
'& .SCSuggestedEventsWidget-actionButton': {
|
|
40
|
+
color: any;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
skeletonRoot: ({ theme }: {
|
|
45
|
+
theme: any;
|
|
46
|
+
}) => {
|
|
47
|
+
'& .SCSuggestedEventsWidget-content': {
|
|
48
|
+
padding: string;
|
|
49
|
+
'& .SCSuggestedEventsWidget-title': {
|
|
50
|
+
marginBottom: string;
|
|
51
|
+
};
|
|
52
|
+
'& .SCSuggestedEventsWidget-swiper': {
|
|
53
|
+
width: string;
|
|
54
|
+
height: string;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
'& .SCSuggestedEventsWidget-actions': {
|
|
58
|
+
padding: string;
|
|
59
|
+
justifyContent: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
export default Component;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const Component = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
'& .SCSuggestedEventsWidget-content': {
|
|
7
|
+
padding: `15px 0 ${theme.spacing()} ${theme.spacing(2)} !important`,
|
|
8
|
+
'& .SCSuggestedEventsWidget-title': {
|
|
9
|
+
marginBottom: '11px'
|
|
10
|
+
},
|
|
11
|
+
'& .SCSuggestedEventsWidget-swiper': {
|
|
12
|
+
width: '200px',
|
|
13
|
+
height: 'auto'
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
'& .SCSuggestedEventsWidget-event': {
|
|
17
|
+
'& .SCEventInfoDetails-root': {
|
|
18
|
+
'& h5': {
|
|
19
|
+
fontSize: '1rem',
|
|
20
|
+
maxWidth: 200,
|
|
21
|
+
textOverflow: 'ellipsis',
|
|
22
|
+
whiteSpace: 'nowrap',
|
|
23
|
+
overflow: 'hidden'
|
|
24
|
+
},
|
|
25
|
+
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
26
|
+
'& .community-icons': {
|
|
27
|
+
fontSize: '0.9rem'
|
|
28
|
+
},
|
|
29
|
+
'& p': {
|
|
30
|
+
marginTop: 1,
|
|
31
|
+
fontSize: '0.8rem'
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
'& .SCSuggestedEventsWidget-actions': {
|
|
37
|
+
padding: `0 ${theme.spacing()} ${theme.spacing()}`,
|
|
38
|
+
justifyContent: 'center',
|
|
39
|
+
'& .SCSuggestedEventsWidget-actionButton': {
|
|
40
|
+
color: theme.palette.primary.main
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}),
|
|
44
|
+
skeletonRoot: ({ theme }) => ({
|
|
45
|
+
'& .SCSuggestedEventsWidget-content': {
|
|
46
|
+
padding: `15px 0 ${theme.spacing()} ${theme.spacing(2)} !important`,
|
|
47
|
+
'& .SCSuggestedEventsWidget-title': {
|
|
48
|
+
marginBottom: '11px'
|
|
49
|
+
},
|
|
50
|
+
'& .SCSuggestedEventsWidget-swiper': {
|
|
51
|
+
width: '200px',
|
|
52
|
+
height: 'auto'
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
'& .SCSuggestedEventsWidget-actions': {
|
|
56
|
+
padding: `0 ${theme.spacing()} ${theme.spacing()}`,
|
|
57
|
+
justifyContent: 'center'
|
|
58
|
+
}
|
|
59
|
+
})
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
exports.default = Component;
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -3334,6 +3334,15 @@ declare const theme: {
|
|
|
3334
3334
|
triggerRoot: ({ theme }: any) => {};
|
|
3335
3335
|
};
|
|
3336
3336
|
};
|
|
3337
|
+
SCMediaEvent: {
|
|
3338
|
+
styleOverrides: {
|
|
3339
|
+
displayRoot: ({ theme }: any) => {
|
|
3340
|
+
'& .SCMediaEvent-event-preview': {
|
|
3341
|
+
margin: any;
|
|
3342
|
+
};
|
|
3343
|
+
};
|
|
3344
|
+
};
|
|
3345
|
+
};
|
|
3337
3346
|
SCNavigationSettingsIconButton: {
|
|
3338
3347
|
styleOverrides: {
|
|
3339
3348
|
menuRoot: ({ theme }: any) => {
|
|
@@ -3768,6 +3777,21 @@ declare const theme: {
|
|
|
3768
3777
|
maxWidth: string;
|
|
3769
3778
|
};
|
|
3770
3779
|
};
|
|
3780
|
+
eventRoot: ({ theme }: any) => {
|
|
3781
|
+
'& .SCNotification-username, & a': {
|
|
3782
|
+
fontWeight: any;
|
|
3783
|
+
};
|
|
3784
|
+
'& .SCNotificationItem-primary .MuiIcon-root': {
|
|
3785
|
+
float: string;
|
|
3786
|
+
fontSize: string;
|
|
3787
|
+
};
|
|
3788
|
+
'& .SCNotificationItem-secondary': {
|
|
3789
|
+
textTransform: string;
|
|
3790
|
+
};
|
|
3791
|
+
'& .SCNotification-snippet-time': {
|
|
3792
|
+
paddingLeft: any;
|
|
3793
|
+
};
|
|
3794
|
+
};
|
|
3771
3795
|
groupRoot: ({ theme }: any) => {};
|
|
3772
3796
|
undeletedForRoot: ({ theme }: any) => {
|
|
3773
3797
|
'& .SCNotification-undeleted-icon': {
|
|
@@ -3827,6 +3851,9 @@ declare const theme: {
|
|
|
3827
3851
|
};
|
|
3828
3852
|
};
|
|
3829
3853
|
voteUpRoot: ({ theme }: any) => {
|
|
3854
|
+
/**
|
|
3855
|
+
* Export default theme
|
|
3856
|
+
*/
|
|
3830
3857
|
width: string;
|
|
3831
3858
|
'& .SCNotification-username': {
|
|
3832
3859
|
fontWeight: number;
|
|
@@ -6425,8 +6452,68 @@ declare const theme: {
|
|
|
6425
6452
|
};
|
|
6426
6453
|
SCEvent: {
|
|
6427
6454
|
styleOverrides: {
|
|
6428
|
-
root: ({ theme }: any) => {
|
|
6455
|
+
root: ({ theme }: any) => {};
|
|
6456
|
+
detailRoot: ({ theme }: any) => {
|
|
6457
|
+
'& .SCEvent-detail-image-wrapper': {
|
|
6458
|
+
position: string;
|
|
6459
|
+
'& .SCEvent-detail-image': {
|
|
6460
|
+
height: string;
|
|
6461
|
+
};
|
|
6462
|
+
};
|
|
6463
|
+
'& .SCEvent-detail-content': {
|
|
6464
|
+
padding: string;
|
|
6465
|
+
'& .SCEvent-detail-user': {
|
|
6466
|
+
marginTop: string;
|
|
6467
|
+
'& .SCBaseItemButton-text': {
|
|
6468
|
+
margin: number;
|
|
6469
|
+
};
|
|
6470
|
+
};
|
|
6471
|
+
'& .SCEvent-detail-name-wrapper': {
|
|
6472
|
+
textDecoration: string;
|
|
6473
|
+
color: string;
|
|
6474
|
+
'& .SCEvent-detail-name': {
|
|
6475
|
+
marginBottom: string;
|
|
6476
|
+
};
|
|
6477
|
+
};
|
|
6478
|
+
'& .SCEvent-detail-first-divider': {
|
|
6479
|
+
marginTop: string;
|
|
6480
|
+
marginBottom: any;
|
|
6481
|
+
};
|
|
6482
|
+
'& .SCEvent-detail-second-divider': {
|
|
6483
|
+
marginTop: any;
|
|
6484
|
+
marginBottom: string;
|
|
6485
|
+
};
|
|
6486
|
+
};
|
|
6487
|
+
};
|
|
6488
|
+
previewRoot: ({ theme }: any) => {
|
|
6489
|
+
'& .SCEvent-preview-image-wrapper': {
|
|
6490
|
+
position: string;
|
|
6491
|
+
'& .SCEvent-preview-image': {
|
|
6492
|
+
height: string;
|
|
6493
|
+
};
|
|
6494
|
+
};
|
|
6495
|
+
'& .SCEvent-preview-content': {
|
|
6496
|
+
padding: string;
|
|
6497
|
+
'& .SCEvent-detail-user': {
|
|
6498
|
+
marginTop: string;
|
|
6499
|
+
'& .SCBaseItemButton-text': {
|
|
6500
|
+
margin: number;
|
|
6501
|
+
};
|
|
6502
|
+
};
|
|
6503
|
+
'& .SCEvent-preview-name-wrapper': {
|
|
6504
|
+
textDecoration: string;
|
|
6505
|
+
color: string;
|
|
6506
|
+
'& .SCEvent-preview-name': {
|
|
6507
|
+
marginBottom: string;
|
|
6508
|
+
};
|
|
6509
|
+
};
|
|
6510
|
+
};
|
|
6511
|
+
};
|
|
6512
|
+
snippetRoot: ({ theme }: any) => {
|
|
6429
6513
|
overflow: string;
|
|
6514
|
+
boxSizing: string;
|
|
6515
|
+
paddingLeft: string;
|
|
6516
|
+
paddingRight: string;
|
|
6430
6517
|
'& .SCBaseItem-image': {
|
|
6431
6518
|
'& .MuiAvatar-root': {
|
|
6432
6519
|
width: number;
|
|
@@ -6438,36 +6525,121 @@ declare const theme: {
|
|
|
6438
6525
|
};
|
|
6439
6526
|
'& .SCBaseItem-text': {
|
|
6440
6527
|
fontSize: any;
|
|
6441
|
-
'& .SCEvent-primary': {
|
|
6528
|
+
'& .SCEvent-snippet-primary': {
|
|
6529
|
+
color: any;
|
|
6530
|
+
textDecoration: string;
|
|
6531
|
+
'&:hover': {
|
|
6532
|
+
textDecoration: string;
|
|
6533
|
+
};
|
|
6442
6534
|
'& p': {
|
|
6443
6535
|
fontWeight: any;
|
|
6444
6536
|
};
|
|
6445
6537
|
};
|
|
6446
|
-
'& .SCEvent-secondary': {
|
|
6538
|
+
'& .SCEvent-snippet-secondary': {
|
|
6447
6539
|
color: any;
|
|
6448
6540
|
};
|
|
6449
6541
|
};
|
|
6450
6542
|
};
|
|
6451
6543
|
skeletonRoot: ({ theme }: any) => {
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
|
|
6544
|
+
'& .SCEvent-skeleton-detail-root': {
|
|
6545
|
+
'& .SCEvent-skeleton-detail-calendar': {
|
|
6546
|
+
position: string;
|
|
6547
|
+
bottom: string;
|
|
6548
|
+
left: string;
|
|
6549
|
+
boxShadow: string;
|
|
6550
|
+
};
|
|
6551
|
+
'& .SCEvent-skeleton-detail-content': {
|
|
6552
|
+
padding: string;
|
|
6553
|
+
'& .SCEvent-skeleton-detail-user': {
|
|
6554
|
+
marginTop: string;
|
|
6555
|
+
'& .SCBaseItemButton-text': {
|
|
6556
|
+
margin: number;
|
|
6557
|
+
};
|
|
6558
|
+
};
|
|
6559
|
+
'& .SCEvent-skeleton-detail-name-wrapper': {
|
|
6560
|
+
textDecoration: string;
|
|
6561
|
+
color: string;
|
|
6562
|
+
'& .SCEvent-skeleton-detail-name': {
|
|
6563
|
+
marginBottom: string;
|
|
6564
|
+
};
|
|
6565
|
+
};
|
|
6566
|
+
'& .SCEvent-skeleton-detail-first-divider': {
|
|
6567
|
+
marginTop: string;
|
|
6568
|
+
marginBottom: any;
|
|
6569
|
+
};
|
|
6570
|
+
'& .SCEvent-skeleton-detail-second-divider': {
|
|
6571
|
+
marginTop: any;
|
|
6572
|
+
marginBottom: string;
|
|
6573
|
+
};
|
|
6574
|
+
};
|
|
6455
6575
|
};
|
|
6456
|
-
'& .SCEvent-skeleton-
|
|
6457
|
-
|
|
6458
|
-
|
|
6459
|
-
borderRadius: string;
|
|
6576
|
+
'& .SCEvent-skeleton-preview-root': {
|
|
6577
|
+
'& .SCEvent-skeleton-preview-content': {
|
|
6578
|
+
padding: any;
|
|
6460
6579
|
};
|
|
6461
|
-
'& .
|
|
6462
|
-
color: any;
|
|
6580
|
+
'& .SCEvent-skeleton-preview-image': {
|
|
6463
6581
|
position: string;
|
|
6464
|
-
|
|
6465
|
-
|
|
6466
|
-
|
|
6582
|
+
'& .MuiSkeleton-root': {
|
|
6583
|
+
borderRadius: string;
|
|
6584
|
+
};
|
|
6585
|
+
'& .MuiIcon-root': {
|
|
6586
|
+
color: any;
|
|
6587
|
+
position: string;
|
|
6588
|
+
top: string;
|
|
6589
|
+
left: string;
|
|
6590
|
+
transform: string;
|
|
6591
|
+
};
|
|
6592
|
+
};
|
|
6593
|
+
'& .SCBaseItem-actions': {
|
|
6594
|
+
maxWidth: string;
|
|
6467
6595
|
};
|
|
6468
6596
|
};
|
|
6469
|
-
'& .
|
|
6470
|
-
|
|
6597
|
+
'& .SCEvent-skeleton-snippet-root': {
|
|
6598
|
+
overflow: string;
|
|
6599
|
+
boxSizing: string;
|
|
6600
|
+
paddingLeft: string;
|
|
6601
|
+
paddingRight: string;
|
|
6602
|
+
'& .SCEvent-skeleton-snippet-image': {
|
|
6603
|
+
position: string;
|
|
6604
|
+
'& .MuiSkeleton-root': {
|
|
6605
|
+
borderRadius: string;
|
|
6606
|
+
};
|
|
6607
|
+
'& .MuiIcon-root': {
|
|
6608
|
+
color: any;
|
|
6609
|
+
position: string;
|
|
6610
|
+
top: string;
|
|
6611
|
+
left: string;
|
|
6612
|
+
transform: string;
|
|
6613
|
+
};
|
|
6614
|
+
};
|
|
6615
|
+
'& .SCBaseItem-actions': {
|
|
6616
|
+
maxWidth: string;
|
|
6617
|
+
};
|
|
6618
|
+
};
|
|
6619
|
+
};
|
|
6620
|
+
};
|
|
6621
|
+
};
|
|
6622
|
+
SCEventActionsMenu: {
|
|
6623
|
+
styleOverrides: {
|
|
6624
|
+
root: ({ theme }: any) => {};
|
|
6625
|
+
menuRoot: ({ theme }: any) => {
|
|
6626
|
+
'& .MuiDivider-root': {
|
|
6627
|
+
margin: any;
|
|
6628
|
+
};
|
|
6629
|
+
'& .MuiIcon-root': {
|
|
6630
|
+
fontSize: string;
|
|
6631
|
+
};
|
|
6632
|
+
};
|
|
6633
|
+
drawerRoot: ({ theme }: any) => {
|
|
6634
|
+
'& .SCEventActionsMenu-item': {
|
|
6635
|
+
paddingTop: number;
|
|
6636
|
+
paddingBottom: number;
|
|
6637
|
+
};
|
|
6638
|
+
'& .MuiDivider-root': {
|
|
6639
|
+
margin: any;
|
|
6640
|
+
};
|
|
6641
|
+
'& .MuiIcon-root': {
|
|
6642
|
+
fontSize: string;
|
|
6471
6643
|
};
|
|
6472
6644
|
};
|
|
6473
6645
|
};
|
|
@@ -6583,7 +6755,7 @@ declare const theme: {
|
|
|
6583
6755
|
};
|
|
6584
6756
|
SCEventHeader: {
|
|
6585
6757
|
styleOverrides: {
|
|
6586
|
-
root: ({ theme }: any) => {
|
|
6758
|
+
root: ({ theme, isEventAdmin }: any) => {
|
|
6587
6759
|
'& .SCEventHeader-cover': {
|
|
6588
6760
|
[x: number]: {
|
|
6589
6761
|
borderRadius: any;
|
|
@@ -6635,14 +6807,19 @@ declare const theme: {
|
|
|
6635
6807
|
padding: string;
|
|
6636
6808
|
marginTop: any;
|
|
6637
6809
|
'& .SCBaseItemButton-actions': {
|
|
6810
|
+
[x: number]: {
|
|
6811
|
+
width: string;
|
|
6812
|
+
};
|
|
6638
6813
|
maxWidth: string;
|
|
6639
|
-
width: string;
|
|
6640
6814
|
'& .SCEventHeader-multi-actions': {
|
|
6815
|
+
[x: number]: {
|
|
6816
|
+
'& .SCEventInviteButton-root': {
|
|
6817
|
+
marginRight: any;
|
|
6818
|
+
};
|
|
6819
|
+
};
|
|
6641
6820
|
display: string;
|
|
6642
6821
|
justifyContent: string;
|
|
6643
|
-
|
|
6644
|
-
'& .SCEventSubscribeButton-select-root': {
|
|
6645
|
-
float: string;
|
|
6822
|
+
alignItems: string;
|
|
6646
6823
|
};
|
|
6647
6824
|
};
|
|
6648
6825
|
};
|
|
@@ -6825,8 +7002,28 @@ declare const theme: {
|
|
|
6825
7002
|
* Style fragments - Imports - Start
|
|
6826
7003
|
*/
|
|
6827
7004
|
gap: any;
|
|
7005
|
+
marginTop: string;
|
|
7006
|
+
'&:hover': {
|
|
7007
|
+
backgroundColor: string;
|
|
7008
|
+
};
|
|
7009
|
+
'& .MuiAvatarGroup-avatar': {
|
|
7010
|
+
width: string;
|
|
7011
|
+
height: string;
|
|
7012
|
+
};
|
|
7013
|
+
'& .SCEventPartecipantsButton-partecipants': {
|
|
7014
|
+
color: any;
|
|
7015
|
+
};
|
|
7016
|
+
};
|
|
7017
|
+
dialogRoot: ({ theme }: {
|
|
7018
|
+
theme: any;
|
|
7019
|
+
}) => {
|
|
7020
|
+
'& .SCEventPartecipantsButton-infinite-scroll': {
|
|
7021
|
+
[x: number]: {
|
|
7022
|
+
height: string;
|
|
7023
|
+
};
|
|
7024
|
+
height: string;
|
|
7025
|
+
};
|
|
6828
7026
|
};
|
|
6829
|
-
dialogRoot: () => {};
|
|
6830
7027
|
};
|
|
6831
7028
|
};
|
|
6832
7029
|
SCMyEventsWidget: {
|
|
@@ -6834,27 +7031,13 @@ declare const theme: {
|
|
|
6834
7031
|
root: ({ theme }: {
|
|
6835
7032
|
theme: any;
|
|
6836
7033
|
}) => {
|
|
6837
|
-
/**
|
|
6838
|
-
* Style fragments - Imports - Start
|
|
6839
|
-
*/
|
|
6840
7034
|
'& .SCMyEventsWidget-title-wrapper': {
|
|
6841
7035
|
padding: string;
|
|
6842
7036
|
};
|
|
6843
|
-
'& .SCMyEventsWidget-content': {
|
|
6844
|
-
padding: string;
|
|
6845
|
-
'& .SCMyEventsWidget-first-divider': {
|
|
6846
|
-
marginTop: string;
|
|
6847
|
-
marginBottom: string;
|
|
6848
|
-
};
|
|
6849
|
-
'& .SCMyEventsWidget-second-divider': {
|
|
6850
|
-
marginTop: string;
|
|
6851
|
-
marginBottom: string;
|
|
6852
|
-
};
|
|
6853
|
-
};
|
|
6854
7037
|
'& .SCMyEventsWidget-actions': {
|
|
6855
7038
|
padding: string;
|
|
6856
7039
|
justifyContent: string;
|
|
6857
|
-
gap:
|
|
7040
|
+
gap: any;
|
|
6858
7041
|
'& .SCMyEventsWidget-arrows': {
|
|
6859
7042
|
width: string;
|
|
6860
7043
|
height: string;
|
|
@@ -6869,28 +7052,11 @@ declare const theme: {
|
|
|
6869
7052
|
skeletonRoot: ({ theme }: {
|
|
6870
7053
|
theme: any;
|
|
6871
7054
|
}) => {
|
|
6872
|
-
'& .SCMyEventsWidget-calendar': {
|
|
6873
|
-
position: string;
|
|
6874
|
-
bottom: string;
|
|
6875
|
-
left: string;
|
|
6876
|
-
boxShadow: string;
|
|
6877
|
-
};
|
|
6878
|
-
'& .SCMyEventsWidget-content': {
|
|
6879
|
-
padding: string;
|
|
6880
|
-
'& .SCMyEventsWidget-first-divider': {
|
|
6881
|
-
marginTop: string;
|
|
6882
|
-
marginBottom: any;
|
|
6883
|
-
};
|
|
6884
|
-
'& .SCMyEventsWidget-second-divider': {
|
|
6885
|
-
marginTop: any;
|
|
6886
|
-
marginBottom: string;
|
|
6887
|
-
};
|
|
6888
|
-
};
|
|
6889
7055
|
'& .SCMyEventsWidget-actions': {
|
|
6890
7056
|
height: string;
|
|
6891
7057
|
padding: string;
|
|
6892
7058
|
justifyContent: string;
|
|
6893
|
-
gap:
|
|
7059
|
+
gap: any;
|
|
6894
7060
|
};
|
|
6895
7061
|
};
|
|
6896
7062
|
};
|
|
@@ -6979,6 +7145,69 @@ declare const theme: {
|
|
|
6979
7145
|
};
|
|
6980
7146
|
};
|
|
6981
7147
|
};
|
|
7148
|
+
SCSuggestedEventsWidget: {
|
|
7149
|
+
styleOverrides: {
|
|
7150
|
+
root: ({ theme }: {
|
|
7151
|
+
theme: any;
|
|
7152
|
+
}) => {
|
|
7153
|
+
'& .SCSuggestedEventsWidget-content': {
|
|
7154
|
+
padding: string;
|
|
7155
|
+
'& .SCSuggestedEventsWidget-title': {
|
|
7156
|
+
marginBottom: string;
|
|
7157
|
+
};
|
|
7158
|
+
'& .SCSuggestedEventsWidget-swiper': {
|
|
7159
|
+
width: string;
|
|
7160
|
+
height: string;
|
|
7161
|
+
};
|
|
7162
|
+
};
|
|
7163
|
+
'& .SCSuggestedEventsWidget-event': {
|
|
7164
|
+
'& .SCEventInfoDetails-root': {
|
|
7165
|
+
'& h5': {
|
|
7166
|
+
fontSize: string;
|
|
7167
|
+
maxWidth: number;
|
|
7168
|
+
textOverflow: string;
|
|
7169
|
+
whiteSpace: string;
|
|
7170
|
+
overflow: string;
|
|
7171
|
+
};
|
|
7172
|
+
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
7173
|
+
'& .community-icons': {
|
|
7174
|
+
fontSize: string;
|
|
7175
|
+
};
|
|
7176
|
+
'& p': {
|
|
7177
|
+
marginTop: number;
|
|
7178
|
+
fontSize: string;
|
|
7179
|
+
};
|
|
7180
|
+
};
|
|
7181
|
+
};
|
|
7182
|
+
};
|
|
7183
|
+
'& .SCSuggestedEventsWidget-actions': {
|
|
7184
|
+
padding: string;
|
|
7185
|
+
justifyContent: string;
|
|
7186
|
+
'& .SCSuggestedEventsWidget-actionButton': {
|
|
7187
|
+
color: any;
|
|
7188
|
+
};
|
|
7189
|
+
};
|
|
7190
|
+
};
|
|
7191
|
+
skeletonRoot: ({ theme }: {
|
|
7192
|
+
theme: any;
|
|
7193
|
+
}) => {
|
|
7194
|
+
'& .SCSuggestedEventsWidget-content': {
|
|
7195
|
+
padding: string;
|
|
7196
|
+
'& .SCSuggestedEventsWidget-title': {
|
|
7197
|
+
marginBottom: string;
|
|
7198
|
+
};
|
|
7199
|
+
'& .SCSuggestedEventsWidget-swiper': {
|
|
7200
|
+
width: string;
|
|
7201
|
+
height: string;
|
|
7202
|
+
};
|
|
7203
|
+
};
|
|
7204
|
+
'& .SCSuggestedEventsWidget-actions': {
|
|
7205
|
+
padding: string;
|
|
7206
|
+
justifyContent: string;
|
|
7207
|
+
};
|
|
7208
|
+
};
|
|
7209
|
+
};
|
|
7210
|
+
};
|
|
6982
7211
|
};
|
|
6983
7212
|
selfcommunity: {
|
|
6984
7213
|
user: {
|