@selfcommunity/react-templates 0.4.5-courses.165 → 0.4.5-courses.166
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.
|
@@ -62,6 +62,13 @@ const WIDGETS_FOLLOWERS = [
|
|
|
62
62
|
componentProps: {},
|
|
63
63
|
column: 'right',
|
|
64
64
|
position: 4
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
type: 'widget',
|
|
68
|
+
component: react_ui_1.UserCreatedCoursesWidget,
|
|
69
|
+
componentProps: {},
|
|
70
|
+
column: 'right',
|
|
71
|
+
position: 5
|
|
65
72
|
}
|
|
66
73
|
];
|
|
67
74
|
const WIDGETS_FOLLOWERS_MY_PROFILE = [
|
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-run
|
|
|
2
2
|
import { useEffect, useMemo, useState } from 'react';
|
|
3
3
|
import { styled } from '@mui/material/styles';
|
|
4
4
|
import { Box, Button, Icon, Stack, Typography } from '@mui/material';
|
|
5
|
-
import { ConnectionUserButton, LoyaltyProgramWidget, TagChip, UserActionIconButton, UserConnectionsRequestsSentWidget, UserConnectionsRequestsWidget, UserConnectionsWidget, UserCounters, UserFollowedCategoriesWidget, UserFollowedUsersWidget, UserFollowersWidget, UserLiveStreamWidget, UserProfileBlocked, UserProfileHeader, UserSubscribedGroupsWidget } from '@selfcommunity/react-ui';
|
|
5
|
+
import { ConnectionUserButton, LoyaltyProgramWidget, TagChip, UserActionIconButton, UserConnectionsRequestsSentWidget, UserConnectionsRequestsWidget, UserConnectionsWidget, UserCounters, UserCreatedCoursesWidget, UserFollowedCategoriesWidget, UserFollowedUsersWidget, UserFollowersWidget, UserLiveStreamWidget, UserProfileBlocked, UserProfileHeader, UserSubscribedGroupsWidget } from '@selfcommunity/react-ui';
|
|
6
6
|
import UserFeed from '../UserFeed';
|
|
7
7
|
import { SCPreferences, SCRoutes, useSCFetchUser, useSCPreferences, useSCRouting, useSCUser, useSCFetchUserBlockedBy } from '@selfcommunity/react-core';
|
|
8
8
|
import { SCFeatureName } from '@selfcommunity/types';
|
|
@@ -59,6 +59,13 @@ const WIDGETS_FOLLOWERS = [
|
|
|
59
59
|
componentProps: {},
|
|
60
60
|
column: 'right',
|
|
61
61
|
position: 4
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
type: 'widget',
|
|
65
|
+
component: UserCreatedCoursesWidget,
|
|
66
|
+
componentProps: {},
|
|
67
|
+
column: 'right',
|
|
68
|
+
position: 5
|
|
62
69
|
}
|
|
63
70
|
];
|
|
64
71
|
const WIDGETS_FOLLOWERS_MY_PROFILE = [
|