@selfcommunity/react-theme-default 0.1.50-events.65 → 0.1.50-events.67
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/SCEventLocationWidget.d.ts +2 -8
- package/lib/cjs/components/SCEventLocationWidget.js +2 -8
- package/lib/cjs/components/SCEventMembersWidget.d.ts +7 -9
- package/lib/cjs/components/SCEventMembersWidget.js +10 -12
- package/lib/cjs/components/SCMediaShare.d.ts +6 -1
- package/lib/cjs/components/SCMediaShare.js +6 -1
- package/lib/cjs/components/SCRelatedEventsWidget.d.ts +16 -6
- package/lib/cjs/components/SCRelatedEventsWidget.js +18 -8
- package/lib/cjs/components/SCSuggestedEventsWidget.js +1 -1
- package/lib/cjs/index.d.ts +35 -26
- package/lib/cjs/index.js +2 -0
- package/lib/esm/components/SCEventLocationWidget.d.ts +2 -8
- package/lib/esm/components/SCEventLocationWidget.js +2 -8
- package/lib/esm/components/SCEventMembersWidget.d.ts +7 -9
- package/lib/esm/components/SCEventMembersWidget.js +10 -12
- package/lib/esm/components/SCMediaShare.d.ts +6 -1
- package/lib/esm/components/SCMediaShare.js +6 -1
- package/lib/esm/components/SCRelatedEventsWidget.d.ts +16 -6
- package/lib/esm/components/SCRelatedEventsWidget.js +18 -8
- package/lib/esm/components/SCSuggestedEventsWidget.js +1 -1
- package/lib/esm/index.d.ts +35 -26
- package/lib/esm/index.js +2 -0
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
package/lib/esm/index.d.ts
CHANGED
|
@@ -3334,6 +3334,16 @@ declare const theme: {
|
|
|
3334
3334
|
triggerRoot: ({ theme }: any) => {};
|
|
3335
3335
|
};
|
|
3336
3336
|
};
|
|
3337
|
+
SCMediaShare: {
|
|
3338
|
+
styleOverrides: {
|
|
3339
|
+
displayRoot: ({ theme }: any) => {
|
|
3340
|
+
'& .SCMediaShare-share-preview': {
|
|
3341
|
+
paddingLeft: any;
|
|
3342
|
+
paddingRight: any;
|
|
3343
|
+
};
|
|
3344
|
+
};
|
|
3345
|
+
};
|
|
3346
|
+
};
|
|
3337
3347
|
SCNavigationSettingsIconButton: {
|
|
3338
3348
|
styleOverrides: {
|
|
3339
3349
|
menuRoot: ({ theme }: any) => {
|
|
@@ -6413,25 +6423,19 @@ declare const theme: {
|
|
|
6413
6423
|
SCEventLocationWidget: {
|
|
6414
6424
|
styleOverrides: {
|
|
6415
6425
|
root: ({ theme }: any) => {
|
|
6416
|
-
[x: number]: {
|
|
6417
|
-
width: number;
|
|
6418
|
-
};
|
|
6419
6426
|
'& .SCEventLocationWidget-title, & .SCEventLocationWidget-location-title': {
|
|
6420
6427
|
fontWeight: any;
|
|
6421
6428
|
};
|
|
6422
6429
|
'& .SCEventLocationWidget-map': {
|
|
6423
6430
|
marginBottom: any;
|
|
6424
|
-
|
|
6431
|
+
minHeight: number;
|
|
6425
6432
|
width: string;
|
|
6426
6433
|
};
|
|
6427
6434
|
};
|
|
6428
6435
|
skeletonRoot: ({ theme }: any) => {
|
|
6429
|
-
[x: number]: {
|
|
6430
|
-
width: number;
|
|
6431
|
-
};
|
|
6432
6436
|
'& .SCEventLocationWidget-skeleton-map': {
|
|
6433
6437
|
margin: any;
|
|
6434
|
-
|
|
6438
|
+
minHeight: number;
|
|
6435
6439
|
width: string;
|
|
6436
6440
|
};
|
|
6437
6441
|
};
|
|
@@ -7252,11 +7256,9 @@ declare const theme: {
|
|
|
7252
7256
|
'& .SCEventMembersWidget-tab-panel': {
|
|
7253
7257
|
padding: string;
|
|
7254
7258
|
};
|
|
7255
|
-
|
|
7256
|
-
|
|
7257
|
-
|
|
7258
|
-
justifyContent: string;
|
|
7259
|
-
'& .SCSuggestedEventsWidget-actionButton': {
|
|
7259
|
+
'& .SCEventMembersWidget-action-button': {
|
|
7260
|
+
left: string;
|
|
7261
|
+
transform: string;
|
|
7260
7262
|
color: any;
|
|
7261
7263
|
};
|
|
7262
7264
|
};
|
|
@@ -7279,10 +7281,10 @@ declare const theme: {
|
|
|
7279
7281
|
'& .SCEventMembersWidget-tab-panel': {
|
|
7280
7282
|
padding: string;
|
|
7281
7283
|
};
|
|
7282
|
-
|
|
7283
|
-
|
|
7284
|
-
|
|
7285
|
-
|
|
7284
|
+
'& .SCEventMembersWidget-action-button': {
|
|
7285
|
+
left: string;
|
|
7286
|
+
transform: string;
|
|
7287
|
+
};
|
|
7286
7288
|
};
|
|
7287
7289
|
};
|
|
7288
7290
|
dialogRoot: ({ theme }: {
|
|
@@ -7302,20 +7304,27 @@ declare const theme: {
|
|
|
7302
7304
|
root: ({ theme }: {
|
|
7303
7305
|
theme: any;
|
|
7304
7306
|
}) => {
|
|
7305
|
-
/**
|
|
7306
|
-
* Style fragments - Imports - Start
|
|
7307
|
-
*/
|
|
7308
7307
|
'& .SCRelatedEventsWidget-content': {
|
|
7309
7308
|
padding: string;
|
|
7310
|
-
'& .SCRelatedEventsWidget-
|
|
7309
|
+
'& .SCRelatedEventsWidget-header': {
|
|
7311
7310
|
flexDirection: string;
|
|
7311
|
+
justifyContent: string;
|
|
7312
7312
|
alignItems: string;
|
|
7313
|
-
gap: any;
|
|
7314
7313
|
marginBottom: any;
|
|
7315
|
-
|
|
7316
|
-
|
|
7317
|
-
|
|
7318
|
-
|
|
7314
|
+
'& .SCRelatedEventsWidget-avatar-wrapper': {
|
|
7315
|
+
flexDirection: string;
|
|
7316
|
+
alignItems: string;
|
|
7317
|
+
color: string;
|
|
7318
|
+
padding: number;
|
|
7319
|
+
minWidth: string;
|
|
7320
|
+
'& .SCRelatedEventsWidget-avatar': {
|
|
7321
|
+
width: any;
|
|
7322
|
+
height: any;
|
|
7323
|
+
};
|
|
7324
|
+
};
|
|
7325
|
+
'& h4': {
|
|
7326
|
+
marginLeft: number;
|
|
7327
|
+
lineHeight: string;
|
|
7319
7328
|
};
|
|
7320
7329
|
};
|
|
7321
7330
|
'& .SCRelatedEventsWidget-event-wrapper': {
|
package/lib/esm/index.js
CHANGED
|
@@ -106,6 +106,7 @@ import SCLoyaltyProgramWidget from './components/SCLoyaltyProgramWidget';
|
|
|
106
106
|
import SCMainFeedTemplate from './components/SCMainFeedTemplate';
|
|
107
107
|
import SCMediaFile from './components/SCMediaFile';
|
|
108
108
|
import SCMediaLink from './components/SCMediaLink';
|
|
109
|
+
import SCMediaShare from './components/SCMediaShare';
|
|
109
110
|
import SCMyEventsWidget from './components/SCMyEventsWidget';
|
|
110
111
|
import SCNavigationMenuIconButton from './components/SCNavigationMenuIconButton';
|
|
111
112
|
import SCNavigationSettingsIconButton from './components/SCNavigationSettingsIconButton';
|
|
@@ -279,6 +280,7 @@ const theme = {
|
|
|
279
280
|
SCLoyaltyProgramDetailTemplate,
|
|
280
281
|
SCMediaFile,
|
|
281
282
|
SCMediaLink,
|
|
283
|
+
SCMediaShare,
|
|
282
284
|
SCNavigationSettingsIconButton,
|
|
283
285
|
SCDefaultHeaderContent,
|
|
284
286
|
SCNavigationToolbar,
|