@selfcommunity/react-theme-default 0.4.5-payments.165 → 0.4.5-payments.168
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 +22 -0
- package/lib/cjs/components/SCEvent.js +22 -0
- package/lib/cjs/components/SCEventForm.d.ts +3 -0
- package/lib/cjs/components/SCEventForm.js +3 -0
- package/lib/cjs/components/SCEventFormDialog.d.ts +9 -0
- package/lib/cjs/components/SCEventFormDialog.js +9 -0
- package/lib/cjs/components/SCEvents.d.ts +11 -1
- package/lib/cjs/components/SCEvents.js +12 -2
- package/lib/cjs/index.d.ts +45 -1
- package/lib/esm/components/SCEvent.d.ts +22 -0
- package/lib/esm/components/SCEvent.js +22 -0
- package/lib/esm/components/SCEventForm.d.ts +3 -0
- package/lib/esm/components/SCEventForm.js +3 -0
- package/lib/esm/components/SCEventFormDialog.d.ts +9 -0
- package/lib/esm/components/SCEventFormDialog.js +9 -0
- package/lib/esm/components/SCEvents.d.ts +11 -1
- package/lib/esm/components/SCEvents.js +12 -2
- package/lib/esm/index.d.ts +45 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -61,6 +61,14 @@ declare const Component: {
|
|
|
61
61
|
paddingRight: any;
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
|
+
'& .SCEvent-finished-chip': {
|
|
65
|
+
backgroundColor: any;
|
|
66
|
+
position: string;
|
|
67
|
+
top: number;
|
|
68
|
+
right: number;
|
|
69
|
+
color: any;
|
|
70
|
+
boxShadow: string;
|
|
71
|
+
};
|
|
64
72
|
};
|
|
65
73
|
'& .SCEvent-preview-content': {
|
|
66
74
|
padding: string;
|
|
@@ -117,6 +125,20 @@ declare const Component: {
|
|
|
117
125
|
paddingRight: any;
|
|
118
126
|
};
|
|
119
127
|
};
|
|
128
|
+
'& .SCEvent-finished-chip': {
|
|
129
|
+
height: number;
|
|
130
|
+
backgroundColor: any;
|
|
131
|
+
position: string;
|
|
132
|
+
top: number;
|
|
133
|
+
right: number;
|
|
134
|
+
color: any;
|
|
135
|
+
boxShadow: string;
|
|
136
|
+
'& span': {
|
|
137
|
+
fontSize: string;
|
|
138
|
+
paddingLeft: any;
|
|
139
|
+
paddingRight: any;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
120
142
|
};
|
|
121
143
|
'& .SCBaseItem-text': {
|
|
122
144
|
fontSize: any;
|
|
@@ -62,6 +62,14 @@ const Component = {
|
|
|
62
62
|
paddingLeft: theme.spacing(0.5),
|
|
63
63
|
paddingRight: theme.spacing(0.5)
|
|
64
64
|
}
|
|
65
|
+
},
|
|
66
|
+
'& .SCEvent-finished-chip': {
|
|
67
|
+
backgroundColor: theme.palette.common.black,
|
|
68
|
+
position: 'absolute',
|
|
69
|
+
top: 10,
|
|
70
|
+
right: 10,
|
|
71
|
+
color: theme.palette.common.white,
|
|
72
|
+
boxShadow: 'rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px'
|
|
65
73
|
}
|
|
66
74
|
},
|
|
67
75
|
'& .SCEvent-preview-content': {
|
|
@@ -118,6 +126,20 @@ const Component = {
|
|
|
118
126
|
paddingLeft: theme.spacing(0.5),
|
|
119
127
|
paddingRight: theme.spacing(0.5)
|
|
120
128
|
}
|
|
129
|
+
},
|
|
130
|
+
'& .SCEvent-finished-chip': {
|
|
131
|
+
height: 18,
|
|
132
|
+
backgroundColor: theme.palette.common.black,
|
|
133
|
+
position: 'absolute',
|
|
134
|
+
top: 5,
|
|
135
|
+
right: 3,
|
|
136
|
+
color: theme.palette.common.white,
|
|
137
|
+
boxShadow: 'rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px',
|
|
138
|
+
'& span': {
|
|
139
|
+
fontSize: '0.8rem',
|
|
140
|
+
paddingLeft: theme.spacing(0.5),
|
|
141
|
+
paddingRight: theme.spacing(0.5)
|
|
142
|
+
}
|
|
121
143
|
}
|
|
122
144
|
},
|
|
123
145
|
'& .SCBaseItem-text': {
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
[x: number]: {
|
|
5
|
+
'& .MuiDialogContent-root': {
|
|
6
|
+
marginLeft: any;
|
|
7
|
+
marginRight: any;
|
|
8
|
+
};
|
|
9
|
+
'& .SCEventForm-actions': {
|
|
10
|
+
marginBottom: any;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
4
13
|
'& .MuiDialogTitle-root': {
|
|
5
14
|
'& span': {
|
|
6
15
|
flexGrow: number;
|
|
@@ -8,6 +8,15 @@ const Component = {
|
|
|
8
8
|
flexGrow: 1,
|
|
9
9
|
textAlign: 'center'
|
|
10
10
|
}
|
|
11
|
+
},
|
|
12
|
+
[theme.breakpoints.down('sm')]: {
|
|
13
|
+
'& .MuiDialogContent-root': {
|
|
14
|
+
marginLeft: theme.spacing(2),
|
|
15
|
+
marginRight: theme.spacing(2)
|
|
16
|
+
},
|
|
17
|
+
'& .SCEventForm-actions': {
|
|
18
|
+
marginBottom: theme.spacing(2)
|
|
19
|
+
}
|
|
11
20
|
}
|
|
12
21
|
})
|
|
13
22
|
}
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
'& .SCEvents-section-title': {
|
|
5
|
+
marginTop: any;
|
|
6
|
+
marginBottom: any;
|
|
7
|
+
color: any;
|
|
8
|
+
fontWeight: number;
|
|
9
|
+
fontSize: number;
|
|
10
|
+
};
|
|
11
|
+
'& .SCEvents-divider': {
|
|
12
|
+
marginBottom: any;
|
|
13
|
+
};
|
|
4
14
|
'& .SCEvents-filters': {
|
|
5
15
|
alignItems: string;
|
|
6
16
|
marginTop: any;
|
|
@@ -78,7 +88,7 @@ declare const Component: {
|
|
|
78
88
|
};
|
|
79
89
|
};
|
|
80
90
|
};
|
|
81
|
-
eventsChipRoot: ({ theme, showFollowed, showPastEvents }: any) => {
|
|
91
|
+
eventsChipRoot: ({ theme, showFollowed, showPastEvents, showOngoingEvents }: any) => {
|
|
82
92
|
height: any;
|
|
83
93
|
borderRadius: any;
|
|
84
94
|
color: any;
|
|
@@ -3,6 +3,16 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const Component = {
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: ({ theme }) => ({
|
|
6
|
+
'& .SCEvents-section-title': {
|
|
7
|
+
marginTop: theme.spacing(4),
|
|
8
|
+
marginBottom: theme.spacing(1),
|
|
9
|
+
color: theme.palette.primary.main,
|
|
10
|
+
fontWeight: 500,
|
|
11
|
+
fontSize: 18
|
|
12
|
+
},
|
|
13
|
+
'& .SCEvents-divider': {
|
|
14
|
+
marginBottom: theme.spacing(2)
|
|
15
|
+
},
|
|
6
16
|
'& .SCEvents-filters': {
|
|
7
17
|
alignItems: 'center',
|
|
8
18
|
marginTop: theme.spacing(),
|
|
@@ -80,10 +90,10 @@ const Component = {
|
|
|
80
90
|
}
|
|
81
91
|
}
|
|
82
92
|
}),
|
|
83
|
-
eventsChipRoot: ({ theme, showFollowed, showPastEvents }) => ({
|
|
93
|
+
eventsChipRoot: ({ theme, showFollowed, showPastEvents, showOngoingEvents }) => ({
|
|
84
94
|
height: theme.spacing(4.75),
|
|
85
95
|
borderRadius: theme.spacing(0.5),
|
|
86
|
-
color: showFollowed || showPastEvents ? theme.palette.common.white : theme.palette.text.primary,
|
|
96
|
+
color: showFollowed || showPastEvents || showOngoingEvents ? theme.palette.common.white : theme.palette.text.primary,
|
|
87
97
|
'& .MuiIcon-root': {
|
|
88
98
|
fontSize: '1rem',
|
|
89
99
|
color: theme.palette.common.white
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -9126,12 +9126,24 @@ declare const theme: {
|
|
|
9126
9126
|
padding: any;
|
|
9127
9127
|
};
|
|
9128
9128
|
};
|
|
9129
|
+
'& .SCEventForm-paywalls-configurator-wrap': {
|
|
9130
|
+
margin: string;
|
|
9131
|
+
};
|
|
9129
9132
|
};
|
|
9130
9133
|
};
|
|
9131
9134
|
};
|
|
9132
9135
|
SCEventFormDialog: {
|
|
9133
9136
|
styleOverrides: {
|
|
9134
9137
|
root: ({ theme }: any) => {
|
|
9138
|
+
[x: number]: {
|
|
9139
|
+
'& .MuiDialogContent-root': {
|
|
9140
|
+
marginLeft: any;
|
|
9141
|
+
marginRight: any;
|
|
9142
|
+
};
|
|
9143
|
+
'& .SCEventForm-actions': {
|
|
9144
|
+
marginBottom: any;
|
|
9145
|
+
};
|
|
9146
|
+
};
|
|
9135
9147
|
'& .MuiDialogTitle-root': {
|
|
9136
9148
|
'& span': {
|
|
9137
9149
|
flexGrow: number;
|
|
@@ -9247,6 +9259,14 @@ declare const theme: {
|
|
|
9247
9259
|
paddingRight: any;
|
|
9248
9260
|
};
|
|
9249
9261
|
};
|
|
9262
|
+
'& .SCEvent-finished-chip': {
|
|
9263
|
+
backgroundColor: any;
|
|
9264
|
+
position: string;
|
|
9265
|
+
top: number;
|
|
9266
|
+
right: number;
|
|
9267
|
+
color: any;
|
|
9268
|
+
boxShadow: string;
|
|
9269
|
+
};
|
|
9250
9270
|
};
|
|
9251
9271
|
'& .SCEvent-preview-content': {
|
|
9252
9272
|
padding: string;
|
|
@@ -9303,6 +9323,20 @@ declare const theme: {
|
|
|
9303
9323
|
paddingRight: any;
|
|
9304
9324
|
};
|
|
9305
9325
|
};
|
|
9326
|
+
'& .SCEvent-finished-chip': {
|
|
9327
|
+
height: number;
|
|
9328
|
+
backgroundColor: any;
|
|
9329
|
+
position: string;
|
|
9330
|
+
top: number;
|
|
9331
|
+
right: number;
|
|
9332
|
+
color: any;
|
|
9333
|
+
boxShadow: string;
|
|
9334
|
+
'& span': {
|
|
9335
|
+
fontSize: string;
|
|
9336
|
+
paddingLeft: any;
|
|
9337
|
+
paddingRight: any;
|
|
9338
|
+
};
|
|
9339
|
+
};
|
|
9306
9340
|
};
|
|
9307
9341
|
'& .SCBaseItem-text': {
|
|
9308
9342
|
fontSize: any;
|
|
@@ -9428,6 +9462,16 @@ declare const theme: {
|
|
|
9428
9462
|
SCEvents: {
|
|
9429
9463
|
styleOverrides: {
|
|
9430
9464
|
root: ({ theme }: any) => {
|
|
9465
|
+
'& .SCEvents-section-title': {
|
|
9466
|
+
marginTop: any;
|
|
9467
|
+
marginBottom: any;
|
|
9468
|
+
color: any;
|
|
9469
|
+
fontWeight: number;
|
|
9470
|
+
fontSize: number;
|
|
9471
|
+
};
|
|
9472
|
+
'& .SCEvents-divider': {
|
|
9473
|
+
marginBottom: any;
|
|
9474
|
+
};
|
|
9431
9475
|
'& .SCEvents-filters': {
|
|
9432
9476
|
alignItems: string;
|
|
9433
9477
|
marginTop: any;
|
|
@@ -9505,7 +9549,7 @@ declare const theme: {
|
|
|
9505
9549
|
};
|
|
9506
9550
|
};
|
|
9507
9551
|
};
|
|
9508
|
-
eventsChipRoot: ({ theme, showFollowed, showPastEvents }: any) => {
|
|
9552
|
+
eventsChipRoot: ({ theme, showFollowed, showPastEvents, showOngoingEvents }: any) => {
|
|
9509
9553
|
height: any;
|
|
9510
9554
|
borderRadius: any;
|
|
9511
9555
|
color: any;
|
|
@@ -61,6 +61,14 @@ declare const Component: {
|
|
|
61
61
|
paddingRight: any;
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
|
+
'& .SCEvent-finished-chip': {
|
|
65
|
+
backgroundColor: any;
|
|
66
|
+
position: string;
|
|
67
|
+
top: number;
|
|
68
|
+
right: number;
|
|
69
|
+
color: any;
|
|
70
|
+
boxShadow: string;
|
|
71
|
+
};
|
|
64
72
|
};
|
|
65
73
|
'& .SCEvent-preview-content': {
|
|
66
74
|
padding: string;
|
|
@@ -117,6 +125,20 @@ declare const Component: {
|
|
|
117
125
|
paddingRight: any;
|
|
118
126
|
};
|
|
119
127
|
};
|
|
128
|
+
'& .SCEvent-finished-chip': {
|
|
129
|
+
height: number;
|
|
130
|
+
backgroundColor: any;
|
|
131
|
+
position: string;
|
|
132
|
+
top: number;
|
|
133
|
+
right: number;
|
|
134
|
+
color: any;
|
|
135
|
+
boxShadow: string;
|
|
136
|
+
'& span': {
|
|
137
|
+
fontSize: string;
|
|
138
|
+
paddingLeft: any;
|
|
139
|
+
paddingRight: any;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
120
142
|
};
|
|
121
143
|
'& .SCBaseItem-text': {
|
|
122
144
|
fontSize: any;
|
|
@@ -60,6 +60,14 @@ const Component = {
|
|
|
60
60
|
paddingLeft: theme.spacing(0.5),
|
|
61
61
|
paddingRight: theme.spacing(0.5)
|
|
62
62
|
}
|
|
63
|
+
},
|
|
64
|
+
'& .SCEvent-finished-chip': {
|
|
65
|
+
backgroundColor: theme.palette.common.black,
|
|
66
|
+
position: 'absolute',
|
|
67
|
+
top: 10,
|
|
68
|
+
right: 10,
|
|
69
|
+
color: theme.palette.common.white,
|
|
70
|
+
boxShadow: 'rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px'
|
|
63
71
|
}
|
|
64
72
|
},
|
|
65
73
|
'& .SCEvent-preview-content': {
|
|
@@ -116,6 +124,20 @@ const Component = {
|
|
|
116
124
|
paddingLeft: theme.spacing(0.5),
|
|
117
125
|
paddingRight: theme.spacing(0.5)
|
|
118
126
|
}
|
|
127
|
+
},
|
|
128
|
+
'& .SCEvent-finished-chip': {
|
|
129
|
+
height: 18,
|
|
130
|
+
backgroundColor: theme.palette.common.black,
|
|
131
|
+
position: 'absolute',
|
|
132
|
+
top: 5,
|
|
133
|
+
right: 3,
|
|
134
|
+
color: theme.palette.common.white,
|
|
135
|
+
boxShadow: 'rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px',
|
|
136
|
+
'& span': {
|
|
137
|
+
fontSize: '0.8rem',
|
|
138
|
+
paddingLeft: theme.spacing(0.5),
|
|
139
|
+
paddingRight: theme.spacing(0.5)
|
|
140
|
+
}
|
|
119
141
|
}
|
|
120
142
|
},
|
|
121
143
|
'& .SCBaseItem-text': {
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
[x: number]: {
|
|
5
|
+
'& .MuiDialogContent-root': {
|
|
6
|
+
marginLeft: any;
|
|
7
|
+
marginRight: any;
|
|
8
|
+
};
|
|
9
|
+
'& .SCEventForm-actions': {
|
|
10
|
+
marginBottom: any;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
4
13
|
'& .MuiDialogTitle-root': {
|
|
5
14
|
'& span': {
|
|
6
15
|
flexGrow: number;
|
|
@@ -6,6 +6,15 @@ const Component = {
|
|
|
6
6
|
flexGrow: 1,
|
|
7
7
|
textAlign: 'center'
|
|
8
8
|
}
|
|
9
|
+
},
|
|
10
|
+
[theme.breakpoints.down('sm')]: {
|
|
11
|
+
'& .MuiDialogContent-root': {
|
|
12
|
+
marginLeft: theme.spacing(2),
|
|
13
|
+
marginRight: theme.spacing(2)
|
|
14
|
+
},
|
|
15
|
+
'& .SCEventForm-actions': {
|
|
16
|
+
marginBottom: theme.spacing(2)
|
|
17
|
+
}
|
|
9
18
|
}
|
|
10
19
|
})
|
|
11
20
|
}
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
declare const Component: {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }: any) => {
|
|
4
|
+
'& .SCEvents-section-title': {
|
|
5
|
+
marginTop: any;
|
|
6
|
+
marginBottom: any;
|
|
7
|
+
color: any;
|
|
8
|
+
fontWeight: number;
|
|
9
|
+
fontSize: number;
|
|
10
|
+
};
|
|
11
|
+
'& .SCEvents-divider': {
|
|
12
|
+
marginBottom: any;
|
|
13
|
+
};
|
|
4
14
|
'& .SCEvents-filters': {
|
|
5
15
|
alignItems: string;
|
|
6
16
|
marginTop: any;
|
|
@@ -78,7 +88,7 @@ declare const Component: {
|
|
|
78
88
|
};
|
|
79
89
|
};
|
|
80
90
|
};
|
|
81
|
-
eventsChipRoot: ({ theme, showFollowed, showPastEvents }: any) => {
|
|
91
|
+
eventsChipRoot: ({ theme, showFollowed, showPastEvents, showOngoingEvents }: any) => {
|
|
82
92
|
height: any;
|
|
83
93
|
borderRadius: any;
|
|
84
94
|
color: any;
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
const Component = {
|
|
2
2
|
styleOverrides: {
|
|
3
3
|
root: ({ theme }) => ({
|
|
4
|
+
'& .SCEvents-section-title': {
|
|
5
|
+
marginTop: theme.spacing(4),
|
|
6
|
+
marginBottom: theme.spacing(1),
|
|
7
|
+
color: theme.palette.primary.main,
|
|
8
|
+
fontWeight: 500,
|
|
9
|
+
fontSize: 18
|
|
10
|
+
},
|
|
11
|
+
'& .SCEvents-divider': {
|
|
12
|
+
marginBottom: theme.spacing(2)
|
|
13
|
+
},
|
|
4
14
|
'& .SCEvents-filters': {
|
|
5
15
|
alignItems: 'center',
|
|
6
16
|
marginTop: theme.spacing(),
|
|
@@ -78,10 +88,10 @@ const Component = {
|
|
|
78
88
|
}
|
|
79
89
|
}
|
|
80
90
|
}),
|
|
81
|
-
eventsChipRoot: ({ theme, showFollowed, showPastEvents }) => ({
|
|
91
|
+
eventsChipRoot: ({ theme, showFollowed, showPastEvents, showOngoingEvents }) => ({
|
|
82
92
|
height: theme.spacing(4.75),
|
|
83
93
|
borderRadius: theme.spacing(0.5),
|
|
84
|
-
color: showFollowed || showPastEvents ? theme.palette.common.white : theme.palette.text.primary,
|
|
94
|
+
color: showFollowed || showPastEvents || showOngoingEvents ? theme.palette.common.white : theme.palette.text.primary,
|
|
85
95
|
'& .MuiIcon-root': {
|
|
86
96
|
fontSize: '1rem',
|
|
87
97
|
color: theme.palette.common.white
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -9126,12 +9126,24 @@ declare const theme: {
|
|
|
9126
9126
|
padding: any;
|
|
9127
9127
|
};
|
|
9128
9128
|
};
|
|
9129
|
+
'& .SCEventForm-paywalls-configurator-wrap': {
|
|
9130
|
+
margin: string;
|
|
9131
|
+
};
|
|
9129
9132
|
};
|
|
9130
9133
|
};
|
|
9131
9134
|
};
|
|
9132
9135
|
SCEventFormDialog: {
|
|
9133
9136
|
styleOverrides: {
|
|
9134
9137
|
root: ({ theme }: any) => {
|
|
9138
|
+
[x: number]: {
|
|
9139
|
+
'& .MuiDialogContent-root': {
|
|
9140
|
+
marginLeft: any;
|
|
9141
|
+
marginRight: any;
|
|
9142
|
+
};
|
|
9143
|
+
'& .SCEventForm-actions': {
|
|
9144
|
+
marginBottom: any;
|
|
9145
|
+
};
|
|
9146
|
+
};
|
|
9135
9147
|
'& .MuiDialogTitle-root': {
|
|
9136
9148
|
'& span': {
|
|
9137
9149
|
flexGrow: number;
|
|
@@ -9247,6 +9259,14 @@ declare const theme: {
|
|
|
9247
9259
|
paddingRight: any;
|
|
9248
9260
|
};
|
|
9249
9261
|
};
|
|
9262
|
+
'& .SCEvent-finished-chip': {
|
|
9263
|
+
backgroundColor: any;
|
|
9264
|
+
position: string;
|
|
9265
|
+
top: number;
|
|
9266
|
+
right: number;
|
|
9267
|
+
color: any;
|
|
9268
|
+
boxShadow: string;
|
|
9269
|
+
};
|
|
9250
9270
|
};
|
|
9251
9271
|
'& .SCEvent-preview-content': {
|
|
9252
9272
|
padding: string;
|
|
@@ -9303,6 +9323,20 @@ declare const theme: {
|
|
|
9303
9323
|
paddingRight: any;
|
|
9304
9324
|
};
|
|
9305
9325
|
};
|
|
9326
|
+
'& .SCEvent-finished-chip': {
|
|
9327
|
+
height: number;
|
|
9328
|
+
backgroundColor: any;
|
|
9329
|
+
position: string;
|
|
9330
|
+
top: number;
|
|
9331
|
+
right: number;
|
|
9332
|
+
color: any;
|
|
9333
|
+
boxShadow: string;
|
|
9334
|
+
'& span': {
|
|
9335
|
+
fontSize: string;
|
|
9336
|
+
paddingLeft: any;
|
|
9337
|
+
paddingRight: any;
|
|
9338
|
+
};
|
|
9339
|
+
};
|
|
9306
9340
|
};
|
|
9307
9341
|
'& .SCBaseItem-text': {
|
|
9308
9342
|
fontSize: any;
|
|
@@ -9428,6 +9462,16 @@ declare const theme: {
|
|
|
9428
9462
|
SCEvents: {
|
|
9429
9463
|
styleOverrides: {
|
|
9430
9464
|
root: ({ theme }: any) => {
|
|
9465
|
+
'& .SCEvents-section-title': {
|
|
9466
|
+
marginTop: any;
|
|
9467
|
+
marginBottom: any;
|
|
9468
|
+
color: any;
|
|
9469
|
+
fontWeight: number;
|
|
9470
|
+
fontSize: number;
|
|
9471
|
+
};
|
|
9472
|
+
'& .SCEvents-divider': {
|
|
9473
|
+
marginBottom: any;
|
|
9474
|
+
};
|
|
9431
9475
|
'& .SCEvents-filters': {
|
|
9432
9476
|
alignItems: string;
|
|
9433
9477
|
marginTop: any;
|
|
@@ -9505,7 +9549,7 @@ declare const theme: {
|
|
|
9505
9549
|
};
|
|
9506
9550
|
};
|
|
9507
9551
|
};
|
|
9508
|
-
eventsChipRoot: ({ theme, showFollowed, showPastEvents }: any) => {
|
|
9552
|
+
eventsChipRoot: ({ theme, showFollowed, showPastEvents, showOngoingEvents }: any) => {
|
|
9509
9553
|
height: any;
|
|
9510
9554
|
borderRadius: any;
|
|
9511
9555
|
color: any;
|