@selfcommunity/react-theme-default 0.1.50-events.55 → 0.1.50-events.57
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/SCEvents.d.ts +5 -2
- package/lib/cjs/components/SCEvents.js +7 -4
- package/lib/cjs/components/SCSuggestedEventsWidget.d.ts +41 -21
- package/lib/cjs/components/SCSuggestedEventsWidget.js +43 -23
- package/lib/cjs/index.d.ts +49 -23
- package/lib/esm/components/SCEvents.d.ts +5 -2
- package/lib/esm/components/SCEvents.js +7 -4
- package/lib/esm/components/SCSuggestedEventsWidget.d.ts +41 -21
- package/lib/esm/components/SCSuggestedEventsWidget.js +43 -23
- package/lib/esm/index.d.ts +49 -23
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
package/lib/esm/index.d.ts
CHANGED
|
@@ -6656,13 +6656,16 @@ declare const theme: {
|
|
|
6656
6656
|
};
|
|
6657
6657
|
};
|
|
6658
6658
|
'& .SCEvents-no-results': {
|
|
6659
|
-
maxWidth: string;
|
|
6660
6659
|
marginTop: any;
|
|
6661
6660
|
display: string;
|
|
6662
6661
|
flexDirection: string;
|
|
6663
6662
|
alignItems: string;
|
|
6664
6663
|
'& .SCEvent-skeleton-root': {
|
|
6665
6664
|
marginBottom: any;
|
|
6665
|
+
minWidth: string;
|
|
6666
|
+
};
|
|
6667
|
+
'& .SCEvent-skeleton-snippet .SCBaseItem-content': {
|
|
6668
|
+
maxWidth: string;
|
|
6666
6669
|
};
|
|
6667
6670
|
'& .MuiTypography-body1': {
|
|
6668
6671
|
fontWeight: any;
|
|
@@ -6683,7 +6686,7 @@ declare const theme: {
|
|
|
6683
6686
|
marginTop: any;
|
|
6684
6687
|
};
|
|
6685
6688
|
};
|
|
6686
|
-
|
|
6689
|
+
eventsChipRoot: ({ theme, showFollowed, showPastEvents }: any) => {
|
|
6687
6690
|
height: any;
|
|
6688
6691
|
borderRadius: any;
|
|
6689
6692
|
color: any;
|
|
@@ -7144,34 +7147,57 @@ declare const theme: {
|
|
|
7144
7147
|
root: ({ theme }: {
|
|
7145
7148
|
theme: any;
|
|
7146
7149
|
}) => {
|
|
7150
|
+
/**
|
|
7151
|
+
* Style fragments - Imports - Start
|
|
7152
|
+
*/
|
|
7147
7153
|
'& .SCSuggestedEventsWidget-content': {
|
|
7148
7154
|
padding: string;
|
|
7149
7155
|
'& .SCSuggestedEventsWidget-title': {
|
|
7150
7156
|
marginBottom: string;
|
|
7151
7157
|
};
|
|
7152
7158
|
'& .SCSuggestedEventsWidget-swiper': {
|
|
7153
|
-
|
|
7154
|
-
|
|
7155
|
-
|
|
7156
|
-
|
|
7157
|
-
|
|
7158
|
-
|
|
7159
|
-
|
|
7160
|
-
|
|
7161
|
-
|
|
7162
|
-
|
|
7163
|
-
|
|
7164
|
-
|
|
7165
|
-
|
|
7166
|
-
|
|
7167
|
-
|
|
7168
|
-
|
|
7169
|
-
|
|
7170
|
-
|
|
7171
|
-
|
|
7172
|
-
|
|
7159
|
+
position: string;
|
|
7160
|
+
'& .swiper-wrapper': {
|
|
7161
|
+
paddingBottom: string;
|
|
7162
|
+
'& .SCSuggestedEventsWidget-swiper-slide': {
|
|
7163
|
+
width: string;
|
|
7164
|
+
height: string;
|
|
7165
|
+
'& .SCSuggestedEventsWidget-event': {
|
|
7166
|
+
'& .SCEventInfoDetails-root': {
|
|
7167
|
+
'& h5': {
|
|
7168
|
+
fontSize: string;
|
|
7169
|
+
maxWidth: number;
|
|
7170
|
+
textOverflow: string;
|
|
7171
|
+
whiteSpace: string;
|
|
7172
|
+
overflow: string;
|
|
7173
|
+
};
|
|
7174
|
+
'& .SCEventInfoDetails-icon-text-wrapper': {
|
|
7175
|
+
'& .community-icons': {
|
|
7176
|
+
fontSize: string;
|
|
7177
|
+
};
|
|
7178
|
+
'& p': {
|
|
7179
|
+
marginTop: number;
|
|
7180
|
+
fontSize: string;
|
|
7181
|
+
};
|
|
7182
|
+
};
|
|
7183
|
+
};
|
|
7184
|
+
};
|
|
7173
7185
|
};
|
|
7174
7186
|
};
|
|
7187
|
+
'& .SCSuggestedEventsWidget-swiper-prev-arrow': {
|
|
7188
|
+
position: string;
|
|
7189
|
+
top: string;
|
|
7190
|
+
transform: string;
|
|
7191
|
+
left: string;
|
|
7192
|
+
zIndex: number;
|
|
7193
|
+
};
|
|
7194
|
+
'& .SCSuggestedEventsWidget-swiper-next-arrow': {
|
|
7195
|
+
position: string;
|
|
7196
|
+
top: string;
|
|
7197
|
+
transform: string;
|
|
7198
|
+
right: string;
|
|
7199
|
+
zIndex: number;
|
|
7200
|
+
};
|
|
7175
7201
|
};
|
|
7176
7202
|
};
|
|
7177
7203
|
'& .SCSuggestedEventsWidget-actions': {
|
|
@@ -7190,7 +7216,7 @@ declare const theme: {
|
|
|
7190
7216
|
'& .SCSuggestedEventsWidget-title': {
|
|
7191
7217
|
marginBottom: string;
|
|
7192
7218
|
};
|
|
7193
|
-
'& .SCSuggestedEventsWidget-swiper': {
|
|
7219
|
+
'& .SCSuggestedEventsWidget-swiper-slide': {
|
|
7194
7220
|
width: string;
|
|
7195
7221
|
height: string;
|
|
7196
7222
|
};
|