@selfcommunity/react-ui 0.9.0-alpha.16 → 0.9.0-alpha.18
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/assets/onBoarding/android.d.ts +1 -1
- package/lib/cjs/assets/onBoarding/android.js +1 -1
- package/lib/cjs/components/EventHeader/EventHeader.js +1 -1
- package/lib/cjs/components/OnBoardingWidget/Steps/App/App.js +2 -1
- package/lib/esm/assets/onBoarding/android.d.ts +1 -1
- package/lib/esm/assets/onBoarding/android.js +1 -1
- package/lib/esm/components/EventHeader/EventHeader.js +1 -1
- package/lib/esm/components/OnBoardingWidget/Steps/App/App.js +2 -1
- package/lib/umd/react-ui.js +1 -1
- package/package.json +2 -2
|
@@ -98,7 +98,7 @@ export default function EventHeader(inProps) {
|
|
|
98
98
|
setSCEvent(Object.assign({}, scEvent, { subscription_status: status }));
|
|
99
99
|
};
|
|
100
100
|
// RENDER
|
|
101
|
-
if (!
|
|
101
|
+
if (!scEvent) {
|
|
102
102
|
return _jsx(EventHeaderSkeleton, {});
|
|
103
103
|
}
|
|
104
104
|
const _backgroundCover = Object.assign({}, (scEvent.image_bigger
|
|
@@ -18,6 +18,7 @@ const classes = {
|
|
|
18
18
|
summary: `${PREFIX}-app-summary`,
|
|
19
19
|
step: `${PREFIX}-app-step`,
|
|
20
20
|
image: `${PREFIX}-app-image`,
|
|
21
|
+
imageAndroid: `${PREFIX}-app-image-android`,
|
|
21
22
|
action: `${PREFIX}-app-action`,
|
|
22
23
|
button: `${PREFIX}-app-button`
|
|
23
24
|
};
|
|
@@ -53,7 +54,7 @@ export default function App(inProps) {
|
|
|
53
54
|
// eslint-disable-next-line @typescript-eslint/ban-ts-ignore
|
|
54
55
|
// @ts-ignore
|
|
55
56
|
b: (...chunks) => _jsx("strong", { children: chunks })
|
|
56
|
-
} }) })), _jsx(CardMedia, { className: classes.
|
|
57
|
+
} }) })), _jsx(CardMedia, { className: classes.imageAndroid, component: "img", src: AndroidPlaceholder })] })), tab === 1 && (_jsxs(_Fragment, { children: [_jsx(Typography, Object.assign({ className: classes.summary }, { children: _jsx(FormattedMessage, { id: "ui.onBoardingWidget.step.app.ios", defaultMessage: "ui.onBoardingWidget.step.app.ios" }) })), _jsx(Typography, Object.assign({ className: classes.step }, { children: _jsx(FormattedMessage, { id: "ui.onBoardingWidget.step.app.ios.a", defaultMessage: "ui.onBoardingWidget.step.app.ios.a", values: {
|
|
57
58
|
// eslint-disable-next-line @typescript-eslint/ban-ts-ignore
|
|
58
59
|
// @ts-ignore
|
|
59
60
|
icon: (...chunks) => _jsx(Icon, Object.assign({ fontSize: "medium" }, { children: chunks })),
|